Update translations for 2.2 release#1946
Merged
Be-ing merged 8 commits intomixxxdj:2.2from Dec 17, 2018
Merged
Conversation
``lupdate src -recursive -noobsolete -extensions cpp,h,ui -ts res/translations/mixxx.ts`` Scanning directory 'src'... Updating 'res/translations/mixxx.ts'... Found 2392 source text(s) (3 new and 2389 already existing) Removed 1 obsolete entries
``./wxl2pot.py -l Language mixxx_en-us.wxl po/mixxx.pot`
`tx pull -a -f --parallel --minimum-perc 1``
In ZSH:
``for i in po/*.po; do destfile=${i#po/}; ./po2wxl.py -l Language -f -p 1 $i mixxx_${destfile%.po}.wxl; done`
In ZSH:
``for XX in res/translations/mixxx_*.ts; do lrelease -nounfinished $XX -qm res/translations/${$(basename $XX)%.*}.qm; done`
…illing strings from translations memory. They were lost in a previous commit 343246a ``tx pull -r mixxxdj-windows-installer.mixxxpot -a --minimum-perc=1`` The template and the translations became out-of-sync, since a manual push to TF following mixxxdj#1899 I do not exactly know what the issue was, probably it does not work well that strings in the language files were manually changed, but not the timestamp. Anyway, now the template and the translations are n-sync again. Back to normal. In the future , we should NOT accept manual edits to translation files. Either use the TF online editor or one of the many available text translation softwares, see https://mixxx.org/wiki/doku.php/internationalization#offline_translation_software
In ZSH:
``for i in po/*.po; do destfile=${i#po/}; ./po2wxl.py -l Language -f -p 1 $i mixxx_${destfile%.po}.wxl; done`
Contributor
|
Thanks. We should really automate this now. @esbrandt do you have permission to create/configure jobs on Jenkins? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Incorporate the most recent translations for application and windows installer in the wake of the 2.2 release. Also fixes some continuity errors with the [WIX] template.
This PR appears to be huge, but it is mostly just changes in line numbers in
*.tsfiles. (We could do away with the line numbers, but the price is the loss of context informations - bad for translators)