comparison 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
comparison
equal deleted inserted replaced
4595:63c022ca157c 4596:7e1591c6d0d8
2398 } 2398 }
2399 2399
2400 static GtkItemFactoryEntry menu_items[] = 2400 static GtkItemFactoryEntry menu_items[] =
2401 { 2401 {
2402 /* Conversation menu */ 2402 /* Conversation menu */
2403 { "/_Conversation", NULL, NULL, 0, "<Branch>" }, 2403 { N_("/_Conversation"), NULL, NULL, 0, "<Branch>" },
2404 { "/Conversation/_Save As...", NULL, menu_save_as_cb, 0, 2404 { N_("/Conversation/_Save As..."), NULL, menu_save_as_cb, 0,
2405 "<StockItem>", GTK_STOCK_SAVE_AS }, 2405 "<StockItem>", GTK_STOCK_SAVE_AS },
2406 { "/Conversation/View _History...", NULL, menu_view_history_cb, 0, NULL }, 2406 { N_("/Conversation/View _History..."), NULL, menu_view_history_cb, 0, NULL },
2407 { "/Conversation/sep1", NULL, NULL, 0, "<Separator>" }, 2407 { "/Conversation/sep1", NULL, NULL, 0, "<Separator>" },
2408 { "/Conversation/Insert _URL...", NULL, menu_insert_link_cb, 0, 2408 { N_("/Conversation/Insert _URL..."), NULL, menu_insert_link_cb, 0,
2409 "<StockItem>", GAIM_STOCK_LINK }, 2409 "<StockItem>", GAIM_STOCK_LINK },
2410 { "/Conversation/Insert _Image...", NULL, menu_insert_image_cb, 0, 2410 { N_("/Conversation/Insert _Image..."), NULL, menu_insert_image_cb, 0,
2411 "<StockItem>", GAIM_STOCK_IMAGE }, 2411 "<StockItem>", GAIM_STOCK_IMAGE },
2412 { "/Conversation/sep2", NULL, NULL, 0, "<Separator>" }, 2412 { "/Conversation/sep2", NULL, NULL, 0, "<Separator>" },
2413 { "/Conversation/_Close", NULL, menu_close_conv_cb, 0, 2413 { N_("/Conversation/_Close"), NULL, menu_close_conv_cb, 0,
2414 "<StockItem>", GTK_STOCK_CLOSE }, 2414 "<StockItem>", GTK_STOCK_CLOSE },
2415 2415
2416 /* Options */ 2416 /* Options */
2417 { "/_Options", NULL, NULL, 0, "<Branch>" }, 2417 { N_("/_Options"), NULL, NULL, 0, "<Branch>" },
2418 { "/Options/Enable _Logging", NULL, menu_logging_cb, 0, "<CheckItem>" }, 2418 { N_("/Options/Enable _Logging"), NULL, menu_logging_cb, 0, "<CheckItem>" },
2419 { "/Options/Enable _Sounds", NULL, menu_sounds_cb, 0, "<CheckItem>" }, 2419 { N_("/Options/Enable _Sounds"), NULL, menu_sounds_cb, 0, "<CheckItem>" },
2420 }; 2420 };
2421 2421
2422 static const int menu_item_count = 2422 static const int menu_item_count =
2423 sizeof(menu_items) / sizeof(*menu_items); 2423 sizeof(menu_items) / sizeof(*menu_items);
2424 2424