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

Enable German language #134

Merged
merged 1 commit into from
Mar 23, 2024
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
Enable German language
  • Loading branch information
julienrf committed Mar 23, 2024
commit 1905ee25df708f542634063519644e648a814998
4 changes: 2 additions & 2 deletions frontend/src/i18n.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ const availableLangs: Array<AvailableLanguageTag> = availableLanguageTags as unk

// WARN: make sure to update this list to keep it consistent with `availableLangs`
export const availableLangsAndLabels: Array<[AvailableLanguageTag, string]> = [
['de', 'Deutsch'],
['en', 'English'],
['fr', 'Français'],
// ['de', 'German'] // Uncomment this line when the German translation is ready
['fr', 'Français']
];

const langKey = 'lang';
Expand Down
Loading