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:
authorCampbell Barton <ideasman42@gmail.com>2016-04-12 17:29:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-12 17:30:38 +0300
commit6cc953fb74285f7ed8fa671c9ace7d77958336b9 (patch)
tree808c309fba1e4b45660ddd84feff996bc830feed /release/scripts/startup/bl_operators
parent951fad2baa592b4dc5201d8630517e6a92a510d2 (diff)
Correct UI messages: hyphenate 'add-ons'
Diffstat (limited to 'release/scripts/startup/bl_operators')
-rw-r--r--release/scripts/startup/bl_operators/wm.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index e8f3b105116..76d41d91b78 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -1840,12 +1840,12 @@ class WM_OT_operator_cheat_sheet(Operator):
# -----------------------------------------------------------------------------
-# Addon Operators
+# Add-on Operators
class WM_OT_addon_enable(Operator):
"Enable an add-on"
bl_idname = "wm.addon_enable"
- bl_label = "Enable Addon"
+ bl_label = "Enable Add-on"
module = StringProperty(
name="Module",
@@ -1889,7 +1889,7 @@ class WM_OT_addon_enable(Operator):
class WM_OT_addon_disable(Operator):
"Disable an add-on"
bl_idname = "wm.addon_disable"
- bl_label = "Disable Addon"
+ bl_label = "Disable Add-on"
module = StringProperty(
name="Module",
@@ -1994,7 +1994,7 @@ class WM_OT_addon_install(Operator):
overwrite = BoolProperty(
name="Overwrite",
- description="Remove existing addons with the same ID",
+ description="Remove existing add-ons with the same ID",
default=True,
)
target = EnumProperty(
@@ -2053,7 +2053,7 @@ class WM_OT_addon_install(Operator):
path_addons = os.path.join(path_addons, "addons")
if not path_addons:
- self.report({'ERROR'}, "Failed to get addons path")
+ self.report({'ERROR'}, "Failed to get add-ons path")
return {'CANCELLED'}
if not os.path.isdir(path_addons):
@@ -2155,7 +2155,7 @@ class WM_OT_addon_install(Operator):
class WM_OT_addon_remove(Operator):
"Delete the add-on from the file system"
bl_idname = "wm.addon_remove"
- bl_label = "Remove Addon"
+ bl_label = "Remove Add-on"
module = StringProperty(
name="Module",
@@ -2183,7 +2183,7 @@ class WM_OT_addon_remove(Operator):
path, isdir = WM_OT_addon_remove.path_from_addon(self.module)
if path is None:
- self.report({'WARNING'}, "Addon path %r could not be found" % path)
+ self.report({'WARNING'}, "Add-on path %r could not be found" % path)
return {'CANCELLED'}
# in case its enabled
@@ -2202,7 +2202,7 @@ class WM_OT_addon_remove(Operator):
# lame confirmation check
def draw(self, context):
- self.layout.label(text="Remove Addon: %r?" % self.module)
+ self.layout.label(text="Remove Add-on: %r?" % self.module)
path, isdir = WM_OT_addon_remove.path_from_addon(self.module)
self.layout.label(text="Path: %r" % path)