2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 09:58:08 +00:00

Ignore fuzzy messages when importing translations

Fuzzy messages are de-facto untranslated messages.

CCBUG: 341632
This commit is contained in:
Luigi Toscano 2014-12-07 16:14:27 +01:00
parent 27d853d778
commit 580c3ff30b

View File

@ -15,7 +15,7 @@ function export_pot_file # First parameter will be the path of the pot file we h
function import_po_files # First parameter will be a path that will contain several .po files with the format LANG.po
{
podir=$1
a2po import --android res/ --gettext $podir
a2po import --ignore-fuzzy --android res/ --gettext $podir
}