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-01-07 07:54:10 +0300
committerHans Goudey <h.goudey@me.com>2021-01-07 07:54:10 +0300
commitdd0df3c5d2b634ee7fd99f0c0d2e3c6a0c0bdaaf (patch)
tree3f3631ab88993932b367872a62645b5b1047e120 /source/blender/editors/object
parent2dfd117ab5d52fcb730e9dbad18fdd29bebccd4d (diff)
UI: Fix various issues with UI text
- Use the name "Point Cloud" instead of "Pointcloud" - Fix a typo in UV_OT_smart_project. - Use the name "Install Light" to for the installation operator for MatCaps, HDRIs, and Studio Lights. Fixes T83585, T65291, and T54921 Differential Revision: https://developer.blender.org/D9867
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_add.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index a01f19f4706..90f9b83ba67 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -2411,7 +2411,7 @@ static const EnumPropertyItem convert_target_items[] = {
ICON_OUTLINER_OB_MESH,
"Mesh",
#ifdef WITH_POINT_CLOUD
- "Mesh from Curve, Surface, Metaball, Text, or Pointcloud objects"},
+ "Mesh from Curve, Surface, Metaball, Text, or Point Cloud objects"},
#else
"Mesh from Curve, Surface, Metaball, or Text objects"},
#endif
@@ -2424,8 +2424,8 @@ static const EnumPropertyItem convert_target_items[] = {
{OB_POINTCLOUD,
"POINTCLOUD",
ICON_OUTLINER_OB_POINTCLOUD,
- "Pointcloud",
- "Pointcloud from Mesh objects"},
+ "Point Cloud",
+ "Point Cloud from Mesh objects"},
#endif
{0, NULL, 0, NULL, NULL},
};