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>2015-06-15 22:38:09 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-06-15 22:38:36 +0300
commit124b25cf9d47837e384ade566f03e84186535967 (patch)
treefcdd7997d4ccde67627923c4150c27b05d22b883
parenta44a0cf443b14e256c127887fff684daa680a374 (diff)
Usual minor i18n/UI messages fixes.
-rw-r--r--release/scripts/modules/bl_i18n_utils/utils_spell_check.py1
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
index 669794799e6..42a23c8c041 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -187,6 +187,7 @@ class SpellChecker:
"unhide",
"unindent",
"unkeyed",
+ "unmute",
"unpremultiply",
"unprojected",
"unreacted",
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 202ce8d68a6..0b13512b627 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -5220,7 +5220,7 @@ void MESH_OT_offset_edge_loops(wmOperatorType *ot)
/* identifiers */
ot->name = "Offset Edge Loop";
ot->idname = "MESH_OT_offset_edge_loops";
- ot->description = "Creates offset edge loop from the current selection";
+ ot->description = "Create offset edge loop from the current selection";
/* api callbacks */
ot->exec = edbm_offset_edgeloop_exec;