Kaydet (Commit) 0321a639 authored tarafından Gabor Kelemen's avatar Gabor Kelemen Kaydeden (comit) Andras Timar

ui-translatable.sh: fix item tag detection for liststores

Previously this script did not find the untranslated liststore items
that tdf#124240 is about

Change-Id: Ie46d99d246eee316fdda95bdf2d1d3a9aacbc907
Reviewed-on: https://gerrit.libreoffice.org/69596
Tested-by: Jenkins
Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst af19a3cc
......@@ -15,7 +15,7 @@ for i in `git ls-files *.ui`; do
then echo "Source: $i^";
fi
done
grep -s "<item>" $i | grep -v "translatable\=\"yes" | grep -v "translatable\=\"no" | grep ">.*[A-Za-z].*<";
grep -s "<item" $i | grep -v "translatable\=\"yes" | grep -v "translatable\=\"no" | grep ">.*[A-Za-z].*<";
if [ "$?" -eq 0 ] ;
then echo "Source: $i^";
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment