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: correct i18n key and Update de.json #963

Merged
merged 4 commits into from
Feb 23, 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
11 changes: 10 additions & 1 deletion packages/locales/lib/human/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -695,5 +695,14 @@
"extra": "Extra",
"select": "Auswählen",
"searching": "suche...",
"no_options": "Keine Treffer..."
"no_options": "Keine Treffer...",
"and": "UND",
"or": "ODER",
"only_global": "nur Globale",
"global_caption": "Ignoriert alle anderen Filter",
"global_and_individual": "Globale & Individuelle Filter",
"gender_filters_all": "Geschlecht gilt für alle",
"and_caption": "miteinander verbunden",
"or_caption": "filtert unabhängig",
"filter_help": "Filter Hilfe"
}
2 changes: 1 addition & 1 deletion src/components/layout/dialogs/filters/PkmnFilterHelp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function PkmnFilterHelp() {
if (!perms.pokemon) return null
return (
<DialogWrapper dialog="pkmnFilterHelp" maxWidth="md">
<Header titles="Filter Help" action={handleClose} />
<Header titles={t('filter_help')} action={handleClose} />
<DialogContent sx={{ p: 0, height: '100%', alignItems: 'center' }}>
<Grid2
container
Expand Down
Loading