diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-06-26 23:06:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-06-26 23:06:45 +0800 |
commit | bd886bd75b0f49f350d479ca1e6c57e6a7451f73 (patch) | |
tree | f2a63869b0b310c821165f192376c4eb586e9b87 /embed | |
parent | ed734ac6890029f657a94dc3e8ff419d34251c88 (diff) | |
download | gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.tar gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.tar.gz gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.tar.bz2 gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.tar.lz gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.tar.xz gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.tar.zst gsoc2013-epiphany-bd886bd75b0f49f350d479ca1e6c57e6a7451f73.zip |
Add two new encodings, and change access keys to be unique.
2003-06-26 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed-single.cpp:
Add two new encodings, and change access keys to be unique.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index 3087ad801..a59ab8f70 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -171,10 +171,14 @@ encodings[] = { N_("_Georgian (GEOSTD8)"), "geostd8", LG_OTHER }, { N_("_Icelandic (MacIcelandic)"), "x-mac-icelandic", LG_OTHER }, { N_("_Nordic (ISO-8859-10)"), "ISO-8859-10", LG_OTHER }, - { N_("Romanian (_MacRomanian)"), "x-mac-romanian", LG_OTHER }, + { N_("_Romanian (MacRomanian)"), "x-mac-romanian", LG_OTHER }, { N_("R_omanian (ISO-8859-16)"), "ISO-8859-16", LG_OTHER }, - { N_("South European (_ISO-8859-3)"), "ISO-8859-3", LG_OTHER }, - { N_("_Thai (TIS-620)"), "TIS-620", LG_OTHER }, + { N_("South _European (ISO-8859-3)"), "ISO-8859-3", LG_OTHER }, + { N_("Thai (TIS-_620)"), "TIS-620", LG_OTHER }, +#if MOZILLA_SNAPSHOT >= 9 + { N_("Thai (IS_O-8859-11)"), "iso-8859-11", LG_OTHER }, + { N_("_Thai (Windows-874)"), "windows-874", LG_OTHER }, +#endif { N_("_User Defined"), "x-user-defined", LG_OTHER }, }; static const guint n_encodings = G_N_ELEMENTS (encodings); |