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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-05-08 23:24:10 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-05-08 23:30:25 +0300
commit82046756898b5056f6318ab36fa0bfe331eddd42 (patch)
tree8007227508d05ffc4aca27456d149593f8ae298f /source/blender/makesrna/intern/rna_object_force.c
parent1ac0254cfa34daacc6decf5c2dc06dc2735d6dc6 (diff)
UI messages: Rename 'Light' to 'Lite' for compression method.
While not exactly optimal, that's the only disambiguation solution I found doable for translations (i18n). ID names tend to sneak everywhere, including in places where we have no access to i18n context currently (like menu labels e.g.). Other alternative would have been to use 'Lightweight', but that is a tad too long, we love short UI messages as much as possible. The genius who decided that it was critical to rename ID lamp to light in 2.8 is welcome to find a better solution... Part of T43295.
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_force.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index c4f0eb35627..2abb1f3227a 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -754,7 +754,7 @@ static void rna_def_pointcache_common(StructRNA *srna)
static const EnumPropertyItem point_cache_compress_items[] = {
{PTCACHE_COMPRESS_NO, "NO", 0, "None", "No compression"},
- {PTCACHE_COMPRESS_LZO, "LIGHT", 0, "Light", "Fast but not so effective compression"},
+ {PTCACHE_COMPRESS_LZO, "LIGHT", 0, "Lite", "Fast but not so effective compression"},
{PTCACHE_COMPRESS_LZMA, "HEAVY", 0, "Heavy", "Effective but slow compression"},
{0, NULL, 0, NULL, NULL},
};