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:
authorYevgeny Makarov <jenkm>2021-02-24 22:25:44 +0300
committerHans Goudey <h.goudey@me.com>2021-02-24 22:25:44 +0300
commit4f247dba5ea99d9c3a3544c9dd302192cc1dab75 (patch)
tree93bd7b29e7769d1daa56a0eeade3f1e0c0320880 /source/blender/editors/object
parent9a1b29e16c216c2827f28214d4f7af4ee072beec (diff)
UI: Cleanup and fix labels and descriptions in various places
Changes include using proper and consistent grammar, simplifying phrasing, using correct terminology, and not including python API identifiers in tooltips. Differential Revision: https://developer.blender.org/D9924
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_data_transfer.c2
-rw-r--r--source/blender/editors/object/object_select.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_data_transfer.c b/source/blender/editors/object/object_data_transfer.c
index b251e617a4c..72ef72403cf 100644
--- a/source/blender/editors/object/object_data_transfer.c
+++ b/source/blender/editors/object/object_data_transfer.c
@@ -615,7 +615,7 @@ void OBJECT_OT_data_transfer(wmOperatorType *ot)
ot->name = "Transfer Mesh Data";
ot->idname = "OBJECT_OT_data_transfer";
ot->description =
- "Transfer data layer(s) (weights, edge sharp, ...) from active to selected meshes";
+ "Transfer data layer(s) (weights, edge sharp, etc.) from active to selected meshes";
/* API callbacks.*/
ot->poll = data_transfer_poll;
diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c
index 1e6a7b9f14e..398ad89a694 100644
--- a/source/blender/editors/object/object_select.c
+++ b/source/blender/editors/object/object_select.c
@@ -1311,7 +1311,7 @@ void OBJECT_OT_select_mirror(wmOperatorType *ot)
/* identifiers */
ot->name = "Select Mirror";
- ot->description = "Select the Mirror objects of the selected object eg. L.sword -> R.sword";
+ ot->description = "Select the mirror objects of the selected object e.g. \"L.sword\" and \"R.sword\"";
ot->idname = "OBJECT_OT_select_mirror";
/* api callbacks */