@@ -494,17 +494,17 @@ def __init__(self, frame: MainFrame):
494494 menu_tools = self .toolsMenu = wx .Menu ()
495495 if not globalVars .appArgs .secure :
496496 # Translators: The label for the menu item to open NVDA Log Viewer.
497- item = menu_tools .Append (wx .ID_ANY , _ ("View log" ))
497+ item = menu_tools .Append (wx .ID_ANY , _ ("View & log" ))
498498 self .Bind (wx .EVT_MENU , frame .onViewLogCommand , item )
499499 # Translators: The label for the menu item to toggle Speech Viewer.
500- item = self .menu_tools_toggleSpeechViewer = menu_tools .AppendCheckItem (wx .ID_ANY , _ ("Speech viewer" ))
500+ item = self .menu_tools_toggleSpeechViewer = menu_tools .AppendCheckItem (wx .ID_ANY , _ ("& Speech viewer" ))
501501 item .Check (speechViewer .isActive )
502502 self .Bind (wx .EVT_MENU , frame .onToggleSpeechViewerCommand , item )
503503
504504 self .menu_tools_toggleBrailleViewer : wx .MenuItem = menu_tools .AppendCheckItem (
505505 wx .ID_ANY ,
506506 # Translators: The label for the menu item to toggle Braille Viewer.
507- _ ("Braille viewer" )
507+ _ ("& Braille viewer" )
508508 )
509509 item = self .menu_tools_toggleBrailleViewer
510510 self .Bind (wx .EVT_MENU , frame .onToggleBrailleViewerCommand , item )
@@ -514,31 +514,31 @@ def __init__(self, frame: MainFrame):
514514
515515 if not config .isAppX and NVDAState .shouldWriteToDisk ():
516516 # Translators: The label of a menu item to open the Add-on store
517- item = menu_tools .Append (wx .ID_ANY , _ ("Add-on & store..." ))
517+ item = menu_tools .Append (wx .ID_ANY , _ ("& Add-on store..." ))
518518 self .Bind (wx .EVT_MENU , frame .onAddonStoreCommand , item )
519519
520520 if not globalVars .appArgs .secure and not config .isAppX :
521521 # Translators: The label for the menu item to open NVDA Python Console.
522- item = menu_tools .Append (wx .ID_ANY , _ ("Python console" ))
522+ item = menu_tools .Append (wx .ID_ANY , _ ("& Python console" ))
523523 self .Bind (wx .EVT_MENU , frame .onPythonConsoleCommand , item )
524524
525525 if not globalVars .appArgs .secure and not config .isAppX and not NVDAState .isRunningAsSource ():
526526 # Translators: The label for the menu item to create a portable copy of NVDA from an installed or another portable version.
527- item = menu_tools .Append (wx .ID_ANY , _ ("Create portable copy..." ))
527+ item = menu_tools .Append (wx .ID_ANY , _ ("& Create portable copy..." ))
528528 self .Bind (wx .EVT_MENU , frame .onCreatePortableCopyCommand , item )
529529 if not config .isInstalledCopy ():
530530 # Translators: The label for the menu item to install NVDA on the computer.
531531 item = menu_tools .Append (wx .ID_ANY , _ ("&Install NVDA..." ))
532532 self .Bind (wx .EVT_MENU , frame .onInstallCommand , item )
533533 # Translators: The label for the menu item to run the COM registration fix tool
534- item = menu_tools .Append (wx .ID_ANY , _ ("Run COM Registration Fixing tool..." ))
534+ item = menu_tools .Append (wx .ID_ANY , _ ("& Run COM Registration Fixing tool..." ))
535535 self .Bind (wx .EVT_MENU , frame .onRunCOMRegistrationFixesCommand , item )
536536 if not config .isAppX :
537537 # Translators: The label for the menu item to reload plugins.
538- item = menu_tools .Append (wx .ID_ANY , _ ("Reload plugins" ))
538+ item = menu_tools .Append (wx .ID_ANY , _ ("R&eload plugins" ))
539539 self .Bind (wx .EVT_MENU , frame .onReloadPluginsCommand , item )
540540 # Translators: The label for the Tools submenu in NVDA menu.
541- self .menu .AppendSubMenu (menu_tools ,_ ("Tools" ))
541+ self .menu .AppendSubMenu (menu_tools , _ ("& Tools" ))
542542
543543 menu_help = self .helpMenu = wx .Menu ()
544544 if not globalVars .appArgs .secure :
@@ -576,7 +576,7 @@ def __init__(self, frame: MainFrame):
576576 item = menu_help .Append (wx .ID_ANY , _ ("&Check for update..." ))
577577 self .Bind (wx .EVT_MENU , frame .onCheckForUpdateCommand , item )
578578 # Translators: The label for the menu item to open About dialog to get information about NVDA.
579- item = menu_help .Append (wx .ID_ABOUT , _ ("About..." ), _ ("About NVDA" ))
579+ item = menu_help .Append (wx .ID_ABOUT , _ ("& About..." ), _ ("About NVDA" ))
580580 self .Bind (wx .EVT_MENU , frame .onAboutCommand , item )
581581 # Translators: The label for the Help submenu in NVDA menu.
582582 self .menu .AppendSubMenu (menu_help ,_ ("&Help" ))
@@ -586,7 +586,7 @@ def __init__(self, frame: MainFrame):
586586 if not globalVars .appArgs .secure :
587587 self .menu .AppendSeparator ()
588588 # Translators: The label for the menu item to open donate page.
589- item = self .menu .Append (wx .ID_ANY , _ ("Donate" ))
589+ item = self .menu .Append (wx .ID_ANY , _ ("& Donate" ))
590590 self .Bind (wx .EVT_MENU , lambda evt : os .startfile (DONATE_URL ), item )
591591 self .installPendingUpdateMenuItemPos = self .menu .GetMenuItemCount ()
592592 item = self .installPendingUpdateMenuItem = self .menu .Append (wx .ID_ANY ,
@@ -673,7 +673,7 @@ def _appendConfigManagementSection(self, frame: wx.Frame) -> None:
673673 wx .ID_ANY ,
674674 # Translators: The label for the menu item to reset settings to default settings.
675675 # Here, default settings means settings that were there when the user first used NVDA.
676- _ ("& Reset configuration to factory defaults" ),
676+ _ ("Reset configuration to & factory defaults" ),
677677 # Translators: The help text for the menu item to reset settings to default settings.
678678 # Here, default settings means settings that were there when the user first used NVDA.
679679 _ ("Reset all settings to default state" )
0 commit comments