solus-packages/repo_data/updateTranslations.sh
2024-06-08 15:52:06 +01:00

8 lines
136 B
Bash
Executable file

#!/usr/bin/env bash
pushd po
for i in *.po ; do
msgmerge ${i} repo_data.pot -o ${i}
msgattrib --no-obsolete -o ${i} ${i}
done