-
-
Notifications
You must be signed in to change notification settings - Fork 244
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
#1416: Improve German translations #1417
#1416: Improve German translations #1417
Conversation
@@ -1,22 +1,22 @@ | |||
export default { | |||
search: { | |||
placeholder: 'Geben Sie ein Schlüsselwort ein...', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is technically correct but sounds very clunky...
next: 'Nächste', | ||
navigate: (page, pages) => `Seite ${page} von ${pages}`, | ||
page: (page) => `Seite ${page}`, | ||
showing: 'Anzeigen', | ||
showing: 'Datensätze', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can't use the "showing x of y" in German, so I had to get a little creative. In the perfect world, the whole "sentence" would be a translatable.
to: 'zu', | ||
results: 'Ergebnisse', | ||
to: 'bis', | ||
results: 'Ergebnissen', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong case
}, | ||
loading: 'Wird geladen...', | ||
noRecordsFound: 'Keine übereinstimmenden Aufzeichnungen gefunden', | ||
noRecordsFound: 'Keine passenden Daten gefunden', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
less clunky 🙂
Could anybody please have a look at the changes? Should be a quick one, right? I'm going to use it in production soon and the current translations are a little off 😅 |
closes #1416.