diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-12-26 00:43:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-12-26 00:43:22 +0800 |
commit | 490d923c81ec7fb222ca4d57bc799f72d461e496 (patch) | |
tree | 454da3ab1bb99817910527b56e5feb171a8a5a28 /lib | |
parent | 84862972eb6111ae08fd740680a3bdc2e028a696 (diff) | |
download | gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.gz gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.tar.zst gsoc2013-epiphany-490d923c81ec7fb222ca4d57bc799f72d461e496.zip |
Add context to ambiguous strings. Fixes bug #113932.
2004-12-25 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-encodings.c: (ephy_encodings_init):
* lib/ephy-langs.c:
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init):
* src/ephy-window.c: (show_embed_popup), (tab_context_menu_cb),
(ephy_window_set_active_tab):
* src/prefs-dialog.c: (create_fonts_language_menu):
Add context to ambiguous strings. Fixes bug #113932.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-langs.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/ephy-langs.c b/lib/ephy-langs.c index 1dc15dd3e..e7fcf6c38 100644 --- a/lib/ephy-langs.c +++ b/lib/ephy-langs.c @@ -34,23 +34,23 @@ static const EphyFontsLanguageInfo font_languages [] = { - { N_("Arabic"), "ar" }, - { N_("Baltic"), "x-baltic" }, - { N_("Central European"), "x-central-euro" }, - { N_("Cyrillic"), "x-cyrillic" }, - { N_("Devanagari"), "x-devanagari" }, - { N_("Greek"), "el" }, - { N_("Hebrew"), "he" }, - { N_("Japanese"), "ja" }, - { N_("Korean"), "ko" }, - { N_("Simplified Chinese"), "zh-CN" }, - { N_("Tamil"), "x-tamil" }, - { N_("Thai"), "th" }, - { N_("Traditional Chinese"), "zh-TW" }, - { N_("Traditional Chinese (Hong Kong)"), "zh-HK" }, - { N_("Turkish"), "tr" }, - { N_("Unicode"), "x-unicode" }, - { N_("Western"), "x-western" } + { N_("select fonts for|Arabic"), "ar" }, + { N_("select fonts for|Baltic"), "x-baltic" }, + { N_("select fonts for|Central European"), "x-central-euro" }, + { N_("select fonts for|Cyrillic"), "x-cyrillic" }, + { N_("select fonts for|Devanagari"), "x-devanagari" }, + { N_("select fonts for|Greek"), "el" }, + { N_("select fonts for|Hebrew"), "he" }, + { N_("select fonts for|Japanese"), "ja" }, + { N_("select fonts for|Korean"), "ko" }, + { N_("select fonts for|Simplified Chinese"), "zh-CN" }, + { N_("select fonts for|Tamil"), "x-tamil" }, + { N_("select fonts for|Thai"), "th" }, + { N_("select fonts for|Traditional Chinese"), "zh-TW" }, + { N_("select fonts for|Traditional Chinese (Hong Kong)"), "zh-HK" }, + { N_("select fonts for|Turkish"), "tr" }, + { N_("select fonts for|Unicode"), "x-unicode" }, + { N_("select fonts for|Western"), "x-western" } }; static const guint n_font_languages = G_N_ELEMENTS (font_languages); |