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-03-17 18:27:46 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-03-17 18:27:46 +0400
commit1f6ae5e4fbc4a67afd9655d55f9930c196c9e754 (patch)
tree7f3a0911f733b7c8aa06cfef927bb064e4efb01a /release/scripts/startup/bl_operators/vertexpaint_dirt.py
parente4cc4b3e952b479d4bcf04c47c81622a5a167dff (diff)
Minor UI messages fixes, and enabling i18n for all modifier_setError() error messages.
Diffstat (limited to 'release/scripts/startup/bl_operators/vertexpaint_dirt.py')
-rw-r--r--release/scripts/startup/bl_operators/vertexpaint_dirt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_operators/vertexpaint_dirt.py b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
index 85be72b48d8..a5d361f206a 100644
--- a/release/scripts/startup/bl_operators/vertexpaint_dirt.py
+++ b/release/scripts/startup/bl_operators/vertexpaint_dirt.py
@@ -156,19 +156,19 @@ class VertexPaintDirt(Operator):
)
clean_angle = FloatProperty(
name="Highlight Angle",
- description="Less then 90 limits the angle used in the tonal range",
+ description="Less than 90 limits the angle used in the tonal range",
min=0.0, max=180.0,
default=180.0,
)
dirt_angle = FloatProperty(
name="Dirt Angle",
- description="Less then 90 limits the angle used in the tonal range",
+ description="Less than 90 limits the angle used in the tonal range",
min=0.0, max=180.0,
default=0.0,
)
dirt_only = BoolProperty(
name="Dirt Only",
- description="Dont calculate cleans for convex areas",
+ description="Don't calculate cleans for convex areas",
default=False,
)