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:
authorYevgeny Makarov <jenkm>2020-12-18 04:06:21 +0300
committerHans Goudey <h.goudey@me.com>2020-12-18 04:06:21 +0300
commitef17fb2715a3f24cd5cddd6725bfef4858f87617 (patch)
treef7915f55b209fc323a16562cf4f310fa6bbb0095 /source/blender/editors/object/object_relations.c
parent23233fcf056e42958972d129ba526c0a103cf179 (diff)
UI: Don't use abbreviations in label text
Expand abbreviations for words like "Bright" (instead of "Brightness"), "Premul", "Lib", "Dir", etc. Differential Revision: https://developer.blender.org/D9862
Diffstat (limited to 'source/blender/editors/object/object_relations.c')
-rw-r--r--source/blender/editors/object/object_relations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 5caa7c71e83..ee9ef192d18 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -484,7 +484,7 @@ void OBJECT_OT_proxy_make(wmOperatorType *ot)
DummyRNA_DEFAULT_items,
0,
"Proxy Object",
- "Name of lib-linked/collection object to make a proxy for");
+ "Name of library-linked/collection object to make a proxy for");
RNA_def_enum_funcs(prop, proxy_collection_object_itemf);
RNA_def_property_flag(prop, PROP_ENUM_NO_TRANSLATE);
ot->prop = prop;