diff --git a/src/core/MainWindow.ui b/src/core/MainWindow.ui index daf22a93e..854f46495 100644 --- a/src/core/MainWindow.ui +++ b/src/core/MainWindow.ui @@ -58,7 +58,7 @@ - File + &File @@ -94,14 +94,14 @@ - View + &View false - Zoom + &Zoom @@ -130,13 +130,13 @@ - Tools + &Tools - Help + &Help @@ -144,7 +144,7 @@ - Edit + &Edit @@ -153,7 +153,7 @@ - Windows + &Windows @@ -182,7 +182,7 @@ - Debug + &Debug @@ -257,7 +257,7 @@ - New Window + &New Window Ctrl+N @@ -278,12 +278,12 @@ - Documentation + &Documentation - Map File + &Map File Ctrl+M @@ -291,7 +291,7 @@ - Save Project + &Save Project Ctrl+S @@ -657,12 +657,12 @@ - Run Rizin script + &Run Rizin script - Reset Settings + &Reset Settings Reset settings @@ -670,7 +670,7 @@ - Quit + &Quit Ctrl+Q @@ -689,7 +689,7 @@ - Refresh Contents + &Refresh Contents Refresh contents @@ -724,7 +724,7 @@ - Preferences + &Preferences @@ -742,17 +742,17 @@ - Import PDB + &Import PDB - Analyze Program + &Analyze Program - Export as code + &Export as code @@ -762,27 +762,27 @@ - Create New Signature File + &Create New Signature File - Add Hexdump + Add &Hexdump - Add Decompiler + Add &Decompiler - Add Disassembly + &Add Disassembly - Add Graph + Add &Graph @@ -874,7 +874,7 @@ - Manage layouts + &Manage layouts diff --git a/src/dialogs/NewFileDialog.ui b/src/dialogs/NewFileDialog.ui index 9e16c8022..3046c79e1 100755 --- a/src/dialogs/NewFileDialog.ui +++ b/src/dialogs/NewFileDialog.ui @@ -146,7 +146,7 @@ - Open File + Open &File @@ -179,7 +179,7 @@ - Select + S&elect @@ -293,14 +293,14 @@ - Don't open any file + &Don't open any file - Open + &Open true @@ -313,7 +313,7 @@ - Open Shellcode + Open &Shellcode @@ -357,7 +357,7 @@ - Open + &Open @@ -367,7 +367,7 @@ - Projects + &Projects @@ -387,7 +387,7 @@ - Select + S&elect @@ -498,7 +498,7 @@ - Open + &Open diff --git a/src/shortcuts/DefaultShortcuts.cpp b/src/shortcuts/DefaultShortcuts.cpp index f8c2774e3..a22a5589f 100644 --- a/src/shortcuts/DefaultShortcuts.cpp +++ b/src/shortcuts/DefaultShortcuts.cpp @@ -105,7 +105,7 @@ const QHash &getDefaultShortcuts() // Debug { "Debug.start", - { { Qt::Key_F9 }, QT_TRANSLATE_NOOP("DebugActions", "Start debug"), "DebugActions" } }, + { { Qt::Key_F9 }, QT_TRANSLATE_NOOP("DebugActions", "Start &debug"), "DebugActions" } }, { "Debug.continue", { { Qt::Key_F5 }, QT_TRANSLATE_NOOP("DebugActions", "Continue"), "DebugActions" } }, { "Debug.continueBack", diff --git a/src/widgets/DebugActions.cpp b/src/widgets/DebugActions.cpp index 5eeec7e38..6b90bc347 100644 --- a/src/widgets/DebugActions.cpp +++ b/src/widgets/DebugActions.cpp @@ -35,9 +35,9 @@ DebugActions::DebugActions(QToolBar *toolBar, MainWindow *main) : QObject(main), suspendIcon = QIcon(":/img/icons/media-suspend_light.svg"); // define action labels - QString startEmulLabel = tr("Start emulation"); - QString startAttachLabel = tr("Attach to process"); - QString startRemoteLabel = tr("Connect to a remote debugger"); + QString startEmulLabel = tr("Start &emulation"); + QString startAttachLabel = tr("&Attach to process"); + QString startRemoteLabel = tr("Connect to a &remote debugger"); QString stopDebugLabel = tr("Stop debug"); QString stopEmulLabel = tr("Stop emulation"); QString restartEmulLabel = tr("Restart emulation");