diff options
Diffstat (limited to '')
-rwxr-xr-x | source3/locale/pam_winbind/genmsg | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/source3/locale/pam_winbind/genmsg b/source3/locale/pam_winbind/genmsg new file mode 100755 index 0000000..29fa9cb --- /dev/null +++ b/source3/locale/pam_winbind/genmsg @@ -0,0 +1,27 @@ +#!/bin/sh + +FILES="../../../nsswitch/pam_winbind.c ../../../nsswitch/pam_winbind.h ../../../libcli/util/nterr.c" +LANGS="ar cs da de es fi fr hu it ja ko nb nl pl pt_BR ru sv tr zh_CN zh_TW" + +XGETTEXT=xgettext +MSGMERGE=msgmerge + +WIDTH=256 + +[ -f pam_winbind.po ] || touch pam_winbind.po + +$XGETTEXT --default-domain="pam_winbind" \ + --add-comments \ + --keyword=_ --keyword=N_ \ + --width=${WIDTH} \ + ${FILES} + +for lang in ${LANGS}; do + echo -n $lang + touch ${lang}.po + mv ${lang}.po ${lang}.po.old + ${MSGMERGE} --width=${WIDTH} ${lang}.po.old pam_winbind.po -o ${lang}.po + rm -fr ${lang}.po.old +done + +rm -fr pam_winbind.po |