← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~ted/evolution-indicator/plural-forms into lp:evolution-indicator

 

Ted Gould has proposed merging lp:~ted/evolution-indicator/plural-forms into lp:evolution-indicator.

Requested reviews:
  Indicator Applet Developers (indicator-applet-developers)
Related bugs:
  #549768 ngettext plural form: "%d New Message" & "%d New Messages"
  https://bugs.launchpad.net/bugs/549768


Remove an extra set of _() function calls that are messing up the
ngettext call.
-- 
https://code.launchpad.net/~ted/evolution-indicator/plural-forms/+merge/22413
Your team ayatana-commits is subscribed to branch lp:evolution-indicator.
=== modified file 'src/evolution-indicator.c'
--- src/evolution-indicator.c	2010-03-04 05:05:05 +0000
+++ src/evolution-indicator.c	2010-03-29 21:50:30 +0000
@@ -292,8 +292,8 @@
     }
 
     trans = g_dngettext (PACKAGE, 
-                         _("%d New Message"), 
-                         _("%d New Messages"),
+                         "%d New Message", 
+                         "%d New Messages",
                          message_count);
     
     title = g_strdup_printf (trans, message_count);


Follow ups