From 4ce5e5fbdc5c4b6a2f51b6e54db0642c5c4e1216 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Mon, 28 Feb 2022 20:23:14 +1000 Subject: [PATCH] Update Help menu options (#1383) --- src/locales/en/messages.json | 8 ++++---- src/main/menu.help.ts | 20 ++++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 68f36d8021b..c4f04b2285d 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -736,11 +736,11 @@ "passwordGenerator": { "message": "Password Generator" }, - "emailUs": { - "message": "Email Us" + "contactUs": { + "message": "Contact Us" }, - "visitOurWebsite": { - "message": "Visit Our Website" + "getHelp": { + "message": "Get Help" }, "fileBugReport": { "message": "File a Bug Report" diff --git a/src/main/menu.help.ts b/src/main/menu.help.ts index 20d415d1bb2..d425da8f21f 100644 --- a/src/main/menu.help.ts +++ b/src/main/menu.help.ts @@ -15,8 +15,8 @@ export class HelpMenu implements IMenubarMenu { get items(): MenuItemConstructorOptions[] { const items = [ - this.emailUs, - this.visitOurWebsite, + this.getHelp, + this.contactUs, this.fileBugReport, this.legal, this.separator, @@ -44,19 +44,19 @@ export class HelpMenu implements IMenubarMenu { this._aboutMenu = aboutMenu; } - private get emailUs(): MenuItemConstructorOptions { + private get contactUs(): MenuItemConstructorOptions { return { - id: "emailUs", - label: this.localize("emailUs"), - click: () => shell.openExternal("mailTo:hello@bitwarden.com"), + id: "contactUs", + label: this.localize("contactUs"), + click: () => shell.openExternal("https://bitwarden.com/contact"), }; } - private get visitOurWebsite(): MenuItemConstructorOptions { + private get getHelp(): MenuItemConstructorOptions { return { - id: "visitOurWebsite", - label: this.localize("visitOurWebsite"), - click: () => shell.openExternal("https://bitwarden.com/contact"), + id: "getHelp", + label: this.localize("getHelp"), + click: () => shell.openExternal("https://bitwarden.com/help"), }; }