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 /source/blender/modifiers/intern/MOD_boolean.c
parente4cc4b3e952b479d4bcf04c47c81622a5a167dff (diff)
Minor UI messages fixes, and enabling i18n for all modifier_setError() error messages.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_boolean.c')
-rw-r--r--source/blender/modifiers/intern/MOD_boolean.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_boolean.c b/source/blender/modifiers/intern/MOD_boolean.c
index 76560d14e3b..9f15060033d 100644
--- a/source/blender/modifiers/intern/MOD_boolean.c
+++ b/source/blender/modifiers/intern/MOD_boolean.c
@@ -38,6 +38,7 @@
#include "BLI_utildefines.h"
+#include "BLF_translation.h"
#include "BKE_cdderivedmesh.h"
#include "BKE_modifier.h"
@@ -155,7 +156,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob,
if(result)
return result;
else
- modifier_setError(md, "Can't execute boolean operation.");
+ modifier_setError(md, TIP_("Can't execute boolean operation."));
}
return derivedData;