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>2020-10-28 20:09:31 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-28 20:10:41 +0300
commitf7e4b209e241f8f97036a6a14c4993a38f2b5294 (patch)
tree01e126412f636b8400c5618815f8a08286efa10d /release
parent9f8acce3ab9988113dd8bdbc8d757e453897cfe9 (diff)
UI: Misc Label and Description Changes
Various changes to some labels and descriptions to be more accurate, clear, or less confusing. Differential Revision: https://developer.blender.org/D8394 Reviewed by Hans Goudey
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/file.py4
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py2
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_operators/file.py b/release/scripts/startup/bl_operators/file.py
index 43fbd381cb2..78a7ead71ca 100644
--- a/release/scripts/startup/bl_operators/file.py
+++ b/release/scripts/startup/bl_operators/file.py
@@ -77,7 +77,7 @@ class WM_OT_previews_batch_generate(Operator):
)
use_intern_data: BoolProperty(
default=True,
- name="Mat/Tex/...",
+ name="Materials & Textures",
description="Generate 'internal' previews (materials, textures, images, etc.)",
)
@@ -187,7 +187,7 @@ class WM_OT_previews_batch_clear(Operator):
)
use_intern_data: BoolProperty(
default=True,
- name="Mat/Tex/...",
+ name="Materials & Textures",
description="Clear 'internal' previews (materials, textures, images, etc.)",
)
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 6fc29119cdc..a7e28c38b9e 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -248,7 +248,7 @@ class TOPBAR_MT_file_cleanup(Menu):
layout = self.layout
layout.separator()
- layout.operator("outliner.orphans_purge")
+ layout.operator("outliner.orphans_purge", text="Unused Data-Blocks")
class TOPBAR_MT_file(Menu):
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 798f5363f9d..1707c21c164 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -271,7 +271,7 @@ class USERPREF_PT_interface_editors(InterfacePanel, CenterAlignMixIn, Panel):
class USERPREF_PT_interface_temporary_windows(InterfacePanel, CenterAlignMixIn, Panel):
- bl_label = "Temporary Windows"
+ bl_label = "Temporary Editors"
bl_parent_id = "USERPREF_PT_interface_editors"
bl_options = {'DEFAULT_CLOSED'}