aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/globalMessages.js
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-09-07 18:15:46 +0530
committerLibravatar GitHub <noreply@github.com>2021-09-07 18:15:46 +0530
commitd5fd04626ce22d6194924b75f268fefa41aa2db5 (patch)
tree7181612feeb035fb07940cef4e41c491befd45ab /src/i18n/globalMessages.js
parentNew translations (#1877) (diff)
downloadferdium-app-d5fd04626ce22d6194924b75f268fefa41aa2db5.tar.gz
ferdium-app-d5fd04626ce22d6194924b75f268fefa41aa2db5.tar.zst
ferdium-app-d5fd04626ce22d6194924b75f268fefa41aa2db5.zip
Add a confirmation when quitting Ferdi and a preference to toggle it (implements #1857) (#1879)
Works for the 'Ferdi > Quit' menu, the shortcut key to quit (Cmd/Ctrl+Q) and also from the tray icon.
Diffstat (limited to 'src/i18n/globalMessages.js')
-rw-r--r--src/i18n/globalMessages.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/i18n/globalMessages.js b/src/i18n/globalMessages.js
index f4d764577..1cebbddf0 100644
--- a/src/i18n/globalMessages.js
+++ b/src/i18n/globalMessages.js
@@ -57,4 +57,13 @@ export default defineMessages({
57 id: 'global.submit', 57 id: 'global.submit',
58 defaultMessage: '!!!Submit', 58 defaultMessage: '!!!Submit',
59 }, 59 },
60 quit: {
61 id: 'global.quit',
62 defaultMessage: '!!!Quit',
63 },
64 quitConfirmation: {
65 id: 'global.quitConfirmation',
66 defaultMessage:
67 '!!!Do you really want to quit Ferdi?',
68 },
60}); 69});