Skip to content
Snippets Groups Projects
Commit 5346008b authored by Adriaan de Groot's avatar Adriaan de Groot
Browse files

libcalamares: repair names for recent translations

bqi is one possible name of Luri / Lhur language,
as far as I can tell -- there is also Northern Luri,
which is supported by Qt and has code lrc.

ie is Interlingue, which Qt maps to C locale.
Work around that by mapping it to interlingua.
parent cb42b3af
No related branches found
No related tags found
No related merge requests found
......@@ -87,6 +87,21 @@ static constexpr const TranslationSpecialCase special_cases[] = {
QLocale::Script::AnyScript,
QLocale::Country::AnyCountry,
"Lenga d'òc" },
// Luri
{ "bqi",
nullptr,
QLocale::Language::NorthernLuri,
QLocale::Script::AnyScript,
QLocale::Country::AnyCountry,
nullptr },
// Interlingue is mapped to interlingu*a* because
// the real Language::Interlingue acts like C locale.
{ "ie",
nullptr,
QLocale::Language::Interlingua,
QLocale::Script::AnyScript,
QLocale::Country::AnyCountry,
"Interlingue" },
};
static inline bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment