UI: Use full word "Start" instead of "Sta"

Differential Revision: https://developer.blender.org/D13098
This commit is contained in:
Nikhil Shringarpurey 2021-11-18 10:45:10 -05:00 committed by Hans Goudey
parent 5816eb4c56
commit dd31b8bd50
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ static void node_buts_time(uiLayout *layout, bContext *UNUSED(C), PointerRNA *pt
uiTemplateCurveMapping(layout, ptr, "curve", 's', false, false, false, false);
uiLayout *row = uiLayoutRow(layout, true);
uiItemR(row, ptr, "frame_start", DEFAULT_FLAGS, IFACE_("Sta"), ICON_NONE);
uiItemR(row, ptr, "frame_start", DEFAULT_FLAGS, IFACE_("Start"), ICON_NONE);
uiItemR(row, ptr, "frame_end", DEFAULT_FLAGS, IFACE_("End"), ICON_NONE);
}