aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/AppUpdateInfoBar.tsx6
-rw-r--r--src/components/auth/AuthLayout.js6
-rw-r--r--src/components/auth/ChangeServer.js10
-rw-r--r--src/components/auth/Import.js4
-rw-r--r--src/components/auth/Login.js6
-rw-r--r--src/components/auth/Signup.js2
-rw-r--r--src/components/auth/Welcome.js4
-rw-r--r--src/components/layout/AppLayout.js2
-rw-r--r--src/components/layout/Sidebar.js20
-rw-r--r--src/components/services/content/ConnectionLostBanner.js6
-rw-r--r--src/components/services/content/ServiceView.js2
-rw-r--r--src/components/services/content/ServiceWebview.js6
-rw-r--r--src/components/services/content/Services.js6
-rw-r--r--src/components/services/tabs/TabItem.js2
-rw-r--r--src/components/settings/account/AccountDashboard.js6
-rw-r--r--src/components/settings/navigation/SettingsNavigation.js16
-rw-r--r--src/components/settings/recipes/RecipesDashboard.js2
-rw-r--r--src/components/settings/services/EditServiceForm.js4
-rw-r--r--src/components/settings/settings/EditSettingsForm.js56
-rw-r--r--src/components/settings/supportFerdi/SupportFerdiDashboard.tsx34
-rw-r--r--src/components/settings/team/TeamDashboard.js4
-rw-r--r--src/components/ui/FAB.tsx2
-rw-r--r--src/components/ui/Loader.tsx4
-rw-r--r--src/components/ui/button/index.tsx2
-rw-r--r--src/components/ui/infobox/index.tsx2
25 files changed, 107 insertions, 107 deletions
diff --git a/src/components/AppUpdateInfoBar.tsx b/src/components/AppUpdateInfoBar.tsx
index d2402945e..b0e286fa2 100644
--- a/src/components/AppUpdateInfoBar.tsx
+++ b/src/components/AppUpdateInfoBar.tsx
@@ -2,14 +2,14 @@ import { defineMessages, useIntl } from 'react-intl';
2 2
3import { mdiInformation } from '@mdi/js'; 3import { mdiInformation } from '@mdi/js';
4import InfoBar from './ui/InfoBar'; 4import InfoBar from './ui/InfoBar';
5import { GITHUB_FERDI_URL } from '../config'; 5import { GITHUB_FERDIUM_URL } from '../config';
6import { openExternalUrl } from '../helpers/url-helpers'; 6import { openExternalUrl } from '../helpers/url-helpers';
7import { Icon } from './ui/icon'; 7import { Icon } from './ui/icon';
8 8
9const messages = defineMessages({ 9const messages = defineMessages({
10 updateAvailable: { 10 updateAvailable: {
11 id: 'infobar.updateAvailable', 11 id: 'infobar.updateAvailable',
12 defaultMessage: 'A new update for Ferdi is available.', 12 defaultMessage: 'A new update for Ferdium is available.',
13 }, 13 },
14 changelog: { 14 changelog: {
15 id: 'infobar.buttonChangelog', 15 id: 'infobar.buttonChangelog',
@@ -43,7 +43,7 @@ const AppUpdateInfoBar = ({ onInstallUpdate, onHide }: Props) => {
43 type="button" 43 type="button"
44 onClick={() => 44 onClick={() =>
45 openExternalUrl( 45 openExternalUrl(
46 `${GITHUB_FERDI_URL}/ferdi/blob/develop/CHANGELOG.md`, 46 `${GITHUB_FERDIUM_URL}/ferdium/blob/develop/CHANGELOG.md`,
47 true, 47 true,
48 ) 48 )
49 } 49 }
diff --git a/src/components/auth/AuthLayout.js b/src/components/auth/AuthLayout.js
index 7e96067eb..3d7c99c11 100644
--- a/src/components/auth/AuthLayout.js
+++ b/src/components/auth/AuthLayout.js
@@ -18,7 +18,7 @@ import globalMessages from '../../i18n/globalMessages';
18 18
19import { isWindows } from '../../environment'; 19import { isWindows } from '../../environment';
20import AppUpdateInfoBar from '../AppUpdateInfoBar'; 20import AppUpdateInfoBar from '../AppUpdateInfoBar';
21import { GITHUB_FERDI_URL } from '../../config'; 21import { GITHUB_FERDIUM_URL } from '../../config';
22import { Icon } from '../ui/icon'; 22import { Icon } from '../ui/icon';
23 23
24class AuthLayout extends Component { 24class AuthLayout extends Component {
@@ -57,7 +57,7 @@ class AuthLayout extends Component {
57 <> 57 <>
58 {isWindows && !isFullScreen && ( 58 {isWindows && !isFullScreen && (
59 <TitleBar 59 <TitleBar
60 menu={window['ferdi'].menu.template} 60 menu={window['ferdium'].menu.template}
61 icon="assets/images/logo.svg" 61 icon="assets/images/logo.svg"
62 /> 62 />
63 )} 63 )}
@@ -96,7 +96,7 @@ class AuthLayout extends Component {
96 </div> 96 </div>
97 {/* </div> */} 97 {/* </div> */}
98 <Link 98 <Link
99 to={`${GITHUB_FERDI_URL}/ferdi`} 99 to={`${GITHUB_FERDIUM_URL}/ferdium`}
100 className="auth__adlk" 100 className="auth__adlk"
101 target="_blank" 101 target="_blank"
102 > 102 >
diff --git a/src/components/auth/ChangeServer.js b/src/components/auth/ChangeServer.js
index 4c69b2821..682f6512c 100644
--- a/src/components/auth/ChangeServer.js
+++ b/src/components/auth/ChangeServer.js
@@ -9,7 +9,7 @@ import Button from '../ui/Button';
9import Link from '../ui/Link'; 9import Link from '../ui/Link';
10import Infobox from '../ui/Infobox'; 10import Infobox from '../ui/Infobox';
11import { url, required } from '../../helpers/validation-helpers'; 11import { url, required } from '../../helpers/validation-helpers';
12import { LIVE_FERDI_API, LIVE_FRANZ_API } from '../../config'; 12import { LIVE_FERDIUM_API, LIVE_FRANZ_API } from '../../config';
13import globalMessages from '../../i18n/globalMessages'; 13import globalMessages from '../../i18n/globalMessages';
14 14
15const messages = defineMessages({ 15const messages = defineMessages({
@@ -23,7 +23,7 @@ const messages = defineMessages({
23 }, 23 },
24 warning: { 24 warning: {
25 id: 'changeserver.warning', 25 id: 'changeserver.warning',
26 defaultMessage: 'Extra settings offered by Ferdi will not be saved', 26 defaultMessage: 'Extra settings offered by Ferdium will not be saved',
27 }, 27 },
28 customServerLabel: { 28 customServerLabel: {
29 id: 'changeserver.customServerLabel', 29 id: 'changeserver.customServerLabel',
@@ -41,11 +41,11 @@ class ChangeServer extends Component {
41 server: PropTypes.string.isRequired, 41 server: PropTypes.string.isRequired,
42 }; 42 };
43 43
44 ferdiServer = LIVE_FERDI_API; 44 ferdiumServer = LIVE_FERDIUM_API;
45 45
46 franzServer = LIVE_FRANZ_API; 46 franzServer = LIVE_FRANZ_API;
47 47
48 defaultServers = [this.franzServer, this.ferdiServer]; 48 defaultServers = [this.franzServer, this.ferdiumServer];
49 49
50 form = new Form( 50 form = new Form(
51 { 51 {
@@ -54,7 +54,7 @@ class ChangeServer extends Component {
54 label: this.props.intl.formatMessage(messages.label), 54 label: this.props.intl.formatMessage(messages.label),
55 value: this.props.server, 55 value: this.props.server,
56 options: [ 56 options: [
57 { value: this.ferdiServer, label: 'Ferdi' }, 57 { value: this.ferdiumServer, label: 'Ferdium' },
58 { value: this.franzServer, label: 'Franz' }, 58 { value: this.franzServer, label: 'Franz' },
59 { 59 {
60 value: this.defaultServers.includes(this.props.server) 60 value: this.defaultServers.includes(this.props.server)
diff --git a/src/components/auth/Import.js b/src/components/auth/Import.js
index 8f70318ed..281ceda97 100644
--- a/src/components/auth/Import.js
+++ b/src/components/auth/Import.js
@@ -12,11 +12,11 @@ import Button from '../ui/Button';
12const messages = defineMessages({ 12const messages = defineMessages({
13 headline: { 13 headline: {
14 id: 'import.headline', 14 id: 'import.headline',
15 defaultMessage: 'Import your Ferdi 4 services', 15 defaultMessage: 'Import your Ferdium 4 services',
16 }, 16 },
17 notSupportedHeadline: { 17 notSupportedHeadline: {
18 id: 'import.notSupportedHeadline', 18 id: 'import.notSupportedHeadline',
19 defaultMessage: 'Services not yet supported in Ferdi 5', 19 defaultMessage: 'Services not yet supported in Ferdium 5',
20 }, 20 },
21 submitButtonLabel: { 21 submitButtonLabel: {
22 id: 'import.submit.label', 22 id: 'import.submit.label',
diff --git a/src/components/auth/Login.js b/src/components/auth/Login.js
index bd01f25cd..3c9c07f0d 100644
--- a/src/components/auth/Login.js
+++ b/src/components/auth/Login.js
@@ -41,7 +41,7 @@ const messages = defineMessages({
41 }, 41 },
42 customServerSuggestion: { 42 customServerSuggestion: {
43 id: 'login.customServerSuggestion', 43 id: 'login.customServerSuggestion',
44 defaultMessage: 'Try importing your Franz account into Ferdi', 44 defaultMessage: 'Try importing your Franz account into Ferdium',
45 }, 45 },
46 tokenExpired: { 46 tokenExpired: {
47 id: 'login.tokenExpired', 47 id: 'login.tokenExpired',
@@ -135,13 +135,13 @@ class Login extends Component {
135 <p className="error-message center"> 135 <p className="error-message center">
136 {intl.formatMessage(messages.invalidCredentials)} 136 {intl.formatMessage(messages.invalidCredentials)}
137 </p> 137 </p>
138 {window['ferdi'].stores.settings.all.app.server !== 138 {window['ferdium'].stores.settings.all.app.server !==
139 LIVE_FRANZ_API && ( 139 LIVE_FRANZ_API && (
140 <p className="error-message center"> 140 <p className="error-message center">
141 {intl.formatMessage(messages.customServerQuestion)}{' '} 141 {intl.formatMessage(messages.customServerQuestion)}{' '}
142 <Link 142 <Link
143 to={`${window[ 143 to={`${window[
144 'ferdi' 144 'ferdium'
145 ].stores.settings.all.app.server.replace( 145 ].stores.settings.all.app.server.replace(
146 API_VERSION, 146 API_VERSION,
147 '', 147 '',
diff --git a/src/components/auth/Signup.js b/src/components/auth/Signup.js
index 00b387b25..3cccb2428 100644
--- a/src/components/auth/Signup.js
+++ b/src/components/auth/Signup.js
@@ -40,7 +40,7 @@ const messages = defineMessages({
40 }, 40 },
41 legalInfo: { 41 legalInfo: {
42 id: 'signup.legal.info', 42 id: 'signup.legal.info',
43 defaultMessage: 'By creating a Ferdi account you accept the', 43 defaultMessage: 'By creating a Ferdium account you accept the',
44 }, 44 },
45 terms: { 45 terms: {
46 id: 'signup.legal.terms', 46 id: 'signup.legal.terms',
diff --git a/src/components/auth/Welcome.js b/src/components/auth/Welcome.js
index cfd26e2e9..94ea4d603 100644
--- a/src/components/auth/Welcome.js
+++ b/src/components/auth/Welcome.js
@@ -23,7 +23,7 @@ const messages = defineMessages({
23 }, 23 },
24 serverless: { 24 serverless: {
25 id: 'services.serverless', 25 id: 'services.serverless',
26 defaultMessage: 'Use Ferdi without an Account', 26 defaultMessage: 'Use Ferdium without an Account',
27 }, 27 },
28}); 28});
29 29
@@ -56,7 +56,7 @@ class Welcome extends Component {
56 /> 56 />
57 {/* <img src="./assets/images/welcome.png" className="welcome__services" alt="" /> */} 57 {/* <img src="./assets/images/welcome.png" className="welcome__services" alt="" /> */}
58 <div className="welcome__text"> 58 <div className="welcome__text">
59 <h1>Ferdi</h1> 59 <h1>Ferdium</h1>
60 </div> 60 </div>
61 </div> 61 </div>
62 <div className="welcome__buttons"> 62 <div className="welcome__buttons">
diff --git a/src/components/layout/AppLayout.js b/src/components/layout/AppLayout.js
index 5d7b6b85c..5aaac133a 100644
--- a/src/components/layout/AppLayout.js
+++ b/src/components/layout/AppLayout.js
@@ -134,7 +134,7 @@ class AppLayout extends Component {
134 <div className="app"> 134 <div className="app">
135 {isWindows && !isFullScreen && ( 135 {isWindows && !isFullScreen && (
136 <TitleBar 136 <TitleBar
137 menu={window['ferdi'].menu.template} 137 menu={window['ferdium'].menu.template}
138 icon="assets/images/logo.svg" 138 icon="assets/images/logo.svg"
139 /> 139 />
140 )} 140 )}
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>
diff --git a/src/components/services/content/ConnectionLostBanner.js b/src/components/services/content/ConnectionLostBanner.js
index 5adb22c84..4f68c1bfe 100644
--- a/src/components/services/content/ConnectionLostBanner.js
+++ b/src/components/services/content/ConnectionLostBanner.js
@@ -5,13 +5,13 @@ import injectSheet from 'react-jss';
5import { defineMessages, injectIntl } from 'react-intl'; 5import { defineMessages, injectIntl } from 'react-intl';
6 6
7import { mdiAlert } from '@mdi/js'; 7import { mdiAlert } from '@mdi/js';
8import { LIVE_API_FERDI_WEBSITE } from '../../../config'; 8import { LIVE_API_FERDIUM_WEBSITE } from '../../../config';
9import { Icon } from '../../ui/icon'; 9import { Icon } from '../../ui/icon';
10 10
11const messages = defineMessages({ 11const messages = defineMessages({
12 text: { 12 text: {
13 id: 'connectionLostBanner.message', 13 id: 'connectionLostBanner.message',
14 defaultMessage: 'Oh no! Ferdi lost the connection to {name}.', 14 defaultMessage: 'Oh no! Ferdium lost the connection to {name}.',
15 }, 15 },
16 moreInformation: { 16 moreInformation: {
17 id: 'connectionLostBanner.informationLink', 17 id: 'connectionLostBanner.informationLink',
@@ -87,7 +87,7 @@ class ConnectionLostBanner extends Component {
87 {intl.formatMessage(messages.text, { name })} 87 {intl.formatMessage(messages.text, { name })}
88 <br /> 88 <br />
89 <a 89 <a
90 href={`${LIVE_API_FERDI_WEBSITE}/support#what-does-franz-lost-the-connection-to-service-mean`} 90 href={`${LIVE_API_FERDIUM_WEBSITE}/support#what-does-franz-lost-the-connection-to-service-mean`}
91 className={classes.link} 91 className={classes.link}
92 > 92 >
93 {intl.formatMessage(messages.moreInformation)} 93 {intl.formatMessage(messages.moreInformation)}
diff --git a/src/components/services/content/ServiceView.js b/src/components/services/content/ServiceView.js
index a9a013ced..1effcb628 100644
--- a/src/components/services/content/ServiceView.js
+++ b/src/components/services/content/ServiceView.js
@@ -151,7 +151,7 @@ class ServiceView extends Component {
151 😴 151 😴
152 </span><br/><br/> 152 </span><br/><br/>
153 This service is currently hibernating.<br/> 153 This service is currently hibernating.<br/>
154 Try switching services or reloading Ferdi. 154 Try switching services or reloading Ferdium.
155 </div> 155 </div>
156 )} 156 )}
157 </> 157 </>
diff --git a/src/components/services/content/ServiceWebview.js b/src/components/services/content/ServiceWebview.js
index 12aaf70b7..f90710c31 100644
--- a/src/components/services/content/ServiceWebview.js
+++ b/src/components/services/content/ServiceWebview.js
@@ -7,7 +7,7 @@ import { join } from 'path';
7 7
8import ServiceModel from '../../../models/Service'; 8import ServiceModel from '../../../models/Service';
9 9
10const debug = require('debug')('Ferdi:Services'); 10const debug = require('debug')('Ferdium:Services');
11 11
12class ServiceWebview extends Component { 12class ServiceWebview extends Component {
13 static propTypes = { 13 static propTypes = {
@@ -31,7 +31,7 @@ class ServiceWebview extends Component {
31 }); 31 });
32 this.webview.view.addEventListener('did-navigate', () => { 32 this.webview.view.addEventListener('did-navigate', () => {
33 if (this.props.service._webview) { 33 if (this.props.service._webview) {
34 document.title = `Ferdi - ${this.props.service.name} ${ 34 document.title = `Ferdium - ${this.props.service.name} ${
35 this.props.service.dialogTitle 35 this.props.service.dialogTitle
36 ? ` - ${this.props.service.dialogTitle}` 36 ? ` - ${this.props.service.dialogTitle}`
37 : '' 37 : ''
@@ -56,7 +56,7 @@ class ServiceWebview extends Component {
56 webview.view.blur(); 56 webview.view.blur();
57 webview.view.focus(); 57 webview.view.focus();
58 window.setTimeout(() => { 58 window.setTimeout(() => {
59 document.title = `Ferdi - ${this.props.service.name} ${ 59 document.title = `Ferdium - ${this.props.service.name} ${
60 this.props.service.dialogTitle 60 this.props.service.dialogTitle
61 ? ` - ${this.props.service.dialogTitle}` 61 ? ` - ${this.props.service.dialogTitle}`
62 : '' 62 : ''
diff --git a/src/components/services/content/Services.js b/src/components/services/content/Services.js
index 9b43ea177..b38b0e3c3 100644
--- a/src/components/services/content/Services.js
+++ b/src/components/services/content/Services.js
@@ -17,16 +17,16 @@ const messages = defineMessages({
17 }, 17 },
18 login: { 18 login: {
19 id: 'services.login', 19 id: 'services.login',
20 defaultMessage: 'Please login to use Ferdi.', 20 defaultMessage: 'Please login to use Ferdium.',
21 }, 21 },
22 serverless: { 22 serverless: {
23 id: 'services.serverless', 23 id: 'services.serverless',
24 defaultMessage: 'Use Ferdi without an Account', 24 defaultMessage: 'Use Ferdium without an Account',
25 }, 25 },
26 serverInfo: { 26 serverInfo: {
27 id: 'services.serverInfo', 27 id: 'services.serverInfo',
28 defaultMessage: 28 defaultMessage:
29 'Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner. If you are switching over (from one of the hosted servers) to using Ferdi without an account, please be informed that you can export your data from that server and subsequently import it using the Help menu to resurrect all your workspaces and configured services!', 29 'Optionally, you can change your Ferdium server by clicking the cog in the bottom left corner. If you are switching over (from one of the hosted servers) to using Ferdium without an account, please be informed that you can export your data from that server and subsequently import it using the Help menu to resurrect all your workspaces and configured services!',
30 }, 30 },
31}); 31});
32 32
diff --git a/src/components/services/tabs/TabItem.js b/src/components/services/tabs/TabItem.js
index f5ced7a31..c2e7baddb 100644
--- a/src/components/services/tabs/TabItem.js
+++ b/src/components/services/tabs/TabItem.js
@@ -18,7 +18,7 @@ import { Icon } from '../../ui/icon';
18 18
19const IS_SERVICE_DEBUGGING_ENABLED = ( 19const IS_SERVICE_DEBUGGING_ENABLED = (
20 localStorage.getItem('debug') || '' 20 localStorage.getItem('debug') || ''
21).includes('Ferdi:Service'); 21).includes('Ferdium:Service');
22 22
23const messages = defineMessages({ 23const messages = defineMessages({
24 reload: { 24 reload: {
diff --git a/src/components/settings/account/AccountDashboard.js b/src/components/settings/account/AccountDashboard.js
index 6ef676eb4..b500b82cf 100644
--- a/src/components/settings/account/AccountDashboard.js
+++ b/src/components/settings/account/AccountDashboard.js
@@ -42,7 +42,7 @@ const messages = defineMessages({
42 deleteInfo: { 42 deleteInfo: {
43 id: 'settings.account.deleteInfo', 43 id: 'settings.account.deleteInfo',
44 defaultMessage: 44 defaultMessage:
45 "If you don't need your Ferdi account any longer, you can delete your account and all related data here.", 45 "If you don't need your Ferdium account any longer, you can delete your account and all related data here.",
46 }, 46 },
47 deleteEmailSent: { 47 deleteEmailSent: {
48 id: 'settings.account.deleteEmailSent', 48 id: 'settings.account.deleteEmailSent',
@@ -51,7 +51,7 @@ const messages = defineMessages({
51 }, 51 },
52 yourLicense: { 52 yourLicense: {
53 id: 'settings.account.yourLicense', 53 id: 'settings.account.yourLicense',
54 defaultMessage: 'Your Ferdi License:', 54 defaultMessage: 'Your Ferdium License:',
55 }, 55 },
56 accountUnavailable: { 56 accountUnavailable: {
57 id: 'settings.account.accountUnavailable', 57 id: 'settings.account.accountUnavailable',
@@ -60,7 +60,7 @@ const messages = defineMessages({
60 accountUnavailableInfo: { 60 accountUnavailableInfo: {
61 id: 'settings.account.accountUnavailableInfo', 61 id: 'settings.account.accountUnavailableInfo',
62 defaultMessage: 62 defaultMessage:
63 'You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.', 63 'You are using Ferdium without an account. If you want to use Ferdium with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.',
64 }, 64 },
65}); 65});
66 66
diff --git a/src/components/settings/navigation/SettingsNavigation.js b/src/components/settings/navigation/SettingsNavigation.js
index 763f4e8a7..ad1cef1e4 100644
--- a/src/components/settings/navigation/SettingsNavigation.js
+++ b/src/components/settings/navigation/SettingsNavigation.js
@@ -4,7 +4,7 @@ import { defineMessages, injectIntl } from 'react-intl';
4import { inject, observer } from 'mobx-react'; 4import { inject, observer } from 'mobx-react';
5import { RouterStore } from 'mobx-react-router'; 5import { RouterStore } from 'mobx-react-router';
6 6
7import { LOCAL_SERVER, LIVE_FERDI_API, LIVE_FRANZ_API } from '../../../config'; 7import { LOCAL_SERVER, LIVE_FERDIUM_API, LIVE_FRANZ_API } from '../../../config';
8import Link from '../../ui/Link'; 8import Link from '../../ui/Link';
9import UIStore from '../../../stores/UIStore'; 9import UIStore from '../../../stores/UIStore';
10import SettingsStore from '../../../stores/SettingsStore'; 10import SettingsStore from '../../../stores/SettingsStore';
@@ -32,9 +32,9 @@ const messages = defineMessages({
32 id: 'settings.navigation.team', 32 id: 'settings.navigation.team',
33 defaultMessage: 'Manage Team', 33 defaultMessage: 'Manage Team',
34 }, 34 },
35 supportFerdi: { 35 supportFerdium: {
36 id: 'settings.navigation.supportFerdi', 36 id: 'settings.navigation.supportFerdium',
37 defaultMessage: 'About Ferdi', 37 defaultMessage: 'About Ferdium',
38 }, 38 },
39 logout: { 39 logout: {
40 id: 'settings.navigation.logout', 40 id: 'settings.navigation.logout',
@@ -65,11 +65,11 @@ class SettingsNavigation extends Component {
65 localStorage.removeItem('authToken'); 65 localStorage.removeItem('authToken');
66 66
67 if (isUsingWithoutAccount) { 67 if (isUsingWithoutAccount) {
68 // Reset server back to Ferdi API 68 // Reset server back to Ferdium API
69 this.props.actions.settings.update({ 69 this.props.actions.settings.update({
70 type: 'app', 70 type: 'app',
71 data: { 71 data: {
72 server: LIVE_FERDI_API, 72 server: LIVE_FERDIUM_API,
73 }, 73 },
74 }); 74 });
75 } 75 }
@@ -77,7 +77,7 @@ class SettingsNavigation extends Component {
77 77
78 this.props.stores.router.push('/auth/welcome'); 78 this.props.stores.router.push('/auth/welcome');
79 79
80 // Reload Ferdi, otherwise many settings won't sync correctly with the server 80 // Reload Ferdium, otherwise many settings won't sync correctly with the server
81 // after logging into another account 81 // after logging into another account
82 window.location.reload(); 82 window.location.reload();
83 } 83 }
@@ -148,7 +148,7 @@ class SettingsNavigation extends Component {
148 className="settings-navigation__link" 148 className="settings-navigation__link"
149 activeClassName="is-active" 149 activeClassName="is-active"
150 > 150 >
151 {intl.formatMessage(messages.supportFerdi)} 151 {intl.formatMessage(messages.supportFerdium)}
152 </Link> 152 </Link>
153 <span className="settings-navigation__expander" /> 153 <span className="settings-navigation__expander" />
154 <button 154 <button
diff --git a/src/components/settings/recipes/RecipesDashboard.js b/src/components/settings/recipes/RecipesDashboard.js
index 47983bc88..a10998085 100644
--- a/src/components/settings/recipes/RecipesDashboard.js
+++ b/src/components/settings/recipes/RecipesDashboard.js
@@ -43,7 +43,7 @@ const messages = defineMessages({
43 nothingFound: { 43 nothingFound: {
44 id: 'settings.recipes.nothingFound', 44 id: 'settings.recipes.nothingFound',
45 defaultMessage: 45 defaultMessage:
46 'Sorry, but no service matched your search term - but you can still probably add it using the "Custom Website" option. Please note that the website might show more services that have been added to Ferdi since the version that you are currently on. To get those new services, please consider upgrading to a newer version of Ferdi.', 46 'Sorry, but no service matched your search term - but you can still probably add it using the "Custom Website" option. Please note that the website might show more services that have been added to Ferdium since the version that you are currently on. To get those new services, please consider upgrading to a newer version of Ferdium.',
47 }, 47 },
48 servicesSuccessfulAddedInfo: { 48 servicesSuccessfulAddedInfo: {
49 id: 'settings.recipes.servicesSuccessfulAddedInfo', 49 id: 'settings.recipes.servicesSuccessfulAddedInfo',
diff --git a/src/components/settings/services/EditServiceForm.js b/src/components/settings/services/EditServiceForm.js
index f0e791b87..fcf540ba0 100644
--- a/src/components/settings/services/EditServiceForm.js
+++ b/src/components/settings/services/EditServiceForm.js
@@ -125,12 +125,12 @@ const messages = defineMessages({
125 }, 125 },
126 proxyRestartInfo: { 126 proxyRestartInfo: {
127 id: 'settings.service.form.proxy.restartInfo', 127 id: 'settings.service.form.proxy.restartInfo',
128 defaultMessage: 'Please restart Ferdi after changing proxy Settings.', 128 defaultMessage: 'Please restart Ferdium after changing proxy Settings.',
129 }, 129 },
130 proxyInfo: { 130 proxyInfo: {
131 id: 'settings.service.form.proxy.info', 131 id: 'settings.service.form.proxy.info',
132 defaultMessage: 132 defaultMessage:
133 'Proxy settings will not be synchronized with the Ferdi servers.', 133 'Proxy settings will not be synchronized with the Ferdium servers.',
134 }, 134 },
135}); 135});
136 136
diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js
index c92bde346..f08705bed 100644
--- a/src/components/settings/settings/EditSettingsForm.js
+++ b/src/components/settings/settings/EditSettingsForm.js
@@ -21,9 +21,9 @@ import {
21 SPLIT_COLUMNS_MAX, 21 SPLIT_COLUMNS_MAX,
22 SPLIT_COLUMNS_MIN, 22 SPLIT_COLUMNS_MIN,
23} from '../../../config'; 23} from '../../../config';
24import { isMac, isWindows, lockFerdiShortcutKey } from '../../../environment'; 24import { isMac, isWindows, lockFerdiumShortcutKey } from '../../../environment';
25import { 25import {
26 ferdiVersion, 26 ferdiumVersion,
27 userDataPath, 27 userDataPath,
28 userDataRecipesPath, 28 userDataRecipesPath,
29} from '../../../environment-remote'; 29} from '../../../environment-remote';
@@ -31,7 +31,7 @@ import { openPath } from '../../../helpers/url-helpers';
31import globalMessages from '../../../i18n/globalMessages'; 31import globalMessages from '../../../i18n/globalMessages';
32import { Icon } from '../../ui/icon'; 32import { Icon } from '../../ui/icon';
33 33
34const debug = require('debug')('Ferdi:EditSettingsForm'); 34const debug = require('debug')('Ferdium:EditSettingsForm');
35 35
36const messages = defineMessages({ 36const messages = defineMessages({
37 headlineGeneral: { 37 headlineGeneral: {
@@ -41,21 +41,21 @@ const messages = defineMessages({
41 sentryInfo: { 41 sentryInfo: {
42 id: 'settings.app.sentryInfo', 42 id: 'settings.app.sentryInfo',
43 defaultMessage: 43 defaultMessage:
44 'Sending telemetry data allows us to find errors in Ferdi - we will not send any personal information like your message data!', 44 'Sending telemetry data allows us to find errors in Ferdium - we will not send any personal information like your message data!',
45 }, 45 },
46 hibernateInfo: { 46 hibernateInfo: {
47 id: 'settings.app.hibernateInfo', 47 id: 'settings.app.hibernateInfo',
48 defaultMessage: 48 defaultMessage:
49 'By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.', 49 'By default, Ferdium will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.',
50 }, 50 },
51 inactivityLockInfo: { 51 inactivityLockInfo: {
52 id: 'settings.app.inactivityLockInfo', 52 id: 'settings.app.inactivityLockInfo',
53 defaultMessage: 53 defaultMessage:
54 'Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable', 54 'Minutes of inactivity, after which Ferdium should automatically lock. Use 0 to disable',
55 }, 55 },
56 todoServerInfo: { 56 todoServerInfo: {
57 id: 'settings.app.todoServerInfo', 57 id: 'settings.app.todoServerInfo',
58 defaultMessage: 'This server will be used for the "Ferdi Todo" feature.', 58 defaultMessage: 'This server will be used for the "Ferdium Todo" feature.',
59 }, 59 },
60 lockedPassword: { 60 lockedPassword: {
61 id: 'settings.app.lockedPassword', 61 id: 'settings.app.lockedPassword',
@@ -64,12 +64,12 @@ const messages = defineMessages({
64 lockedPasswordInfo: { 64 lockedPasswordInfo: {
65 id: 'settings.app.lockedPasswordInfo', 65 id: 'settings.app.lockedPasswordInfo',
66 defaultMessage: 66 defaultMessage:
67 "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.", 67 "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdium.",
68 }, 68 },
69 lockInfo: { 69 lockInfo: {
70 id: 'settings.app.lockInfo', 70 id: 'settings.app.lockInfo',
71 defaultMessage: 71 defaultMessage:
72 'Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut {lockShortcut}.', 72 'Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdium or lock Ferdium yourself using the lock symbol in the bottom left corner or the shortcut {lockShortcut}.',
73 }, 73 },
74 scheduledDNDTimeInfo: { 74 scheduledDNDTimeInfo: {
75 id: 'settings.app.scheduledDNDTimeInfo', 75 id: 'settings.app.scheduledDNDTimeInfo',
@@ -79,7 +79,7 @@ const messages = defineMessages({
79 scheduledDNDInfo: { 79 scheduledDNDInfo: {
80 id: 'settings.app.scheduledDNDInfo', 80 id: 'settings.app.scheduledDNDInfo',
81 defaultMessage: 81 defaultMessage:
82 'Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.', 82 'Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdium.',
83 }, 83 },
84 headlineLanguage: { 84 headlineLanguage: {
85 id: 'settings.app.headlineLanguage', 85 id: 'settings.app.headlineLanguage',
@@ -113,12 +113,12 @@ const messages = defineMessages({
113 }, 113 },
114 translationHelp: { 114 translationHelp: {
115 id: 'settings.app.translationHelp', 115 id: 'settings.app.translationHelp',
116 defaultMessage: 'Help us to translate Ferdi into your language.', 116 defaultMessage: 'Help us to translate Ferdium into your language.',
117 }, 117 },
118 spellCheckerLanguageInfo: { 118 spellCheckerLanguageInfo: {
119 id: 'settings.app.spellCheckerLanguageInfo', 119 id: 'settings.app.spellCheckerLanguageInfo',
120 defaultMessage: 120 defaultMessage:
121 "Ferdi uses your Mac's build-in spellchecker to check for typos. If you want to change the languages the spellchecker checks for, you can do so in your Mac's System Preferences.", 121 "Ferdium uses your Mac's build-in spellchecker to check for typos. If you want to change the languages the spellchecker checks for, you can do so in your Mac's System Preferences.",
122 }, 122 },
123 subheadlineCache: { 123 subheadlineCache: {
124 id: 'settings.app.subheadlineCache', 124 id: 'settings.app.subheadlineCache',
@@ -126,7 +126,7 @@ const messages = defineMessages({
126 }, 126 },
127 cacheInfo: { 127 cacheInfo: {
128 id: 'settings.app.cacheInfo', 128 id: 'settings.app.cacheInfo',
129 defaultMessage: 'Ferdi cache is currently using {size} of disk space.', 129 defaultMessage: 'Ferdium cache is currently using {size} of disk space.',
130 }, 130 },
131 cacheNotCleared: { 131 cacheNotCleared: {
132 id: 'settings.app.cacheNotCleared', 132 id: 'settings.app.cacheNotCleared',
@@ -136,16 +136,16 @@ const messages = defineMessages({
136 id: 'settings.app.buttonClearAllCache', 136 id: 'settings.app.buttonClearAllCache',
137 defaultMessage: 'Clear cache', 137 defaultMessage: 'Clear cache',
138 }, 138 },
139 subheadlineFerdiProfile: { 139 subheadlineFerdiumProfile: {
140 id: 'settings.app.subheadlineFerdiProfile', 140 id: 'settings.app.subheadlineFerdiumProfile',
141 defaultMessage: 'Ferdi Profile', 141 defaultMessage: 'Ferdium Profile',
142 }, 142 },
143 buttonOpenFerdiProfileFolder: { 143 buttonOpenFerdiumProfileFolder: {
144 id: 'settings.app.buttonOpenFerdiProfileFolder', 144 id: 'settings.app.buttonOpenFerdiumProfileFolder',
145 defaultMessage: 'Open Profile folder', 145 defaultMessage: 'Open Profile folder',
146 }, 146 },
147 buttonOpenFerdiServiceRecipesFolder: { 147 buttonOpenFerdiumServiceRecipesFolder: {
148 id: 'settings.app.buttonOpenFerdiServiceRecipesFolder', 148 id: 'settings.app.buttonOpenFerdiumServiceRecipesFolder',
149 defaultMessage: 'Open Service Recipes folder', 149 defaultMessage: 'Open Service Recipes folder',
150 }, 150 },
151 buttonSearchForUpdate: { 151 buttonSearchForUpdate: {
@@ -166,7 +166,7 @@ const messages = defineMessages({
166 }, 166 },
167 updateStatusUpToDate: { 167 updateStatusUpToDate: {
168 id: 'settings.app.updateStatusUpToDate', 168 id: 'settings.app.updateStatusUpToDate',
169 defaultMessage: 'You are using the latest version of Ferdi', 169 defaultMessage: 'You are using the latest version of Ferdium',
170 }, 170 },
171 currentVersion: { 171 currentVersion: {
172 id: 'settings.app.currentVersion', 172 id: 'settings.app.currentVersion',
@@ -275,7 +275,7 @@ class EditSettingsForm extends Component {
275 } 275 }
276 276
277 const { lockingFeatureEnabled, scheduledDNDEnabled } = 277 const { lockingFeatureEnabled, scheduledDNDEnabled } =
278 window['ferdi'].stores.settings.all.app; 278 window['ferdium'].stores.settings.all.app;
279 279
280 let cacheSize; 280 let cacheSize;
281 let notCleared; 281 let notCleared;
@@ -655,7 +655,7 @@ class EditSettingsForm extends Component {
655 > 655 >
656 <span> 656 <span>
657 {intl.formatMessage(messages.lockInfo, { 657 {intl.formatMessage(messages.lockInfo, {
658 lockShortcut: `${lockFerdiShortcutKey(false)}`, 658 lockShortcut: `${lockFerdiumShortcutKey(false)}`,
659 })} 659 })}
660 </span> 660 </span>
661 </p> 661 </p>
@@ -749,14 +749,14 @@ class EditSettingsForm extends Component {
749 749
750 <div className="settings__settings-group"> 750 <div className="settings__settings-group">
751 <h3> 751 <h3>
752 {intl.formatMessage(messages.subheadlineFerdiProfile)} 752 {intl.formatMessage(messages.subheadlineFerdiumProfile)}
753 </h3> 753 </h3>
754 <p> 754 <p>
755 <div className="settings__open-settings-file-container"> 755 <div className="settings__open-settings-file-container">
756 <Button 756 <Button
757 buttonType="secondary" 757 buttonType="secondary"
758 label={intl.formatMessage( 758 label={intl.formatMessage(
759 messages.buttonOpenFerdiProfileFolder, 759 messages.buttonOpenFerdiumProfileFolder,
760 )} 760 )}
761 className="settings__open-settings-file-button" 761 className="settings__open-settings-file-button"
762 onClick={() => openPath(profileFolder)} 762 onClick={() => openPath(profileFolder)}
@@ -764,7 +764,7 @@ class EditSettingsForm extends Component {
764 <Button 764 <Button
765 buttonType="secondary" 765 buttonType="secondary"
766 label={intl.formatMessage( 766 label={intl.formatMessage(
767 messages.buttonOpenFerdiServiceRecipesFolder, 767 messages.buttonOpenFerdiumServiceRecipesFolder,
768 )} 768 )}
769 className="settings__open-settings-file-button" 769 className="settings__open-settings-file-button"
770 onClick={() => openPath(recipeFolder)} 770 onClick={() => openPath(recipeFolder)}
@@ -807,7 +807,7 @@ class EditSettingsForm extends Component {
807 <br /> 807 <br />
808 </div> 808 </div>
809 <p> 809 <p>
810 {intl.formatMessage(messages.currentVersion)} {ferdiVersion} 810 {intl.formatMessage(messages.currentVersion)} {ferdiumVersion}
811 </p> 811 </p>
812 {noUpdateAvailable && ( 812 {noUpdateAvailable && (
813 <p> 813 <p>
@@ -842,7 +842,7 @@ class EditSettingsForm extends Component {
842 )} 842 )}
843 <p className="settings__message"> 843 <p className="settings__message">
844 <Icon icon={mdiGithub} /> 844 <Icon icon={mdiGithub} />
845 Ferdi is based on{' '} 845 Ferdium is based on{' '}
846 <a 846 <a
847 href={`${GITHUB_FRANZ_URL}/franz`} 847 href={`${GITHUB_FRANZ_URL}/franz`}
848 target="_blank" 848 target="_blank"
diff --git a/src/components/settings/supportFerdi/SupportFerdiDashboard.tsx b/src/components/settings/supportFerdi/SupportFerdiDashboard.tsx
index 948d0c1d1..b55f0d3d0 100644
--- a/src/components/settings/supportFerdi/SupportFerdiDashboard.tsx
+++ b/src/components/settings/supportFerdi/SupportFerdiDashboard.tsx
@@ -2,20 +2,20 @@ import { defineMessages, useIntl } from 'react-intl';
2 2
3const messages = defineMessages({ 3const messages = defineMessages({
4 headline: { 4 headline: {
5 id: 'settings.supportFerdi.headline', 5 id: 'settings.supportFerdium.headline',
6 defaultMessage: 'About Ferdi', 6 defaultMessage: 'About Ferdium',
7 }, 7 },
8 aboutIntro: { 8 aboutIntro: {
9 id: 'settings.supportFerdi.aboutIntro', 9 id: 'settings.supportFerdium.aboutIntro',
10 defaultMessage: 'Special thanks goes to these awesome people:', 10 defaultMessage: 'Special thanks goes to these awesome people:',
11 }, 11 },
12 about: { 12 about: {
13 id: 'settings.supportFerdi.about', 13 id: 'settings.supportFerdium.about',
14 defaultMessage: 'The development of Ferdi is done by contributors. People who use Ferdi like you. They maintain, fix, and improve Ferdi in their spare time.', 14 defaultMessage: 'The development of Ferdium is done by contributors. People who use Ferdium like you. They maintain, fix, and improve Ferdium in their spare time.',
15 } 15 }
16}); 16});
17 17
18const SupportFerdiDashboard = () => { 18const SupportFerdiumDashboard = () => {
19 const intl = useIntl(); 19 const intl = useIntl();
20 20
21 return ( 21 return (
@@ -29,50 +29,50 @@ const SupportFerdiDashboard = () => {
29 <div> 29 <div>
30 <p className="settings__support-badges"> 30 <p className="settings__support-badges">
31 <a 31 <a
32 href="https://twitter.com/getferdi/" 32 href="https://twitter.com/ferdium/"
33 target="_blank" 33 target="_blank"
34 rel="noreferrer" 34 rel="noreferrer"
35 > 35 >
36 <img 36 <img
37 alt="Twitter Follow" 37 alt="Twitter Follow"
38 src="https://img.shields.io/twitter/follow/getferdi?label=Follow&style=social" 38 src="https://img.shields.io/twitter/follow/ferdium?label=Follow&style=social"
39 /> 39 />
40 </a> 40 </a>
41 <a 41 <a
42 href="https://github.com/getferdi/ferdi" 42 href="https://github.com/ferdium/ferdium"
43 target="_blank" 43 target="_blank"
44 rel="noreferrer" 44 rel="noreferrer"
45 > 45 >
46 <img 46 <img
47 alt="GitHub Stars" 47 alt="GitHub Stars"
48 src="https://img.shields.io/github/stars/getferdi/ferdi?style=social" 48 src="https://img.shields.io/github/stars/ferdium/ferdium?style=social"
49 /> 49 />
50 </a> 50 </a>
51 <a target="_blank" href="https://crowdin.com/project/getferdi"> 51 <a target="_blank" href="https://crowdin.com/project/ferdium">
52 <img src="https://badges.crowdin.net/getferdi/localized.svg" alt="Crowdin"/> 52 <img src="https://badges.crowdin.net/ferdium/localized.svg" alt="Crowdin"/>
53 </a> 53 </a>
54 <a 54 <a
55 href="https://opencollective.com/getferdi#section-contributors" 55 href="https://opencollective.com/ferdium#section-contributors"
56 target="_blank" 56 target="_blank"
57 rel="noreferrer" 57 rel="noreferrer"
58 > 58 >
59 <img 59 <img
60 alt="Open Collective backers" 60 alt="Open Collective backers"
61 src="https://img.shields.io/opencollective/backers/getferdi?logo=open-collective" 61 src="https://img.shields.io/opencollective/backers/ferdium?logo=open-collective"
62 /> 62 />
63 </a> 63 </a>
64 </p> 64 </p>
65 <p>{intl.formatMessage(messages.aboutIntro)}</p> 65 <p>{intl.formatMessage(messages.aboutIntro)}</p>
66 <p> 66 <p>
67 <a 67 <a
68 href="https://github.com/getferdi/ferdi#contributors-" 68 href="https://github.com/ferdium/ferdium#contributors-"
69 target="_blank" 69 target="_blank"
70 rel="noreferrer" 70 rel="noreferrer"
71 > 71 >
72 <img 72 <img
73 alt="GitHub contributors (non-exhaustive)" 73 alt="GitHub contributors (non-exhaustive)"
74 width="100%" 74 width="100%"
75 src="https://opencollective.com/getferdi/contributors.svg?width=600&avatarHeight=42&button=off" 75 src="https://opencollective.com/ferdium/contributors.svg?width=600&avatarHeight=42&button=off"
76 /> 76 />
77 </a> 77 </a>
78 </p> 78 </p>
@@ -83,4 +83,4 @@ const SupportFerdiDashboard = () => {
83 ); 83 );
84}; 84};
85 85
86export default SupportFerdiDashboard; 86export default SupportFerdiumDashboard;
diff --git a/src/components/settings/team/TeamDashboard.js b/src/components/settings/team/TeamDashboard.js
index 802284051..22d386775 100644
--- a/src/components/settings/team/TeamDashboard.js
+++ b/src/components/settings/team/TeamDashboard.js
@@ -28,7 +28,7 @@ const messages = defineMessages({
28 copy: { 28 copy: {
29 id: 'settings.team.copy', 29 id: 'settings.team.copy',
30 defaultMessage: 30 defaultMessage:
31 "Franz's Team Management allows you to manage Franz Subscriptions for multiple users. Please keep in mind that having a Franz Premium subscription will give you no advantages in using Ferdi: The only reason you still have access to Team Management is so you can manage your legacy Franz Teams and so that you don't loose any functionality in managing your account.", 31 "Franz's Team Management allows you to manage Franz Subscriptions for multiple users. Please keep in mind that having a Franz Premium subscription will give you no advantages in using Ferdium: The only reason you still have access to Team Management is so you can manage your legacy Franz Teams and so that you don't loose any functionality in managing your account.",
32 }, 32 },
33 manageButton: { 33 manageButton: {
34 id: 'settings.team.manageAction', 34 id: 'settings.team.manageAction',
@@ -152,7 +152,7 @@ class TeamDashboard extends Component {
152 <img 152 <img
153 className={classes.image} 153 className={classes.image}
154 src="https://cdn.franzinfra.com/announcements/assets/teams.png" 154 src="https://cdn.franzinfra.com/announcements/assets/teams.png"
155 alt="Ferdi for Teams" 155 alt="Ferdium for Teams"
156 /> 156 />
157 </div> 157 </div>
158 <div className={classes.buttonContainer}> 158 <div className={classes.buttonContainer}>
diff --git a/src/components/ui/FAB.tsx b/src/components/ui/FAB.tsx
index cb9c5f126..37c3c9ec7 100644
--- a/src/components/ui/FAB.tsx
+++ b/src/components/ui/FAB.tsx
@@ -28,7 +28,7 @@ class Button extends Component<Props> {
28 28
29 const buttonProps = { 29 const buttonProps = {
30 className: classnames({ 30 className: classnames({
31 ferdi__fab: true, 31 ferdium__fab: true,
32 [`${className}`]: className, 32 [`${className}`]: className,
33 }), 33 }),
34 type, 34 type,
diff --git a/src/components/ui/Loader.tsx b/src/components/ui/Loader.tsx
index 171d0e290..e889fd054 100644
--- a/src/components/ui/Loader.tsx
+++ b/src/components/ui/Loader.tsx
@@ -2,14 +2,14 @@ import { Component, ReactChildren } from 'react';
2import { observer, inject } from 'mobx-react'; 2import { observer, inject } from 'mobx-react';
3import Loader from 'react-loader'; 3import Loader from 'react-loader';
4 4
5import { FerdiStores } from '../../stores.types'; 5import { FerdiumStores } from '../../stores.types';
6 6
7type Props = { 7type Props = {
8 children: ReactChildren; 8 children: ReactChildren;
9 loaded: boolean; 9 loaded: boolean;
10 className: string; 10 className: string;
11 color: string; 11 color: string;
12 stores: FerdiStores; 12 stores: FerdiumStores;
13}; 13};
14 14
15class LoaderComponent extends Component<Props> { 15class LoaderComponent extends Component<Props> {
diff --git a/src/components/ui/button/index.tsx b/src/components/ui/button/index.tsx
index d91b1ee19..b18f44909 100644
--- a/src/components/ui/button/index.tsx
+++ b/src/components/ui/button/index.tsx
@@ -198,7 +198,7 @@ class ButtonComponent extends Component<IProps> {
198 if (loaded) { 198 if (loaded) {
199 showLoader = !loaded; 199 showLoader = !loaded;
200 console.warn( 200 console.warn(
201 'Ferdi Button prop `loaded` will be deprecated in the future. Please use `busy` instead', 201 'Ferdium Button prop `loaded` will be deprecated in the future. Please use `busy` instead',
202 ); 202 );
203 } 203 }
204 if (busy) { 204 if (busy) {
diff --git a/src/components/ui/infobox/index.tsx b/src/components/ui/infobox/index.tsx
index c0767a342..d4ff61053 100644
--- a/src/components/ui/infobox/index.tsx
+++ b/src/components/ui/infobox/index.tsx
@@ -46,7 +46,7 @@ const buttonStyles = (theme: Theme) => {
46const infoBoxTransition: string = 'none'; 46const infoBoxTransition: string = 'none';
47const ctaTransition: string = 'none'; 47const ctaTransition: string = 'none';
48 48
49// TODO: Not sure why, but this location alone, the `dinwo` is not defined - and it throws an error thus aborting the startup sequence of ferdi 49// TODO: Not sure why, but this location alone, the `dinwo` is not defined - and it throws an error thus aborting the startup sequence of ferdium
50// if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) { 50// if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
51// infoBoxTransition = 'all 0.5s'; 51// infoBoxTransition = 'all 0.5s';
52// ctaTransition = 'opacity 0.3s'; 52// ctaTransition = 'opacity 0.3s';