From 01f325d3fb7335120c28b6bc344af5ad1e425cae Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 22 Sep 2017 10:32:57 +0200 Subject: [PATCH] Tell how we can list files with less or more work. --- README.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.rst b/README.rst index 7ccfd5f2..ffeece73 100644 --- a/README.rst +++ b/README.rst @@ -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 ~~~~~~~~~~~~~~~~~