From d92fa875da4efd67bd2178fda43a7964f37c92d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Brey?= Date: Mon, 12 Mar 2018 10:03:33 +0100 Subject: [PATCH] Fix typo: 'Shoozed' -> 'Snoozed' Was visible in README and system tray menu, and also present in code. --- README.md | 2 +- app/main/menu.js | 2 +- app/main/tray.js | 4 ++-- app/renderer/browser.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9d767c6..9e4a4f2 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Inboxer supports all Inbox by Gmail keyboard shortcuts, system-specific keybindi | Compose Message | Cmd/Ctrl N | Create Reminder | Cmd/Ctrl Shift N | Go to Inbox | Cmd/Ctrl I -| Go to Shoozed | Cmd/Ctrl S +| Go to Snoozed | Cmd/Ctrl S | Go to Done | Cmd/Ctrl D | Drafts | Cmd/Ctrl Shift D | Sent | Cmd/Ctrl Shift S diff --git a/app/main/menu.js b/app/main/menu.js index b3207a0..43bd4a1 100644 --- a/app/main/menu.js +++ b/app/main/menu.js @@ -101,7 +101,7 @@ const viewItems = [ label: 'Go to Snoozed', accelerator: 'CmdOrCtrl+S', click(menuItem, focusedWindow) { - sendAction(focusedWindow, 'go-to-shoozed'); + sendAction(focusedWindow, 'go-to-snoozed'); }, }, { diff --git a/app/main/tray.js b/app/main/tray.js index cb64ceb..11b2a81 100644 --- a/app/main/tray.js +++ b/app/main/tray.js @@ -22,9 +22,9 @@ const contextMenu = focusedWindow => [ }, }, { - label: 'Go to Shoozed', + label: 'Go to Snoozed', click() { - sendAction(focusedWindow, 'go-to-shoozed'); + sendAction(focusedWindow, 'go-to-snoozed'); }, }, { diff --git a/app/renderer/browser.js b/app/renderer/browser.js index 864aa49..be9aac4 100644 --- a/app/renderer/browser.js +++ b/app/renderer/browser.js @@ -9,7 +9,7 @@ ipc.on('show-preferences', () => $('.oin9Fc.cQ.lN').click()); // primary folder shortcuts ipc.on('go-to-inbox', () => $$('.pa .oin9Fc.cN')[0].click()); -ipc.on('go-to-shoozed', () => $$('.pa .oin9Fc.cN')[1].click()); +ipc.on('go-to-snoozed', () => $$('.pa .oin9Fc.cN')[1].click()); ipc.on('go-to-done', () => $$('.pa .oin9Fc.cN')[2].click()); // secondary folder shortcuts