fix: add withAcceleratorPrefix function to remove accelerator prefixes from locale strings

pull/3206/head
Ryan Miller 1 year ago
parent 6024dce393
commit 45eae6e956

@ -2,14 +2,11 @@
"copyErrorAndQuit": "Copy error and quit",
"unknown": "Unknown",
"databaseError": "Database Error",
"mainMenuFile": "&File",
"mainMenuEdit": "&Edit",
"mainMenuView": "&View",
"mainMenuWindow": "&Window",
"mainMenuHelp": "&Help",
"appMenuHide": "Hide",
"appMenuHideOthers": "Hide Others",
"appMenuUnhide": "Show All",
"file": "File",
"edit": "Edit",
"view": "View",
"window": "Window",
"sessionHelp": "Help",
"appMenuQuit": "Quit Session",
"editMenuUndo": "Undo",
"editMenuRedo": "Redo",

@ -2,6 +2,17 @@ import { isString } from 'lodash';
import { LocaleMessagesType } from './locale';
import { Noop } from '../types/Util';
/**
* Adds the accelerator prefix to the label for the menu item
* @link https://www.electronjs.org/docs/latest/api/menu#static-methods
*
* @param label - The label for the menu item
* @returns The label with the accelerator prefix
*/
const withAcceleratorPrefix = (label:string) => {
return `&${label}`;
}
export const createTemplate = (
options: {
openReleaseNotes: () => void;
@ -28,7 +39,7 @@ export const createTemplate = (
const template = [
{
label: messages.mainMenuFile,
label: withAcceleratorPrefix(messages.file),
submenu: [
{
type: 'separator',
@ -40,7 +51,7 @@ export const createTemplate = (
],
},
{
label: messages.mainMenuEdit,
label: withAcceleratorPrefix(messages.edit),
submenu: [
{
role: 'undo',
@ -76,7 +87,7 @@ export const createTemplate = (
],
},
{
label: messages.mainMenuView,
label: withAcceleratorPrefix(messages.view),
submenu: [
{
role: 'resetzoom',
@ -115,7 +126,7 @@ export const createTemplate = (
],
},
{
label: messages.mainMenuWindow,
label: withAcceleratorPrefix(messages.window),
role: 'window',
submenu: [
{
@ -125,7 +136,7 @@ export const createTemplate = (
],
},
{
label: messages.mainMenuHelp,
label: withAcceleratorPrefix(messages.sessionHelp),
role: 'help',
submenu: [
{

Loading…
Cancel
Save