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

feat: Changed phrases to reflect the new added languages. #186

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,24 @@ export const InformationTextTranslations = createTranslation<Translations>(
"These translations depend on the language of your browser.",
SecondLine: () =>
"If you change the language of your browser, the translations will change too.",
ThirdLine: () => "In this example only German and English are supported.",
ThirdLine: () =>
"In this example only German, English and French are supported.",
},
de: {
FirstLine: () =>
"Diese Übersetzungen hängen von der Sprache deines Browsers ab.",
SecondLine: () =>
"Wenn du die Sprache deines Browsers änderst, ändern sich auch die Übersetzungen.",
ThirdLine: () =>
"In diesem Beispiel wird nur Deutsch und Englisch unterstützt.",
"In diesem Beispiel wird nur Deutsch, Englisch und Französich unterstützt.",
},
fr: {
FirstLine: () =>
"Ces traductions dépendent de la langue de votre navigateur.",
SecondLine: () =>
"Si vous changez la langue de votre navigateur, les traductions changeront également.",
ThirdLine: () =>
"Dans cet exemple, seuls l'allemand et l'anglais sont pris en charge.",
"Dans cet exemple, seuls l'allemand, l'anglais et le francais sont pris en charge.",
},
}),
);