feat: localization (#196)

* Started adding locale translations :)

* Added some more translations

* Working on translating even more pages

* More translations

* Added test default locale retrieval

* replace `intl.formatMessage` with custom `t` hook

* add more translations

* improve title syntax

* add more translations

* translate admin config page

* translated error messages

* add language selecter

* minor fixes

* improve language handling

* add upcoming languages

* add `crowdin.yml`

* run formatter

---------

Co-authored-by: Steve Tautonico <stautonico@gmail.com>
This commit is contained in:
Elias Schneider
2023-07-20 15:32:07 +02:00
committed by GitHub
parent 7c5ec8d0ea
commit b9f6e3bd08
68 changed files with 4712 additions and 461 deletions

View File

@@ -1,7 +1,10 @@
import moment from "moment";
export const getExpirationPreview = (
name: string,
messages: {
neverExpires: string;
expiresOn: string;
},
form: {
values: {
never_expires?: boolean;
@@ -13,7 +16,7 @@ export const getExpirationPreview = (
const value = form.values.never_expires
? "never"
: form.values.expiration_num + form.values.expiration_unit;
if (value === "never") return `This ${name} will never expire.`;
if (value === "never") return messages.neverExpires;
const expirationDate = moment()
.add(
@@ -22,5 +25,8 @@ export const getExpirationPreview = (
)
.toDate();
return `This ${name} will expire on ${moment(expirationDate).format("LLL")}`;
return messages.expiresOn.replace(
"{expiration}",
moment(expirationDate).format("LLL")
);
};