diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-03-24 11:36:24 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2019-03-24 19:52:11 +0100 |
commit | 0321a639837da7c2ce7ad2f66a7536a5b4a07c6c (patch) | |
tree | 6ad4a9e0cc943ad81eb17848deab8f92c7e615b7 /bin | |
parent | af19a3cc6aa352643d4f728e722945903a5556b3 (diff) |
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: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ui-translatable.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ui-translatable.sh b/bin/ui-translatable.sh index 1d88d9df9345..d8188778b10a 100755 --- a/bin/ui-translatable.sh +++ b/bin/ui-translatable.sh @@ -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 |