aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings/supportFerdi/SupportFerdiDashboard.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/settings/supportFerdi/SupportFerdiDashboard.tsx')
-rw-r--r--src/components/settings/supportFerdi/SupportFerdiDashboard.tsx34
1 files changed, 17 insertions, 17 deletions
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;