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:
authorCampbell Barton <ideasman42@gmail.com>2020-04-08 03:24:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-08 03:24:33 +0300
commit161c13e12be0c968808612010268e81c88327f65 (patch)
tree3c5668481be5122c9ab6ac0ccd420b059d9b03b7 /source/blender/makesdna
parent1ee3def5d39f6d17ca7bb2dc74c5499f92eec739 (diff)
Fix building without translations enabled
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 667b6bbf33c..d2a099b4fcf 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -1305,6 +1305,13 @@ typedef enum eUserpref_DiskCacheCompression {
USER_SEQ_DISK_CACHE_COMPRESSION_HIGH = 2,
} eUserpref_DiskCacheCompression;
+/* Locale Ids. Auto will try to get local from OS. Our default is English though. */
+/** #UserDef.language */
+enum {
+ ULANGUAGE_AUTO = 0,
+ ULANGUAGE_ENGLISH = 1,
+};
+
#ifdef __cplusplus
}
#endif