r15878 - in /packages/unstable/gossip/debian: changelog patches/02_broken-notify.patch

nobse at users.alioth.debian.org nobse at users.alioth.debian.org
Thu May 8 19:37:27 UTC 2008


Author: nobse
Date: Thu May  8 19:37:27 2008
New Revision: 15878

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=15878
Log:
Fix broken notify bubbles.

Added:
    packages/unstable/gossip/debian/patches/02_broken-notify.patch
Modified:
    packages/unstable/gossip/debian/changelog

Modified: packages/unstable/gossip/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gossip/debian/changelog?rev=15878&op=diff
==============================================================================
--- packages/unstable/gossip/debian/changelog (original)
+++ packages/unstable/gossip/debian/changelog Thu May  8 19:37:27 2008
@@ -1,8 +1,9 @@
 gossip (1:0.29-1) unstable; urgency=low
 
   * New upstream release.
-
- -- Norbert Tretkowski <nobse at debian.org>  Thu, 08 May 2008 21:18:59 +0200
+  * Fix broken notify bubbles.
+
+ -- Norbert Tretkowski <nobse at debian.org>  Thu, 08 May 2008 21:36:48 +0200
 
 gossip (1:0.28+svn2784-1) experimental; urgency=low
 

Added: packages/unstable/gossip/debian/patches/02_broken-notify.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gossip/debian/patches/02_broken-notify.patch?rev=15878&op=file
==============================================================================
--- packages/unstable/gossip/debian/patches/02_broken-notify.patch (added)
+++ packages/unstable/gossip/debian/patches/02_broken-notify.patch Thu May  8 19:37:27 2008
@@ -1,0 +1,24 @@
+diff -Nur gossip-0.29.orig/src/gossip-notify.c gossip-0.29/src/gossip-notify.c
+--- gossip-0.29.orig/src/gossip-notify.c	2008-05-08 09:48:16.000000000 +0200
++++ gossip-0.29/src/gossip-notify.c	2008-05-08 21:35:57.000000000 +0200
+@@ -532,7 +532,7 @@
+ 						     GTK_ICON_SIZE_MENU);
+ 	}
+ 
+-	title = g_markup_printf_escaped (_("New Message from %s"),
++	title = g_markup_printf_escaped (_("%s"),
+ 				 gossip_contact_get_name (contact));
+ 
+ 	if (len >= NOTIFY_MESSAGE_MAX_LEN) {
+@@ -541,9 +541,9 @@
+ 		end = g_utf8_offset_to_pointer (body_stripped, NOTIFY_MESSAGE_MAX_LEN);
+ 		end[0] = '\0';
+ 
+-		str = g_markup_printf_escaped (_("“%s...”"), body_stripped);
++		str = g_markup_printf_escaped (_("%s..."), body_stripped);
+ 	} else {
+-		str = g_markup_printf_escaped (_("“%s”"), body_stripped);
++		str = g_markup_printf_escaped (_("%s"), body_stripped);
+ 	}
+ 
+ 	notify = notify_notification_new (title, str, NULL, NULL);




More information about the pkg-gnome-commits mailing list