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