diff options
author | Andras Timar <atimar@suse.com> | 2011-09-16 16:20:09 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2011-09-17 10:18:18 +0200 |
commit | a705aec5117fe9123236ebdeb0d6f271b83f8af4 (patch) | |
tree | 16b2dfae24a61d998dd8c65d64345f467b739bb0 /i18npool | |
parent | 1066677fd5e10bac78b8e4ebbabfa6bd44dc3859 (diff) |
add KeyID option to Language dropdown box
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/inc/i18npool/lang.h | 1 | ||||
-rw-r--r-- | i18npool/source/isolang/isolang.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/i18npool/inc/i18npool/lang.h b/i18npool/inc/i18npool/lang.h index f03b2bbfe794..058276531e73 100644 --- a/i18npool/inc/i18npool/lang.h +++ b/i18npool/inc/i18npool/lang.h @@ -535,6 +535,7 @@ typedef unsigned short LanguageType; #define LANGUAGE_USER_MANX 0x0663 #define LANGUAGE_USER_TEKE_EBOO 0x0664 #define LANGUAGE_USER_ARAGONESE 0x0665 +#define LANGUAGE_USER_KEYID 0x0666 /* key id pseudolanguage */ #endif /* INCLUDED_I18NPOOL_LANG_H */ diff --git a/i18npool/source/isolang/isolang.cxx b/i18npool/source/isolang/isolang.cxx index 5fd8cb438ff8..94f18cc8c541 100644 --- a/i18npool/source/isolang/isolang.cxx +++ b/i18npool/source/isolang/isolang.cxx @@ -482,6 +482,7 @@ static MsLangId::IsoLangEntry const aImplIsoLangEntries[] = { LANGUAGE_USER_PORTUGUESE_ANGOLA, "pt", "AO" }, { LANGUAGE_USER_MANX, "gv", "GB" }, { LANGUAGE_USER_ARAGONESE, "an", "ES" }, + { LANGUAGE_USER_KEYID, "qtz", "" }, // key id pseudolanguage used for UI testing { LANGUAGE_NONE, "zxx", "" }, // added to ISO 639-2 on 2006-01-11: Used to declare the absence of linguistic information { LANGUAGE_DONTKNOW, "", "" } // marks end of table }; |