Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #758 missing about token #771

Merged
merged 2 commits into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const About: React.FC = () => {
<h1>{t("about")}</h1>
<p>{t("intro")}</p>
<h2>{t("ourMission")}</h2>
<Trans t={t}>
<Trans i18nKey="missionStatement" t={t}>
<p>
The music industry does not work for musicians or listeners and
needs a radical re-imagination.
Expand Down
1 change: 1 addition & 0 deletions client/src/translation/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
},
"about": {
"about": "About",
"home": "Home",
"intro": "Mirlo provides a user-friendly space to help musicians sell music, manage subscriptions, and share with their supporters.",
"ourMission": "Our mission",
"missionStatement": "<1>The music industry does not work for musicians or listeners and needs a radical re-imagination. </1><1>Mirlo is a community of musicians, listeners, and coders who are daring to do just that: taking lessons learned in working in the solidarity economy and applying them to our process and product.</1><1>We are building an online audio distribution (think Bandcamp) and patronage (think Patreon) platform that aims to be radical, accessible, open source (free & libre), modular, and standards based.</1>",
Expand Down