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/windowmanager/intern/wm_operator_props.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/windowmanager/intern/wm_operator_props.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operator_props.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operator_props.c b/source/blender/windowmanager/intern/wm_operator_props.c
index fa658a5cdec..8dfe26fbf79 100644
--- a/source/blender/windowmanager/intern/wm_operator_props.c
+++ b/source/blender/windowmanager/intern/wm_operator_props.c
@@ -434,7 +434,7 @@ void WM_operator_properties_select_operation_simple(wmOperatorType *ot)
void WM_operator_properties_select_walk_direction(wmOperatorType *ot)
{
static const EnumPropertyItem direction_items[] = {
- {UI_SELECT_WALK_UP, "UP", 0, "Prev", ""},
+ {UI_SELECT_WALK_UP, "UP", 0, "Previous", ""},
{UI_SELECT_WALK_DOWN, "DOWN", 0, "Next", ""},
{UI_SELECT_WALK_LEFT, "LEFT", 0, "Left", ""},
{UI_SELECT_WALK_RIGHT, "RIGHT", 0, "Right", ""},