aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/settings')
-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
7 files changed, 61 insertions, 61 deletions
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}>