comparison 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
comparison
equal deleted inserted replaced
4595:63c022ca157c 4596:7e1591c6d0d8
43 #ifdef _WIN32 43 #ifdef _WIN32
44 #include "win32dep.h" 44 #include "win32dep.h"
45 #endif 45 #endif
46 46
47 /* for people like myself, who are too lazy to add an away msg :) */ 47 /* for people like myself, who are too lazy to add an away msg :) */
48 #define BORING_DEFAULT_AWAY_MSG "sorry, i ran out for a while. bbl" 48 #define BORING_DEFAULT_AWAY_MSG _("sorry, i ran out for a while. bbl")
49 #define MAX_VALUES 10 49 #define MAX_VALUES 10
50 50
51 GSList *gaim_accounts = NULL; 51 GSList *gaim_accounts = NULL;
52 guint misc_options; 52 guint misc_options;
53 guint logging_options; 53 guint logging_options;
293 awy = g_slist_next(awy); 293 awy = g_slist_next(awy);
294 } 294 }
295 fprintf(f, "\tauto { %d } { %d }\n", auto_away, 295 fprintf(f, "\tauto { %d } { %d }\n", auto_away,
296 g_slist_index(away_messages, default_away)); 296 g_slist_index(away_messages, default_away));
297 } else { 297 } else {
298 fprintf(f, "\tmessage { boring default } { %s }\n", BORING_DEFAULT_AWAY_MSG); 298 fprintf(f, "\tmessage { %s } { %s }\n", _("boring default"), BORING_DEFAULT_AWAY_MSG);
299 fprintf(f, "\tauto { 0 } { 0 }\n"); 299 fprintf(f, "\tauto { 0 } { 0 }\n");
300 } 300 }
301 301
302 fprintf(f, "}\n"); 302 fprintf(f, "}\n");
303 } 303 }