1
0
Fork 0

Tell how we can list files with less or more work.

This commit is contained in:
Julien Palard 2017-09-22 10:32:57 +02:00
parent 1c63c20fb2
commit 01f325d3fb
1 changed files with 6 additions and 0 deletions

View File

@ -69,6 +69,12 @@ translated entries, and finally translate untranslated ones.
- ``::`` at the end of some paragraphs have to be translated to `` :
::`` in French to place the space before the column.
You can find files with a few translations missing::
for file in library/*; do echo $(msgattrib --untranslated $file | grep ^msgid | sed 1d | wc -l ) $file; done | grep -v ^0 | sort -gr | tail
Or replace the ``tail`` by a ``head`` to get files with a lot of work.
Where to get help
~~~~~~~~~~~~~~~~~