comparison plugins/timestamp_format.c @ 13089:b553326bc468

[gaim-migrate @ 15451] Various i18n improvements from Bj??rn Voigt committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 01 Feb 2006 06:07:53 +0000
parents fd57413bc421
children e1e5462b7d81
comparison
equal deleted inserted replaced
13088:a91a8a28f61f 13089:b553326bc468
31 31
32 ppref = gaim_plugin_pref_new_with_name_and_label( 32 ppref = gaim_plugin_pref_new_with_name_and_label(
33 "/plugins/gtk/timestamp_format/use_dates/conversation", 33 "/plugins/gtk/timestamp_format/use_dates/conversation",
34 _("Co_nversations:")); 34 _("Co_nversations:"));
35 gaim_plugin_pref_set_type(ppref, GAIM_PLUGIN_PREF_CHOICE); 35 gaim_plugin_pref_set_type(ppref, GAIM_PLUGIN_PREF_CHOICE);
36 gaim_plugin_pref_add_choice(ppref, "For delayed messages", "automatic"); 36 gaim_plugin_pref_add_choice(ppref, _("For delayed messages"), "automatic");
37 gaim_plugin_pref_add_choice(ppref, "For delayed messages and in chats", "chats"); 37 gaim_plugin_pref_add_choice(ppref, _("For delayed messages and in chats"), "chats");
38 gaim_plugin_pref_add_choice(ppref, "Always", "always"); 38 gaim_plugin_pref_add_choice(ppref, _("Always"), "always");
39 gaim_plugin_pref_frame_add(frame, ppref); 39 gaim_plugin_pref_frame_add(frame, ppref);
40 40
41 ppref = gaim_plugin_pref_new_with_name_and_label( 41 ppref = gaim_plugin_pref_new_with_name_and_label(
42 "/plugins/gtk/timestamp_format/use_dates/log", 42 "/plugins/gtk/timestamp_format/use_dates/log",
43 _("_Message Logs:")); 43 _("_Message Logs:"));
44 gaim_plugin_pref_set_type(ppref, GAIM_PLUGIN_PREF_CHOICE); 44 gaim_plugin_pref_set_type(ppref, GAIM_PLUGIN_PREF_CHOICE);
45 gaim_plugin_pref_add_choice(ppref, "For delayed messages", "automatic"); 45 gaim_plugin_pref_add_choice(ppref, _("For delayed messages"), "automatic");
46 gaim_plugin_pref_add_choice(ppref, "For delayed messages and in chats", "chats"); 46 gaim_plugin_pref_add_choice(ppref, _("For delayed messages and in chats"), "chats");
47 gaim_plugin_pref_add_choice(ppref, "Always", "always"); 47 gaim_plugin_pref_add_choice(ppref, _("Always"), "always");
48 gaim_plugin_pref_frame_add(frame, ppref); 48 gaim_plugin_pref_frame_add(frame, ppref);
49 49
50 return frame; 50 return frame;
51 } 51 }
52 52