src/gaimrc.c

changeset 4596
64e72bf4ece4
parent 4592
2781fc0f3d32
child 4634
c4318fc60090
equal deleted inserted replaced
4595:398fc487bf7b 4596:64e72bf4ece4
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 }

mercurial