2003-07-07 17:01:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# $Id$
|
|
|
|
#
|
2006-03-03 17:30:35 +00:00
|
|
|
# Copyright (C) 2003 - 2006 Roland Gruber
|
2009-11-09 18:49:17 +00:00
|
|
|
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2003-07-07 17:01:26 +00:00
|
|
|
|
|
|
|
# This script generates a messages.po file for translation from all .inc and .php files.
|
|
|
|
|
2003-07-29 18:06:03 +00:00
|
|
|
cp messages.header messages.po
|
2013-05-21 16:30:49 +00:00
|
|
|
find -L ../ -name *.php -exec xgettext --keyword=_ -L PHP -j --omit-header -s {} \;
|
|
|
|
find -L ../ -name *.inc -exec xgettext --keyword=_ -L PHP -j --omit-header -s {} \;
|