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.
10 lines
256 B
10 lines
256 B
9 years ago
|
#!/bin/sh
|
||
|
|
||
|
for L in en_US fr_FR; do
|
||
|
mkdir -p po/$L
|
||
|
for F in adminNotifNextExpirations userNotifAccountExpiration; do
|
||
|
xgettext -j -L Perl -o po/$L/$F.tmpl.po \
|
||
|
root/etc/e-smith/templates/usr/lib/smeserver-expire-accounts/$F.tmpl
|
||
|
done
|
||
|
done
|