aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
authorLibravatar Aditya Mangalampalli <aditya.mangalampalli@gmail.com>2022-04-15 02:00:25 -0700
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-16 21:57:57 +0530
commit210131ca184c3aa043371857c022aa1aa149efbf (patch)
tree6bc4e10a1540e55a66146c099bc468a12287425e /src/containers
parentUpdate submodule url to ferdium-recipes (#1) (diff)
downloadferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.tar.gz
ferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.tar.zst
ferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.zip
Matched casing for almost all replacements
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/settings/EditSettingsScreen.js24
-rw-r--r--src/containers/settings/SupportScreen.js4
2 files changed, 14 insertions, 14 deletions
diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js
index 6e405cd92..87d1f1456 100644
--- a/src/containers/settings/EditSettingsScreen.js
+++ b/src/containers/settings/EditSettingsScreen.js
@@ -37,12 +37,12 @@ import globalMessages from '../../i18n/globalMessages';
37import WorkspacesStore from '../../features/workspaces/store'; 37import WorkspacesStore from '../../features/workspaces/store';
38import ServicesStore from '../../stores/ServicesStore'; 38import ServicesStore from '../../stores/ServicesStore';
39 39
40const debug = require('debug')('Ferdi:EditSettingsScreen'); 40const debug = require('debug')('Ferdium:EditSettingsScreen');
41 41
42const messages = defineMessages({ 42const messages = defineMessages({
43 autoLaunchOnStart: { 43 autoLaunchOnStart: {
44 id: 'settings.app.form.autoLaunchOnStart', 44 id: 'settings.app.form.autoLaunchOnStart',
45 defaultMessage: 'Launch Ferdi on start', 45 defaultMessage: 'Launch Ferdium on start',
46 }, 46 },
47 autoLaunchInBackground: { 47 autoLaunchInBackground: {
48 id: 'settings.app.form.autoLaunchInBackground', 48 id: 'settings.app.form.autoLaunchInBackground',
@@ -50,7 +50,7 @@ const messages = defineMessages({
50 }, 50 },
51 runInBackground: { 51 runInBackground: {
52 id: 'settings.app.form.runInBackground', 52 id: 'settings.app.form.runInBackground',
53 defaultMessage: 'Keep Ferdi in background when closing the window', 53 defaultMessage: 'Keep Ferdium in background when closing the window',
54 }, 54 },
55 startMinimized: { 55 startMinimized: {
56 id: 'settings.app.form.startMinimized', 56 id: 'settings.app.form.startMinimized',
@@ -58,27 +58,27 @@ const messages = defineMessages({
58 }, 58 },
59 confirmOnQuit: { 59 confirmOnQuit: {
60 id: 'settings.app.form.confirmOnQuit', 60 id: 'settings.app.form.confirmOnQuit',
61 defaultMessage: 'Confirm when quitting Ferdi', 61 defaultMessage: 'Confirm when quitting Ferdium',
62 }, 62 },
63 enableSystemTray: { 63 enableSystemTray: {
64 id: 'settings.app.form.enableSystemTray', 64 id: 'settings.app.form.enableSystemTray',
65 defaultMessage: 'Always show Ferdi in System Tray', 65 defaultMessage: 'Always show Ferdium in System Tray',
66 }, 66 },
67 enableMenuBar: { 67 enableMenuBar: {
68 id: 'settings.app.form.enableMenuBar', 68 id: 'settings.app.form.enableMenuBar',
69 defaultMessage: 'Always show Ferdi in Menu Bar', 69 defaultMessage: 'Always show Ferdium in Menu Bar',
70 }, 70 },
71 reloadAfterResume: { 71 reloadAfterResume: {
72 id: 'settings.app.form.reloadAfterResume', 72 id: 'settings.app.form.reloadAfterResume',
73 defaultMessage: 'Reload Ferdi after system resume', 73 defaultMessage: 'Reload Ferdium after system resume',
74 }, 74 },
75 minimizeToSystemTray: { 75 minimizeToSystemTray: {
76 id: 'settings.app.form.minimizeToSystemTray', 76 id: 'settings.app.form.minimizeToSystemTray',
77 defaultMessage: 'Minimize Ferdi to system tray', 77 defaultMessage: 'Minimize Ferdium to system tray',
78 }, 78 },
79 closeToSystemTray: { 79 closeToSystemTray: {
80 id: 'settings.app.form.closeToSystemTray', 80 id: 'settings.app.form.closeToSystemTray',
81 defaultMessage: 'Close Ferdi to system tray', 81 defaultMessage: 'Close Ferdium to system tray',
82 }, 82 },
83 privateNotifications: { 83 privateNotifications: {
84 id: 'settings.app.form.privateNotifications', 84 id: 'settings.app.form.privateNotifications',
@@ -142,7 +142,7 @@ const messages = defineMessages({
142 }, 142 },
143 useTouchIdToUnlock: { 143 useTouchIdToUnlock: {
144 id: 'settings.app.form.useTouchIdToUnlock', 144 id: 'settings.app.form.useTouchIdToUnlock',
145 defaultMessage: 'Allow using TouchID to unlock Ferdi', 145 defaultMessage: 'Allow using TouchID to unlock Ferdium',
146 }, 146 },
147 inactivityLock: { 147 inactivityLock: {
148 id: 'settings.app.form.inactivityLock', 148 id: 'settings.app.form.inactivityLock',
@@ -234,7 +234,7 @@ const messages = defineMessages({
234 }, 234 },
235 enableGlobalHideShortcut: { 235 enableGlobalHideShortcut: {
236 id: 'settings.app.form.enableGlobalHideShortcut', 236 id: 'settings.app.form.enableGlobalHideShortcut',
237 defaultMessage: 'Enable Global shortcut to hide Ferdi', 237 defaultMessage: 'Enable Global shortcut to hide Ferdium',
238 }, 238 },
239 beta: { 239 beta: {
240 id: 'settings.app.form.beta', 240 id: 'settings.app.form.beta',
@@ -246,7 +246,7 @@ const messages = defineMessages({
246 }, 246 },
247 enableTodos: { 247 enableTodos: {
248 id: 'settings.app.form.enableTodos', 248 id: 'settings.app.form.enableTodos',
249 defaultMessage: 'Enable Ferdi Todos', 249 defaultMessage: 'Enable Ferdium Todos',
250 }, 250 },
251 keepAllWorkspacesLoaded: { 251 keepAllWorkspacesLoaded: {
252 id: 'settings.app.form.keepAllWorkspacesLoaded', 252 id: 'settings.app.form.keepAllWorkspacesLoaded',
diff --git a/src/containers/settings/SupportScreen.js b/src/containers/settings/SupportScreen.js
index b4ad952b2..142bd3a57 100644
--- a/src/containers/settings/SupportScreen.js
+++ b/src/containers/settings/SupportScreen.js
@@ -2,7 +2,7 @@ import { Component } from 'react';
2import { inject } from 'mobx-react'; 2import { inject } from 'mobx-react';
3import PropTypes from 'prop-types'; 3import PropTypes from 'prop-types';
4 4
5import SupportFerdi from '../../components/settings/supportFerdi/SupportFerdiDashboard'; 5import SupportFerdium from '../../components/settings/supportFerdium/SupportFerdiumDashboard';
6import ErrorBoundary from '../../components/util/ErrorBoundary'; 6import ErrorBoundary from '../../components/util/ErrorBoundary';
7import AppStore from '../../stores/AppStore'; 7import AppStore from '../../stores/AppStore';
8 8
@@ -20,7 +20,7 @@ class SupportScreen extends Component {
20 render() { 20 render() {
21 return ( 21 return (
22 <ErrorBoundary> 22 <ErrorBoundary>
23 <SupportFerdi openLink={this.openLink} /> 23 <SupportFerdium openLink={this.openLink} />
24 </ErrorBoundary> 24 </ErrorBoundary>
25 ); 25 );
26 } 26 }