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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-02-27 22:14:56 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-02-27 22:14:56 +0400
commit49adbe3ab8d1709979298870e981def6f69777e2 (patch)
tree249701ca4fc34a7beea2e8ae8ec576b465f8e24d /release/scripts
parent684a2c8dca6a93d68e62cf8c2502980548efc75c (diff)
Various fixes to UI messages (among other things, all messages needed it should now be capitalized).
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/modules/bpy_extras/io_utils.py2
-rw-r--r--release/scripts/startup/bl_operators/uvcalc_smart_project.py2
-rw-r--r--release/scripts/startup/bl_operators/wm.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/modules/bpy_extras/io_utils.py b/release/scripts/modules/bpy_extras/io_utils.py
index 38fdb8f5fec..593fc85e9cb 100644
--- a/release/scripts/modules/bpy_extras/io_utils.py
+++ b/release/scripts/modules/bpy_extras/io_utils.py
@@ -335,7 +335,7 @@ path_reference_mode = EnumProperty(
('MATCH', "Match", "Match Absolute/Relative "
"setting with input path"),
('STRIP', "Strip Path", "Filename only"),
- ('COPY', "Copy", "copy the file to the destination path "
+ ('COPY', "Copy", "Copy the file to the destination path "
"(or subdirectory)"),
),
default='AUTO'
diff --git a/release/scripts/startup/bl_operators/uvcalc_smart_project.py b/release/scripts/startup/bl_operators/uvcalc_smart_project.py
index 1464b83ab95..c4a94e7f679 100644
--- a/release/scripts/startup/bl_operators/uvcalc_smart_project.py
+++ b/release/scripts/startup/bl_operators/uvcalc_smart_project.py
@@ -1114,7 +1114,7 @@ class SmartProject(Operator):
angle_limit = FloatProperty(
name="Angle Limit",
- description="lower for more projection groups, higher for less distortion",
+ description="Lower for more projection groups, higher for less distortion",
min=1.0, max=89.0,
default=66.0,
)
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 0f2669d4c94..977a4c8cde1 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -146,12 +146,12 @@ class BRUSH_OT_active_index_set(Operator):
bl_label = "Set Brush Number"
mode = StringProperty(
- name="mode",
+ name="Mode",
description="Paint mode to set brush for",
maxlen=1024,
)
index = IntProperty(
- name="number",
+ name="Number",
description="Brush number",
)