2018-10-31 04:41:25 +01:00
|
|
|
#!/bin/bash
|
|
|
|
for filename in safeeyes/config/locale/*/LC_MESSAGES/safeeyes.po; do
|
|
|
|
echo "$filename"
|
2019-02-24 01:14:26 +01:00
|
|
|
msgmerge -U -N "$filename" safeeyes/config/locale/safeeyes.pot
|
2018-10-31 04:41:25 +01:00
|
|
|
if [ -f "$filename~" ] ; then
|
|
|
|
rm "$filename~"
|
|
|
|
fi
|
|
|
|
done
|