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-10-21 18:02:30 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-10-21 18:02:30 +0400
commit26d0492653d310d05bdbbea8a51d3b4f62ccd0c6 (patch)
treee93da2eb0c56bcced71d165e996497c647f6c168 /source/blender/modifiers/intern/MOD_decimate.c
parent9e830c0c9c6ad1ea2e47d19ec5f0e2500640dab1 (diff)
A final bunch of UI messages fixes and tweaks, and some BKE_report()<->BKE_reportf() fixes.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_decimate.c')
-rw-r--r--source/blender/modifiers/intern/MOD_decimate.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/modifiers/intern/MOD_decimate.c b/source/blender/modifiers/intern/MOD_decimate.c
index de7822443f3..fefb3838edd 100644
--- a/source/blender/modifiers/intern/MOD_decimate.c
+++ b/source/blender/modifiers/intern/MOD_decimate.c
@@ -95,7 +95,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *UNUSED(ob),
return dm;
}
else if (dm->getNumPolys(dm) <= 3) {
- modifier_setError(md, "%s", TIP_("Modifier requires more than 3 input faces."));
+ modifier_setError(md, "%s", TIP_("Modifier requires more than 3 input faces"));
return dm;
}
@@ -146,7 +146,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *UNUSED(ob),
}
if (numTris < 3) {
- modifier_setError(md, "%s", TIP_("Modifier requires more than 3 input faces (triangles)."));
+ modifier_setError(md, "%s", TIP_("Modifier requires more than 3 input faces (triangles)"));
dm = CDDM_copy(dm);
return dm;
}
@@ -221,12 +221,12 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *UNUSED(ob),
CDDM_calc_edges_tessface(result);
}
else
- modifier_setError(md, "%s", TIP_("Out of memory."));
+ modifier_setError(md, "%s", TIP_("Out of memory"));
LOD_FreeDecimationData(&lod);
}
else
- modifier_setError(md, "%s", TIP_("Non-manifold mesh as input."));
+ modifier_setError(md, "%s", TIP_("Non-manifold mesh as input"));
MEM_freeN(lod.vertex_buffer);
MEM_freeN(lod.vertex_normal_buffer);