-
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
function checkPO { | ||
for LANGUAGE in cs de eo es eu fr gl id ja nl pl pt_BR pt ru zh_Hans hs_Hant | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
boutinb
Author
Contributor
|
||
do | ||
PO_FILE="po/QML-${LANGUAGE}.po" | ||
if [ -e ${PO_FILE} ] | ||
then | ||
if ! grep X-Language ${PO_FILE} >> /dev/null 2>&1 | ||
then | ||
echo "No X-Language for ${LANGUAGE}" | ||
fi | ||
fi | ||
done | ||
} | ||
|
||
export -f checkPO | ||
|
||
git submodule foreach checkPO |
hs_Hant
should bezh_Hant
? why we needs this and form submodules using github action(i18n test) should be better(otherwise we must always update this list)? @boutinb