aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout/Sidebar.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/layout/Sidebar.js')
-rw-r--r--src/components/layout/Sidebar.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js
index 3e24c9230..d0b2dcf72 100644
--- a/src/components/layout/Sidebar.js
+++ b/src/components/layout/Sidebar.js
@@ -16,11 +16,11 @@ import {
16import Tabbar from '../services/tabs/Tabbar'; 16import Tabbar from '../services/tabs/Tabbar';
17import { 17import {
18 settingsShortcutKey, 18 settingsShortcutKey,
19 lockFerdiShortcutKey, 19 lockFerdiumShortcutKey,
20 todosToggleShortcutKey, 20 todosToggleShortcutKey,
21 workspaceToggleShortcutKey, 21 workspaceToggleShortcutKey,
22 addNewServiceShortcutKey, 22 addNewServiceShortcutKey,
23 muteFerdiShortcutKey, 23 muteFerdiumShortcutKey,
24} from '../../environment'; 24} from '../../environment';
25import { todosStore } from '../../features/todos'; 25import { todosStore } from '../../features/todos';
26import { todoActions } from '../../features/todos/actions'; 26import { todoActions } from '../../features/todos/actions';
@@ -52,15 +52,15 @@ const messages = defineMessages({
52 }, 52 },
53 openTodosDrawer: { 53 openTodosDrawer: {
54 id: 'sidebar.openTodosDrawer', 54 id: 'sidebar.openTodosDrawer',
55 defaultMessage: 'Open Ferdi Todos', 55 defaultMessage: 'Open Ferdium Todos',
56 }, 56 },
57 closeTodosDrawer: { 57 closeTodosDrawer: {
58 id: 'sidebar.closeTodosDrawer', 58 id: 'sidebar.closeTodosDrawer',
59 defaultMessage: 'Close Ferdi Todos', 59 defaultMessage: 'Close Ferdium Todos',
60 }, 60 },
61 lockFerdi: { 61 lockFerdium: {
62 id: 'sidebar.lockFerdi', 62 id: 'sidebar.lockFerdium',
63 defaultMessage: 'Lock Ferdi', 63 defaultMessage: 'Lock Ferdium',
64 }, 64 },
65}); 65});
66 66
@@ -200,7 +200,7 @@ class Sidebar extends Component {
200 }`} 200 }`}
201 data-tip={`${intl.formatMessage( 201 data-tip={`${intl.formatMessage(
202 isAppMuted ? messages.unmute : messages.mute, 202 isAppMuted ? messages.unmute : messages.mute,
203 )} (${muteFerdiShortcutKey(false)})`} 203 )} (${muteFerdiumShortcutKey(false)})`}
204 > 204 >
205 <Icon icon={isAppMuted ? mdiBellOff : mdiBell} size={1.5} /> 205 <Icon icon={isAppMuted ? mdiBellOff : mdiBell} size={1.5} />
206 </button> 206 </button>
@@ -218,8 +218,8 @@ class Sidebar extends Component {
218 }); 218 });
219 }} 219 }}
220 data-tip={`${intl.formatMessage( 220 data-tip={`${intl.formatMessage(
221 messages.lockFerdi, 221 messages.lockFerdium,
222 )} (${lockFerdiShortcutKey(false)})`} 222 )} (${lockFerdiumShortcutKey(false)})`}
223 > 223 >
224 <Icon icon={mdiLock} size={1.5} /> 224 <Icon icon={mdiLock} size={1.5} />
225 </button> 225 </button>