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 <bastien@blender.org>2020-09-21 16:17:41 +0300
committerBastien Montagne <bastien@blender.org>2020-09-21 16:18:13 +0300
commit9d3550d7819807064dd39365322295ebd8ea0a09 (patch)
tree7452b19259309b151807db67980a55648a9b0470 /source/blender/makesrna/intern/rna_brush.c
parenta34e7c3e5d844fd2b9e628534e93892467a7897e (diff)
Various fixes in UI messages.
Along some other typos in comments or variable names.
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 3fd32aa6fd7..675a46f48d1 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -2036,7 +2036,7 @@ static void rna_def_brush(BlenderRNA *brna)
"RADIUS",
0,
"Brush Radius",
- "Applies the deformation in a localiced area limited by the brush radius"},
+ "Applies the deformation in a localized area limited by the brush radius"},
{BRUSH_BOUNDARY_FALLOFF_LOOP,
"LOOP",
0,
@@ -2046,8 +2046,8 @@ static void rna_def_brush(BlenderRNA *brna)
"LOOP_INVERT",
0,
"Loop and Invert",
- "Applies the fallof radius in a loop pattern, inverting the displacement direction in each "
- "pattern repetition"},
+ "Applies the falloff radius in a loop pattern, inverting the displacement direction in "
+ "each pattern repetition"},
{0, NULL, 0, NULL, NULL},
};
@@ -2056,7 +2056,7 @@ static void rna_def_brush(BlenderRNA *brna)
"LOCAL",
0,
"Local",
- "Simulates only a specific area arround the brush limited by a fixed radius"},
+ "Simulates only a specific area around the brush limited by a fixed radius"},
{BRUSH_CLOTH_SIMULATION_AREA_GLOBAL, "GLOBAL", 0, "Global", "Simulates the entire mesh"},
{0, NULL, 0, NULL, NULL},
};
@@ -2941,7 +2941,7 @@ static void rna_def_brush(BlenderRNA *brna)
prop,
"Pin Simulation Boundary",
"Lock the position of the vertices in the simulation falloff area to avoid artifacts and "
- "create a softer transitionwith with unnafected areas");
+ "create a softer transition with unaffected areas");
RNA_def_property_update(prop, 0, "rna_Brush_update");
prop = RNA_def_property(srna, "use_cloth_collision", PROP_BOOLEAN, PROP_NONE);