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 /release
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 'release')
-rw-r--r--release/scripts/startup/bl_operators/userpref.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py
index 9adb518ff55..0cd97ca6a9e 100644
--- a/release/scripts/startup/bl_operators/userpref.py
+++ b/release/scripts/startup/bl_operators/userpref.py
@@ -969,9 +969,9 @@ class PREFERENCES_OT_app_template_install(Operator):
# Studio Light Operations
class PREFERENCES_OT_studiolight_install(Operator):
- """Install a user defined studio light"""
+ """Install a user defined light"""
bl_idname = "preferences.studiolight_install"
- bl_label = "Install Custom Studio Light"
+ bl_label = "Install Light"
files: CollectionProperty(
name="File Path",
@@ -981,7 +981,7 @@ class PREFERENCES_OT_studiolight_install(Operator):
subtype='DIR_PATH',
)
filter_folder: BoolProperty(
- name="Filter folders",
+ name="Filter Folders",
default=True,
options={'HIDDEN'},
)
@@ -992,9 +992,9 @@ class PREFERENCES_OT_studiolight_install(Operator):
type: EnumProperty(
name="Type",
items=(
- ('MATCAP', "MatCap", ""),
- ('WORLD', "World", ""),
- ('STUDIO', "Studio", ""),
+ ('MATCAP', "MatCap", "Install custom MatCaps"),
+ ('WORLD', "World", "Install custom HDRIs"),
+ ('STUDIO', "Studio", "Install custom Studio Lights"),
)
)