Mercurial > pidgin
diff src/multi.c @ 4834:0ed37c803503
[gaim-migrate @ 5159]
Bjoern Voigt writes:
"I resolved the conflicts and added a new patch in the attachment.
Besides this updates
| I have updated the German translation and fixed some i18n bugs. Most
| interesting is, that the new Gaim main menu now can be translated. As
| a quick fix I added a new item_factory_translate_func function to
| buddy.c. Now there are 2 static item_factory_translate_func functions
| in buddy.c and gtkconv.c. If you are interested, I can clean this next
| time (only one global function in gaim.h and utils.c).
| The other i18n fixed mark some strings as translatable, for instance
| in the "Get Buddy Info" message boxes.
I included an i18n fix for src/util.c:for sec_to_text (seconds to
text)."
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 19 Mar 2003 23:07:52 +0000 |
| parents | 1e28e7d802a1 |
| children | ac9ed6c5594f |
line wrap: on
line diff
--- a/src/multi.c Wed Mar 19 22:31:05 2003 +0000 +++ b/src/multi.c Wed Mar 19 23:07:52 2003 +0000 @@ -906,7 +906,7 @@ dropdown = gtk_option_menu_new(); menu = gtk_menu_new(); - opt = gtk_menu_item_new_with_label("Use Global Proxy Settings"); + opt = gtk_menu_item_new_with_label(_("Use Global Proxy Settings")); g_object_set_data(G_OBJECT(opt), "proxytype", GINT_TO_POINTER(PROXY_USE_GLOBAL)); g_signal_connect(G_OBJECT(opt), "activate", G_CALLBACK(proxy_dropdown_set), ma); @@ -915,7 +915,7 @@ if(!gpi) gtk_menu_set_active(GTK_MENU(menu), 0); - opt = gtk_menu_item_new_with_label("No Proxy"); + opt = gtk_menu_item_new_with_label(_("No Proxy")); g_object_set_data(G_OBJECT(opt), "proxytype", GINT_TO_POINTER(PROXY_NONE)); g_signal_connect(G_OBJECT(opt), "activate", G_CALLBACK(proxy_dropdown_set), ma);
