aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-08 04:38:56 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-08 05:11:37 +0530
commitc875cb06d0badfb945a1784e90be2ee8fca0b7e1 (patch)
tree61fade08770c19dd9e4e9a7bbe2b92551a4db0d0 /src/lib
parentfix: black screen in macOS when closing to systray in fullscreen mode (#1883) (diff)
downloadferdium-app-c875cb06d0badfb945a1784e90be2ee8fca0b7e1.tar.gz
ferdium-app-c875cb06d0badfb945a1784e90be2ee8fca0b7e1.tar.zst
ferdium-app-c875cb06d0badfb945a1784e90be2ee8fca0b7e1.zip
refactor: merge common i18n strings [skip ci]
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Menu.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/Menu.js b/src/lib/Menu.js
index 3ae9fffbc..2c24b696b 100644
--- a/src/lib/Menu.js
+++ b/src/lib/Menu.js
@@ -231,10 +231,6 @@ const menuItems = defineMessages({
231 id: 'menu.app.about', 231 id: 'menu.app.about',
232 defaultMessage: '!!!About Ferdi', 232 defaultMessage: '!!!About Ferdi',
233 }, 233 },
234 settings: {
235 id: 'menu.app.settings',
236 defaultMessage: '!!!Settings',
237 },
238 checkForUpdates: { 234 checkForUpdates: {
239 id: 'menu.app.checkForUpdates', 235 id: 'menu.app.checkForUpdates',
240 defaultMessage: '!!!Check for updates', 236 defaultMessage: '!!!Check for updates',
@@ -772,7 +768,7 @@ export default class FranzMenu {
772 type: 'separator', 768 type: 'separator',
773 }, 769 },
774 { 770 {
775 label: intl.formatMessage(menuItems.settings), 771 label: intl.formatMessage(globalMessages.settings),
776 accelerator: `${settingsShortcutKey()}`, 772 accelerator: `${settingsShortcutKey()}`,
777 click: () => { 773 click: () => {
778 this.actions.ui.openSettings({ path: 'app' }); 774 this.actions.ui.openSettings({ path: 'app' });