From 210131ca184c3aa043371857c022aa1aa149efbf Mon Sep 17 00:00:00 2001 From: Aditya Mangalampalli Date: Fri, 15 Apr 2022 02:00:25 -0700 Subject: Matched casing for almost all replacements --- src/lib/Tray.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/lib/Tray.js') diff --git a/src/lib/Tray.js b/src/lib/Tray.js index 549034e8d..878841213 100644 --- a/src/lib/Tray.js +++ b/src/lib/Tray.js @@ -37,8 +37,8 @@ export default class TrayIcon { { label: tray.mainWindow.isVisible() && tray.mainWindow.isFocused() - ? 'Hide Ferdi' - : 'Show Ferdi', + ? 'Hide Ferdium' + : 'Show Ferdium', click() { tray._toggleWindow(); }, @@ -53,7 +53,7 @@ export default class TrayIcon { }, }, { - label: 'Quit Ferdi', + label: 'Quit Ferdium', click() { app.quit(); }, @@ -71,7 +71,7 @@ export default class TrayIcon { this.mainWindow = BrowserWindow.getAllWindows()[0]; // listen to window events to be able to set correct string - // to tray menu ('Hide Ferdi' / 'Show Ferdi') + // to tray menu ('Hide Ferdium' / 'Show Ferdium') this.mainWindow.on('hide', () => { this._updateTrayMenu(null); }); @@ -114,7 +114,7 @@ export default class TrayIcon { if (this.trayIcon) return; this.trayIcon = new Tray(this._getAsset('tray', INDICATOR_TRAY_PLAIN)); - this.trayIcon.setToolTip('Ferdi'); + this.trayIcon.setToolTip('Ferdium'); this.trayMenu = Menu.buildFromTemplate(this.trayMenuTemplate(this)); if (isLinux) { -- cgit v1.2.3-54-g00ecf