diff src/buddy.c @ 4276:32fcf4cf5f80

[gaim-migrate @ 4527] E'ric Boumaour (zongo_fr) writes: "This patch enables the use of ngettext for singular and plural forms of sentences ("%s person in room"/"%s people in room") cf. gettext documentation. Some call to g_snprintf have been rewritten to make strings translatable (like "%s has %s") The patch is also available at http://www.frankiz.org/gaim/ starting by i18n-ngettext- http://www.frankiz.org/gaim/i18n-ngettext-20030110.diff is the current file, a newer date would be an update. HTH, Eric" committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 10 Jan 2003 15:36:48 +0000
parents 9b40fa57a8ed
children 57ab8f0a4263
line wrap: on
line diff
--- a/src/buddy.c	Fri Jan 10 07:04:23 2003 +0000
+++ b/src/buddy.c	Fri Jan 10 15:36:48 2003 +0000
@@ -1576,11 +1576,11 @@
 				/* I know the line below is really ugly. I only did it this way
 				 * because I thought it'd be funny :-) */
 
-				g_snprintf(tmp, sizeof(tmp), "%s has %s", name, 
-					   (when & OPT_POUNCE_TYPING) ? "started typing to you" :
-					   (when & OPT_POUNCE_SIGNON) ? "signed on" : 
-					   (when & OPT_POUNCE_UNIDLE) ? "returned from being idle" : 
-					   "returned from being away");
+				g_snprintf(tmp, sizeof(tmp), 
+					   (when & OPT_POUNCE_TYPING) ? _("%s has started typing to you") :
+					   (when & OPT_POUNCE_SIGNON) ? _("%s has signed on") : 
+					   (when & OPT_POUNCE_UNIDLE) ? _("%s has returned from being idle") : 
+					   _("%s has returned from being away"), name);
 				
 				do_error_dialog(tmp, NULL, GAIM_INFO);
 			}