[Bf-blender-cvs] [8fe0aecfdea] master: UI: Do not abbreviate/shorten wording

Aaron Carlisle noreply at git.blender.org
Sat Jul 24 02:47:48 CEST 2021


Commit: 8fe0aecfdeaeac1c106510dc8516be4438eaaf19
Author: Aaron Carlisle
Date:   Fri Jul 23 20:45:48 2021 -0400
Branches: master
https://developer.blender.org/rB8fe0aecfdeaeac1c106510dc8516be4438eaaf19

UI: Do not abbreviate/shorten wording

Abbreviations are harder to read and understand thus it is best to be direct.
For example without understanding and context it is hard to know exactly what "Len" means.

===================================================================

M	source/blender/editors/transform/transform_mode_translate.c

===================================================================

diff --git a/source/blender/editors/transform/transform_mode_translate.c b/source/blender/editors/transform/transform_mode_translate.c
index 2cbf52b6100..75744f26c15 100644
--- a/source/blender/editors/transform/transform_mode_translate.c
+++ b/source/blender/editors/transform/transform_mode_translate.c
@@ -266,7 +266,8 @@ static void headerTranslation(TransInfo *t, const float vec[3], char str[UI_MAX_
   if (t->flag & T_AUTOIK) {
     short chainlen = t->settings->autoik_chainlen;
     if (chainlen) {
-      ofs += BLI_snprintf_rlen(str + ofs, UI_MAX_DRAW_STR - ofs, TIP_("AutoIK-Len: %d"), chainlen);
+      ofs += BLI_snprintf_rlen(
+          str + ofs, UI_MAX_DRAW_STR - ofs, TIP_("Auto IK Length: %d"), chainlen);
       ofs += BLI_strncpy_rlen(str + ofs, "   ", UI_MAX_DRAW_STR - ofs);
     }
   }



More information about the Bf-blender-cvs mailing list