Resolves: tdf#130757 Add Minangkabau [min-ID] to language list

Change-Id: I901e64c223723bf2eac908dda80796a7a2799147
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88985
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
This commit is contained in:
Eike Rathke 2020-02-18 20:57:28 +01:00
parent 9dd6dc0328
commit a8529d471a
3 changed files with 4 additions and 1 deletions

View file

@ -686,6 +686,7 @@ static IsoLanguageCountryEntry const aImplIsoLangEntries[] =
{ LANGUAGE_USER_KABARDIAN, "kbd", "RU", k0 }, // Cyrillic script
{ LANGUAGE_USER_GUADELOUPEAN_CREOLE_FRENCH, "gcf", "GP", k0 },
{ LANGUAGE_USER_LIGURIAN, "lij", "IT", k0 },
{ LANGUAGE_USER_MINANGKABAU, "min", "ID", k0 },
{ LANGUAGE_MULTIPLE, "mul", "" , k0 }, // multiple languages, many languages are used
{ LANGUAGE_UNDETERMINED, "und", "" , k0 }, // undetermined language, language cannot be identified
{ LANGUAGE_NONE, "zxx", "" , k0 }, // added to ISO 639-2 on 2006-01-11: Used to declare the absence of linguistic information

View file

@ -755,6 +755,7 @@ namespace o3tl
#define LANGUAGE_USER_KABARDIAN LanguageType(0x06A4)
#define LANGUAGE_USER_GUADELOUPEAN_CREOLE_FRENCH LanguageType(0x06A5)
#define LANGUAGE_USER_LIGURIAN LanguageType(0x06A6)
#define LANGUAGE_USER_MINANGKABAU LanguageType(0x06A7)
/* XXX Add new user defined LCIDs ^^^ there.

View file

@ -421,7 +421,8 @@ const std::pair<const char*, LanguageType> STR_ARR_SVT_LANGUAGE_TABLE[] =
{ NC_("STR_ARR_SVT_LANGUAGE_TABLE", "English (Nigeria)") , LANGUAGE_USER_ENGLISH_NIGERIA },
{ NC_("STR_ARR_SVT_LANGUAGE_TABLE", "Kabardian") , LANGUAGE_USER_KABARDIAN },
{ NC_("STR_ARR_SVT_LANGUAGE_TABLE", "Guadeloupean Creole French") , LANGUAGE_USER_GUADELOUPEAN_CREOLE_FRENCH },
{ NC_("STR_ARR_SVT_LANGUAGE_TABLE", "Ligurian") , LANGUAGE_USER_LIGURIAN }
{ NC_("STR_ARR_SVT_LANGUAGE_TABLE", "Ligurian") , LANGUAGE_USER_LIGURIAN },
{ NC_("STR_ARR_SVT_LANGUAGE_TABLE", "Minangkabau") , LANGUAGE_USER_MINANGKABAU }
};