[Xfce-i18n] co po files from each plugin? :-)
Daichi Kawahata
daichi at xfce.org
Sat Feb 11 17:11:17 CET 2006
On Sat, 11 Feb 2006 16:34:10 +0100 (CET)
SZERVÁC Attila wrote:
> MyQ: Can I checkout po files from each plugin with one
> step?
I hope the attached script helps.
> (if I don't want 2 give password every times) Can SVN
> handle this ?
Once you enter your password, accept a certification, they
are stored in the ~/.subversion/auth/* as a plain text,
if I'm not so terribly wrong.
Night,
--
Daichi
Language Codes: http://www.w3.org/WAI/ER/IG/ert/iso639.htm
Country Codes: http://www.ics.uci.edu/pub/ietf/http/related/iso3166.txt
-------------- next part --------------
#!/bin/sh
# xfce4-checkout-goodies-po.sh: Checkout PO files from SVN repository.
#
# Copyright (c) 2005 Jean-Francois Wauthy <pollux at xfce.org>
# Copyright (c) 2005, 2006 Daichi Kawahata <daichi at xfce.org>
#
# This script is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; version 2 of the
# License ONLY.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details at:
# http://gnu.org/licenses/gpl.html
if [ ! -z "$1" ]; then
packages="$@"
else
packages=" \
verve-plugin \
xfce4-battery-plugin \
xfce4-datetime-plugin \
xfce4-fsguard-plugin \
xfce4-modemlights-plugin \
xfce4-mount-plugin \
xfce4-netload-plugin \
xfce4-quicklauncher-plugin \
xfce4-sensors-plugin \
xfce4-systemload-plugin \
xfce4-taskmanager \
xfce4-wavelan-plugin \
xfce4-weather-plugin \
xfce4-websearch-plugin \
xfce4-xmms-plugin \
"
fi
svn co -N https://USER_NAME@svn.berlios.de/svnroot/repos/xfce-goodies ./
for package in $packages
do
echo "Creating '$package (trunk)' tree..."
svn up -N $package
svn up -N $package/trunk
echo "Getting '$package (trunk)' package..."
svn up $package/trunk/po
done
exit 0
More information about the Xfce-i18n
mailing list