Cosmetic: Changed label of the 'Install Addon...' Button to 'Install from File...'

This commit is contained in:
Gaia Clary 2012-10-10 08:04:04 +00:00
parent 9829ba31b9
commit 3606cd5216
2 changed files with 2 additions and 2 deletions

@ -1668,7 +1668,7 @@ class WM_OT_theme_install(Operator):
class WM_OT_addon_install(Operator):
"Install an addon"
bl_idname = "wm.addon_install"
bl_label = "Install Addon..."
bl_label = "Install from File..."
overwrite = BoolProperty(
name="Overwrite",

@ -92,7 +92,7 @@ class USERPREF_HT_header(Header):
layout.operator("wm.keyconfig_import")
layout.operator("wm.keyconfig_export")
elif userpref.active_section == 'ADDONS':
layout.operator("wm.addon_install")
layout.operator("wm.addon_install", icon="FILESEL")
layout.menu("USERPREF_MT_addons_dev_guides")
elif userpref.active_section == 'THEMES':
layout.operator("ui.reset_default_theme")