|
Bugzilla – Full Text Bug Listing |
| Summary: | Translation error in yast2-journal/yast2-trans-de | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE Tumbleweed | Reporter: | Björn Voigt <bjoernv> |
| Component: | Translations | Assignee: | Karl Eichwalder <ke> |
| Status: | RESOLVED FIXED | QA Contact: | Karl Eichwalder <ke> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | ada.lovelace |
| Version: | Current | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | --- | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
That's fixed in Weblate now. Thanks for the hint! Thanks for fixing! Unfortunately, bug 980329 is still open. Sarah fixed it. |
The German translation of module yast2-journal contains an error: msgid "Between %{since} and %{until}" msgstr "Zwischen %{seit} und %{bis}" "since" and "until" should not be translated. See this code: /usr/share/YaST2/lib/systemd_journal/query_presenter.rb (yast2-journal) dates = { since: Yast::Builtins.strftime(interval[:since], TIME_FORMAT), until: Yast::Builtins.strftime(interval[:until], TIME_FORMAT) } _("Between %{since} and %{until}") % dates The result is, that Yast2 Journal module shows "- Zwischen %{seit} und %{bin}" with the placeholders. The right translation is: msgid "Between %{since} and %{until}" msgstr "Zwischen %{since} und %{until}" I tested this successful.