Update of /cvsroot/gaim/gaim/src/protocols/zephyr
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29902/src/protocols/zephyr
Modified Files:
zephyr.c
Log Message:
Björn Voigt found two untranslated strings.
Index: zephyr.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/zephyr/zephyr.c,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -d -p -r1.163 -r1.164
--- zephyr.c 10 Mar 2006 10:44:42 -0000 1.163
+++ zephyr.c 22 Mar 2006 06:20:14 -0000 1.164
@@ -2893,10 +2893,10 @@ static void init_plugin(GaimPlugin * plu
GaimAccountOption *option;
char *tmp = get_exposure_level();
- option = gaim_account_option_bool_new("Use tzc", "use_tzc", FALSE);
+ option = gaim_account_option_bool_new(_("Use tzc"), "use_tzc", FALSE);
prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
- option = gaim_account_option_string_new("tzc command", "tzc_command", "/usr/bin/tzc -e %s");
+ option = gaim_account_option_string_new(_("tzc command"), "tzc_command", "/usr/bin/tzc -e %s");
prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
option = gaim_account_option_bool_new(_("Export to .anyone"), "write_anyone", FALSE);
|