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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2014-03-19 18:25:10 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-03-19 18:25:32 +0400
commit7698322846c8c661fdbdf9c22f7e2df2d16134d8 (patch)
tree1d92bcf675361d1429fbf7eaf96d20030ba7edf7 /source
parent7997e38917159d2779769b2d1a938ca1750e2641 (diff)
Usual UI messages fixes...
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c2
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c
index c97cef289fa..aad8d6057ed 100644
--- a/source/blender/makesrna/intern/rna_fcurve.c
+++ b/source/blender/makesrna/intern/rna_fcurve.c
@@ -50,7 +50,7 @@
EnumPropertyItem fmodifier_type_items[] = {
{FMODIFIER_TYPE_NULL, "NULL", 0, "Invalid", ""},
{FMODIFIER_TYPE_GENERATOR, "GENERATOR", 0, "Generator",
- "Generate a curve using a factorised or expanded polynomial"},
+ "Generate a curve using a factorized or expanded polynomial"},
{FMODIFIER_TYPE_FN_GENERATOR, "FNGENERATOR", 0, "Built-In Function",
"Generate a curve using standard math functions such as sin and cos"},
{FMODIFIER_TYPE_ENVELOPE, "ENVELOPE", 0, "Envelope",
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 8fbb91560f1..c6fa87c7d96 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -3432,11 +3432,11 @@ static void def_sh_tex_image(StructRNA *srna)
{SHD_INTERP_LINEAR, "Linear", 0, "Linear",
"Linear interpolation"},
{SHD_INTERP_CLOSEST, "Closest", 0, "Closest",
- "No interpolation (sample closest texel"},
+ "No interpolation (sample closest texel)"},
{SHD_INTERP_CUBIC, "Cubic", 0, "Cubic",
"Cubic interpolation (OSL only)"},
{SHD_INTERP_SMART, "Smart", 0, "Smart",
- "Bicubic when maxifying, else bilinear (OSL only)"},
+ "Bicubic when magnifying, else bilinear (OSL only)"},
{0, NULL, 0, NULL, NULL}
};