Adding FA (Persian - Farsi) language to po + flipping Arabic name in the Language Enum

This commit is contained in:
Dalai Felinto
2011-10-11 05:52:58 +00:00
parent 93e4de7552
commit 435a0ccda7
2 changed files with 6 additions and 2 deletions

View File

@@ -94,6 +94,7 @@ static const char *locales[] = {
"greek", "el_GR",
"korean", "ko_KR",
"nepali", "ne_NP",
"persian", "fa_PE",
};
void BLF_lang_init(void)

View File

@@ -2532,11 +2532,14 @@ static void rna_def_userdef_system(BlenderRNA *brna)
{18, "UKRAINIAN", 0, N_("Ukrainian (Український)"), "uk_UA"},
{19, "POLISH", 0, N_("Polish (Polski)"), "pl_PL"},
{20, "ROMANIAN", 0, N_("Romanian (Român)"), "ro_RO"},
{21, "ARABIC", 0, N_("Arabic (العربية)"), "ar_EG"},
/* using the utf8 flipped form of Arabic (العربية) */
{21, "ARABIC", 0, N_("Arabic (ﺔﻴﺑﺮﻌﻟﺍ)"), "ar_EG"},
{22, "BULGARIAN", 0, N_("Bulgarian (Български)"), "bg_BG"},
{23, "GREEK", 0, N_("Greek (Ελληνικά)"), "el_GR"},
{24, "KOREAN", 0, N_("Korean (한국 언어)"), "ko_KR"},
/*{25, "Nepali", 0, N_("Nepali (नेपाली)"), "ne_NP"},*/
/*{25, "NEPALI", 0, N_("Nepali (नेपाली)"), "ne_NP"},*/
/* using the utf8 flipped form of Persian (فارسی) */
{26, "PERSIAN", 0, N_("Persian (ﺱﺭﺎﻓ)"), "fa_PE"},
{0, NULL, 0, NULL, NULL}};
srna= RNA_def_struct(brna, "UserPreferencesSystem", NULL);