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-14 00:12:56 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-12-14 00:12:56 +0300
commit977ef04746d8a6a36a217330a02024cf768f636d (patch)
tree106ca2b7b822dc1843f9f33d31a5f8b41f935edf /release
parentdd0520b93b747dfc996e86fb67a1b3bd352e0325 (diff)
Cleanup: Fix capitalization in various places
Approximately 33 changes of capitalization to conform to MLA title style. Differential Revision: https://developer.blender.org/D9796 Reviewed by Julian Eisel
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/object.py2
-rw-r--r--release/scripts/startup/bl_operators/object_align.py4
-rw-r--r--release/scripts/startup/bl_operators/object_quick_effects.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_operators/object.py b/release/scripts/startup/bl_operators/object.py
index 0f5785c7498..92eb47cea0f 100644
--- a/release/scripts/startup/bl_operators/object.py
+++ b/release/scripts/startup/bl_operators/object.py
@@ -888,7 +888,7 @@ class LoadImageAsEmpty:
filter_folder: BoolProperty(default=True, options={'HIDDEN', 'SKIP_SAVE'})
view_align: BoolProperty(
- name="Align to view",
+ name="Align to View",
default=True,
)
diff --git a/release/scripts/startup/bl_operators/object_align.py b/release/scripts/startup/bl_operators/object_align.py
index ec9b098be2c..cc6724a620e 100644
--- a/release/scripts/startup/bl_operators/object_align.py
+++ b/release/scripts/startup/bl_operators/object_align.py
@@ -358,7 +358,7 @@ from bpy.props import (
class AlignObjects(Operator):
- """Align Objects"""
+ """Align objects"""
bl_idname = "object.align"
bl_label = "Align Objects"
bl_options = {'REGISTER', 'UNDO'}
@@ -386,7 +386,7 @@ class AlignObjects(Operator):
name="Relative To",
description="Reference location to align to",
items=(
- ('OPT_1', "Scene Origin", "Use the Scene Origin as the position for the selected objects to align to"),
+ ('OPT_1', "Scene Origin", "Use the scene origin as the position for the selected objects to align to"),
('OPT_2', "3D Cursor", "Use the 3D cursor as the position for the selected objects to align to"),
('OPT_3', "Selection", "Use the selected objects as the position for the selected objects to align to"),
('OPT_4', "Active", "Use the active object as the position for the selected objects to align to"),
diff --git a/release/scripts/startup/bl_operators/object_quick_effects.py b/release/scripts/startup/bl_operators/object_quick_effects.py
index 688f9d65814..8c275da28ac 100644
--- a/release/scripts/startup/bl_operators/object_quick_effects.py
+++ b/release/scripts/startup/bl_operators/object_quick_effects.py
@@ -134,7 +134,7 @@ class QuickExplode(ObjectModeOperator, Operator):
default='EXPLODE',
)
amount: IntProperty(
- name="Amount of pieces",
+ name="Number of Pieces",
min=2, max=10000,
soft_min=2, soft_max=10000,
default=100,