From 71bf0437c12fcacd8778949adad49c8e738fdf38 Mon Sep 17 00:00:00 2001 From: "Helmut K. C. Tessarek" Date: Sun, 18 Oct 2020 07:57:04 -0400 Subject: [PATCH] Desktop: Tray: Exit -> Quit (#3945) --- ElectronClient/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElectronClient/app.ts b/ElectronClient/app.ts index 422138998..e751b3824 100644 --- a/ElectronClient/app.ts +++ b/ElectronClient/app.ts @@ -425,7 +425,7 @@ class Application extends BaseApplication { const contextMenu = Menu.buildFromTemplate([ { label: _('Open %s', app.electronApp().name), click: () => { app.window().show(); } }, { type: 'separator' }, - { label: _('Exit'), click: () => { app.quit(); } }, + { label: _('Quit'), click: () => { app.quit(); } }, ]); app.createTray(contextMenu); }