-
Notifications
You must be signed in to change notification settings - Fork 22
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
Adds translation to Slovenian #384
Adds translation to Slovenian #384
Conversation
@bzwitt, since your translation work there has been some changes. Could you update your PO file? Please start with "develop" branch and then insert your PO file and run an update. See Instructions for translators (in develop branch) or Instructions for translators (proposed update). |
I have checked PO files for zonemaster-backend, zonemaster-cli, zonemaster-engine and haven't found any new tag to translate. |
Can you first verify that you have git remote -v Then do the following steps in you clone to move your branch on top of current
Now you have an updated |
@bzwitt, when we were about to merge this PR we saw that there are some lines that should be there, probably from some
Could you update the PR so that it is correct? |
… into translation-update
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.
Thank you for the updates @bzwitt ! I see some remaining issues, they should be quick to take care of:
- First, running
../../zonemaster-engine/util/check-msg-args sl.po
from thezonemaster-cli/share
directory shows missing message arguments in translated strings. Could you update those three lines accordingly ? See output below.
# sl.po line 15
msgid "Warning: setting locale category LC_MESSAGES to {locale} failed -- is it installed on this system?\n\n"
msgstr "Opozorilo: Neuspešno nastavljanje jezika %s za LC_MESSAGES(Je jezik nameščen na sistemu?).\n\n"
Only in msgid: {locale}
# sl.po line 25
msgid "Warning: setting locale category LC_CTYPE to {locale} failed -- is it installed on this system?\n\n"
msgstr "Opozorilo: Neuspešno nastavljanje jezika %s za LC_CTYPE (Je jezik nameščen na sistemu?).\n\n"
Only in msgid: {locale}
# sl.po line 101
msgid "Failed to recognize stop level '{level}'."
msgstr "Ni mogoče prepoznati stopnjo resnosti, ki povzroči ustavitev '"
Only in msgid: {level}
- Second, could you inspect every line with the
fuzzy
tag and then remove the tag if the translation is correct? - Third, could you remove all lines beginning with
#~
at the end of the file? i.e. starting with line 181. - Fourth, could you run
make POFILES=sl.po tidy-po
from thezonemaster-cli/share
directory?
And push a commit after doing these steps. We should be good after that !
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.
Merge master into develop (CLI)
Purpose
Adding slovenian translation (sl.po)
Context
How to test this PR
...