mirror of
https://github.com/samba-team/samba.git
synced 2025-02-24 13:57:43 +03:00
s3 po: Make adding translated files less tedious
This commit is contained in:
parent
a7f6c839ba
commit
35806ebe67
@ -1,5 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (C) 2003 TAKAHASHI Motonobu <monyo@samba.org>
|
# Copyright (C) 2003 TAKAHASHI Motonobu <monyo@samba.org>
|
||||||
|
# Copyright (C) 2009 Kai Blin <kai@samba.org>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -14,12 +15,21 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
NET_FILES="../utils/net.c ../utils/net_ads.c ../utils/net_ads_gpo.c"
|
add_basedir_to_filelist() {
|
||||||
NET_FILES="${NET_FILES} ../utils/net_afs.c ../utils/net_cache.c"
|
BASEDIR="$1"
|
||||||
NET_FILES="${NET_FILES} ../utils/net_conf.c ../utils/net_dom.c"
|
shift;
|
||||||
NET_FILES="${NET_FILES} ../utils/net_eventlog.c ../utils/net_file.c"
|
FILELIST="$@"
|
||||||
NET_FILES="${NET_FILES} ../utils/net_group.c ../utils/net_groupmap.c"
|
FULL_LIST=""
|
||||||
NET_FILES="${NET_FILES} ../utils/net_help.c ../utils/net_help_common.c"
|
for file in ${FILELIST}; do
|
||||||
|
FULL_LIST="${FULL_LIST} $BASEDIR/${file}"
|
||||||
|
done
|
||||||
|
echo ${FULL_LIST}
|
||||||
|
}
|
||||||
|
|
||||||
|
NET_FILES=`add_basedir_to_filelist ../utils net.c net_ads.c net_ads_gpo.c \
|
||||||
|
net_afs.c net_cache.c net_conf.c net_dom.c net_eventlog.c \
|
||||||
|
net_file.c net_group.c net_groupmap.c net_help.c net_help_common.c`
|
||||||
|
|
||||||
FILES="../web/swat.c ../web/statuspage.c ../param/loadparm.c ${NET_FILES}"
|
FILES="../web/swat.c ../web/statuspage.c ../param/loadparm.c ${NET_FILES}"
|
||||||
LANGS='en ja tr pl fr de it ru'
|
LANGS='en ja tr pl fr de it ru'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user