Extensions: Update addon_enable/disable name and tooltip

Ideally the operator itself should be renamed, but I went the conservative approach
since themes are not supported yet. Once they are supported I suppose the operators
could be unified.
This commit is contained in:
Dalai Felinto 2024-02-21 15:42:30 +01:00 committed by Dalai Felinto
parent 53d9cd4bbb
commit 1860110fa8

@ -427,9 +427,9 @@ class PREFERENCES_OT_keyconfig_remove(Operator):
# Add-on Operators
class PREFERENCES_OT_addon_enable(Operator):
"""Enable an add-on"""
"""Turn on this extension"""
bl_idname = "preferences.addon_enable"
bl_label = "Enable Add-on"
bl_label = "Enable Extension"
module: StringProperty(
name="Module",
@ -473,9 +473,9 @@ class PREFERENCES_OT_addon_enable(Operator):
class PREFERENCES_OT_addon_disable(Operator):
"""Disable an add-on"""
"""Turn off this extension"""
bl_idname = "preferences.addon_disable"
bl_label = "Disable Add-on"
bl_label = "Disable Extension"
module: StringProperty(
name="Module",