aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services/tabs
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/components/services/tabs
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/components/services/tabs')
-rw-r--r--src/components/services/tabs/TabItem.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/services/tabs/TabItem.js b/src/components/services/tabs/TabItem.js
index d59cbe228..e5892be5d 100644
--- a/src/components/services/tabs/TabItem.js
+++ b/src/components/services/tabs/TabItem.js
@@ -22,10 +22,6 @@ const messages = defineMessages({
22 id: 'tabs.item.reload', 22 id: 'tabs.item.reload',
23 defaultMessage: '!!!Reload', 23 defaultMessage: '!!!Reload',
24 }, 24 },
25 edit: {
26 id: 'tabs.item.edit',
27 defaultMessage: '!!!Edit',
28 },
29 disableNotifications: { 25 disableNotifications: {
30 id: 'tabs.item.disableNotifications', 26 id: 'tabs.item.disableNotifications',
31 defaultMessage: '!!!Disable notifications', 27 defaultMessage: '!!!Disable notifications',
@@ -205,7 +201,7 @@ class TabItem extends Component {
205 accelerator: `${cmdOrCtrlShortcutKey()}+R`, 201 accelerator: `${cmdOrCtrlShortcutKey()}+R`,
206 }, 202 },
207 { 203 {
208 label: intl.formatMessage(messages.edit), 204 label: intl.formatMessage(globalMessages.edit),
209 click: () => 205 click: () =>
210 openSettings({ 206 openSettings({
211 path: `services/edit/${service.id}`, 207 path: `services/edit/${service.id}`,