Last active
December 8, 2020 09:17
-
-
Save OnSive/4242607a2ae5bb905ddb491a1d6ef76a to your computer and use it in GitHub Desktop.
[Set culture] Overwrites the currently set Culture #Culture #Configruation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.ComponentModel; | |
| using System.Globalization; | |
| /// <summary> | |
| /// Overwrites the currently set Culture | |
| /// </summary> | |
| public static void SetCulture(string sName) | |
| // Reading out culture from the Enum | |
| => SetCulture(new CultureInfo(sName)); | |
| /// <summary> | |
| /// Overwrites the currently set Culture | |
| /// </summary> | |
| public static void SetCulture(enCulture Cultur) | |
| // Reading out culture from the Enum | |
| => SetCulture(new CultureInfo(Enum.GetName(typeof(enCulture), Cultur).Replace('_', '-'))); | |
| /// <summary> | |
| /// Overwrites the currently set Culture | |
| /// </summary> | |
| public static void SetCulture(CultureInfo oCultureInfo) | |
| { | |
| // Overwrite culture | |
| CultureInfo.DefaultThreadCurrentCulture = oCultureInfo; | |
| CultureInfo.DefaultThreadCurrentUICulture = oCultureInfo; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Globalization; | |
| /// <summary> | |
| /// Returns the enCulture as string to allow easy updating (especially with the same values!) | |
| /// </summary> | |
| /// <returns>Returns the complete enum code as string</returns> | |
| static string GenerateCultureEnum() | |
| { | |
| string sTmp = $"public enum enCulture{Environment.NewLine}{{{Environment.NewLine}"; | |
| foreach (var item in CultureInfo.GetCultures(CultureTypes.AllCultures)) | |
| { | |
| int iIndex; | |
| string sName; | |
| if (item.Name == string.Empty) | |
| { | |
| sName = "Invariant"; | |
| iIndex = Convert(" "); | |
| } | |
| else if (item.Name == "as") | |
| { | |
| sName = "AS"; | |
| iIndex = Convert(sName); | |
| } | |
| else if (item.Name == "is") | |
| { | |
| sName = "IS"; | |
| iIndex = Convert(sName); | |
| } | |
| else if (item.Name.EndsWith("001")) | |
| { | |
| var sNameTmp = item.Name.Substring(0, item.Name.IndexOf('-') - 1); | |
| sName = $"{sNameTmp}_{sNameTmp.ToUpper()}"; | |
| iIndex = Convert(sName); | |
| } | |
| else | |
| { | |
| sName = item.Name.Replace('-', '_'); | |
| iIndex = Convert(item.Name); | |
| } | |
| sTmp += @$"/// <summary>{Environment.NewLine}/// {item.EnglishName}{Environment.NewLine}/// </summary>{Environment.NewLine}[Description(""{item.EnglishName.Replace('"', '\'')}"")]{Environment.NewLine}{sName} = {iIndex},{Environment.NewLine}"; | |
| } | |
| sTmp += $"}}"; | |
| return sTmp; | |
| } | |
| static int Convert(string key) | |
| { | |
| if (key == string.Empty) | |
| { | |
| key = " "; | |
| } | |
| int val = 0; | |
| for (int i = key.Length - 1; i >= 0; i--) | |
| { | |
| val <<= 8; | |
| val += (int)key[i]; | |
| } | |
| return val; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.ComponentModel; | |
| /// <summary> | |
| /// Enum, which specifies all cultures currently supported in the .NET Framework (.NET Core 3.1) | |
| /// </summary> | |
| public enum enCulture | |
| { | |
| /// <summary> | |
| /// Invariant Language (Invariant Country) | |
| /// </summary> | |
| [Description("Invariant Language (Invariant Country)")] | |
| Invariant = 8224, | |
| /// <summary> | |
| /// Afar | |
| /// </summary> | |
| [Description("Afar")] | |
| aa = 24929, | |
| /// <summary> | |
| /// Afar (Djibouti) | |
| /// </summary> | |
| [Description("Afar (Djibouti)")] | |
| aa_DJ = 1143824737, | |
| /// <summary> | |
| /// Afar (Eritrea) | |
| /// </summary> | |
| [Description("Afar (Eritrea)")] | |
| aa_ER = 1160601953, | |
| /// <summary> | |
| /// Afar (Ethiopia) | |
| /// </summary> | |
| [Description("Afar (Ethiopia)")] | |
| aa_ET = 1160601953, | |
| /// <summary> | |
| /// Afrikaans | |
| /// </summary> | |
| [Description("Afrikaans")] | |
| af = 26209, | |
| /// <summary> | |
| /// Afrikaans (Namibia) | |
| /// </summary> | |
| [Description("Afrikaans (Namibia)")] | |
| af_NA = 1311598177, | |
| /// <summary> | |
| /// Afrikaans (South Africa) | |
| /// </summary> | |
| [Description("Afrikaans (South Africa)")] | |
| af_ZA = 1512924769, | |
| /// <summary> | |
| /// Aghem | |
| /// </summary> | |
| [Description("Aghem")] | |
| agq = 7432033, | |
| /// <summary> | |
| /// Aghem (Cameroon) | |
| /// </summary> | |
| [Description("Aghem (Cameroon)")] | |
| agq_CM = 762406753, | |
| /// <summary> | |
| /// Akan | |
| /// </summary> | |
| [Description("Akan")] | |
| ak = 27489, | |
| /// <summary> | |
| /// Akan (Ghana) | |
| /// </summary> | |
| [Description("Akan (Ghana)")] | |
| ak_GH = 1194158945, | |
| /// <summary> | |
| /// Amharic | |
| /// </summary> | |
| [Description("Amharic")] | |
| am = 28001, | |
| /// <summary> | |
| /// Amharic (Ethiopia) | |
| /// </summary> | |
| [Description("Amharic (Ethiopia)")] | |
| am_ET = 1160605025, | |
| /// <summary> | |
| /// Arabic | |
| /// </summary> | |
| [Description("Arabic")] | |
| ar = 29281, | |
| /// <summary> | |
| /// Arabic (World) | |
| /// </summary> | |
| [Description("Arabic (World)")] | |
| ar_AR = 808284769, | |
| /// <summary> | |
| /// Arabic (United Arab Emirates) | |
| /// </summary> | |
| [Description("Arabic (United Arab Emirates)")] | |
| ar_AE = 1093497441, | |
| /// <summary> | |
| /// Arabic (Bahrain) | |
| /// </summary> | |
| [Description("Arabic (Bahrain)")] | |
| ar_BH = 1110274657, | |
| /// <summary> | |
| /// Arabic (Djibouti) | |
| /// </summary> | |
| [Description("Arabic (Djibouti)")] | |
| ar_DJ = 1143829089, | |
| /// <summary> | |
| /// Arabic (Algeria) | |
| /// </summary> | |
| [Description("Arabic (Algeria)")] | |
| ar_DZ = 1143829089, | |
| /// <summary> | |
| /// Arabic (Egypt) | |
| /// </summary> | |
| [Description("Arabic (Egypt)")] | |
| ar_EG = 1160606305, | |
| /// <summary> | |
| /// Arabic (Eritrea) | |
| /// </summary> | |
| [Description("Arabic (Eritrea)")] | |
| ar_ER = 1160606305, | |
| /// <summary> | |
| /// Arabic (Israel) | |
| /// </summary> | |
| [Description("Arabic (Israel)")] | |
| ar_IL = 1227715169, | |
| /// <summary> | |
| /// Arabic (Iraq) | |
| /// </summary> | |
| [Description("Arabic (Iraq)")] | |
| ar_IQ = 1227715169, | |
| /// <summary> | |
| /// Arabic (Jordan) | |
| /// </summary> | |
| [Description("Arabic (Jordan)")] | |
| ar_JO = 1244492385, | |
| /// <summary> | |
| /// Arabic (Comoros) | |
| /// </summary> | |
| [Description("Arabic (Comoros)")] | |
| ar_KM = 1261269601, | |
| /// <summary> | |
| /// Arabic (Kuwait) | |
| /// </summary> | |
| [Description("Arabic (Kuwait)")] | |
| ar_KW = 1261269601, | |
| /// <summary> | |
| /// Arabic (Lebanon) | |
| /// </summary> | |
| [Description("Arabic (Lebanon)")] | |
| ar_LB = 1278046817, | |
| /// <summary> | |
| /// Arabic (Libya) | |
| /// </summary> | |
| [Description("Arabic (Libya)")] | |
| ar_LY = 1278046817, | |
| /// <summary> | |
| /// Arabic (Morocco) | |
| /// </summary> | |
| [Description("Arabic (Morocco)")] | |
| ar_MA = 1294824033, | |
| /// <summary> | |
| /// Arabic (Mauritania) | |
| /// </summary> | |
| [Description("Arabic (Mauritania)")] | |
| ar_MR = 1294824033, | |
| /// <summary> | |
| /// Arabic (Oman) | |
| /// </summary> | |
| [Description("Arabic (Oman)")] | |
| ar_OM = 1328378465, | |
| /// <summary> | |
| /// Arabic (Palestinian Authority) | |
| /// </summary> | |
| [Description("Arabic (Palestinian Authority)")] | |
| ar_PS = 1345155681, | |
| /// <summary> | |
| /// Arabic (Qatar) | |
| /// </summary> | |
| [Description("Arabic (Qatar)")] | |
| ar_QA = 1361932897, | |
| /// <summary> | |
| /// Arabic (Saudi Arabia) | |
| /// </summary> | |
| [Description("Arabic (Saudi Arabia)")] | |
| ar_SA = 1395487329, | |
| /// <summary> | |
| /// Arabic (Sudan) | |
| /// </summary> | |
| [Description("Arabic (Sudan)")] | |
| ar_SD = 1395487329, | |
| /// <summary> | |
| /// Arabic (Somalia) | |
| /// </summary> | |
| [Description("Arabic (Somalia)")] | |
| ar_SO = 1395487329, | |
| /// <summary> | |
| /// Arabic (South Sudan) | |
| /// </summary> | |
| [Description("Arabic (South Sudan)")] | |
| ar_SS = 1395487329, | |
| /// <summary> | |
| /// Arabic (Syria) | |
| /// </summary> | |
| [Description("Arabic (Syria)")] | |
| ar_SY = 1395487329, | |
| /// <summary> | |
| /// Arabic (Chad) | |
| /// </summary> | |
| [Description("Arabic (Chad)")] | |
| ar_TD = 1412264545, | |
| /// <summary> | |
| /// Arabic (Tunisia) | |
| /// </summary> | |
| [Description("Arabic (Tunisia)")] | |
| ar_TN = 1412264545, | |
| /// <summary> | |
| /// Arabic (Yemen) | |
| /// </summary> | |
| [Description("Arabic (Yemen)")] | |
| ar_YE = 1496150625, | |
| /// <summary> | |
| /// Mapuche | |
| /// </summary> | |
| [Description("Mapuche")] | |
| arn = 7238241, | |
| /// <summary> | |
| /// Mapuche (Chile) | |
| /// </summary> | |
| [Description("Mapuche (Chile)")] | |
| arn_CL = 762212961, | |
| /// <summary> | |
| /// Assamese | |
| /// </summary> | |
| [Description("Assamese")] | |
| AS = 21313, | |
| /// <summary> | |
| /// Assamese (India) | |
| /// </summary> | |
| [Description("Assamese (India)")] | |
| as_IN = 1227715425, | |
| /// <summary> | |
| /// Asu | |
| /// </summary> | |
| [Description("Asu")] | |
| asa = 6386529, | |
| /// <summary> | |
| /// Asu (Tanzania) | |
| /// </summary> | |
| [Description("Asu (Tanzania)")] | |
| asa_TZ = 761361249, | |
| /// <summary> | |
| /// Asturian | |
| /// </summary> | |
| [Description("Asturian")] | |
| ast = 7631713, | |
| /// <summary> | |
| /// Asturian (Spain) | |
| /// </summary> | |
| [Description("Asturian (Spain)")] | |
| ast_ES = 762606433, | |
| /// <summary> | |
| /// Azerbaijani | |
| /// </summary> | |
| [Description("Azerbaijani")] | |
| az = 31329, | |
| /// <summary> | |
| /// Azerbaijani (Cyrillic) | |
| /// </summary> | |
| [Description("Azerbaijani (Cyrillic)")] | |
| az_Cyrl = 1127053921, | |
| /// <summary> | |
| /// Azerbaijani (Cyrillic, Azerbaijan) | |
| /// </summary> | |
| [Description("Azerbaijani (Cyrillic, Azerbaijan)")] | |
| az_Cyrl_AZ = 1127053921, | |
| /// <summary> | |
| /// Azerbaijani (Latin) | |
| /// </summary> | |
| [Description("Azerbaijani (Latin)")] | |
| az_Latn = 1278048865, | |
| /// <summary> | |
| /// Azerbaijani (Latin, Azerbaijan) | |
| /// </summary> | |
| [Description("Azerbaijani (Latin, Azerbaijan)")] | |
| az_Latn_AZ = 1278048865, | |
| /// <summary> | |
| /// Bashkir | |
| /// </summary> | |
| [Description("Bashkir")] | |
| ba = 24930, | |
| /// <summary> | |
| /// Bashkir (Russia) | |
| /// </summary> | |
| [Description("Bashkir (Russia)")] | |
| ba_RU = 1378705762, | |
| /// <summary> | |
| /// Basaa | |
| /// </summary> | |
| [Description("Basaa")] | |
| bas = 7561570, | |
| /// <summary> | |
| /// Basaa (Cameroon) | |
| /// </summary> | |
| [Description("Basaa (Cameroon)")] | |
| bas_CM = 762536290, | |
| /// <summary> | |
| /// Belarusian | |
| /// </summary> | |
| [Description("Belarusian")] | |
| be = 25954, | |
| /// <summary> | |
| /// Belarusian (Belarus) | |
| /// </summary> | |
| [Description("Belarusian (Belarus)")] | |
| be_BY = 1110271330, | |
| /// <summary> | |
| /// Bemba | |
| /// </summary> | |
| [Description("Bemba")] | |
| bem = 7169378, | |
| /// <summary> | |
| /// Bemba (Zambia) | |
| /// </summary> | |
| [Description("Bemba (Zambia)")] | |
| bem_ZM = 762144098, | |
| /// <summary> | |
| /// Bena | |
| /// </summary> | |
| [Description("Bena")] | |
| bez = 8021346, | |
| /// <summary> | |
| /// Bena (Tanzania) | |
| /// </summary> | |
| [Description("Bena (Tanzania)")] | |
| bez_TZ = 762996066, | |
| /// <summary> | |
| /// Bulgarian | |
| /// </summary> | |
| [Description("Bulgarian")] | |
| bg = 26466, | |
| /// <summary> | |
| /// Bulgarian (Bulgaria) | |
| /// </summary> | |
| [Description("Bulgarian (Bulgaria)")] | |
| bg_BG = 1110271842, | |
| /// <summary> | |
| /// Edo | |
| /// </summary> | |
| [Description("Edo")] | |
| bin = 7235938, | |
| /// <summary> | |
| /// Edo (Nigeria) | |
| /// </summary> | |
| [Description("Edo (Nigeria)")] | |
| bin_NG = 762210658, | |
| /// <summary> | |
| /// Bamanankan | |
| /// </summary> | |
| [Description("Bamanankan")] | |
| bm = 28002, | |
| /// <summary> | |
| /// Bamanankan (Latin) | |
| /// </summary> | |
| [Description("Bamanankan (Latin)")] | |
| bm_Latn = 1278045538, | |
| /// <summary> | |
| /// Bamanankan (Latin, Mali) | |
| /// </summary> | |
| [Description("Bamanankan (Latin, Mali)")] | |
| bm_Latn_ML = 1278045538, | |
| /// <summary> | |
| /// Bangla | |
| /// </summary> | |
| [Description("Bangla")] | |
| bn = 28258, | |
| /// <summary> | |
| /// Bangla (Bangladesh) | |
| /// </summary> | |
| [Description("Bangla (Bangladesh)")] | |
| bn_BD = 1110273634, | |
| /// <summary> | |
| /// Bengali (India) | |
| /// </summary> | |
| [Description("Bengali (India)")] | |
| bn_IN = 1227714146, | |
| /// <summary> | |
| /// Tibetan | |
| /// </summary> | |
| [Description("Tibetan")] | |
| bo = 28514, | |
| /// <summary> | |
| /// Tibetan (China) | |
| /// </summary> | |
| [Description("Tibetan (China)")] | |
| bo_CN = 1127051106, | |
| /// <summary> | |
| /// Tibetan (India) | |
| /// </summary> | |
| [Description("Tibetan (India)")] | |
| bo_IN = 1227714402, | |
| /// <summary> | |
| /// Breton | |
| /// </summary> | |
| [Description("Breton")] | |
| br = 29282, | |
| /// <summary> | |
| /// Breton (France) | |
| /// </summary> | |
| [Description("Breton (France)")] | |
| br_FR = 1177383522, | |
| /// <summary> | |
| /// Bodo | |
| /// </summary> | |
| [Description("Bodo")] | |
| brx = 7893602, | |
| /// <summary> | |
| /// Bodo (India) | |
| /// </summary> | |
| [Description("Bodo (India)")] | |
| brx_IN = 762868322, | |
| /// <summary> | |
| /// Bosnian | |
| /// </summary> | |
| [Description("Bosnian")] | |
| bs = 29538, | |
| /// <summary> | |
| /// Bosnian (Cyrillic) | |
| /// </summary> | |
| [Description("Bosnian (Cyrillic)")] | |
| bs_Cyrl = 1127052130, | |
| /// <summary> | |
| /// Bosnian (Cyrillic, Bosnia and Herzegovina) | |
| /// </summary> | |
| [Description("Bosnian (Cyrillic, Bosnia and Herzegovina)")] | |
| bs_Cyrl_BA = 1127052130, | |
| /// <summary> | |
| /// Bosnian (Latin) | |
| /// </summary> | |
| [Description("Bosnian (Latin)")] | |
| bs_Latn = 1278047074, | |
| /// <summary> | |
| /// Bosnian (Latin, Bosnia & Herzegovina) | |
| /// </summary> | |
| [Description("Bosnian (Latin, Bosnia & Herzegovina)")] | |
| bs_Latn_BA = 1278047074, | |
| /// <summary> | |
| /// Blin | |
| /// </summary> | |
| [Description("Blin")] | |
| byn = 7240034, | |
| /// <summary> | |
| /// Blin (Eritrea) | |
| /// </summary> | |
| [Description("Blin (Eritrea)")] | |
| byn_ER = 762214754, | |
| /// <summary> | |
| /// Catalan | |
| /// </summary> | |
| [Description("Catalan")] | |
| ca = 24931, | |
| /// <summary> | |
| /// Catalan (Andorra) | |
| /// </summary> | |
| [Description("Catalan (Andorra)")] | |
| ca_AD = 1093493091, | |
| /// <summary> | |
| /// Catalan (Catalan) | |
| /// </summary> | |
| [Description("Catalan (Catalan)")] | |
| ca_ES = 1160601955, | |
| /// <summary> | |
| /// Valencian (Spain) | |
| /// </summary> | |
| [Description("Valencian (Spain)")] | |
| ca_ES_valencia = 1160601955, | |
| /// <summary> | |
| /// Catalan (France) | |
| /// </summary> | |
| [Description("Catalan (France)")] | |
| ca_FR = 1177379171, | |
| /// <summary> | |
| /// Catalan (Italy) | |
| /// </summary> | |
| [Description("Catalan (Italy)")] | |
| ca_IT = 1227710819, | |
| /// <summary> | |
| /// Chakma | |
| /// </summary> | |
| [Description("Chakma")] | |
| ccp = 7365475, | |
| /// <summary> | |
| /// Chakma (Chakma) | |
| /// </summary> | |
| [Description("Chakma (Chakma)")] | |
| ccp_Cakm = 762340195, | |
| /// <summary> | |
| /// Chakma (Chakma, Bangladesh) | |
| /// </summary> | |
| [Description("Chakma (Chakma, Bangladesh)")] | |
| ccp_Cakm_BD = 762340195, | |
| /// <summary> | |
| /// Chakma (Chakma, India) | |
| /// </summary> | |
| [Description("Chakma (Chakma, India)")] | |
| ccp_Cakm_IN = 762340195, | |
| /// <summary> | |
| /// Chechen | |
| /// </summary> | |
| [Description("Chechen")] | |
| ce = 25955, | |
| /// <summary> | |
| /// Chechen (Russia) | |
| /// </summary> | |
| [Description("Chechen (Russia)")] | |
| ce_RU = 1378706787, | |
| /// <summary> | |
| /// Cebuano | |
| /// </summary> | |
| [Description("Cebuano")] | |
| ceb = 6448483, | |
| /// <summary> | |
| /// Cebuano (Latin) | |
| /// </summary> | |
| [Description("Cebuano (Latin)")] | |
| ceb_Latn = 761423203, | |
| /// <summary> | |
| /// Cebuano (Latin, Philippines) | |
| /// </summary> | |
| [Description("Cebuano (Latin, Philippines)")] | |
| ceb_Latn_PH = 761423203, | |
| /// <summary> | |
| /// Chiga | |
| /// </summary> | |
| [Description("Chiga")] | |
| cgg = 6776675, | |
| /// <summary> | |
| /// Chiga (Uganda) | |
| /// </summary> | |
| [Description("Chiga (Uganda)")] | |
| cgg_UG = 761751395, | |
| /// <summary> | |
| /// Cherokee | |
| /// </summary> | |
| [Description("Cherokee")] | |
| chr = 7497827, | |
| /// <summary> | |
| /// Cherokee | |
| /// </summary> | |
| [Description("Cherokee")] | |
| chr_Cher = 762472547, | |
| /// <summary> | |
| /// Cherokee (Cherokee, United States) | |
| /// </summary> | |
| [Description("Cherokee (Cherokee, United States)")] | |
| chr_Cher_US = 762472547, | |
| /// <summary> | |
| /// Corsican | |
| /// </summary> | |
| [Description("Corsican")] | |
| co = 28515, | |
| /// <summary> | |
| /// Corsican (France) | |
| /// </summary> | |
| [Description("Corsican (France)")] | |
| co_FR = 1177382755, | |
| /// <summary> | |
| /// Czech | |
| /// </summary> | |
| [Description("Czech")] | |
| cs = 29539, | |
| /// <summary> | |
| /// Czech (Czechia) | |
| /// </summary> | |
| [Description("Czech (Czechia)")] | |
| cs_CZ = 1127052131, | |
| /// <summary> | |
| /// Church Slavic | |
| /// </summary> | |
| [Description("Church Slavic")] | |
| cu = 30051, | |
| /// <summary> | |
| /// Church Slavic (Russia) | |
| /// </summary> | |
| [Description("Church Slavic (Russia)")] | |
| cu_RU = 1378710883, | |
| /// <summary> | |
| /// Welsh | |
| /// </summary> | |
| [Description("Welsh")] | |
| cy = 31075, | |
| /// <summary> | |
| /// Welsh (United Kingdom) | |
| /// </summary> | |
| [Description("Welsh (United Kingdom)")] | |
| cy_GB = 1194162531, | |
| /// <summary> | |
| /// Danish | |
| /// </summary> | |
| [Description("Danish")] | |
| da = 24932, | |
| /// <summary> | |
| /// Danish (Denmark) | |
| /// </summary> | |
| [Description("Danish (Denmark)")] | |
| da_DK = 1143824740, | |
| /// <summary> | |
| /// Danish (Greenland) | |
| /// </summary> | |
| [Description("Danish (Greenland)")] | |
| da_GL = 1194156388, | |
| /// <summary> | |
| /// Taita | |
| /// </summary> | |
| [Description("Taita")] | |
| dav = 7758180, | |
| /// <summary> | |
| /// Taita (Kenya) | |
| /// </summary> | |
| [Description("Taita (Kenya)")] | |
| dav_KE = 762732900, | |
| /// <summary> | |
| /// German | |
| /// </summary> | |
| [Description("German")] | |
| de = 25956, | |
| /// <summary> | |
| /// German (Austria) | |
| /// </summary> | |
| [Description("German (Austria)")] | |
| de_AT = 1093494116, | |
| /// <summary> | |
| /// German (Belgium) | |
| /// </summary> | |
| [Description("German (Belgium)")] | |
| de_BE = 1110271332, | |
| /// <summary> | |
| /// German (Switzerland) | |
| /// </summary> | |
| [Description("German (Switzerland)")] | |
| de_CH = 1127048548, | |
| /// <summary> | |
| /// German (Germany) | |
| /// </summary> | |
| [Description("German (Germany)")] | |
| de_DE = 1143825764, | |
| /// <summary> | |
| /// German (Italy) | |
| /// </summary> | |
| [Description("German (Italy)")] | |
| de_IT = 1227711844, | |
| /// <summary> | |
| /// German (Liechtenstein) | |
| /// </summary> | |
| [Description("German (Liechtenstein)")] | |
| de_LI = 1278043492, | |
| /// <summary> | |
| /// German (Luxembourg) | |
| /// </summary> | |
| [Description("German (Luxembourg)")] | |
| de_LU = 1278043492, | |
| /// <summary> | |
| /// Zarma | |
| /// </summary> | |
| [Description("Zarma")] | |
| dje = 6646372, | |
| /// <summary> | |
| /// Zarma (Niger) | |
| /// </summary> | |
| [Description("Zarma (Niger)")] | |
| dje_NE = 761621092, | |
| /// <summary> | |
| /// Lower Sorbian | |
| /// </summary> | |
| [Description("Lower Sorbian")] | |
| dsb = 6452068, | |
| /// <summary> | |
| /// Lower Sorbian (Germany) | |
| /// </summary> | |
| [Description("Lower Sorbian (Germany)")] | |
| dsb_DE = 761426788, | |
| /// <summary> | |
| /// Duala | |
| /// </summary> | |
| [Description("Duala")] | |
| dua = 6387044, | |
| /// <summary> | |
| /// Duala (Cameroon) | |
| /// </summary> | |
| [Description("Duala (Cameroon)")] | |
| dua_CM = 761361764, | |
| /// <summary> | |
| /// Divehi | |
| /// </summary> | |
| [Description("Divehi")] | |
| dv = 30308, | |
| /// <summary> | |
| /// Divehi (Maldives) | |
| /// </summary> | |
| [Description("Divehi (Maldives)")] | |
| dv_MV = 1294825060, | |
| /// <summary> | |
| /// Jola-Fonyi | |
| /// </summary> | |
| [Description("Jola-Fonyi")] | |
| dyo = 7305572, | |
| /// <summary> | |
| /// Jola-Fonyi (Senegal) | |
| /// </summary> | |
| [Description("Jola-Fonyi (Senegal)")] | |
| dyo_SN = 762280292, | |
| /// <summary> | |
| /// Dzongkha | |
| /// </summary> | |
| [Description("Dzongkha")] | |
| dz = 31332, | |
| /// <summary> | |
| /// Dzongkha (Bhutan) | |
| /// </summary> | |
| [Description("Dzongkha (Bhutan)")] | |
| dz_BT = 1110276708, | |
| /// <summary> | |
| /// Embu | |
| /// </summary> | |
| [Description("Embu")] | |
| ebu = 7692901, | |
| /// <summary> | |
| /// Embu (Kenya) | |
| /// </summary> | |
| [Description("Embu (Kenya)")] | |
| ebu_KE = 762667621, | |
| /// <summary> | |
| /// Ewe | |
| /// </summary> | |
| [Description("Ewe")] | |
| ee = 25957, | |
| /// <summary> | |
| /// Ewe (Ghana) | |
| /// </summary> | |
| [Description("Ewe (Ghana)")] | |
| ee_GH = 1194157413, | |
| /// <summary> | |
| /// Ewe (Togo) | |
| /// </summary> | |
| [Description("Ewe (Togo)")] | |
| ee_TG = 1412261221, | |
| /// <summary> | |
| /// Greek | |
| /// </summary> | |
| [Description("Greek")] | |
| el = 27749, | |
| /// <summary> | |
| /// Greek (Cyprus) | |
| /// </summary> | |
| [Description("Greek (Cyprus)")] | |
| el_CY = 1127050341, | |
| /// <summary> | |
| /// Greek (Greece) | |
| /// </summary> | |
| [Description("Greek (Greece)")] | |
| el_GR = 1194159205, | |
| /// <summary> | |
| /// English | |
| /// </summary> | |
| [Description("English")] | |
| en = 28261, | |
| /// <summary> | |
| /// English (World) | |
| /// </summary> | |
| [Description("English (World)")] | |
| en_EN = 808283749, | |
| /// <summary> | |
| /// English (Caribbean) | |
| /// </summary> | |
| [Description("English (Caribbean)")] | |
| en_029 = 808283749, | |
| /// <summary> | |
| /// English (Europe) | |
| /// </summary> | |
| [Description("English (Europe)")] | |
| en_150 = 825060965, | |
| /// <summary> | |
| /// English (United Arab Emirates) | |
| /// </summary> | |
| [Description("English (United Arab Emirates)")] | |
| en_AE = 1093496421, | |
| /// <summary> | |
| /// English (Antigua & Barbuda) | |
| /// </summary> | |
| [Description("English (Antigua & Barbuda)")] | |
| en_AG = 1093496421, | |
| /// <summary> | |
| /// English (Anguilla) | |
| /// </summary> | |
| [Description("English (Anguilla)")] | |
| en_AI = 1093496421, | |
| /// <summary> | |
| /// English (American Samoa) | |
| /// </summary> | |
| [Description("English (American Samoa)")] | |
| en_AS = 1093496421, | |
| /// <summary> | |
| /// English (Austria) | |
| /// </summary> | |
| [Description("English (Austria)")] | |
| en_AT = 1093496421, | |
| /// <summary> | |
| /// English (Australia) | |
| /// </summary> | |
| [Description("English (Australia)")] | |
| en_AU = 1093496421, | |
| /// <summary> | |
| /// English (Barbados) | |
| /// </summary> | |
| [Description("English (Barbados)")] | |
| en_BB = 1110273637, | |
| /// <summary> | |
| /// English (Belgium) | |
| /// </summary> | |
| [Description("English (Belgium)")] | |
| en_BE = 1110273637, | |
| /// <summary> | |
| /// English (Burundi) | |
| /// </summary> | |
| [Description("English (Burundi)")] | |
| en_BI = 1110273637, | |
| /// <summary> | |
| /// English (Bermuda) | |
| /// </summary> | |
| [Description("English (Bermuda)")] | |
| en_BM = 1110273637, | |
| /// <summary> | |
| /// English (Bahamas) | |
| /// </summary> | |
| [Description("English (Bahamas)")] | |
| en_BS = 1110273637, | |
| /// <summary> | |
| /// English (Botswana) | |
| /// </summary> | |
| [Description("English (Botswana)")] | |
| en_BW = 1110273637, | |
| /// <summary> | |
| /// English (Belize) | |
| /// </summary> | |
| [Description("English (Belize)")] | |
| en_BZ = 1110273637, | |
| /// <summary> | |
| /// English (Canada) | |
| /// </summary> | |
| [Description("English (Canada)")] | |
| en_CA = 1127050853, | |
| /// <summary> | |
| /// English (Cocos (Keeling) Islands) | |
| /// </summary> | |
| [Description("English (Cocos (Keeling) Islands)")] | |
| en_CC = 1127050853, | |
| /// <summary> | |
| /// English (Switzerland) | |
| /// </summary> | |
| [Description("English (Switzerland)")] | |
| en_CH = 1127050853, | |
| /// <summary> | |
| /// English (Cook Islands) | |
| /// </summary> | |
| [Description("English (Cook Islands)")] | |
| en_CK = 1127050853, | |
| /// <summary> | |
| /// English (Cameroon) | |
| /// </summary> | |
| [Description("English (Cameroon)")] | |
| en_CM = 1127050853, | |
| /// <summary> | |
| /// English (Christmas Island) | |
| /// </summary> | |
| [Description("English (Christmas Island)")] | |
| en_CX = 1127050853, | |
| /// <summary> | |
| /// English (Cyprus) | |
| /// </summary> | |
| [Description("English (Cyprus)")] | |
| en_CY = 1127050853, | |
| /// <summary> | |
| /// English (Germany) | |
| /// </summary> | |
| [Description("English (Germany)")] | |
| en_DE = 1143828069, | |
| /// <summary> | |
| /// English (Denmark) | |
| /// </summary> | |
| [Description("English (Denmark)")] | |
| en_DK = 1143828069, | |
| /// <summary> | |
| /// English (Dominica) | |
| /// </summary> | |
| [Description("English (Dominica)")] | |
| en_DM = 1143828069, | |
| /// <summary> | |
| /// English (Eritrea) | |
| /// </summary> | |
| [Description("English (Eritrea)")] | |
| en_ER = 1160605285, | |
| /// <summary> | |
| /// English (Finland) | |
| /// </summary> | |
| [Description("English (Finland)")] | |
| en_FI = 1177382501, | |
| /// <summary> | |
| /// English (Fiji) | |
| /// </summary> | |
| [Description("English (Fiji)")] | |
| en_FJ = 1177382501, | |
| /// <summary> | |
| /// English (Falkland Islands) | |
| /// </summary> | |
| [Description("English (Falkland Islands)")] | |
| en_FK = 1177382501, | |
| /// <summary> | |
| /// English (Micronesia) | |
| /// </summary> | |
| [Description("English (Micronesia)")] | |
| en_FM = 1177382501, | |
| /// <summary> | |
| /// English (United Kingdom) | |
| /// </summary> | |
| [Description("English (United Kingdom)")] | |
| en_GB = 1194159717, | |
| /// <summary> | |
| /// English (Grenada) | |
| /// </summary> | |
| [Description("English (Grenada)")] | |
| en_GD = 1194159717, | |
| /// <summary> | |
| /// English (Guernsey) | |
| /// </summary> | |
| [Description("English (Guernsey)")] | |
| en_GG = 1194159717, | |
| /// <summary> | |
| /// English (Ghana) | |
| /// </summary> | |
| [Description("English (Ghana)")] | |
| en_GH = 1194159717, | |
| /// <summary> | |
| /// English (Gibraltar) | |
| /// </summary> | |
| [Description("English (Gibraltar)")] | |
| en_GI = 1194159717, | |
| /// <summary> | |
| /// English (Gambia) | |
| /// </summary> | |
| [Description("English (Gambia)")] | |
| en_GM = 1194159717, | |
| /// <summary> | |
| /// English (Guam) | |
| /// </summary> | |
| [Description("English (Guam)")] | |
| en_GU = 1194159717, | |
| /// <summary> | |
| /// English (Guyana) | |
| /// </summary> | |
| [Description("English (Guyana)")] | |
| en_GY = 1194159717, | |
| /// <summary> | |
| /// English (Hong Kong SAR) | |
| /// </summary> | |
| [Description("English (Hong Kong SAR)")] | |
| en_HK = 1210936933, | |
| /// <summary> | |
| /// English (Indonesia) | |
| /// </summary> | |
| [Description("English (Indonesia)")] | |
| en_ID = 1227714149, | |
| /// <summary> | |
| /// English (Ireland) | |
| /// </summary> | |
| [Description("English (Ireland)")] | |
| en_IE = 1227714149, | |
| /// <summary> | |
| /// English (Israel) | |
| /// </summary> | |
| [Description("English (Israel)")] | |
| en_IL = 1227714149, | |
| /// <summary> | |
| /// English (Isle of Man) | |
| /// </summary> | |
| [Description("English (Isle of Man)")] | |
| en_IM = 1227714149, | |
| /// <summary> | |
| /// English (India) | |
| /// </summary> | |
| [Description("English (India)")] | |
| en_IN = 1227714149, | |
| /// <summary> | |
| /// English (British Indian Ocean Territory) | |
| /// </summary> | |
| [Description("English (British Indian Ocean Territory)")] | |
| en_IO = 1227714149, | |
| /// <summary> | |
| /// English (Jersey) | |
| /// </summary> | |
| [Description("English (Jersey)")] | |
| en_JE = 1244491365, | |
| /// <summary> | |
| /// English (Jamaica) | |
| /// </summary> | |
| [Description("English (Jamaica)")] | |
| en_JM = 1244491365, | |
| /// <summary> | |
| /// English (Kenya) | |
| /// </summary> | |
| [Description("English (Kenya)")] | |
| en_KE = 1261268581, | |
| /// <summary> | |
| /// English (Kiribati) | |
| /// </summary> | |
| [Description("English (Kiribati)")] | |
| en_KI = 1261268581, | |
| /// <summary> | |
| /// English (St. Kitts & Nevis) | |
| /// </summary> | |
| [Description("English (St. Kitts & Nevis)")] | |
| en_KN = 1261268581, | |
| /// <summary> | |
| /// English (Cayman Islands) | |
| /// </summary> | |
| [Description("English (Cayman Islands)")] | |
| en_KY = 1261268581, | |
| /// <summary> | |
| /// English (St. Lucia) | |
| /// </summary> | |
| [Description("English (St. Lucia)")] | |
| en_LC = 1278045797, | |
| /// <summary> | |
| /// English (Liberia) | |
| /// </summary> | |
| [Description("English (Liberia)")] | |
| en_LR = 1278045797, | |
| /// <summary> | |
| /// English (Lesotho) | |
| /// </summary> | |
| [Description("English (Lesotho)")] | |
| en_LS = 1278045797, | |
| /// <summary> | |
| /// English (Madagascar) | |
| /// </summary> | |
| [Description("English (Madagascar)")] | |
| en_MG = 1294823013, | |
| /// <summary> | |
| /// English (Marshall Islands) | |
| /// </summary> | |
| [Description("English (Marshall Islands)")] | |
| en_MH = 1294823013, | |
| /// <summary> | |
| /// English (Macao SAR) | |
| /// </summary> | |
| [Description("English (Macao SAR)")] | |
| en_MO = 1294823013, | |
| /// <summary> | |
| /// English (Northern Mariana Islands) | |
| /// </summary> | |
| [Description("English (Northern Mariana Islands)")] | |
| en_MP = 1294823013, | |
| /// <summary> | |
| /// English (Montserrat) | |
| /// </summary> | |
| [Description("English (Montserrat)")] | |
| en_MS = 1294823013, | |
| /// <summary> | |
| /// English (Malta) | |
| /// </summary> | |
| [Description("English (Malta)")] | |
| en_MT = 1294823013, | |
| /// <summary> | |
| /// English (Mauritius) | |
| /// </summary> | |
| [Description("English (Mauritius)")] | |
| en_MU = 1294823013, | |
| /// <summary> | |
| /// English (Malawi) | |
| /// </summary> | |
| [Description("English (Malawi)")] | |
| en_MW = 1294823013, | |
| /// <summary> | |
| /// English (Malaysia) | |
| /// </summary> | |
| [Description("English (Malaysia)")] | |
| en_MY = 1294823013, | |
| /// <summary> | |
| /// English (Namibia) | |
| /// </summary> | |
| [Description("English (Namibia)")] | |
| en_NA = 1311600229, | |
| /// <summary> | |
| /// English (Norfolk Island) | |
| /// </summary> | |
| [Description("English (Norfolk Island)")] | |
| en_NF = 1311600229, | |
| /// <summary> | |
| /// English (Nigeria) | |
| /// </summary> | |
| [Description("English (Nigeria)")] | |
| en_NG = 1311600229, | |
| /// <summary> | |
| /// English (Netherlands) | |
| /// </summary> | |
| [Description("English (Netherlands)")] | |
| en_NL = 1311600229, | |
| /// <summary> | |
| /// English (Nauru) | |
| /// </summary> | |
| [Description("English (Nauru)")] | |
| en_NR = 1311600229, | |
| /// <summary> | |
| /// English (Niue) | |
| /// </summary> | |
| [Description("English (Niue)")] | |
| en_NU = 1311600229, | |
| /// <summary> | |
| /// English (New Zealand) | |
| /// </summary> | |
| [Description("English (New Zealand)")] | |
| en_NZ = 1311600229, | |
| /// <summary> | |
| /// English (Papua New Guinea) | |
| /// </summary> | |
| [Description("English (Papua New Guinea)")] | |
| en_PG = 1345154661, | |
| /// <summary> | |
| /// English (Philippines) | |
| /// </summary> | |
| [Description("English (Philippines)")] | |
| en_PH = 1345154661, | |
| /// <summary> | |
| /// English (Pakistan) | |
| /// </summary> | |
| [Description("English (Pakistan)")] | |
| en_PK = 1345154661, | |
| /// <summary> | |
| /// English (Pitcairn Islands) | |
| /// </summary> | |
| [Description("English (Pitcairn Islands)")] | |
| en_PN = 1345154661, | |
| /// <summary> | |
| /// English (Puerto Rico) | |
| /// </summary> | |
| [Description("English (Puerto Rico)")] | |
| en_PR = 1345154661, | |
| /// <summary> | |
| /// English (Palau) | |
| /// </summary> | |
| [Description("English (Palau)")] | |
| en_PW = 1345154661, | |
| /// <summary> | |
| /// English (Rwanda) | |
| /// </summary> | |
| [Description("English (Rwanda)")] | |
| en_RW = 1378709093, | |
| /// <summary> | |
| /// English (Solomon Islands) | |
| /// </summary> | |
| [Description("English (Solomon Islands)")] | |
| en_SB = 1395486309, | |
| /// <summary> | |
| /// English (Seychelles) | |
| /// </summary> | |
| [Description("English (Seychelles)")] | |
| en_SC = 1395486309, | |
| /// <summary> | |
| /// English (Sudan) | |
| /// </summary> | |
| [Description("English (Sudan)")] | |
| en_SD = 1395486309, | |
| /// <summary> | |
| /// English (Sweden) | |
| /// </summary> | |
| [Description("English (Sweden)")] | |
| en_SE = 1395486309, | |
| /// <summary> | |
| /// English (Singapore) | |
| /// </summary> | |
| [Description("English (Singapore)")] | |
| en_SG = 1395486309, | |
| /// <summary> | |
| /// English (St Helena, Ascension, Tristan da Cunha) | |
| /// </summary> | |
| [Description("English (St Helena, Ascension, Tristan da Cunha)")] | |
| en_SH = 1395486309, | |
| /// <summary> | |
| /// English (Slovenia) | |
| /// </summary> | |
| [Description("English (Slovenia)")] | |
| en_SI = 1395486309, | |
| /// <summary> | |
| /// English (Sierra Leone) | |
| /// </summary> | |
| [Description("English (Sierra Leone)")] | |
| en_SL = 1395486309, | |
| /// <summary> | |
| /// English (South Sudan) | |
| /// </summary> | |
| [Description("English (South Sudan)")] | |
| en_SS = 1395486309, | |
| /// <summary> | |
| /// English (Sint Maarten) | |
| /// </summary> | |
| [Description("English (Sint Maarten)")] | |
| en_SX = 1395486309, | |
| /// <summary> | |
| /// English (Eswatini) | |
| /// </summary> | |
| [Description("English (Eswatini)")] | |
| en_SZ = 1395486309, | |
| /// <summary> | |
| /// English (Turks & Caicos Islands) | |
| /// </summary> | |
| [Description("English (Turks & Caicos Islands)")] | |
| en_TC = 1412263525, | |
| /// <summary> | |
| /// English (Tokelau) | |
| /// </summary> | |
| [Description("English (Tokelau)")] | |
| en_TK = 1412263525, | |
| /// <summary> | |
| /// English (Tonga) | |
| /// </summary> | |
| [Description("English (Tonga)")] | |
| en_TO = 1412263525, | |
| /// <summary> | |
| /// English (Trinidad & Tobago) | |
| /// </summary> | |
| [Description("English (Trinidad & Tobago)")] | |
| en_TT = 1412263525, | |
| /// <summary> | |
| /// English (Tuvalu) | |
| /// </summary> | |
| [Description("English (Tuvalu)")] | |
| en_TV = 1412263525, | |
| /// <summary> | |
| /// English (Tanzania) | |
| /// </summary> | |
| [Description("English (Tanzania)")] | |
| en_TZ = 1412263525, | |
| /// <summary> | |
| /// English (Uganda) | |
| /// </summary> | |
| [Description("English (Uganda)")] | |
| en_UG = 1429040741, | |
| /// <summary> | |
| /// English (U.S. Outlying Islands) | |
| /// </summary> | |
| [Description("English (U.S. Outlying Islands)")] | |
| en_UM = 1429040741, | |
| /// <summary> | |
| /// English (United States) | |
| /// </summary> | |
| [Description("English (United States)")] | |
| en_US = 1429040741, | |
| /// <summary> | |
| /// English (St. Vincent & Grenadines) | |
| /// </summary> | |
| [Description("English (St. Vincent & Grenadines)")] | |
| en_VC = 1445817957, | |
| /// <summary> | |
| /// English (British Virgin Islands) | |
| /// </summary> | |
| [Description("English (British Virgin Islands)")] | |
| en_VG = 1445817957, | |
| /// <summary> | |
| /// English (U.S. Virgin Islands) | |
| /// </summary> | |
| [Description("English (U.S. Virgin Islands)")] | |
| en_VI = 1445817957, | |
| /// <summary> | |
| /// English (Vanuatu) | |
| /// </summary> | |
| [Description("English (Vanuatu)")] | |
| en_VU = 1445817957, | |
| /// <summary> | |
| /// English (Samoa) | |
| /// </summary> | |
| [Description("English (Samoa)")] | |
| en_WS = 1462595173, | |
| /// <summary> | |
| /// English (South Africa) | |
| /// </summary> | |
| [Description("English (South Africa)")] | |
| en_ZA = 1512926821, | |
| /// <summary> | |
| /// English (Zambia) | |
| /// </summary> | |
| [Description("English (Zambia)")] | |
| en_ZM = 1512926821, | |
| /// <summary> | |
| /// English (Zimbabwe) | |
| /// </summary> | |
| [Description("English (Zimbabwe)")] | |
| en_ZW = 1512926821, | |
| /// <summary> | |
| /// Esperanto | |
| /// </summary> | |
| [Description("Esperanto")] | |
| eo = 28517, | |
| /// <summary> | |
| /// Esperanto (World) | |
| /// </summary> | |
| [Description("Esperanto (World)")] | |
| eo_EO = 808284005, | |
| /// <summary> | |
| /// Spanish | |
| /// </summary> | |
| [Description("Spanish")] | |
| es = 29541, | |
| /// <summary> | |
| /// Spanish (Latin America) | |
| /// </summary> | |
| [Description("Spanish (Latin America)")] | |
| es_419 = 875393893, | |
| /// <summary> | |
| /// Spanish (Argentina) | |
| /// </summary> | |
| [Description("Spanish (Argentina)")] | |
| es_AR = 1093497701, | |
| /// <summary> | |
| /// Spanish (Bolivia) | |
| /// </summary> | |
| [Description("Spanish (Bolivia)")] | |
| es_BO = 1110274917, | |
| /// <summary> | |
| /// Spanish (Brazil) | |
| /// </summary> | |
| [Description("Spanish (Brazil)")] | |
| es_BR = 1110274917, | |
| /// <summary> | |
| /// Spanish (Belize) | |
| /// </summary> | |
| [Description("Spanish (Belize)")] | |
| es_BZ = 1110274917, | |
| /// <summary> | |
| /// Spanish (Chile) | |
| /// </summary> | |
| [Description("Spanish (Chile)")] | |
| es_CL = 1127052133, | |
| /// <summary> | |
| /// Spanish (Colombia) | |
| /// </summary> | |
| [Description("Spanish (Colombia)")] | |
| es_CO = 1127052133, | |
| /// <summary> | |
| /// Spanish (Costa Rica) | |
| /// </summary> | |
| [Description("Spanish (Costa Rica)")] | |
| es_CR = 1127052133, | |
| /// <summary> | |
| /// Spanish (Cuba) | |
| /// </summary> | |
| [Description("Spanish (Cuba)")] | |
| es_CU = 1127052133, | |
| /// <summary> | |
| /// Spanish (Dominican Republic) | |
| /// </summary> | |
| [Description("Spanish (Dominican Republic)")] | |
| es_DO = 1143829349, | |
| /// <summary> | |
| /// Spanish (Ecuador) | |
| /// </summary> | |
| [Description("Spanish (Ecuador)")] | |
| es_EC = 1160606565, | |
| /// <summary> | |
| /// Spanish (Spain, International Sort) | |
| /// </summary> | |
| [Description("Spanish (Spain, International Sort)")] | |
| es_ES = 1160606565, | |
| /// <summary> | |
| /// Spanish (Equatorial Guinea) | |
| /// </summary> | |
| [Description("Spanish (Equatorial Guinea)")] | |
| es_GQ = 1194160997, | |
| /// <summary> | |
| /// Spanish (Guatemala) | |
| /// </summary> | |
| [Description("Spanish (Guatemala)")] | |
| es_GT = 1194160997, | |
| /// <summary> | |
| /// Spanish (Honduras) | |
| /// </summary> | |
| [Description("Spanish (Honduras)")] | |
| es_HN = 1210938213, | |
| /// <summary> | |
| /// Spanish (Mexico) | |
| /// </summary> | |
| [Description("Spanish (Mexico)")] | |
| es_MX = 1294824293, | |
| /// <summary> | |
| /// Spanish (Nicaragua) | |
| /// </summary> | |
| [Description("Spanish (Nicaragua)")] | |
| es_NI = 1311601509, | |
| /// <summary> | |
| /// Spanish (Panama) | |
| /// </summary> | |
| [Description("Spanish (Panama)")] | |
| es_PA = 1345155941, | |
| /// <summary> | |
| /// Spanish (Peru) | |
| /// </summary> | |
| [Description("Spanish (Peru)")] | |
| es_PE = 1345155941, | |
| /// <summary> | |
| /// Spanish (Philippines) | |
| /// </summary> | |
| [Description("Spanish (Philippines)")] | |
| es_PH = 1345155941, | |
| /// <summary> | |
| /// Spanish (Puerto Rico) | |
| /// </summary> | |
| [Description("Spanish (Puerto Rico)")] | |
| es_PR = 1345155941, | |
| /// <summary> | |
| /// Spanish (Paraguay) | |
| /// </summary> | |
| [Description("Spanish (Paraguay)")] | |
| es_PY = 1345155941, | |
| /// <summary> | |
| /// Spanish (El Salvador) | |
| /// </summary> | |
| [Description("Spanish (El Salvador)")] | |
| es_SV = 1395487589, | |
| /// <summary> | |
| /// Spanish (United States) | |
| /// </summary> | |
| [Description("Spanish (United States)")] | |
| es_US = 1429042021, | |
| /// <summary> | |
| /// Spanish (Uruguay) | |
| /// </summary> | |
| [Description("Spanish (Uruguay)")] | |
| es_UY = 1429042021, | |
| /// <summary> | |
| /// Spanish (Venezuela) | |
| /// </summary> | |
| [Description("Spanish (Venezuela)")] | |
| es_VE = 1445819237, | |
| /// <summary> | |
| /// Estonian | |
| /// </summary> | |
| [Description("Estonian")] | |
| et = 29797, | |
| /// <summary> | |
| /// Estonian (Estonia) | |
| /// </summary> | |
| [Description("Estonian (Estonia)")] | |
| et_EE = 1160606821, | |
| /// <summary> | |
| /// Basque | |
| /// </summary> | |
| [Description("Basque")] | |
| eu = 30053, | |
| /// <summary> | |
| /// Basque (Basque) | |
| /// </summary> | |
| [Description("Basque (Basque)")] | |
| eu_ES = 1160607077, | |
| /// <summary> | |
| /// Ewondo | |
| /// </summary> | |
| [Description("Ewondo")] | |
| ewo = 7305061, | |
| /// <summary> | |
| /// Ewondo (Cameroon) | |
| /// </summary> | |
| [Description("Ewondo (Cameroon)")] | |
| ewo_CM = 762279781, | |
| /// <summary> | |
| /// Persian | |
| /// </summary> | |
| [Description("Persian")] | |
| fa = 24934, | |
| /// <summary> | |
| /// Persian (Iran) | |
| /// </summary> | |
| [Description("Persian (Iran)")] | |
| fa_IR = 1227710822, | |
| /// <summary> | |
| /// Fulah (Latin) | |
| /// </summary> | |
| [Description("Fulah (Latin)")] | |
| ff = 26214, | |
| /// <summary> | |
| /// Fulah (Latin) | |
| /// </summary> | |
| [Description("Fulah (Latin)")] | |
| ff_Latn = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Burkina Faso) | |
| /// </summary> | |
| [Description("Fulah (Latin, Burkina Faso)")] | |
| ff_Latn_BF = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Cameroon) | |
| /// </summary> | |
| [Description("Fulah (Latin, Cameroon)")] | |
| ff_Latn_CM = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Ghana) | |
| /// </summary> | |
| [Description("Fulah (Latin, Ghana)")] | |
| ff_Latn_GH = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Gambia) | |
| /// </summary> | |
| [Description("Fulah (Latin, Gambia)")] | |
| ff_Latn_GM = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Guinea) | |
| /// </summary> | |
| [Description("Fulah (Latin, Guinea)")] | |
| ff_Latn_GN = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Guinea-Bissau) | |
| /// </summary> | |
| [Description("Fulah (Latin, Guinea-Bissau)")] | |
| ff_Latn_GW = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Liberia) | |
| /// </summary> | |
| [Description("Fulah (Latin, Liberia)")] | |
| ff_Latn_LR = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Mauritania) | |
| /// </summary> | |
| [Description("Fulah (Latin, Mauritania)")] | |
| ff_Latn_MR = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Niger) | |
| /// </summary> | |
| [Description("Fulah (Latin, Niger)")] | |
| ff_Latn_NE = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Nigeria) | |
| /// </summary> | |
| [Description("Fulah (Latin, Nigeria)")] | |
| ff_Latn_NG = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Sierra Leone) | |
| /// </summary> | |
| [Description("Fulah (Latin, Sierra Leone)")] | |
| ff_Latn_SL = 1278043750, | |
| /// <summary> | |
| /// Fulah (Latin, Senegal) | |
| /// </summary> | |
| [Description("Fulah (Latin, Senegal)")] | |
| ff_Latn_SN = 1278043750, | |
| /// <summary> | |
| /// Finnish | |
| /// </summary> | |
| [Description("Finnish")] | |
| fi = 26982, | |
| /// <summary> | |
| /// Finnish (Finland) | |
| /// </summary> | |
| [Description("Finnish (Finland)")] | |
| fi_FI = 1177381222, | |
| /// <summary> | |
| /// Filipino | |
| /// </summary> | |
| [Description("Filipino")] | |
| fil = 7104870, | |
| /// <summary> | |
| /// Filipino (Philippines) | |
| /// </summary> | |
| [Description("Filipino (Philippines)")] | |
| fil_PH = 762079590, | |
| /// <summary> | |
| /// Faroese | |
| /// </summary> | |
| [Description("Faroese")] | |
| fo = 28518, | |
| /// <summary> | |
| /// Faroese (Denmark) | |
| /// </summary> | |
| [Description("Faroese (Denmark)")] | |
| fo_DK = 1143828326, | |
| /// <summary> | |
| /// Faroese (Faroe Islands) | |
| /// </summary> | |
| [Description("Faroese (Faroe Islands)")] | |
| fo_FO = 1177382758, | |
| /// <summary> | |
| /// French | |
| /// </summary> | |
| [Description("French")] | |
| fr = 29286, | |
| /// <summary> | |
| /// French (Caribbean) | |
| /// </summary> | |
| [Description("French (Caribbean)")] | |
| fr_029 = 808284774, | |
| /// <summary> | |
| /// French (Belgium) | |
| /// </summary> | |
| [Description("French (Belgium)")] | |
| fr_BE = 1110274662, | |
| /// <summary> | |
| /// French (Burkina Faso) | |
| /// </summary> | |
| [Description("French (Burkina Faso)")] | |
| fr_BF = 1110274662, | |
| /// <summary> | |
| /// French (Burundi) | |
| /// </summary> | |
| [Description("French (Burundi)")] | |
| fr_BI = 1110274662, | |
| /// <summary> | |
| /// French (Benin) | |
| /// </summary> | |
| [Description("French (Benin)")] | |
| fr_BJ = 1110274662, | |
| /// <summary> | |
| /// French (St. Barthélemy) | |
| /// </summary> | |
| [Description("French (St. Barthélemy)")] | |
| fr_BL = 1110274662, | |
| /// <summary> | |
| /// French (Canada) | |
| /// </summary> | |
| [Description("French (Canada)")] | |
| fr_CA = 1127051878, | |
| /// <summary> | |
| /// French Congo (DRC) | |
| /// </summary> | |
| [Description("French Congo (DRC)")] | |
| fr_CD = 1127051878, | |
| /// <summary> | |
| /// French (Central African Republic) | |
| /// </summary> | |
| [Description("French (Central African Republic)")] | |
| fr_CF = 1127051878, | |
| /// <summary> | |
| /// French (Congo) | |
| /// </summary> | |
| [Description("French (Congo)")] | |
| fr_CG = 1127051878, | |
| /// <summary> | |
| /// French (Switzerland) | |
| /// </summary> | |
| [Description("French (Switzerland)")] | |
| fr_CH = 1127051878, | |
| /// <summary> | |
| /// French (Côte d’Ivoire) | |
| /// </summary> | |
| [Description("French (Côte d’Ivoire)")] | |
| fr_CI = 1127051878, | |
| /// <summary> | |
| /// French (Cameroon) | |
| /// </summary> | |
| [Description("French (Cameroon)")] | |
| fr_CM = 1127051878, | |
| /// <summary> | |
| /// French (Djibouti) | |
| /// </summary> | |
| [Description("French (Djibouti)")] | |
| fr_DJ = 1143829094, | |
| /// <summary> | |
| /// French (Algeria) | |
| /// </summary> | |
| [Description("French (Algeria)")] | |
| fr_DZ = 1143829094, | |
| /// <summary> | |
| /// French (France) | |
| /// </summary> | |
| [Description("French (France)")] | |
| fr_FR = 1177383526, | |
| /// <summary> | |
| /// French (Gabon) | |
| /// </summary> | |
| [Description("French (Gabon)")] | |
| fr_GA = 1194160742, | |
| /// <summary> | |
| /// French (French Guiana) | |
| /// </summary> | |
| [Description("French (French Guiana)")] | |
| fr_GF = 1194160742, | |
| /// <summary> | |
| /// French (Guinea) | |
| /// </summary> | |
| [Description("French (Guinea)")] | |
| fr_GN = 1194160742, | |
| /// <summary> | |
| /// French (Guadeloupe) | |
| /// </summary> | |
| [Description("French (Guadeloupe)")] | |
| fr_GP = 1194160742, | |
| /// <summary> | |
| /// French (Equatorial Guinea) | |
| /// </summary> | |
| [Description("French (Equatorial Guinea)")] | |
| fr_GQ = 1194160742, | |
| /// <summary> | |
| /// French (Haiti) | |
| /// </summary> | |
| [Description("French (Haiti)")] | |
| fr_HT = 1210937958, | |
| /// <summary> | |
| /// French (Comoros) | |
| /// </summary> | |
| [Description("French (Comoros)")] | |
| fr_KM = 1261269606, | |
| /// <summary> | |
| /// French (Luxembourg) | |
| /// </summary> | |
| [Description("French (Luxembourg)")] | |
| fr_LU = 1278046822, | |
| /// <summary> | |
| /// French (Morocco) | |
| /// </summary> | |
| [Description("French (Morocco)")] | |
| fr_MA = 1294824038, | |
| /// <summary> | |
| /// French (Monaco) | |
| /// </summary> | |
| [Description("French (Monaco)")] | |
| fr_MC = 1294824038, | |
| /// <summary> | |
| /// French (St. Martin) | |
| /// </summary> | |
| [Description("French (St. Martin)")] | |
| fr_MF = 1294824038, | |
| /// <summary> | |
| /// French (Madagascar) | |
| /// </summary> | |
| [Description("French (Madagascar)")] | |
| fr_MG = 1294824038, | |
| /// <summary> | |
| /// French (Mali) | |
| /// </summary> | |
| [Description("French (Mali)")] | |
| fr_ML = 1294824038, | |
| /// <summary> | |
| /// French (Martinique) | |
| /// </summary> | |
| [Description("French (Martinique)")] | |
| fr_MQ = 1294824038, | |
| /// <summary> | |
| /// French (Mauritania) | |
| /// </summary> | |
| [Description("French (Mauritania)")] | |
| fr_MR = 1294824038, | |
| /// <summary> | |
| /// French (Mauritius) | |
| /// </summary> | |
| [Description("French (Mauritius)")] | |
| fr_MU = 1294824038, | |
| /// <summary> | |
| /// French (New Caledonia) | |
| /// </summary> | |
| [Description("French (New Caledonia)")] | |
| fr_NC = 1311601254, | |
| /// <summary> | |
| /// French (Niger) | |
| /// </summary> | |
| [Description("French (Niger)")] | |
| fr_NE = 1311601254, | |
| /// <summary> | |
| /// French (French Polynesia) | |
| /// </summary> | |
| [Description("French (French Polynesia)")] | |
| fr_PF = 1345155686, | |
| /// <summary> | |
| /// French (St. Pierre & Miquelon) | |
| /// </summary> | |
| [Description("French (St. Pierre & Miquelon)")] | |
| fr_PM = 1345155686, | |
| /// <summary> | |
| /// French (Réunion) | |
| /// </summary> | |
| [Description("French (Réunion)")] | |
| fr_RE = 1378710118, | |
| /// <summary> | |
| /// French (Rwanda) | |
| /// </summary> | |
| [Description("French (Rwanda)")] | |
| fr_RW = 1378710118, | |
| /// <summary> | |
| /// French (Seychelles) | |
| /// </summary> | |
| [Description("French (Seychelles)")] | |
| fr_SC = 1395487334, | |
| /// <summary> | |
| /// French (Senegal) | |
| /// </summary> | |
| [Description("French (Senegal)")] | |
| fr_SN = 1395487334, | |
| /// <summary> | |
| /// French (Syria) | |
| /// </summary> | |
| [Description("French (Syria)")] | |
| fr_SY = 1395487334, | |
| /// <summary> | |
| /// French (Chad) | |
| /// </summary> | |
| [Description("French (Chad)")] | |
| fr_TD = 1412264550, | |
| /// <summary> | |
| /// French (Togo) | |
| /// </summary> | |
| [Description("French (Togo)")] | |
| fr_TG = 1412264550, | |
| /// <summary> | |
| /// French (Tunisia) | |
| /// </summary> | |
| [Description("French (Tunisia)")] | |
| fr_TN = 1412264550, | |
| /// <summary> | |
| /// French (Vanuatu) | |
| /// </summary> | |
| [Description("French (Vanuatu)")] | |
| fr_VU = 1445818982, | |
| /// <summary> | |
| /// French (Wallis & Futuna) | |
| /// </summary> | |
| [Description("French (Wallis & Futuna)")] | |
| fr_WF = 1462596198, | |
| /// <summary> | |
| /// French (Mayotte) | |
| /// </summary> | |
| [Description("French (Mayotte)")] | |
| fr_YT = 1496150630, | |
| /// <summary> | |
| /// Friulian | |
| /// </summary> | |
| [Description("Friulian")] | |
| fur = 7501158, | |
| /// <summary> | |
| /// Friulian (Italy) | |
| /// </summary> | |
| [Description("Friulian (Italy)")] | |
| fur_IT = 762475878, | |
| /// <summary> | |
| /// Western Frisian | |
| /// </summary> | |
| [Description("Western Frisian")] | |
| fy = 31078, | |
| /// <summary> | |
| /// Western Frisian (Netherlands) | |
| /// </summary> | |
| [Description("Western Frisian (Netherlands)")] | |
| fy_NL = 1311603046, | |
| /// <summary> | |
| /// Irish | |
| /// </summary> | |
| [Description("Irish")] | |
| ga = 24935, | |
| /// <summary> | |
| /// Irish (Ireland) | |
| /// </summary> | |
| [Description("Irish (Ireland)")] | |
| ga_IE = 1227710823, | |
| /// <summary> | |
| /// Scottish Gaelic | |
| /// </summary> | |
| [Description("Scottish Gaelic")] | |
| gd = 25703, | |
| /// <summary> | |
| /// Scottish Gaelic (United Kingdom) | |
| /// </summary> | |
| [Description("Scottish Gaelic (United Kingdom)")] | |
| gd_GB = 1194157159, | |
| /// <summary> | |
| /// Galician | |
| /// </summary> | |
| [Description("Galician")] | |
| gl = 27751, | |
| /// <summary> | |
| /// Galician (Galician) | |
| /// </summary> | |
| [Description("Galician (Galician)")] | |
| gl_ES = 1160604775, | |
| /// <summary> | |
| /// Guarani | |
| /// </summary> | |
| [Description("Guarani")] | |
| gn = 28263, | |
| /// <summary> | |
| /// Guarani (Paraguay) | |
| /// </summary> | |
| [Description("Guarani (Paraguay)")] | |
| gn_PY = 1345154663, | |
| /// <summary> | |
| /// Swiss German | |
| /// </summary> | |
| [Description("Swiss German")] | |
| gsw = 7828327, | |
| /// <summary> | |
| /// Swiss German (Switzerland) | |
| /// </summary> | |
| [Description("Swiss German (Switzerland)")] | |
| gsw_CH = 762803047, | |
| /// <summary> | |
| /// Alsatian (France) | |
| /// </summary> | |
| [Description("Alsatian (France)")] | |
| gsw_FR = 762803047, | |
| /// <summary> | |
| /// Swiss German (Liechtenstein) | |
| /// </summary> | |
| [Description("Swiss German (Liechtenstein)")] | |
| gsw_LI = 762803047, | |
| /// <summary> | |
| /// Gujarati | |
| /// </summary> | |
| [Description("Gujarati")] | |
| gu = 30055, | |
| /// <summary> | |
| /// Gujarati (India) | |
| /// </summary> | |
| [Description("Gujarati (India)")] | |
| gu_IN = 1227715943, | |
| /// <summary> | |
| /// Gusii | |
| /// </summary> | |
| [Description("Gusii")] | |
| guz = 8025447, | |
| /// <summary> | |
| /// Gusii (Kenya) | |
| /// </summary> | |
| [Description("Gusii (Kenya)")] | |
| guz_KE = 763000167, | |
| /// <summary> | |
| /// Manx | |
| /// </summary> | |
| [Description("Manx")] | |
| gv = 30311, | |
| /// <summary> | |
| /// Manx (Isle of Man) | |
| /// </summary> | |
| [Description("Manx (Isle of Man)")] | |
| gv_IM = 1227716199, | |
| /// <summary> | |
| /// Hausa | |
| /// </summary> | |
| [Description("Hausa")] | |
| ha = 24936, | |
| /// <summary> | |
| /// Hausa (Latin) | |
| /// </summary> | |
| [Description("Hausa (Latin)")] | |
| ha_Latn = 1278042472, | |
| /// <summary> | |
| /// Hausa (Latin, Ghana) | |
| /// </summary> | |
| [Description("Hausa (Latin, Ghana)")] | |
| ha_Latn_GH = 1278042472, | |
| /// <summary> | |
| /// Hausa (Latin, Niger) | |
| /// </summary> | |
| [Description("Hausa (Latin, Niger)")] | |
| ha_Latn_NE = 1278042472, | |
| /// <summary> | |
| /// Hausa (Latin, Nigeria) | |
| /// </summary> | |
| [Description("Hausa (Latin, Nigeria)")] | |
| ha_Latn_NG = 1278042472, | |
| /// <summary> | |
| /// Hawaiian | |
| /// </summary> | |
| [Description("Hawaiian")] | |
| haw = 7823720, | |
| /// <summary> | |
| /// Hawaiian (United States) | |
| /// </summary> | |
| [Description("Hawaiian (United States)")] | |
| haw_US = 762798440, | |
| /// <summary> | |
| /// Hebrew | |
| /// </summary> | |
| [Description("Hebrew")] | |
| he = 25960, | |
| /// <summary> | |
| /// Hebrew (Israel) | |
| /// </summary> | |
| [Description("Hebrew (Israel)")] | |
| he_IL = 1227711848, | |
| /// <summary> | |
| /// Hindi | |
| /// </summary> | |
| [Description("Hindi")] | |
| hi = 26984, | |
| /// <summary> | |
| /// Hindi (India) | |
| /// </summary> | |
| [Description("Hindi (India)")] | |
| hi_IN = 1227712872, | |
| /// <summary> | |
| /// Croatian | |
| /// </summary> | |
| [Description("Croatian")] | |
| hr = 29288, | |
| /// <summary> | |
| /// Croatian (Bosnia & Herzegovina) | |
| /// </summary> | |
| [Description("Croatian (Bosnia & Herzegovina)")] | |
| hr_BA = 1110274664, | |
| /// <summary> | |
| /// Croatian (Croatia) | |
| /// </summary> | |
| [Description("Croatian (Croatia)")] | |
| hr_HR = 1210937960, | |
| /// <summary> | |
| /// Upper Sorbian | |
| /// </summary> | |
| [Description("Upper Sorbian")] | |
| hsb = 6452072, | |
| /// <summary> | |
| /// Upper Sorbian (Germany) | |
| /// </summary> | |
| [Description("Upper Sorbian (Germany)")] | |
| hsb_DE = 761426792, | |
| /// <summary> | |
| /// Hungarian | |
| /// </summary> | |
| [Description("Hungarian")] | |
| hu = 30056, | |
| /// <summary> | |
| /// Hungarian (Hungary) | |
| /// </summary> | |
| [Description("Hungarian (Hungary)")] | |
| hu_HU = 1210938728, | |
| /// <summary> | |
| /// Armenian | |
| /// </summary> | |
| [Description("Armenian")] | |
| hy = 31080, | |
| /// <summary> | |
| /// Armenian (Armenia) | |
| /// </summary> | |
| [Description("Armenian (Armenia)")] | |
| hy_AM = 1093499240, | |
| /// <summary> | |
| /// Interlingua | |
| /// </summary> | |
| [Description("Interlingua")] | |
| ia = 24937, | |
| /// <summary> | |
| /// Interlingua (World) | |
| /// </summary> | |
| [Description("Interlingua (World)")] | |
| ia_IA = 808280425, | |
| /// <summary> | |
| /// Ibibio | |
| /// </summary> | |
| [Description("Ibibio")] | |
| ibb = 6447721, | |
| /// <summary> | |
| /// Ibibio (Nigeria) | |
| /// </summary> | |
| [Description("Ibibio (Nigeria)")] | |
| ibb_NG = 761422441, | |
| /// <summary> | |
| /// Indonesian | |
| /// </summary> | |
| [Description("Indonesian")] | |
| id = 25705, | |
| /// <summary> | |
| /// Indonesian (Indonesia) | |
| /// </summary> | |
| [Description("Indonesian (Indonesia)")] | |
| id_ID = 1227711593, | |
| /// <summary> | |
| /// Igbo | |
| /// </summary> | |
| [Description("Igbo")] | |
| ig = 26473, | |
| /// <summary> | |
| /// Igbo (Nigeria) | |
| /// </summary> | |
| [Description("Igbo (Nigeria)")] | |
| ig_NG = 1311598441, | |
| /// <summary> | |
| /// Yi | |
| /// </summary> | |
| [Description("Yi")] | |
| ii = 26985, | |
| /// <summary> | |
| /// Yi (China) | |
| /// </summary> | |
| [Description("Yi (China)")] | |
| ii_CN = 1127049577, | |
| /// <summary> | |
| /// Icelandic | |
| /// </summary> | |
| [Description("Icelandic")] | |
| IS = 21321, | |
| /// <summary> | |
| /// Icelandic (Iceland) | |
| /// </summary> | |
| [Description("Icelandic (Iceland)")] | |
| is_IS = 1227715433, | |
| /// <summary> | |
| /// Italian | |
| /// </summary> | |
| [Description("Italian")] | |
| it = 29801, | |
| /// <summary> | |
| /// Italian (Switzerland) | |
| /// </summary> | |
| [Description("Italian (Switzerland)")] | |
| it_CH = 1127052393, | |
| /// <summary> | |
| /// Italian (Italy) | |
| /// </summary> | |
| [Description("Italian (Italy)")] | |
| it_IT = 1227715689, | |
| /// <summary> | |
| /// Italian (San Marino) | |
| /// </summary> | |
| [Description("Italian (San Marino)")] | |
| it_SM = 1395487849, | |
| /// <summary> | |
| /// Italian (Vatican City) | |
| /// </summary> | |
| [Description("Italian (Vatican City)")] | |
| it_VA = 1445819497, | |
| /// <summary> | |
| /// Inuktitut | |
| /// </summary> | |
| [Description("Inuktitut")] | |
| iu = 30057, | |
| /// <summary> | |
| /// Inuktitut (Syllabics) | |
| /// </summary> | |
| [Description("Inuktitut (Syllabics)")] | |
| iu_Cans = 1127052649, | |
| /// <summary> | |
| /// Inuktitut (Syllabics, Canada) | |
| /// </summary> | |
| [Description("Inuktitut (Syllabics, Canada)")] | |
| iu_Cans_CA = 1127052649, | |
| /// <summary> | |
| /// Inuktitut (Latin) | |
| /// </summary> | |
| [Description("Inuktitut (Latin)")] | |
| iu_Latn = 1278047593, | |
| /// <summary> | |
| /// Inuktitut (Latin, Canada) | |
| /// </summary> | |
| [Description("Inuktitut (Latin, Canada)")] | |
| iu_Latn_CA = 1278047593, | |
| /// <summary> | |
| /// Japanese | |
| /// </summary> | |
| [Description("Japanese")] | |
| ja = 24938, | |
| /// <summary> | |
| /// Japanese (Japan) | |
| /// </summary> | |
| [Description("Japanese (Japan)")] | |
| ja_JP = 1244488042, | |
| /// <summary> | |
| /// Ngomba | |
| /// </summary> | |
| [Description("Ngomba")] | |
| jgo = 7300970, | |
| /// <summary> | |
| /// Ngomba (Cameroon) | |
| /// </summary> | |
| [Description("Ngomba (Cameroon)")] | |
| jgo_CM = 762275690, | |
| /// <summary> | |
| /// Machame | |
| /// </summary> | |
| [Description("Machame")] | |
| jmc = 6516074, | |
| /// <summary> | |
| /// Machame (Tanzania) | |
| /// </summary> | |
| [Description("Machame (Tanzania)")] | |
| jmc_TZ = 761490794, | |
| /// <summary> | |
| /// Javanese | |
| /// </summary> | |
| [Description("Javanese")] | |
| jv = 30314, | |
| /// <summary> | |
| /// Javanese (Javanese) | |
| /// </summary> | |
| [Description("Javanese (Javanese)")] | |
| jv_Java = 1244493418, | |
| /// <summary> | |
| /// Javanese (Javanese, Indonesia) | |
| /// </summary> | |
| [Description("Javanese (Javanese, Indonesia)")] | |
| jv_Java_ID = 1244493418, | |
| /// <summary> | |
| /// Javanese | |
| /// </summary> | |
| [Description("Javanese")] | |
| jv_Latn = 1278047850, | |
| /// <summary> | |
| /// Javanese (Indonesia) | |
| /// </summary> | |
| [Description("Javanese (Indonesia)")] | |
| jv_Latn_ID = 1278047850, | |
| /// <summary> | |
| /// Georgian | |
| /// </summary> | |
| [Description("Georgian")] | |
| ka = 24939, | |
| /// <summary> | |
| /// Georgian (Georgia) | |
| /// </summary> | |
| [Description("Georgian (Georgia)")] | |
| ka_GE = 1194156395, | |
| /// <summary> | |
| /// Kabyle | |
| /// </summary> | |
| [Description("Kabyle")] | |
| kab = 6447467, | |
| /// <summary> | |
| /// Kabyle (Algeria) | |
| /// </summary> | |
| [Description("Kabyle (Algeria)")] | |
| kab_DZ = 761422187, | |
| /// <summary> | |
| /// Kamba | |
| /// </summary> | |
| [Description("Kamba")] | |
| kam = 7168363, | |
| /// <summary> | |
| /// Kamba (Kenya) | |
| /// </summary> | |
| [Description("Kamba (Kenya)")] | |
| kam_KE = 762143083, | |
| /// <summary> | |
| /// Makonde | |
| /// </summary> | |
| [Description("Makonde")] | |
| kde = 6644843, | |
| /// <summary> | |
| /// Makonde (Tanzania) | |
| /// </summary> | |
| [Description("Makonde (Tanzania)")] | |
| kde_TZ = 761619563, | |
| /// <summary> | |
| /// Kabuverdianu | |
| /// </summary> | |
| [Description("Kabuverdianu")] | |
| kea = 6382955, | |
| /// <summary> | |
| /// Kabuverdianu (Cabo Verde) | |
| /// </summary> | |
| [Description("Kabuverdianu (Cabo Verde)")] | |
| kea_CV = 761357675, | |
| /// <summary> | |
| /// Koyra Chiini | |
| /// </summary> | |
| [Description("Koyra Chiini")] | |
| khq = 7432299, | |
| /// <summary> | |
| /// Koyra Chiini (Mali) | |
| /// </summary> | |
| [Description("Koyra Chiini (Mali)")] | |
| khq_ML = 762407019, | |
| /// <summary> | |
| /// Kikuyu | |
| /// </summary> | |
| [Description("Kikuyu")] | |
| ki = 26987, | |
| /// <summary> | |
| /// Kikuyu (Kenya) | |
| /// </summary> | |
| [Description("Kikuyu (Kenya)")] | |
| ki_KE = 1261267307, | |
| /// <summary> | |
| /// Kazakh | |
| /// </summary> | |
| [Description("Kazakh")] | |
| kk = 27499, | |
| /// <summary> | |
| /// Kazakh (Kazakhstan) | |
| /// </summary> | |
| [Description("Kazakh (Kazakhstan)")] | |
| kk_KZ = 1261267819, | |
| /// <summary> | |
| /// Kako | |
| /// </summary> | |
| [Description("Kako")] | |
| kkj = 6974315, | |
| /// <summary> | |
| /// Kako (Cameroon) | |
| /// </summary> | |
| [Description("Kako (Cameroon)")] | |
| kkj_CM = 761949035, | |
| /// <summary> | |
| /// Kalaallisut | |
| /// </summary> | |
| [Description("Kalaallisut")] | |
| kl = 27755, | |
| /// <summary> | |
| /// Kalaallisut (Greenland) | |
| /// </summary> | |
| [Description("Kalaallisut (Greenland)")] | |
| kl_GL = 1194159211, | |
| /// <summary> | |
| /// Kalenjin | |
| /// </summary> | |
| [Description("Kalenjin")] | |
| kln = 7236715, | |
| /// <summary> | |
| /// Kalenjin (Kenya) | |
| /// </summary> | |
| [Description("Kalenjin (Kenya)")] | |
| kln_KE = 762211435, | |
| /// <summary> | |
| /// Khmer | |
| /// </summary> | |
| [Description("Khmer")] | |
| km = 28011, | |
| /// <summary> | |
| /// Khmer (Cambodia) | |
| /// </summary> | |
| [Description("Khmer (Cambodia)")] | |
| km_KH = 1261268331, | |
| /// <summary> | |
| /// Kannada | |
| /// </summary> | |
| [Description("Kannada")] | |
| kn = 28267, | |
| /// <summary> | |
| /// Kannada (India) | |
| /// </summary> | |
| [Description("Kannada (India)")] | |
| kn_IN = 1227714155, | |
| /// <summary> | |
| /// Korean | |
| /// </summary> | |
| [Description("Korean")] | |
| ko = 28523, | |
| /// <summary> | |
| /// Korean (North Korea) | |
| /// </summary> | |
| [Description("Korean (North Korea)")] | |
| ko_KP = 1261268843, | |
| /// <summary> | |
| /// Korean (Korea) | |
| /// </summary> | |
| [Description("Korean (Korea)")] | |
| ko_KR = 1261268843, | |
| /// <summary> | |
| /// Konkani | |
| /// </summary> | |
| [Description("Konkani")] | |
| kok = 7040875, | |
| /// <summary> | |
| /// Konkani (India) | |
| /// </summary> | |
| [Description("Konkani (India)")] | |
| kok_IN = 762015595, | |
| /// <summary> | |
| /// Kanuri | |
| /// </summary> | |
| [Description("Kanuri")] | |
| kr = 29291, | |
| /// <summary> | |
| /// Kanuri | |
| /// </summary> | |
| [Description("Kanuri")] | |
| kr_Latn = 1278046827, | |
| /// <summary> | |
| /// Kanuri (Nigeria) | |
| /// </summary> | |
| [Description("Kanuri (Nigeria)")] | |
| kr_Latn_NG = 1278046827, | |
| /// <summary> | |
| /// Kashmiri | |
| /// </summary> | |
| [Description("Kashmiri")] | |
| ks = 29547, | |
| /// <summary> | |
| /// Kashmiri (Perso-Arabic) | |
| /// </summary> | |
| [Description("Kashmiri (Perso-Arabic)")] | |
| ks_Arab = 1093497707, | |
| /// <summary> | |
| /// Kashmiri (Perso-Arabic) | |
| /// </summary> | |
| [Description("Kashmiri (Perso-Arabic)")] | |
| ks_Arab_IN = 1093497707, | |
| /// <summary> | |
| /// Kashmiri (Devanagari) | |
| /// </summary> | |
| [Description("Kashmiri (Devanagari)")] | |
| ks_Deva = 1143829355, | |
| /// <summary> | |
| /// Kashmiri (Devanagari) | |
| /// </summary> | |
| [Description("Kashmiri (Devanagari)")] | |
| ks_Deva_IN = 1143829355, | |
| /// <summary> | |
| /// Shambala | |
| /// </summary> | |
| [Description("Shambala")] | |
| ksb = 6452075, | |
| /// <summary> | |
| /// Shambala (Tanzania) | |
| /// </summary> | |
| [Description("Shambala (Tanzania)")] | |
| ksb_TZ = 761426795, | |
| /// <summary> | |
| /// Bafia | |
| /// </summary> | |
| [Description("Bafia")] | |
| ksf = 6714219, | |
| /// <summary> | |
| /// Bafia (Cameroon) | |
| /// </summary> | |
| [Description("Bafia (Cameroon)")] | |
| ksf_CM = 761688939, | |
| /// <summary> | |
| /// Colognian | |
| /// </summary> | |
| [Description("Colognian")] | |
| ksh = 6845291, | |
| /// <summary> | |
| /// Colognian (Germany) | |
| /// </summary> | |
| [Description("Colognian (Germany)")] | |
| ksh_DE = 761820011, | |
| /// <summary> | |
| /// Central Kurdish | |
| /// </summary> | |
| [Description("Central Kurdish")] | |
| ku = 30059, | |
| /// <summary> | |
| /// Central Kurdish | |
| /// </summary> | |
| [Description("Central Kurdish")] | |
| ku_Arab = 1093498219, | |
| /// <summary> | |
| /// Central Kurdish (Iraq) | |
| /// </summary> | |
| [Description("Central Kurdish (Iraq)")] | |
| ku_Arab_IQ = 1093498219, | |
| /// <summary> | |
| /// Kurdish (Perso-Arabic, Iran) | |
| /// </summary> | |
| [Description("Kurdish (Perso-Arabic, Iran)")] | |
| ku_Arab_IR = 1093498219, | |
| /// <summary> | |
| /// Cornish | |
| /// </summary> | |
| [Description("Cornish")] | |
| kw = 30571, | |
| /// <summary> | |
| /// Cornish (United Kingdom) | |
| /// </summary> | |
| [Description("Cornish (United Kingdom)")] | |
| kw_GB = 1194162027, | |
| /// <summary> | |
| /// Kyrgyz | |
| /// </summary> | |
| [Description("Kyrgyz")] | |
| ky = 31083, | |
| /// <summary> | |
| /// Kyrgyz (Kyrgyzstan) | |
| /// </summary> | |
| [Description("Kyrgyz (Kyrgyzstan)")] | |
| ky_KG = 1261271403, | |
| /// <summary> | |
| /// Latin | |
| /// </summary> | |
| [Description("Latin")] | |
| la = 24940, | |
| /// <summary> | |
| /// Latin (World) | |
| /// </summary> | |
| [Description("Latin (World)")] | |
| la_LA = 808280428, | |
| /// <summary> | |
| /// Langi | |
| /// </summary> | |
| [Description("Langi")] | |
| lag = 6775148, | |
| /// <summary> | |
| /// Langi (Tanzania) | |
| /// </summary> | |
| [Description("Langi (Tanzania)")] | |
| lag_TZ = 761749868, | |
| /// <summary> | |
| /// Luxembourgish | |
| /// </summary> | |
| [Description("Luxembourgish")] | |
| lb = 25196, | |
| /// <summary> | |
| /// Luxembourgish (Luxembourg) | |
| /// </summary> | |
| [Description("Luxembourgish (Luxembourg)")] | |
| lb_LU = 1278042732, | |
| /// <summary> | |
| /// Ganda | |
| /// </summary> | |
| [Description("Ganda")] | |
| lg = 26476, | |
| /// <summary> | |
| /// Ganda (Uganda) | |
| /// </summary> | |
| [Description("Ganda (Uganda)")] | |
| lg_UG = 1429038956, | |
| /// <summary> | |
| /// Lakota | |
| /// </summary> | |
| [Description("Lakota")] | |
| lkt = 7629676, | |
| /// <summary> | |
| /// Lakota (United States) | |
| /// </summary> | |
| [Description("Lakota (United States)")] | |
| lkt_US = 762604396, | |
| /// <summary> | |
| /// Lingala | |
| /// </summary> | |
| [Description("Lingala")] | |
| ln = 28268, | |
| /// <summary> | |
| /// Lingala (Angola) | |
| /// </summary> | |
| [Description("Lingala (Angola)")] | |
| ln_AO = 1093496428, | |
| /// <summary> | |
| /// Lingala (Congo DRC) | |
| /// </summary> | |
| [Description("Lingala (Congo DRC)")] | |
| ln_CD = 1127050860, | |
| /// <summary> | |
| /// Lingala (Central African Republic) | |
| /// </summary> | |
| [Description("Lingala (Central African Republic)")] | |
| ln_CF = 1127050860, | |
| /// <summary> | |
| /// Lingala (Congo) | |
| /// </summary> | |
| [Description("Lingala (Congo)")] | |
| ln_CG = 1127050860, | |
| /// <summary> | |
| /// Lao | |
| /// </summary> | |
| [Description("Lao")] | |
| lo = 28524, | |
| /// <summary> | |
| /// Lao (Laos) | |
| /// </summary> | |
| [Description("Lao (Laos)")] | |
| lo_LA = 1278046060, | |
| /// <summary> | |
| /// Northern Luri | |
| /// </summary> | |
| [Description("Northern Luri")] | |
| lrc = 6517356, | |
| /// <summary> | |
| /// Northern Luri (Iraq) | |
| /// </summary> | |
| [Description("Northern Luri (Iraq)")] | |
| lrc_IQ = 761492076, | |
| /// <summary> | |
| /// Northern Luri (Iran) | |
| /// </summary> | |
| [Description("Northern Luri (Iran)")] | |
| lrc_IR = 761492076, | |
| /// <summary> | |
| /// Lithuanian | |
| /// </summary> | |
| [Description("Lithuanian")] | |
| lt = 29804, | |
| /// <summary> | |
| /// Lithuanian (Lithuania) | |
| /// </summary> | |
| [Description("Lithuanian (Lithuania)")] | |
| lt_LT = 1278047340, | |
| /// <summary> | |
| /// Luba-Katanga | |
| /// </summary> | |
| [Description("Luba-Katanga")] | |
| lu = 30060, | |
| /// <summary> | |
| /// Luba-Katanga (Congo DRC) | |
| /// </summary> | |
| [Description("Luba-Katanga (Congo DRC)")] | |
| lu_CD = 1127052652, | |
| /// <summary> | |
| /// Luo | |
| /// </summary> | |
| [Description("Luo")] | |
| luo = 7304556, | |
| /// <summary> | |
| /// Luo (Kenya) | |
| /// </summary> | |
| [Description("Luo (Kenya)")] | |
| luo_KE = 762279276, | |
| /// <summary> | |
| /// Luyia | |
| /// </summary> | |
| [Description("Luyia")] | |
| luy = 7959916, | |
| /// <summary> | |
| /// Luyia (Kenya) | |
| /// </summary> | |
| [Description("Luyia (Kenya)")] | |
| luy_KE = 762934636, | |
| /// <summary> | |
| /// Latvian | |
| /// </summary> | |
| [Description("Latvian")] | |
| lv = 30316, | |
| /// <summary> | |
| /// Latvian (Latvia) | |
| /// </summary> | |
| [Description("Latvian (Latvia)")] | |
| lv_LV = 1278047852, | |
| /// <summary> | |
| /// Masai | |
| /// </summary> | |
| [Description("Masai")] | |
| mas = 7561581, | |
| /// <summary> | |
| /// Masai (Kenya) | |
| /// </summary> | |
| [Description("Masai (Kenya)")] | |
| mas_KE = 762536301, | |
| /// <summary> | |
| /// Masai (Tanzania) | |
| /// </summary> | |
| [Description("Masai (Tanzania)")] | |
| mas_TZ = 762536301, | |
| /// <summary> | |
| /// Meru | |
| /// </summary> | |
| [Description("Meru")] | |
| mer = 7497069, | |
| /// <summary> | |
| /// Meru (Kenya) | |
| /// </summary> | |
| [Description("Meru (Kenya)")] | |
| mer_KE = 762471789, | |
| /// <summary> | |
| /// Morisyen | |
| /// </summary> | |
| [Description("Morisyen")] | |
| mfe = 6645357, | |
| /// <summary> | |
| /// Morisyen (Mauritius) | |
| /// </summary> | |
| [Description("Morisyen (Mauritius)")] | |
| mfe_MU = 761620077, | |
| /// <summary> | |
| /// Malagasy | |
| /// </summary> | |
| [Description("Malagasy")] | |
| mg = 26477, | |
| /// <summary> | |
| /// Malagasy (Madagascar) | |
| /// </summary> | |
| [Description("Malagasy (Madagascar)")] | |
| mg_MG = 1294821229, | |
| /// <summary> | |
| /// Makhuwa-Meetto | |
| /// </summary> | |
| [Description("Makhuwa-Meetto")] | |
| mgh = 6842221, | |
| /// <summary> | |
| /// Makhuwa-Meetto (Mozambique) | |
| /// </summary> | |
| [Description("Makhuwa-Meetto (Mozambique)")] | |
| mgh_MZ = 761816941, | |
| /// <summary> | |
| /// Metaʼ | |
| /// </summary> | |
| [Description("Metaʼ")] | |
| mgo = 7300973, | |
| /// <summary> | |
| /// Metaʼ (Cameroon) | |
| /// </summary> | |
| [Description("Metaʼ (Cameroon)")] | |
| mgo_CM = 762275693, | |
| /// <summary> | |
| /// Maori | |
| /// </summary> | |
| [Description("Maori")] | |
| mi = 26989, | |
| /// <summary> | |
| /// Maori (New Zealand) | |
| /// </summary> | |
| [Description("Maori (New Zealand)")] | |
| mi_NZ = 1311598957, | |
| /// <summary> | |
| /// Macedonian | |
| /// </summary> | |
| [Description("Macedonian")] | |
| mk = 27501, | |
| /// <summary> | |
| /// Macedonian (North Macedonia) | |
| /// </summary> | |
| [Description("Macedonian (North Macedonia)")] | |
| mk_MK = 1294822253, | |
| /// <summary> | |
| /// Malayalam | |
| /// </summary> | |
| [Description("Malayalam")] | |
| ml = 27757, | |
| /// <summary> | |
| /// Malayalam (India) | |
| /// </summary> | |
| [Description("Malayalam (India)")] | |
| ml_IN = 1227713645, | |
| /// <summary> | |
| /// Mongolian | |
| /// </summary> | |
| [Description("Mongolian")] | |
| mn = 28269, | |
| /// <summary> | |
| /// Mongolian | |
| /// </summary> | |
| [Description("Mongolian")] | |
| mn_Cyrl = 1127050861, | |
| /// <summary> | |
| /// Mongolian (Mongolia) | |
| /// </summary> | |
| [Description("Mongolian (Mongolia)")] | |
| mn_MN = 1294823021, | |
| /// <summary> | |
| /// Mongolian (Traditional Mongolian) | |
| /// </summary> | |
| [Description("Mongolian (Traditional Mongolian)")] | |
| mn_Mong = 1294823021, | |
| /// <summary> | |
| /// Mongolian (Traditional Mongolian, China) | |
| /// </summary> | |
| [Description("Mongolian (Traditional Mongolian, China)")] | |
| mn_Mong_CN = 1294823021, | |
| /// <summary> | |
| /// Mongolian (Traditional Mongolian, Mongolia) | |
| /// </summary> | |
| [Description("Mongolian (Traditional Mongolian, Mongolia)")] | |
| mn_Mong_MN = 1294823021, | |
| /// <summary> | |
| /// Manipuri | |
| /// </summary> | |
| [Description("Manipuri")] | |
| mni = 6909549, | |
| /// <summary> | |
| /// Manipuri (India) | |
| /// </summary> | |
| [Description("Manipuri (India)")] | |
| mni_IN = 761884269, | |
| /// <summary> | |
| /// Mohawk | |
| /// </summary> | |
| [Description("Mohawk")] | |
| moh = 6844269, | |
| /// <summary> | |
| /// Mohawk (Mohawk) | |
| /// </summary> | |
| [Description("Mohawk (Mohawk)")] | |
| moh_CA = 761818989, | |
| /// <summary> | |
| /// Marathi | |
| /// </summary> | |
| [Description("Marathi")] | |
| mr = 29293, | |
| /// <summary> | |
| /// Marathi (India) | |
| /// </summary> | |
| [Description("Marathi (India)")] | |
| mr_IN = 1227715181, | |
| /// <summary> | |
| /// Malay | |
| /// </summary> | |
| [Description("Malay")] | |
| ms = 29549, | |
| /// <summary> | |
| /// Malay (Brunei) | |
| /// </summary> | |
| [Description("Malay (Brunei)")] | |
| ms_BN = 1110274925, | |
| /// <summary> | |
| /// Malay (Malaysia) | |
| /// </summary> | |
| [Description("Malay (Malaysia)")] | |
| ms_MY = 1294824301, | |
| /// <summary> | |
| /// Malay (Singapore) | |
| /// </summary> | |
| [Description("Malay (Singapore)")] | |
| ms_SG = 1395487597, | |
| /// <summary> | |
| /// Maltese | |
| /// </summary> | |
| [Description("Maltese")] | |
| mt = 29805, | |
| /// <summary> | |
| /// Maltese (Malta) | |
| /// </summary> | |
| [Description("Maltese (Malta)")] | |
| mt_MT = 1294824557, | |
| /// <summary> | |
| /// Mundang | |
| /// </summary> | |
| [Description("Mundang")] | |
| mua = 6387053, | |
| /// <summary> | |
| /// Mundang (Cameroon) | |
| /// </summary> | |
| [Description("Mundang (Cameroon)")] | |
| mua_CM = 761361773, | |
| /// <summary> | |
| /// Burmese | |
| /// </summary> | |
| [Description("Burmese")] | |
| my = 31085, | |
| /// <summary> | |
| /// Burmese (Myanmar) | |
| /// </summary> | |
| [Description("Burmese (Myanmar)")] | |
| my_MM = 1294825837, | |
| /// <summary> | |
| /// Mazanderani | |
| /// </summary> | |
| [Description("Mazanderani")] | |
| mzn = 7240301, | |
| /// <summary> | |
| /// Mazanderani (Iran) | |
| /// </summary> | |
| [Description("Mazanderani (Iran)")] | |
| mzn_IR = 762215021, | |
| /// <summary> | |
| /// Nama | |
| /// </summary> | |
| [Description("Nama")] | |
| naq = 7430510, | |
| /// <summary> | |
| /// Nama (Namibia) | |
| /// </summary> | |
| [Description("Nama (Namibia)")] | |
| naq_NA = 762405230, | |
| /// <summary> | |
| /// Norwegian Bokmål | |
| /// </summary> | |
| [Description("Norwegian Bokmål")] | |
| nb = 25198, | |
| /// <summary> | |
| /// Norwegian Bokmål (Norway) | |
| /// </summary> | |
| [Description("Norwegian Bokmål (Norway)")] | |
| nb_NO = 1311597166, | |
| /// <summary> | |
| /// Norwegian Bokmål (Svalbard & Jan Mayen) | |
| /// </summary> | |
| [Description("Norwegian Bokmål (Svalbard & Jan Mayen)")] | |
| nb_SJ = 1395483246, | |
| /// <summary> | |
| /// North Ndebele | |
| /// </summary> | |
| [Description("North Ndebele")] | |
| nd = 25710, | |
| /// <summary> | |
| /// North Ndebele (Zimbabwe) | |
| /// </summary> | |
| [Description("North Ndebele (Zimbabwe)")] | |
| nd_ZW = 1512924270, | |
| /// <summary> | |
| /// Low German | |
| /// </summary> | |
| [Description("Low German")] | |
| nds = 7562350, | |
| /// <summary> | |
| /// Low German (Germany) | |
| /// </summary> | |
| [Description("Low German (Germany)")] | |
| nds_DE = 762537070, | |
| /// <summary> | |
| /// Low German (Netherlands) | |
| /// </summary> | |
| [Description("Low German (Netherlands)")] | |
| nds_NL = 762537070, | |
| /// <summary> | |
| /// Nepali | |
| /// </summary> | |
| [Description("Nepali")] | |
| ne = 25966, | |
| /// <summary> | |
| /// Nepali (India) | |
| /// </summary> | |
| [Description("Nepali (India)")] | |
| ne_IN = 1227711854, | |
| /// <summary> | |
| /// Nepali (Nepal) | |
| /// </summary> | |
| [Description("Nepali (Nepal)")] | |
| ne_NP = 1311597934, | |
| /// <summary> | |
| /// Dutch | |
| /// </summary> | |
| [Description("Dutch")] | |
| nl = 27758, | |
| /// <summary> | |
| /// Dutch (Aruba) | |
| /// </summary> | |
| [Description("Dutch (Aruba)")] | |
| nl_AW = 1093495918, | |
| /// <summary> | |
| /// Dutch (Belgium) | |
| /// </summary> | |
| [Description("Dutch (Belgium)")] | |
| nl_BE = 1110273134, | |
| /// <summary> | |
| /// Dutch (Bonaire, Sint Eustatius and Saba) | |
| /// </summary> | |
| [Description("Dutch (Bonaire, Sint Eustatius and Saba)")] | |
| nl_BQ = 1110273134, | |
| /// <summary> | |
| /// Dutch (Curaçao) | |
| /// </summary> | |
| [Description("Dutch (Curaçao)")] | |
| nl_CW = 1127050350, | |
| /// <summary> | |
| /// Dutch (Netherlands) | |
| /// </summary> | |
| [Description("Dutch (Netherlands)")] | |
| nl_NL = 1311599726, | |
| /// <summary> | |
| /// Dutch (Suriname) | |
| /// </summary> | |
| [Description("Dutch (Suriname)")] | |
| nl_SR = 1395485806, | |
| /// <summary> | |
| /// Dutch (Sint Maarten) | |
| /// </summary> | |
| [Description("Dutch (Sint Maarten)")] | |
| nl_SX = 1395485806, | |
| /// <summary> | |
| /// Kwasio | |
| /// </summary> | |
| [Description("Kwasio")] | |
| nmg = 6778222, | |
| /// <summary> | |
| /// Kwasio (Cameroon) | |
| /// </summary> | |
| [Description("Kwasio (Cameroon)")] | |
| nmg_CM = 761752942, | |
| /// <summary> | |
| /// Norwegian Nynorsk | |
| /// </summary> | |
| [Description("Norwegian Nynorsk")] | |
| nn = 28270, | |
| /// <summary> | |
| /// Norwegian Nynorsk (Norway) | |
| /// </summary> | |
| [Description("Norwegian Nynorsk (Norway)")] | |
| nn_NO = 1311600238, | |
| /// <summary> | |
| /// Ngiemboon | |
| /// </summary> | |
| [Description("Ngiemboon")] | |
| nnh = 6844014, | |
| /// <summary> | |
| /// Ngiemboon (Cameroon) | |
| /// </summary> | |
| [Description("Ngiemboon (Cameroon)")] | |
| nnh_CM = 761818734, | |
| /// <summary> | |
| /// Norwegian | |
| /// </summary> | |
| [Description("Norwegian")] | |
| no = 28526, | |
| /// <summary> | |
| /// N'ko | |
| /// </summary> | |
| [Description("N'ko")] | |
| nqo = 7303534, | |
| /// <summary> | |
| /// N'ko (Guinea) | |
| /// </summary> | |
| [Description("N'ko (Guinea)")] | |
| nqo_GN = 762278254, | |
| /// <summary> | |
| /// South Ndebele | |
| /// </summary> | |
| [Description("South Ndebele")] | |
| nr = 29294, | |
| /// <summary> | |
| /// South Ndebele (South Africa) | |
| /// </summary> | |
| [Description("South Ndebele (South Africa)")] | |
| nr_ZA = 1512927854, | |
| /// <summary> | |
| /// Sesotho sa Leboa | |
| /// </summary> | |
| [Description("Sesotho sa Leboa")] | |
| nso = 7304046, | |
| /// <summary> | |
| /// Sesotho sa Leboa (South Africa) | |
| /// </summary> | |
| [Description("Sesotho sa Leboa (South Africa)")] | |
| nso_ZA = 762278766, | |
| /// <summary> | |
| /// Nuer | |
| /// </summary> | |
| [Description("Nuer")] | |
| nus = 7566702, | |
| /// <summary> | |
| /// Nuer (South Sudan) | |
| /// </summary> | |
| [Description("Nuer (South Sudan)")] | |
| nus_SS = 762541422, | |
| /// <summary> | |
| /// Nyankole | |
| /// </summary> | |
| [Description("Nyankole")] | |
| nyn = 7240046, | |
| /// <summary> | |
| /// Nyankole (Uganda) | |
| /// </summary> | |
| [Description("Nyankole (Uganda)")] | |
| nyn_UG = 762214766, | |
| /// <summary> | |
| /// Occitan | |
| /// </summary> | |
| [Description("Occitan")] | |
| oc = 25455, | |
| /// <summary> | |
| /// Occitan (France) | |
| /// </summary> | |
| [Description("Occitan (France)")] | |
| oc_FR = 1177379695, | |
| /// <summary> | |
| /// Oromo | |
| /// </summary> | |
| [Description("Oromo")] | |
| om = 28015, | |
| /// <summary> | |
| /// Oromo (Ethiopia) | |
| /// </summary> | |
| [Description("Oromo (Ethiopia)")] | |
| om_ET = 1160605039, | |
| /// <summary> | |
| /// Oromo (Kenya) | |
| /// </summary> | |
| [Description("Oromo (Kenya)")] | |
| om_KE = 1261268335, | |
| /// <summary> | |
| /// Odia | |
| /// </summary> | |
| [Description("Odia")] | |
| or = 29295, | |
| /// <summary> | |
| /// Odia (India) | |
| /// </summary> | |
| [Description("Odia (India)")] | |
| or_IN = 1227715183, | |
| /// <summary> | |
| /// Ossetic | |
| /// </summary> | |
| [Description("Ossetic")] | |
| os = 29551, | |
| /// <summary> | |
| /// Ossetic (Georgia) | |
| /// </summary> | |
| [Description("Ossetic (Georgia)")] | |
| os_GE = 1194161007, | |
| /// <summary> | |
| /// Ossetic (Russia) | |
| /// </summary> | |
| [Description("Ossetic (Russia)")] | |
| os_RU = 1378710383, | |
| /// <summary> | |
| /// Punjabi | |
| /// </summary> | |
| [Description("Punjabi")] | |
| pa = 24944, | |
| /// <summary> | |
| /// Punjabi | |
| /// </summary> | |
| [Description("Punjabi")] | |
| pa_Arab = 1093493104, | |
| /// <summary> | |
| /// Punjabi (Pakistan) | |
| /// </summary> | |
| [Description("Punjabi (Pakistan)")] | |
| pa_Arab_PK = 1093493104, | |
| /// <summary> | |
| /// Punjabi | |
| /// </summary> | |
| [Description("Punjabi")] | |
| pa_Guru = 1194156400, | |
| /// <summary> | |
| /// Punjabi (India) | |
| /// </summary> | |
| [Description("Punjabi (India)")] | |
| pa_IN = 1227710832, | |
| /// <summary> | |
| /// Papiamento | |
| /// </summary> | |
| [Description("Papiamento")] | |
| pap = 7364976, | |
| /// <summary> | |
| /// Papiamento (Caribbean) | |
| /// </summary> | |
| [Description("Papiamento (Caribbean)")] | |
| pap_029 = 762339696, | |
| /// <summary> | |
| /// Polish | |
| /// </summary> | |
| [Description("Polish")] | |
| pl = 27760, | |
| /// <summary> | |
| /// Polish (Poland) | |
| /// </summary> | |
| [Description("Polish (Poland)")] | |
| pl_PL = 1345154160, | |
| /// <summary> | |
| /// Prussian | |
| /// </summary> | |
| [Description("Prussian")] | |
| prg = 6779504, | |
| /// <summary> | |
| /// Prussian (World) | |
| /// </summary> | |
| [Description("Prussian (World)")] | |
| prg_PRG = 761754224, | |
| /// <summary> | |
| /// Dari | |
| /// </summary> | |
| [Description("Dari")] | |
| prs = 7565936, | |
| /// <summary> | |
| /// Dari (Afghanistan) | |
| /// </summary> | |
| [Description("Dari (Afghanistan)")] | |
| prs_AF = 762540656, | |
| /// <summary> | |
| /// Pashto | |
| /// </summary> | |
| [Description("Pashto")] | |
| ps = 29552, | |
| /// <summary> | |
| /// Pashto (Afghanistan) | |
| /// </summary> | |
| [Description("Pashto (Afghanistan)")] | |
| ps_AF = 1093497712, | |
| /// <summary> | |
| /// Pashto (Pakistan) | |
| /// </summary> | |
| [Description("Pashto (Pakistan)")] | |
| ps_PK = 1345155952, | |
| /// <summary> | |
| /// Portuguese | |
| /// </summary> | |
| [Description("Portuguese")] | |
| pt = 29808, | |
| /// <summary> | |
| /// Portuguese (Angola) | |
| /// </summary> | |
| [Description("Portuguese (Angola)")] | |
| pt_AO = 1093497968, | |
| /// <summary> | |
| /// Portuguese (Brazil) | |
| /// </summary> | |
| [Description("Portuguese (Brazil)")] | |
| pt_BR = 1110275184, | |
| /// <summary> | |
| /// Portuguese (Switzerland) | |
| /// </summary> | |
| [Description("Portuguese (Switzerland)")] | |
| pt_CH = 1127052400, | |
| /// <summary> | |
| /// Portuguese (Cabo Verde) | |
| /// </summary> | |
| [Description("Portuguese (Cabo Verde)")] | |
| pt_CV = 1127052400, | |
| /// <summary> | |
| /// Portuguese (Equatorial Guinea) | |
| /// </summary> | |
| [Description("Portuguese (Equatorial Guinea)")] | |
| pt_GQ = 1194161264, | |
| /// <summary> | |
| /// Portuguese (Guinea-Bissau) | |
| /// </summary> | |
| [Description("Portuguese (Guinea-Bissau)")] | |
| pt_GW = 1194161264, | |
| /// <summary> | |
| /// Portuguese (Luxembourg) | |
| /// </summary> | |
| [Description("Portuguese (Luxembourg)")] | |
| pt_LU = 1278047344, | |
| /// <summary> | |
| /// Portuguese (Macao SAR) | |
| /// </summary> | |
| [Description("Portuguese (Macao SAR)")] | |
| pt_MO = 1294824560, | |
| /// <summary> | |
| /// Portuguese (Mozambique) | |
| /// </summary> | |
| [Description("Portuguese (Mozambique)")] | |
| pt_MZ = 1294824560, | |
| /// <summary> | |
| /// Portuguese (Portugal) | |
| /// </summary> | |
| [Description("Portuguese (Portugal)")] | |
| pt_PT = 1345156208, | |
| /// <summary> | |
| /// Portuguese (São Tomé & Príncipe) | |
| /// </summary> | |
| [Description("Portuguese (São Tomé & Príncipe)")] | |
| pt_ST = 1395487856, | |
| /// <summary> | |
| /// Portuguese (Timor-Leste) | |
| /// </summary> | |
| [Description("Portuguese (Timor-Leste)")] | |
| pt_TL = 1412265072, | |
| /// <summary> | |
| /// K'iche' | |
| /// </summary> | |
| [Description("K'iche'")] | |
| quc = 6518129, | |
| /// <summary> | |
| /// K'iche' | |
| /// </summary> | |
| [Description("K'iche'")] | |
| quc_Latn = 761492849, | |
| /// <summary> | |
| /// K'iche' (Guatemala) | |
| /// </summary> | |
| [Description("K'iche' (Guatemala)")] | |
| quc_Latn_GT = 761492849, | |
| /// <summary> | |
| /// Quechua | |
| /// </summary> | |
| [Description("Quechua")] | |
| quz = 8025457, | |
| /// <summary> | |
| /// Quechua (Bolivia) | |
| /// </summary> | |
| [Description("Quechua (Bolivia)")] | |
| quz_BO = 763000177, | |
| /// <summary> | |
| /// Quechua (Ecuador) | |
| /// </summary> | |
| [Description("Quechua (Ecuador)")] | |
| quz_EC = 763000177, | |
| /// <summary> | |
| /// Quechua (Peru) | |
| /// </summary> | |
| [Description("Quechua (Peru)")] | |
| quz_PE = 763000177, | |
| /// <summary> | |
| /// Romansh | |
| /// </summary> | |
| [Description("Romansh")] | |
| rm = 28018, | |
| /// <summary> | |
| /// Romansh (Switzerland) | |
| /// </summary> | |
| [Description("Romansh (Switzerland)")] | |
| rm_CH = 1127050610, | |
| /// <summary> | |
| /// Rundi | |
| /// </summary> | |
| [Description("Rundi")] | |
| rn = 28274, | |
| /// <summary> | |
| /// Rundi (Burundi) | |
| /// </summary> | |
| [Description("Rundi (Burundi)")] | |
| rn_BI = 1110273650, | |
| /// <summary> | |
| /// Romanian | |
| /// </summary> | |
| [Description("Romanian")] | |
| ro = 28530, | |
| /// <summary> | |
| /// Romanian (Moldova) | |
| /// </summary> | |
| [Description("Romanian (Moldova)")] | |
| ro_MD = 1294823282, | |
| /// <summary> | |
| /// Romanian (Romania) | |
| /// </summary> | |
| [Description("Romanian (Romania)")] | |
| ro_RO = 1378709362, | |
| /// <summary> | |
| /// Rombo | |
| /// </summary> | |
| [Description("Rombo")] | |
| rof = 6713202, | |
| /// <summary> | |
| /// Rombo (Tanzania) | |
| /// </summary> | |
| [Description("Rombo (Tanzania)")] | |
| rof_TZ = 761687922, | |
| /// <summary> | |
| /// Russian | |
| /// </summary> | |
| [Description("Russian")] | |
| ru = 30066, | |
| /// <summary> | |
| /// Russian (Belarus) | |
| /// </summary> | |
| [Description("Russian (Belarus)")] | |
| ru_BY = 1110275442, | |
| /// <summary> | |
| /// Russian (Kyrgyzstan) | |
| /// </summary> | |
| [Description("Russian (Kyrgyzstan)")] | |
| ru_KG = 1261270386, | |
| /// <summary> | |
| /// Russian (Kazakhstan) | |
| /// </summary> | |
| [Description("Russian (Kazakhstan)")] | |
| ru_KZ = 1261270386, | |
| /// <summary> | |
| /// Russian (Moldova) | |
| /// </summary> | |
| [Description("Russian (Moldova)")] | |
| ru_MD = 1294824818, | |
| /// <summary> | |
| /// Russian (Russia) | |
| /// </summary> | |
| [Description("Russian (Russia)")] | |
| ru_RU = 1378710898, | |
| /// <summary> | |
| /// Russian (Ukraine) | |
| /// </summary> | |
| [Description("Russian (Ukraine)")] | |
| ru_UA = 1429042546, | |
| /// <summary> | |
| /// Kinyarwanda | |
| /// </summary> | |
| [Description("Kinyarwanda")] | |
| rw = 30578, | |
| /// <summary> | |
| /// Kinyarwanda (Rwanda) | |
| /// </summary> | |
| [Description("Kinyarwanda (Rwanda)")] | |
| rw_RW = 1378711410, | |
| /// <summary> | |
| /// Rwa | |
| /// </summary> | |
| [Description("Rwa")] | |
| rwk = 7042930, | |
| /// <summary> | |
| /// Rwa (Tanzania) | |
| /// </summary> | |
| [Description("Rwa (Tanzania)")] | |
| rwk_TZ = 762017650, | |
| /// <summary> | |
| /// Sanskrit | |
| /// </summary> | |
| [Description("Sanskrit")] | |
| sa = 24947, | |
| /// <summary> | |
| /// Sanskrit (India) | |
| /// </summary> | |
| [Description("Sanskrit (India)")] | |
| sa_IN = 1227710835, | |
| /// <summary> | |
| /// Sakha | |
| /// </summary> | |
| [Description("Sakha")] | |
| sah = 6840691, | |
| /// <summary> | |
| /// Sakha (Russia) | |
| /// </summary> | |
| [Description("Sakha (Russia)")] | |
| sah_RU = 761815411, | |
| /// <summary> | |
| /// Samburu | |
| /// </summary> | |
| [Description("Samburu")] | |
| saq = 7430515, | |
| /// <summary> | |
| /// Samburu (Kenya) | |
| /// </summary> | |
| [Description("Samburu (Kenya)")] | |
| saq_KE = 762405235, | |
| /// <summary> | |
| /// Sangu | |
| /// </summary> | |
| [Description("Sangu")] | |
| sbp = 7365235, | |
| /// <summary> | |
| /// Sangu (Tanzania) | |
| /// </summary> | |
| [Description("Sangu (Tanzania)")] | |
| sbp_TZ = 762339955, | |
| /// <summary> | |
| /// Sindhi | |
| /// </summary> | |
| [Description("Sindhi")] | |
| sd = 25715, | |
| /// <summary> | |
| /// Sindhi | |
| /// </summary> | |
| [Description("Sindhi")] | |
| sd_Arab = 1093493875, | |
| /// <summary> | |
| /// Sindhi (Pakistan) | |
| /// </summary> | |
| [Description("Sindhi (Pakistan)")] | |
| sd_Arab_PK = 1093493875, | |
| /// <summary> | |
| /// Sindhi (Devanagari) | |
| /// </summary> | |
| [Description("Sindhi (Devanagari)")] | |
| sd_Deva = 1143825523, | |
| /// <summary> | |
| /// Sindhi (Devanagari, India) | |
| /// </summary> | |
| [Description("Sindhi (Devanagari, India)")] | |
| sd_Deva_IN = 1143825523, | |
| /// <summary> | |
| /// Northern Sami | |
| /// </summary> | |
| [Description("Northern Sami")] | |
| se = 25971, | |
| /// <summary> | |
| /// Sami, Northern (Finland) | |
| /// </summary> | |
| [Description("Sami, Northern (Finland)")] | |
| se_FI = 1177380211, | |
| /// <summary> | |
| /// Sami, Northern (Norway) | |
| /// </summary> | |
| [Description("Sami, Northern (Norway)")] | |
| se_NO = 1311597939, | |
| /// <summary> | |
| /// Sami, Northern (Sweden) | |
| /// </summary> | |
| [Description("Sami, Northern (Sweden)")] | |
| se_SE = 1395484019, | |
| /// <summary> | |
| /// Sena | |
| /// </summary> | |
| [Description("Sena")] | |
| seh = 6841715, | |
| /// <summary> | |
| /// Sena (Mozambique) | |
| /// </summary> | |
| [Description("Sena (Mozambique)")] | |
| seh_MZ = 761816435, | |
| /// <summary> | |
| /// Koyraboro Senni | |
| /// </summary> | |
| [Description("Koyraboro Senni")] | |
| ses = 7562611, | |
| /// <summary> | |
| /// Koyraboro Senni (Mali) | |
| /// </summary> | |
| [Description("Koyraboro Senni (Mali)")] | |
| ses_ML = 762537331, | |
| /// <summary> | |
| /// Sango | |
| /// </summary> | |
| [Description("Sango")] | |
| sg = 26483, | |
| /// <summary> | |
| /// Sango (Central African Republic) | |
| /// </summary> | |
| [Description("Sango (Central African Republic)")] | |
| sg_CF = 1127049075, | |
| /// <summary> | |
| /// Tachelhit | |
| /// </summary> | |
| [Description("Tachelhit")] | |
| shi = 6908019, | |
| /// <summary> | |
| /// Tachelhit (Latin) | |
| /// </summary> | |
| [Description("Tachelhit (Latin)")] | |
| shi_Latn = 761882739, | |
| /// <summary> | |
| /// Tachelhit (Latin, Morocco) | |
| /// </summary> | |
| [Description("Tachelhit (Latin, Morocco)")] | |
| shi_Latn_MA = 761882739, | |
| /// <summary> | |
| /// Tachelhit (Tifinagh) | |
| /// </summary> | |
| [Description("Tachelhit (Tifinagh)")] | |
| shi_Tfng = 761882739, | |
| /// <summary> | |
| /// Tachelhit (Tifinagh, Morocco) | |
| /// </summary> | |
| [Description("Tachelhit (Tifinagh, Morocco)")] | |
| shi_Tfng_MA = 761882739, | |
| /// <summary> | |
| /// Sinhala | |
| /// </summary> | |
| [Description("Sinhala")] | |
| si = 26995, | |
| /// <summary> | |
| /// Sinhala (Sri Lanka) | |
| /// </summary> | |
| [Description("Sinhala (Sri Lanka)")] | |
| si_LK = 1278044531, | |
| /// <summary> | |
| /// Slovak | |
| /// </summary> | |
| [Description("Slovak")] | |
| sk = 27507, | |
| /// <summary> | |
| /// Slovak (Slovakia) | |
| /// </summary> | |
| [Description("Slovak (Slovakia)")] | |
| sk_SK = 1395485555, | |
| /// <summary> | |
| /// Slovenian | |
| /// </summary> | |
| [Description("Slovenian")] | |
| sl = 27763, | |
| /// <summary> | |
| /// Slovenian (Slovenia) | |
| /// </summary> | |
| [Description("Slovenian (Slovenia)")] | |
| sl_SI = 1395485811, | |
| /// <summary> | |
| /// Sami (Southern) | |
| /// </summary> | |
| [Description("Sami (Southern)")] | |
| sma = 6385011, | |
| /// <summary> | |
| /// Sami, Southern (Norway) | |
| /// </summary> | |
| [Description("Sami, Southern (Norway)")] | |
| sma_NO = 761359731, | |
| /// <summary> | |
| /// Sami, Southern (Sweden) | |
| /// </summary> | |
| [Description("Sami, Southern (Sweden)")] | |
| sma_SE = 761359731, | |
| /// <summary> | |
| /// Sami (Lule) | |
| /// </summary> | |
| [Description("Sami (Lule)")] | |
| smj = 6974835, | |
| /// <summary> | |
| /// Sami, Lule (Norway) | |
| /// </summary> | |
| [Description("Sami, Lule (Norway)")] | |
| smj_NO = 761949555, | |
| /// <summary> | |
| /// Sami, Lule (Sweden) | |
| /// </summary> | |
| [Description("Sami, Lule (Sweden)")] | |
| smj_SE = 761949555, | |
| /// <summary> | |
| /// Sami (Inari) | |
| /// </summary> | |
| [Description("Sami (Inari)")] | |
| smn = 7236979, | |
| /// <summary> | |
| /// Sami, Inari (Finland) | |
| /// </summary> | |
| [Description("Sami, Inari (Finland)")] | |
| smn_FI = 762211699, | |
| /// <summary> | |
| /// Sami (Skolt) | |
| /// </summary> | |
| [Description("Sami (Skolt)")] | |
| sms = 7564659, | |
| /// <summary> | |
| /// Sami, Skolt (Finland) | |
| /// </summary> | |
| [Description("Sami, Skolt (Finland)")] | |
| sms_FI = 762539379, | |
| /// <summary> | |
| /// Shona | |
| /// </summary> | |
| [Description("Shona")] | |
| sn = 28275, | |
| /// <summary> | |
| /// Shona (Latin) | |
| /// </summary> | |
| [Description("Shona (Latin)")] | |
| sn_Latn = 1278045811, | |
| /// <summary> | |
| /// Shona (Latin, Zimbabwe) | |
| /// </summary> | |
| [Description("Shona (Latin, Zimbabwe)")] | |
| sn_Latn_ZW = 1278045811, | |
| /// <summary> | |
| /// Somali | |
| /// </summary> | |
| [Description("Somali")] | |
| so = 28531, | |
| /// <summary> | |
| /// Somali (Djibouti) | |
| /// </summary> | |
| [Description("Somali (Djibouti)")] | |
| so_DJ = 1143828339, | |
| /// <summary> | |
| /// Somali (Ethiopia) | |
| /// </summary> | |
| [Description("Somali (Ethiopia)")] | |
| so_ET = 1160605555, | |
| /// <summary> | |
| /// Somali (Kenya) | |
| /// </summary> | |
| [Description("Somali (Kenya)")] | |
| so_KE = 1261268851, | |
| /// <summary> | |
| /// Somali (Somalia) | |
| /// </summary> | |
| [Description("Somali (Somalia)")] | |
| so_SO = 1395486579, | |
| /// <summary> | |
| /// Albanian | |
| /// </summary> | |
| [Description("Albanian")] | |
| sq = 29043, | |
| /// <summary> | |
| /// Albanian (Albania) | |
| /// </summary> | |
| [Description("Albanian (Albania)")] | |
| sq_AL = 1093497203, | |
| /// <summary> | |
| /// Albanian (North Macedonia) | |
| /// </summary> | |
| [Description("Albanian (North Macedonia)")] | |
| sq_MK = 1294823795, | |
| /// <summary> | |
| /// Albanian (Kosovo) | |
| /// </summary> | |
| [Description("Albanian (Kosovo)")] | |
| sq_XK = 1479373171, | |
| /// <summary> | |
| /// Serbian | |
| /// </summary> | |
| [Description("Serbian")] | |
| sr = 29299, | |
| /// <summary> | |
| /// Serbian (Cyrillic) | |
| /// </summary> | |
| [Description("Serbian (Cyrillic)")] | |
| sr_Cyrl = 1127051891, | |
| /// <summary> | |
| /// Serbian (Cyrillic, Bosnia and Herzegovina) | |
| /// </summary> | |
| [Description("Serbian (Cyrillic, Bosnia and Herzegovina)")] | |
| sr_Cyrl_BA = 1127051891, | |
| /// <summary> | |
| /// Serbian (Cyrillic, Montenegro) | |
| /// </summary> | |
| [Description("Serbian (Cyrillic, Montenegro)")] | |
| sr_Cyrl_ME = 1127051891, | |
| /// <summary> | |
| /// Serbian (Cyrillic, Serbia) | |
| /// </summary> | |
| [Description("Serbian (Cyrillic, Serbia)")] | |
| sr_Cyrl_RS = 1127051891, | |
| /// <summary> | |
| /// Serbian (Cyrillic, Kosovo) | |
| /// </summary> | |
| [Description("Serbian (Cyrillic, Kosovo)")] | |
| sr_Cyrl_XK = 1127051891, | |
| /// <summary> | |
| /// Serbian (Latin) | |
| /// </summary> | |
| [Description("Serbian (Latin)")] | |
| sr_Latn = 1278046835, | |
| /// <summary> | |
| /// Serbian (Latin, Bosnia & Herzegovina) | |
| /// </summary> | |
| [Description("Serbian (Latin, Bosnia & Herzegovina)")] | |
| sr_Latn_BA = 1278046835, | |
| /// <summary> | |
| /// Serbian (Latin, Montenegro) | |
| /// </summary> | |
| [Description("Serbian (Latin, Montenegro)")] | |
| sr_Latn_ME = 1278046835, | |
| /// <summary> | |
| /// Serbian (Latin, Serbia) | |
| /// </summary> | |
| [Description("Serbian (Latin, Serbia)")] | |
| sr_Latn_RS = 1278046835, | |
| /// <summary> | |
| /// Serbian (Latin, Kosovo) | |
| /// </summary> | |
| [Description("Serbian (Latin, Kosovo)")] | |
| sr_Latn_XK = 1278046835, | |
| /// <summary> | |
| /// siSwati | |
| /// </summary> | |
| [Description("siSwati")] | |
| ss = 29555, | |
| /// <summary> | |
| /// siSwati (Eswatini) | |
| /// </summary> | |
| [Description("siSwati (Eswatini)")] | |
| ss_SZ = 1395487603, | |
| /// <summary> | |
| /// siSwati (South Africa) | |
| /// </summary> | |
| [Description("siSwati (South Africa)")] | |
| ss_ZA = 1512928115, | |
| /// <summary> | |
| /// Saho | |
| /// </summary> | |
| [Description("Saho")] | |
| ssy = 7959411, | |
| /// <summary> | |
| /// Saho (Eritrea) | |
| /// </summary> | |
| [Description("Saho (Eritrea)")] | |
| ssy_ER = 762934131, | |
| /// <summary> | |
| /// Sesotho | |
| /// </summary> | |
| [Description("Sesotho")] | |
| st = 29811, | |
| /// <summary> | |
| /// Sesotho (Lesotho) | |
| /// </summary> | |
| [Description("Sesotho (Lesotho)")] | |
| st_LS = 1278047347, | |
| /// <summary> | |
| /// Sesotho (South Africa) | |
| /// </summary> | |
| [Description("Sesotho (South Africa)")] | |
| st_ZA = 1512928371, | |
| /// <summary> | |
| /// Swedish | |
| /// </summary> | |
| [Description("Swedish")] | |
| sv = 30323, | |
| /// <summary> | |
| /// Swedish (Åland Islands) | |
| /// </summary> | |
| [Description("Swedish (Åland Islands)")] | |
| sv_AX = 1093498483, | |
| /// <summary> | |
| /// Swedish (Finland) | |
| /// </summary> | |
| [Description("Swedish (Finland)")] | |
| sv_FI = 1177384563, | |
| /// <summary> | |
| /// Swedish (Sweden) | |
| /// </summary> | |
| [Description("Swedish (Sweden)")] | |
| sv_SE = 1395488371, | |
| /// <summary> | |
| /// Kiswahili | |
| /// </summary> | |
| [Description("Kiswahili")] | |
| sw = 30579, | |
| /// <summary> | |
| /// Kiswahili (Congo DRC) | |
| /// </summary> | |
| [Description("Kiswahili (Congo DRC)")] | |
| sw_CD = 1127053171, | |
| /// <summary> | |
| /// Kiswahili (Kenya) | |
| /// </summary> | |
| [Description("Kiswahili (Kenya)")] | |
| sw_KE = 1261270899, | |
| /// <summary> | |
| /// Kiswahili (Tanzania) | |
| /// </summary> | |
| [Description("Kiswahili (Tanzania)")] | |
| sw_TZ = 1412265843, | |
| /// <summary> | |
| /// Kiswahili (Uganda) | |
| /// </summary> | |
| [Description("Kiswahili (Uganda)")] | |
| sw_UG = 1429043059, | |
| /// <summary> | |
| /// Syriac | |
| /// </summary> | |
| [Description("Syriac")] | |
| syr = 7502195, | |
| /// <summary> | |
| /// Syriac (Syria) | |
| /// </summary> | |
| [Description("Syriac (Syria)")] | |
| syr_SY = 762476915, | |
| /// <summary> | |
| /// Tamil | |
| /// </summary> | |
| [Description("Tamil")] | |
| ta = 24948, | |
| /// <summary> | |
| /// Tamil (India) | |
| /// </summary> | |
| [Description("Tamil (India)")] | |
| ta_IN = 1227710836, | |
| /// <summary> | |
| /// Tamil (Sri Lanka) | |
| /// </summary> | |
| [Description("Tamil (Sri Lanka)")] | |
| ta_LK = 1278042484, | |
| /// <summary> | |
| /// Tamil (Malaysia) | |
| /// </summary> | |
| [Description("Tamil (Malaysia)")] | |
| ta_MY = 1294819700, | |
| /// <summary> | |
| /// Tamil (Singapore) | |
| /// </summary> | |
| [Description("Tamil (Singapore)")] | |
| ta_SG = 1395482996, | |
| /// <summary> | |
| /// Telugu | |
| /// </summary> | |
| [Description("Telugu")] | |
| te = 25972, | |
| /// <summary> | |
| /// Telugu (India) | |
| /// </summary> | |
| [Description("Telugu (India)")] | |
| te_IN = 1227711860, | |
| /// <summary> | |
| /// Teso | |
| /// </summary> | |
| [Description("Teso")] | |
| teo = 7300468, | |
| /// <summary> | |
| /// Teso (Kenya) | |
| /// </summary> | |
| [Description("Teso (Kenya)")] | |
| teo_KE = 762275188, | |
| /// <summary> | |
| /// Teso (Uganda) | |
| /// </summary> | |
| [Description("Teso (Uganda)")] | |
| teo_UG = 762275188, | |
| /// <summary> | |
| /// Tajik | |
| /// </summary> | |
| [Description("Tajik")] | |
| tg = 26484, | |
| /// <summary> | |
| /// Tajik (Cyrillic) | |
| /// </summary> | |
| [Description("Tajik (Cyrillic)")] | |
| tg_Cyrl = 1127049076, | |
| /// <summary> | |
| /// Tajik (Cyrillic, Tajikistan) | |
| /// </summary> | |
| [Description("Tajik (Cyrillic, Tajikistan)")] | |
| tg_Cyrl_TJ = 1127049076, | |
| /// <summary> | |
| /// Thai | |
| /// </summary> | |
| [Description("Thai")] | |
| th = 26740, | |
| /// <summary> | |
| /// Thai (Thailand) | |
| /// </summary> | |
| [Description("Thai (Thailand)")] | |
| th_TH = 1412262004, | |
| /// <summary> | |
| /// Tigrinya | |
| /// </summary> | |
| [Description("Tigrinya")] | |
| ti = 26996, | |
| /// <summary> | |
| /// Tigrinya (Eritrea) | |
| /// </summary> | |
| [Description("Tigrinya (Eritrea)")] | |
| ti_ER = 1160604020, | |
| /// <summary> | |
| /// Tigrinya (Ethiopia) | |
| /// </summary> | |
| [Description("Tigrinya (Ethiopia)")] | |
| ti_ET = 1160604020, | |
| /// <summary> | |
| /// Tigre | |
| /// </summary> | |
| [Description("Tigre")] | |
| tig = 6777204, | |
| /// <summary> | |
| /// Tigre (Eritrea) | |
| /// </summary> | |
| [Description("Tigre (Eritrea)")] | |
| tig_ER = 761751924, | |
| /// <summary> | |
| /// Turkmen | |
| /// </summary> | |
| [Description("Turkmen")] | |
| tk = 27508, | |
| /// <summary> | |
| /// Turkmen (Turkmenistan) | |
| /// </summary> | |
| [Description("Turkmen (Turkmenistan)")] | |
| tk_TM = 1412262772, | |
| /// <summary> | |
| /// Setswana | |
| /// </summary> | |
| [Description("Setswana")] | |
| tn = 28276, | |
| /// <summary> | |
| /// Setswana (Botswana) | |
| /// </summary> | |
| [Description("Setswana (Botswana)")] | |
| tn_BW = 1110273652, | |
| /// <summary> | |
| /// Setswana (South Africa) | |
| /// </summary> | |
| [Description("Setswana (South Africa)")] | |
| tn_ZA = 1512926836, | |
| /// <summary> | |
| /// Tongan | |
| /// </summary> | |
| [Description("Tongan")] | |
| to = 28532, | |
| /// <summary> | |
| /// Tongan (Tonga) | |
| /// </summary> | |
| [Description("Tongan (Tonga)")] | |
| to_TO = 1412263796, | |
| /// <summary> | |
| /// Turkish | |
| /// </summary> | |
| [Description("Turkish")] | |
| tr = 29300, | |
| /// <summary> | |
| /// Turkish (Cyprus) | |
| /// </summary> | |
| [Description("Turkish (Cyprus)")] | |
| tr_CY = 1127051892, | |
| /// <summary> | |
| /// Turkish (Turkey) | |
| /// </summary> | |
| [Description("Turkish (Turkey)")] | |
| tr_TR = 1412264564, | |
| /// <summary> | |
| /// Xitsonga | |
| /// </summary> | |
| [Description("Xitsonga")] | |
| ts = 29556, | |
| /// <summary> | |
| /// Xitsonga (South Africa) | |
| /// </summary> | |
| [Description("Xitsonga (South Africa)")] | |
| ts_ZA = 1512928116, | |
| /// <summary> | |
| /// Tatar | |
| /// </summary> | |
| [Description("Tatar")] | |
| tt = 29812, | |
| /// <summary> | |
| /// Tatar (Russia) | |
| /// </summary> | |
| [Description("Tatar (Russia)")] | |
| tt_RU = 1378710644, | |
| /// <summary> | |
| /// Tasawaq | |
| /// </summary> | |
| [Description("Tasawaq")] | |
| twq = 7436148, | |
| /// <summary> | |
| /// Tasawaq (Niger) | |
| /// </summary> | |
| [Description("Tasawaq (Niger)")] | |
| twq_NE = 762410868, | |
| /// <summary> | |
| /// Central Atlas Tamazight | |
| /// </summary> | |
| [Description("Central Atlas Tamazight")] | |
| tzm = 7174772, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Arabic) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Arabic)")] | |
| tzm_Arab = 762149492, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Arabic, Morocco) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Arabic, Morocco)")] | |
| tzm_Arab_MA = 762149492, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Latin) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Latin)")] | |
| tzm_Latn = 762149492, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Latin, Algeria) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Latin, Algeria)")] | |
| tzm_Latn_DZ = 762149492, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Latin, Morocco) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Latin, Morocco)")] | |
| tzm_Latn_MA = 762149492, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Tifinagh) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Tifinagh)")] | |
| tzm_Tfng = 762149492, | |
| /// <summary> | |
| /// Central Atlas Tamazight (Tifinagh, Morocco) | |
| /// </summary> | |
| [Description("Central Atlas Tamazight (Tifinagh, Morocco)")] | |
| tzm_Tfng_MA = 762149492, | |
| /// <summary> | |
| /// Uyghur | |
| /// </summary> | |
| [Description("Uyghur")] | |
| ug = 26485, | |
| /// <summary> | |
| /// Uyghur (China) | |
| /// </summary> | |
| [Description("Uyghur (China)")] | |
| ug_CN = 1127049077, | |
| /// <summary> | |
| /// Ukrainian | |
| /// </summary> | |
| [Description("Ukrainian")] | |
| uk = 27509, | |
| /// <summary> | |
| /// Ukrainian (Ukraine) | |
| /// </summary> | |
| [Description("Ukrainian (Ukraine)")] | |
| uk_UA = 1429039989, | |
| /// <summary> | |
| /// Urdu | |
| /// </summary> | |
| [Description("Urdu")] | |
| ur = 29301, | |
| /// <summary> | |
| /// Urdu (India) | |
| /// </summary> | |
| [Description("Urdu (India)")] | |
| ur_IN = 1227715189, | |
| /// <summary> | |
| /// Urdu (Pakistan) | |
| /// </summary> | |
| [Description("Urdu (Pakistan)")] | |
| ur_PK = 1345155701, | |
| /// <summary> | |
| /// Uzbek | |
| /// </summary> | |
| [Description("Uzbek")] | |
| uz = 31349, | |
| /// <summary> | |
| /// Uzbek (Perso-Arabic) | |
| /// </summary> | |
| [Description("Uzbek (Perso-Arabic)")] | |
| uz_Arab = 1093499509, | |
| /// <summary> | |
| /// Uzbek (Perso-Arabic, Afghanistan) | |
| /// </summary> | |
| [Description("Uzbek (Perso-Arabic, Afghanistan)")] | |
| uz_Arab_AF = 1093499509, | |
| /// <summary> | |
| /// Uzbek (Cyrillic) | |
| /// </summary> | |
| [Description("Uzbek (Cyrillic)")] | |
| uz_Cyrl = 1127053941, | |
| /// <summary> | |
| /// Uzbek (Cyrillic, Uzbekistan) | |
| /// </summary> | |
| [Description("Uzbek (Cyrillic, Uzbekistan)")] | |
| uz_Cyrl_UZ = 1127053941, | |
| /// <summary> | |
| /// Uzbek (Latin) | |
| /// </summary> | |
| [Description("Uzbek (Latin)")] | |
| uz_Latn = 1278048885, | |
| /// <summary> | |
| /// Uzbek (Latin, Uzbekistan) | |
| /// </summary> | |
| [Description("Uzbek (Latin, Uzbekistan)")] | |
| uz_Latn_UZ = 1278048885, | |
| /// <summary> | |
| /// Vai | |
| /// </summary> | |
| [Description("Vai")] | |
| vai = 6906230, | |
| /// <summary> | |
| /// Vai (Latin) | |
| /// </summary> | |
| [Description("Vai (Latin)")] | |
| vai_Latn = 761880950, | |
| /// <summary> | |
| /// Vai (Latin, Liberia) | |
| /// </summary> | |
| [Description("Vai (Latin, Liberia)")] | |
| vai_Latn_LR = 761880950, | |
| /// <summary> | |
| /// Vai (Vai) | |
| /// </summary> | |
| [Description("Vai (Vai)")] | |
| vai_Vaii = 761880950, | |
| /// <summary> | |
| /// Vai (Vai, Liberia) | |
| /// </summary> | |
| [Description("Vai (Vai, Liberia)")] | |
| vai_Vaii_LR = 761880950, | |
| /// <summary> | |
| /// Venda | |
| /// </summary> | |
| [Description("Venda")] | |
| ve = 25974, | |
| /// <summary> | |
| /// Venda (South Africa) | |
| /// </summary> | |
| [Description("Venda (South Africa)")] | |
| ve_ZA = 1512924534, | |
| /// <summary> | |
| /// Vietnamese | |
| /// </summary> | |
| [Description("Vietnamese")] | |
| vi = 26998, | |
| /// <summary> | |
| /// Vietnamese (Vietnam) | |
| /// </summary> | |
| [Description("Vietnamese (Vietnam)")] | |
| vi_VN = 1445816694, | |
| /// <summary> | |
| /// Volapük | |
| /// </summary> | |
| [Description("Volapük")] | |
| vo = 28534, | |
| /// <summary> | |
| /// Volapük (World) | |
| /// </summary> | |
| [Description("Volapük (World)")] | |
| vo_VO = 808284022, | |
| /// <summary> | |
| /// Vunjo | |
| /// </summary> | |
| [Description("Vunjo")] | |
| vun = 7239030, | |
| /// <summary> | |
| /// Vunjo (Tanzania) | |
| /// </summary> | |
| [Description("Vunjo (Tanzania)")] | |
| vun_TZ = 762213750, | |
| /// <summary> | |
| /// Walser | |
| /// </summary> | |
| [Description("Walser")] | |
| wae = 6644087, | |
| /// <summary> | |
| /// Walser (Switzerland) | |
| /// </summary> | |
| [Description("Walser (Switzerland)")] | |
| wae_CH = 761618807, | |
| /// <summary> | |
| /// Wolaytta | |
| /// </summary> | |
| [Description("Wolaytta")] | |
| wal = 7102839, | |
| /// <summary> | |
| /// Wolaytta (Ethiopia) | |
| /// </summary> | |
| [Description("Wolaytta (Ethiopia)")] | |
| wal_ET = 762077559, | |
| /// <summary> | |
| /// Wolof | |
| /// </summary> | |
| [Description("Wolof")] | |
| wo = 28535, | |
| /// <summary> | |
| /// Wolof (Senegal) | |
| /// </summary> | |
| [Description("Wolof (Senegal)")] | |
| wo_SN = 1395486583, | |
| /// <summary> | |
| /// isiXhosa | |
| /// </summary> | |
| [Description("isiXhosa")] | |
| xh = 26744, | |
| /// <summary> | |
| /// isiXhosa (South Africa) | |
| /// </summary> | |
| [Description("isiXhosa (South Africa)")] | |
| xh_ZA = 1512925304, | |
| /// <summary> | |
| /// Soga | |
| /// </summary> | |
| [Description("Soga")] | |
| xog = 6778744, | |
| /// <summary> | |
| /// Soga (Uganda) | |
| /// </summary> | |
| [Description("Soga (Uganda)")] | |
| xog_UG = 761753464, | |
| /// <summary> | |
| /// Yangben | |
| /// </summary> | |
| [Description("Yangben")] | |
| yav = 7758201, | |
| /// <summary> | |
| /// Yangben (Cameroon) | |
| /// </summary> | |
| [Description("Yangben (Cameroon)")] | |
| yav_CM = 762732921, | |
| /// <summary> | |
| /// Yiddish | |
| /// </summary> | |
| [Description("Yiddish")] | |
| yi = 27001, | |
| /// <summary> | |
| /// Yiddish (World) | |
| /// </summary> | |
| [Description("Yiddish (World)")] | |
| yi_YI = 808282489, | |
| /// <summary> | |
| /// Yoruba | |
| /// </summary> | |
| [Description("Yoruba")] | |
| yo = 28537, | |
| /// <summary> | |
| /// Yoruba (Benin) | |
| /// </summary> | |
| [Description("Yoruba (Benin)")] | |
| yo_BJ = 1110273913, | |
| /// <summary> | |
| /// Yoruba (Nigeria) | |
| /// </summary> | |
| [Description("Yoruba (Nigeria)")] | |
| yo_NG = 1311600505, | |
| /// <summary> | |
| /// Standard Moroccan Tamazight | |
| /// </summary> | |
| [Description("Standard Moroccan Tamazight")] | |
| zgh = 6842234, | |
| /// <summary> | |
| /// Standard Moroccan Tamazight (Tifinagh) | |
| /// </summary> | |
| [Description("Standard Moroccan Tamazight (Tifinagh)")] | |
| zgh_Tfng = 761816954, | |
| /// <summary> | |
| /// Standard Moroccan Tamazight (Tifinagh, Morocco) | |
| /// </summary> | |
| [Description("Standard Moroccan Tamazight (Tifinagh, Morocco)")] | |
| zgh_Tfng_MA = 761816954, | |
| /// <summary> | |
| /// Chinese | |
| /// </summary> | |
| [Description("Chinese")] | |
| zh = 26746, | |
| /// <summary> | |
| /// Chinese (Simplified, China) | |
| /// </summary> | |
| [Description("Chinese (Simplified, China)")] | |
| zh_CN = 1127049338, | |
| /// <summary> | |
| /// Chinese (Simplified) | |
| /// </summary> | |
| [Description("Chinese (Simplified)")] | |
| zh_Hans = 1210935418, | |
| /// <summary> | |
| /// Chinese (Simplified Han, Hong Kong SAR) | |
| /// </summary> | |
| [Description("Chinese (Simplified Han, Hong Kong SAR)")] | |
| zh_Hans_HK = 1210935418, | |
| /// <summary> | |
| /// Chinese (Simplified Han, Macao SAR) | |
| /// </summary> | |
| [Description("Chinese (Simplified Han, Macao SAR)")] | |
| zh_Hans_MO = 1210935418, | |
| /// <summary> | |
| /// Chinese (Traditional) | |
| /// </summary> | |
| [Description("Chinese (Traditional)")] | |
| zh_Hant = 1210935418, | |
| /// <summary> | |
| /// Chinese (Traditional, Hong Kong SAR) | |
| /// </summary> | |
| [Description("Chinese (Traditional, Hong Kong SAR)")] | |
| zh_HK = 1210935418, | |
| /// <summary> | |
| /// Chinese (Traditional, Macao SAR) | |
| /// </summary> | |
| [Description("Chinese (Traditional, Macao SAR)")] | |
| zh_MO = 1294821498, | |
| /// <summary> | |
| /// Chinese (Simplified, Singapore) | |
| /// </summary> | |
| [Description("Chinese (Simplified, Singapore)")] | |
| zh_SG = 1395484794, | |
| /// <summary> | |
| /// Chinese (Traditional, Taiwan) | |
| /// </summary> | |
| [Description("Chinese (Traditional, Taiwan)")] | |
| zh_TW = 1412262010, | |
| /// <summary> | |
| /// isiZulu | |
| /// </summary> | |
| [Description("isiZulu")] | |
| zu = 30074, | |
| /// <summary> | |
| /// isiZulu (South Africa) | |
| /// </summary> | |
| [Description("isiZulu (South Africa)")] | |
| zu_ZA = 1512928634, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment