[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#689871: marked as done (unblock: notification-daemon/0.7.6-1)



Your message dated Sun, 07 Oct 2012 15:17:22 +0200
with message-id <507180E2.9010603@dogguy.org>
and subject line Re: Bug#689871: unblock: notification-daemon/0.7.6-1
has caused the Debian Bug report #689871,
regarding unblock: notification-daemon/0.7.6-1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
689871: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689871
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package notification-daemon

Version 0.7.6 contains a single bug fix and translation updates only.
It has been in unstable for 8 days without any new bug reports.

Debdiff (minus autotools garbage) is attached.

Cheers,
Michael

unblock notification-daemon/0.7.6-1

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/NEWS b/NEWS
index a41d1b4..dff69c1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+NEW in 0.7.6:
+==============
+- Fix a wrong loop condition
+- Translation updates (Marathi)
+
 NEW in 0.7.5:
 ==============
 - Translation updates (Hindi, Catalan)
diff --git a/configure.ac b/configure.ac
index a942c69..2bf86f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to create configure.
 dnl ################################################################
 dnl # Initialize autoconf
 dnl ################################################################
-AC_INIT([notification-daemon],[0.7.5],[https://bugzilla.gnome.org/enter_bug.cgi?product=notification-daemon],[notification-daemon])
+AC_INIT([notification-daemon],[0.7.6],[https://bugzilla.gnome.org/enter_bug.cgi?product=notification-daemon],[notification-daemon])
 AC_PREREQ(2.63)
 
 AC_CONFIG_HEADERS([config.h])
@@ -15,7 +15,7 @@ dnl # Version information
 dnl ################################################################
 NOTIFICATION_DAEMON_MAJOR_VERSION=0
 NOTIFICATION_DAEMON_MINOR_VERSION=7
-NOTIFICATION_DAEMON_MICRO_VERSION=5
+NOTIFICATION_DAEMON_MICRO_VERSION=6
 NOTIFICATION_DAEMON_DEVEL_VERSION=0
 
 NOTIFICATION_DAEMON_VERSION=$NOTIFICATION_DAEMON_MAJOR_VERSION.$NOTIFICATION_DAEMON_MINOR_VERSION.$NOTIFICATION_DAEMON_MICRO_VERSION
diff --git a/po/LINGUAS b/po/LINGUAS
index dec82d8..8d4c086 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -35,6 +35,7 @@ kn
 ko
 lt
 lv
+mr
 ms
 nb
 nl
diff --git a/po/mr.po b/po/mr.po
new file mode 100644
index 0000000..4f98754
--- /dev/null
+++ b/po/mr.po
@@ -0,0 +1,49 @@
+# Marathi translation for notification-daemon.
+# Copyright (C) 2012 notification-daemon's COPYRIGHT HOLDER
+# This file is distributed under the same license as the notification-daemon package.
+#
+# Sandeep Shedmake <sshedmak@redhat.com>, 2012.
+msgid ""
+msgstr ""
+"Project-Id-Version: notification-daemon master\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?";
+"product=notification-daemon&keywords=I18N+L10N&component=general\n"
+"POT-Creation-Date: 2012-07-07 17:05+0000\n"
+"PO-Revision-Date: 2012-08-14 14:28+0530\n"
+"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
+"Language-Team: Marathi <mr@li.org>\n"
+"Language: mr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 1.4\n"
+
+#: ../src/daemon.c:188
+msgid "Exceeded maximum number of notifications"
+msgstr "सूचनांची कमाल संख्या वाढवले"
+
+#: ../src/daemon.c:251
+msgid "Invalid notification identifier"
+msgstr "अवैध सूचना ओळखकर्ता"
+
+#: ../src/nd-queue.c:472
+msgid "Clear all notifications"
+msgstr "सर्व सूचना नष्ट करा"
+
+#: ../src/nd-queue.c:883
+msgid "Notifications"
+msgstr "सूचना"
+
+#: ../src/sound.c:35
+msgid "Notification"
+msgstr "सूचना"
+
+#: ../data/notification-daemon.desktop.in.in.h:1
+msgid "Notification Daemon"
+msgstr "सूचना डिमन"
+
+#: ../data/notification-daemon.desktop.in.in.h:2
+msgid "Display notifications"
+msgstr "डिस्पले सूचना"
+
diff --git a/src/nd-queue.c b/src/nd-queue.c
index 3675fca..de73940 100644
--- a/src/nd-queue.c
+++ b/src/nd-queue.c
@@ -507,7 +507,7 @@ destroy_screens (NdQueue *queue)
 
                 gdkwindow = gdk_screen_get_root_window (screen);
                 gdk_window_remove_filter (gdkwindow, (GdkFilterFunc) screen_xevent_filter, queue->priv->screens[i]);
-                for (j = 0; i < queue->priv->screens[i]->n_stacks; j++) {
+                for (j = 0; j < queue->priv->screens[i]->n_stacks; j++) {
                         g_object_unref (queue->priv->screens[i]->stacks[j]);
                         queue->priv->screens[i]->stacks[j] = NULL;
                 }

--- End Message ---
--- Begin Message ---
On 07/10/2012 15:00, Michael Biebl wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock package notification-daemon
> 
> Version 0.7.6 contains a single bug fix and translation updates only.
> It has been in unstable for 8 days without any new bug reports.
> 

Unblocked.

Cheers.

-- 
Mehdi Dogguy مهدي الدڤي

--- End Message ---

Reply to: