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.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user