Skip to content

Commit

Permalink
fix(translation): missing translation for "Open notes" shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Apr 8, 2024
1 parent 258fbc8 commit 0565ae1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/shortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const shortcutEvents: Record<string, { l18n: string; l18nParam?: string |
'save-content': { l18n: 'application.saveContent' },
'create-connection': { l18n: 'connection.createNewConnection' },
'open-settings': { l18n: 'application.openSettings' },
'open-scratchpad': { l18n: 'application.openScratchpad' }
'open-scratchpad': { l18n: 'application.openNotes' }
};

interface ShortcutRecord {
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/i18n/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,8 @@ export const enUS = {
tag: 'Tag', // Note tag,
saveFile: 'Save file',
saveFileAs: 'Save file as',
openFile: 'Open file'
openFile: 'Open file',
openNotes: 'Open notes'

},
faker: { // Faker.js methods, used in random generated content
Expand Down

0 comments on commit 0565ae1

Please sign in to comment.