mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in *.po
|
|
do
|
|
echo "$i"
|
|
msgmerge --no-fuzzy-matching "${i}" english.pot \
|
|
| msgattrib --translated \
|
|
| msguniq --no-wrap --sort-by-file >"${i}.tmp1"
|
|
mv "${i}.tmp1" "$i"
|
|
done
|