cryptonas/scripts/update_english.sh
lars 108acd0e8a 'log' plugin: show warning if no log file is used
moved log file reading from cryptobox/core/main to 'log' plugin
added unittests for volume_mount, volume_format_fs and volume_rename
replace "get help" links with a "help mode" displaying information for every form
added first drafts of help texts for volume_mount, volume_format and partition
replaced the word 'container' with 'volume' in english texts
2006-12-12 13:34:05 +00:00

11 lines
316 B
Bash
Executable file

#!/bin/sh
which potool &>/dev/null || { echo "potool not found - try 'apt-get install potool'" >&2; exit 1; }
PROJ_DIR=$(cd "$(dirname $0)/.."; pwd)
find "$PROJ_DIR/intl" "$PROJ_DIR/plugins" -type f -name \*.po | grep /intl/en/ | while read a
do potool -c -n scmt "$a" > "${a}.new" && mv "${a}.new" "$a"
done