Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2011-10-16 03:50:05 +0400
committerDalai Felinto <dfelinto@gmail.com>2011-10-16 03:50:05 +0400
commit2bba8ad861145ac53e61eba9b09c9d9eb6b39bad (patch)
tree23c30ba995213ac487fca58cc8e48ae8ce606961 /source/blender/makesrna/intern/rna_userdef.c
parent1c8a91d4df9593f3a24efbf945afabb0efa80ccc (diff)
Set the correct char for Persian name (using \ufbfd instead of the arabic yeh one)
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 28525042eda..e2f0f4dab1f 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -2541,7 +2541,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
{24, "KOREAN", 0, N_("Korean (한국 언어)"), "ko_KR"},
/*{25, "NEPALI", 0, N_("Nepali (नेपाली)"), "ne_NP"},*/
/* using the utf8 flipped form of Persian (فارسی) */
- {26, "PERSIAN", 0, N_("Persian (ﺱﺭﺎﻓ)"), "fa_PE"},
+ {26, "PERSIAN", 0, N_("Persian (ﯽﺳﺭﺎﻓ)"), "fa_PE"},
{0, NULL, 0, NULL, NULL}};
srna= RNA_def_struct(brna, "UserPreferencesSystem", NULL);