diff src/gtkconv.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 3db8a7cfd971
children a064e437d5eb
line wrap: on
line diff
--- a/src/gtkconv.c	Thu Feb 20 21:54:05 2003 +0000
+++ b/src/gtkconv.c	Fri Feb 21 04:33:56 2003 +0000
@@ -2400,23 +2400,23 @@
 static GtkItemFactoryEntry menu_items[] =
 {
 	/* Conversation menu */
-	{ "/_Conversation", NULL, NULL, 0, "<Branch>" },
-	{ "/Conversation/_Save As...", NULL, menu_save_as_cb, 0,
+	{ N_("/_Conversation"), NULL, NULL, 0, "<Branch>" },
+	{ N_("/Conversation/_Save As..."), NULL, menu_save_as_cb, 0,
 	  "<StockItem>", GTK_STOCK_SAVE_AS },
-	{ "/Conversation/View _History...", NULL, menu_view_history_cb, 0, NULL },
+	{ N_("/Conversation/View _History..."), NULL, menu_view_history_cb, 0, NULL },
 	{ "/Conversation/sep1", NULL, NULL, 0, "<Separator>" },
-	{ "/Conversation/Insert _URL...", NULL, menu_insert_link_cb, 0,
+	{ N_("/Conversation/Insert _URL..."), NULL, menu_insert_link_cb, 0,
 	  "<StockItem>", GAIM_STOCK_LINK },
-	{ "/Conversation/Insert _Image...", NULL, menu_insert_image_cb, 0,
+	{ N_("/Conversation/Insert _Image..."), NULL, menu_insert_image_cb, 0,
 	  "<StockItem>", GAIM_STOCK_IMAGE },
 	{ "/Conversation/sep2", NULL, NULL, 0, "<Separator>" },
-	{ "/Conversation/_Close", NULL, menu_close_conv_cb, 0,
+	{ N_("/Conversation/_Close"), NULL, menu_close_conv_cb, 0,
 	  "<StockItem>", GTK_STOCK_CLOSE },
 
 	/* Options */
-	{ "/_Options", NULL, NULL, 0, "<Branch>" },
-	{ "/Options/Enable _Logging", NULL, menu_logging_cb, 0, "<CheckItem>" },
-	{ "/Options/Enable _Sounds", NULL, menu_sounds_cb, 0, "<CheckItem>" },
+	{ N_("/_Options"), NULL, NULL, 0, "<Branch>" },
+	{ N_("/Options/Enable _Logging"), NULL, menu_logging_cb, 0, "<CheckItem>" },
+	{ N_("/Options/Enable _Sounds"), NULL, menu_sounds_cb, 0, "<CheckItem>" },
 };
 
 static const int menu_item_count =