terminator/po/update_all_po.sh

6 lines
114 B
Bash
Executable File

#!/bin/sh
# Update translation files
for po_file in `ls *.po`; do
msgmerge -N -U ${po_file} terminator.pot
done