-
Notifications
You must be signed in to change notification settings - Fork 381
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
update de.json #1627
update de.json #1627
Conversation
update german translation
@Staubgeborener thanks! Could you check one more thing for me here: Where I have edited
{{ targetVersion }} can be |
### Other Changes - **i18n:** Update de.json ([1627](#1627)) ### Bug Fixes - Fix text in post-plugin-update modal which wasn't showing translated strings properly - Revert HomeKit code formatting change --------- Co-authored-by: Ben <43026681+bwp91@users.noreply.github.com> Co-authored-by: Staubgeborener <eric.schroeder@protonmail.com>
German is both extremely flexible but also a very strict language at the same time. Very thankless, especially as we have to adopt some words directly from the english language, translate others and reinvent others. For example But this one |
“latest” and “beta” are taken directly from the npm tags that plugins are published under. So not easy to translate these. Perhaps I could add some formatting (would apply to all languages eg Vielen Dank für die Installation der ? thanks for the info by the way. |
Maybe by doing this in two steps, so putting the beta/latest version naming into braces after the "thanks for installation" sentence (which should work for all translations), and check the stuff before with an if-statement like
<p class="text-center grey-text" [translate]="'plugins.manage.message_thanks_for_updating'">
Thanks for installing {{ pluginName }}
</p>
<p class="text-center grey-text" [translate]="'plugins.manage.message_thanks_for_updating_version'"> ((Beta-)|(Aktuellste )Version)
</p> This would require two new translations for the i18n files: But in the end probably a bit much work, I think probably everyone of the german Homebridge users/community knows the meaning of "latest version". |
Update german translation