diff src/gaimrc.c @ 4596:7e1591c6d0d8

[gaim-migrate @ 4881] Bjoern Voigt writes: "The patch --------- Some small i18n fixes - some new files in po/POTFILES.in (I hope, there are now all files, with gettext-strings) - a translation for the "boring default" away message (not hardcoded any more) - translations for the Menu Bar during conversations After looking in gconf-editor, I saw, that the static items should be marked with N_(...) = gettext_noop. The strings can now be translated, but unfortunately I still can see them. - Yahoo away messages translation German translation ------------------ 2 strings are untranslated: #: src/gaim-disclosure.c:253 msgid "Expander Size" msgstr "" #: src/gaim-disclosure.c:254 msgid "Size of the expander arrow" msgstr "" File transfer doen't work on my box and so I cannot test the function." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 21 Feb 2003 04:33:56 +0000
parents b69bbf9b1044
children d19872836812
line wrap: on
line diff
--- a/src/gaimrc.c	Thu Feb 20 21:54:05 2003 +0000
+++ b/src/gaimrc.c	Fri Feb 21 04:33:56 2003 +0000
@@ -45,7 +45,7 @@
 #endif
 
 /* for people like myself, who are too lazy to add an away msg :) */
-#define BORING_DEFAULT_AWAY_MSG "sorry, i ran out for a while. bbl"
+#define BORING_DEFAULT_AWAY_MSG _("sorry, i ran out for a while. bbl")
 #define MAX_VALUES 10
 
 GSList *gaim_accounts = NULL;
@@ -295,7 +295,7 @@
 		fprintf(f, "\tauto { %d } { %d }\n", auto_away,
 			g_slist_index(away_messages, default_away));
 	} else {
-		fprintf(f, "\tmessage { boring default } { %s }\n", BORING_DEFAULT_AWAY_MSG);
+		fprintf(f, "\tmessage { %s } { %s }\n", _("boring default"), BORING_DEFAULT_AWAY_MSG);
 		fprintf(f, "\tauto { 0 } { 0 }\n");
 	}