User account expiration control panel for SME Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
for L in en_US fr_FR; do
|
|
|
|
mkdir -p po/$L
|
|
|
|
for F in adminNotifNextExpirations userNotifAccountExpiration lockAutoReply; do
|
|
|
|
xgettext -j -L Perl -o po/$L/$F.tmpl.po \
|
|
|
|
root/etc/e-smith/templates/usr/lib/smeserver-expire-accounts/$F.tmpl
|
|
|
|
done
|
|
|
|
xgettext -j -L Perl -o po/$L/$F.po \
|
|
|
|
root/etc/e-smith/templates-user/.lock-auto-reply/message.txt/10Message
|
|
|
|
done
|