Add locale rename for the "C" locale
This commit is contained in:
parent
2fc31fdfca
commit
1cbec15084
1 changed files with 6 additions and 3 deletions
|
@ -810,9 +810,12 @@ static const char *locale_names[] = {
|
||||||
// - https://msdn.microsoft.com/en-us/library/windows/desktop/ms693062(v=vs.85).aspx
|
// - https://msdn.microsoft.com/en-us/library/windows/desktop/ms693062(v=vs.85).aspx
|
||||||
|
|
||||||
static const char *locale_renames[][2] = {
|
static const char *locale_renames[][2] = {
|
||||||
{ "in", "id" }, // Indonesian
|
{ "in", "id" }, // Indonesian
|
||||||
{ "iw", "he" }, // Hebrew
|
{ "iw", "he" }, // Hebrew
|
||||||
{ "no", "nb" }, // Norwegian Bokmål
|
{ "no", "nb" }, // Norwegian Bokmål
|
||||||
|
{ "C", "en" }, // "C" is the simple/default/untranslated Computer locale.
|
||||||
|
// ASCII-only, English, no currency symbols. Godot treats this as "en".
|
||||||
|
// See https://unix.stackexchange.com/a/87763/164141 "The C locale is"...
|
||||||
{ nullptr, nullptr }
|
{ nullptr, nullptr }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue