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-07-03 21:20:21 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-03 21:20:21 +0400
commit37dc4006c7876701842244d52ed33b35649370dd (patch)
treedc9fe6093ab8dbf1633f012b734427e48f6c7249 /release
parentbc78942be0a2560e2072d2dea018e6ebc07e99d1 (diff)
First load of spell and typo fixes (mostly UI messages, but also one or two pieces of code using mis-spelled names).
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy_extras/io_utils.py2
-rw-r--r--release/scripts/startup/bl_ui/properties_data_armature.py2
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_field.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/modules/bpy_extras/io_utils.py b/release/scripts/modules/bpy_extras/io_utils.py
index 593fc85e9cb..4457ecb43e6 100644
--- a/release/scripts/modules/bpy_extras/io_utils.py
+++ b/release/scripts/modules/bpy_extras/io_utils.py
@@ -330,7 +330,7 @@ path_reference_mode = EnumProperty(
description="Method used to reference paths",
items=(('AUTO', "Auto", "Use Relative paths with subdirectories only"),
('ABSOLUTE', "Absolute", "Always write absolute paths"),
- ('RELATIVE', "Relative", "Always write relative patsh "
+ ('RELATIVE', "Relative", "Always write relative paths "
"(where possible)"),
('MATCH', "Match", "Match Absolute/Relative "
"setting with input path"),
diff --git a/release/scripts/startup/bl_ui/properties_data_armature.py b/release/scripts/startup/bl_ui/properties_data_armature.py
index 6bec652045e..11feaeeeab5 100644
--- a/release/scripts/startup/bl_ui/properties_data_armature.py
+++ b/release/scripts/startup/bl_ui/properties_data_armature.py
@@ -203,7 +203,7 @@ class DATA_PT_pose_library(ArmatureButtonsPanel, Panel):
col.operator("poselib.pose_remove", icon='ZOOMOUT', text="")
col.operator("poselib.apply_pose", icon='ZOOM_SELECTED', text="").pose_index = poselib.pose_markers.active_index
- col.operator("poselib.action_sanitise", icon='HELP', text="") # XXX: put in menu?
+ col.operator("poselib.action_sanitize", icon='HELP', text="") # XXX: put in menu?
# properties for active marker
if pose_marker_active is not None:
diff --git a/release/scripts/startup/bl_ui/properties_physics_field.py b/release/scripts/startup/bl_ui/properties_physics_field.py
index 2054215df4a..65603c65041 100644
--- a/release/scripts/startup/bl_ui/properties_physics_field.py
+++ b/release/scripts/startup/bl_ui/properties_physics_field.py
@@ -195,7 +195,7 @@ class PHYSICS_PT_collision(PhysicButtonsPanel, Panel):
col = split.column()
col.label(text="Particle:")
col.prop(settings, "permeability", slider=True)
- col.prop(settings, "stickness")
+ col.prop(settings, "stickiness")
col.prop(settings, "use_particle_kill")
col.label(text="Particle Damping:")
sub = col.column(align=True)