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-10-07 16:04:53 +0300
committerHans Goudey <h.goudey@me.com>2020-10-07 16:04:53 +0300
commit494ffd2f9551b756e782e07d17748063eea04c45 (patch)
treeeb34d70797220a24ee2b536387e8e53e698bd4fe /release/scripts/startup/bl_operators
parent0fd06b535c166c4cb1997e8eed0c9aaccc684063 (diff)
UI: Fix capitalization in various places
Follow the MLA style, agreed upon in T79589. This means "from" within UI labels should be lowercase. Differential Revision: https://developer.blender.org/D8345
Diffstat (limited to 'release/scripts/startup/bl_operators')
-rw-r--r--release/scripts/startup/bl_operators/object.py2
-rw-r--r--release/scripts/startup/bl_operators/sequencer.py4
-rw-r--r--release/scripts/startup/bl_operators/userpref.py2
-rw-r--r--release/scripts/startup/bl_operators/view3d.py2
4 files changed, 6 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_operators/object.py b/release/scripts/startup/bl_operators/object.py
index 73212d6641a..87973ac2c45 100644
--- a/release/scripts/startup/bl_operators/object.py
+++ b/release/scripts/startup/bl_operators/object.py
@@ -861,7 +861,7 @@ class TransformsToDeltasAnim(Operator):
class DupliOffsetFromCursor(Operator):
"""Set offset used for collection instances based on cursor position"""
bl_idname = "object.instance_offset_from_cursor"
- bl_label = "Set Offset From Cursor"
+ bl_label = "Set Offset from Cursor"
bl_options = {'INTERNAL', 'UNDO'}
@classmethod
diff --git a/release/scripts/startup/bl_operators/sequencer.py b/release/scripts/startup/bl_operators/sequencer.py
index 9b15ccf167b..6b420d20e14 100644
--- a/release/scripts/startup/bl_operators/sequencer.py
+++ b/release/scripts/startup/bl_operators/sequencer.py
@@ -188,7 +188,7 @@ class SequencerFadesAdd(Operator):
min=0.01)
type: EnumProperty(
items=(
- ('IN_OUT', 'Fade In And Out', 'Fade selected strips in and out'),
+ ('IN_OUT', 'Fade In and Out', 'Fade selected strips in and out'),
('IN', 'Fade In', 'Fade in selected strips'),
('OUT', 'Fade Out', 'Fade out selected strips'),
('CURSOR_FROM', 'From Current Frame',
@@ -196,7 +196,7 @@ class SequencerFadesAdd(Operator):
('CURSOR_TO', 'To Current Frame',
'Fade from the start of sequences under the time cursor to the current frame'),
),
- name="Fade type",
+ name="Fade Type",
description="Fade in, out, both in and out, to, or from the current frame. Default is both in and out",
default='IN_OUT')
diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py
index 113e6b06153..31d601debba 100644
--- a/release/scripts/startup/bl_operators/userpref.py
+++ b/release/scripts/startup/bl_operators/userpref.py
@@ -228,7 +228,7 @@ class PREFERENCES_OT_keyconfig_import(Operator):
options={'HIDDEN'},
)
keep_original: BoolProperty(
- name="Keep original",
+ name="Keep Original",
description="Keep original file after copying to configuration folder",
default=True,
)
diff --git a/release/scripts/startup/bl_operators/view3d.py b/release/scripts/startup/bl_operators/view3d.py
index 968dc8e5dba..3442e189d14 100644
--- a/release/scripts/startup/bl_operators/view3d.py
+++ b/release/scripts/startup/bl_operators/view3d.py
@@ -193,9 +193,11 @@ class VIEW3D_OT_transform_gizmo_set(Operator):
bl_idname = "view3d.transform_gizmo_set"
extend: BoolProperty(
+ name="Extend",
default=False,
)
type: EnumProperty(
+ name="Type",
items=(
('TRANSLATE', "Move", ""),
('ROTATE', "Rotate", ""),