Skip to content

Commit

Permalink
Made the enhanced UIA label translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil-18 committed Mar 16, 2024
1 parent 36394af commit f1c7032
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addon/globalPlugins/enhancedControlSupport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,12 +542,12 @@ def _get_backgroundSelectionColor(self):
supportedControls.insert(0, _('Use normal add-on behavior'))
supportedControls.append('MSAA')
supportedControls.append('UIA')
supportedControls.append("enhanced UIA")
# Translators: an option in a combo box
enhancedUIA = _("enhanced UIA")
supportedControls.append(enhancedUIA)
# Translators: an option in a combo box
normal = _('Use normal NVDA behavior')
supportedControls.append(normal)
# Translators: an option in a combo box
enhancedUIA = _("enhanced UIA")
classNamesToNVDAControlTypeNames.update({'MSAA': 'MSAA', 'UIA': 'UIA', "enhanced UIA": enhancedUIA, 'normal': normal})
class ControlDialog(SettingsDialog):
# Translators: The title for the control type selection dialog
Expand Down

0 comments on commit f1c7032

Please sign in to comment.