Pau Ruŀlan Ferragut wrote:
On Tue, Nov 07, 2006 at 10:15:29PM +0100, Maximilian Schleiss wrote:
as said in the subject, libexo, thunar and terminal have manuals that
need to be translated in as many languages as possible. The manuals are
in .po form and you can find them in the trunk/po-doc folder.
This reminds me we should update the scripts on the wiki to download the
po-doc directory too. I have just realize why I have not translated any one of
them ^_^
Just a short answer. Here is what I use...
Take a look at it.
Max
#!/bin/sh
# checkout-po.sh: checkout PO files via SVN repository.
#
# Copyright (c) 2005 Jean-Francois Wauthy <[EMAIL PROTECTED]>
# Copyright (c) 2005 Daichi Kawahata <[EMAIL PROTECTED]>
#
# 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="\
libexo \
libxfce4util \
libxfcegui4 \
mousepad \
terminal \
thunar \
xarchiver \
xfburn \
xfcalendar \
xfce-mcs-manager \
xfce-mcs-plugins \
xfce-utils \
xfce4-appfinder \
xfce4-icon-theme \
xfce4-mixer \
xfce4-panel \
xfce4-session \
xfce4-terminal \
xfce4-trigger-launcher \
xfdesktop \
xfmedia \
xfprint \
xfwm4"
fi
echo "Creating root directory..."
svn co -N https://xfce.org/svn/xfce ./
for package in $packages
do
# for trunk
svn up -N $package
svn up -N $package/trunk
echo "Getting PO files for '$package (trunk)' package..."
svn up $package/trunk/po
svn up $package/trunk/po-doc
done
exit 0
#!/bin/sh
# update-po.sh: keeps PO files updated via SVN repository.
#
# Copyright (c) 2005 Jean-Francois Wauthy <[EMAIL PROTECTED]>
# Copyright (c) 2005 Daichi Kawahata <[EMAIL PROTECTED]>
#
# 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=" \
libexo \
libxfce4util \
libxfcegui4 \
mousepad \
terminal \
thunar \
xarchiver \
xfburn \
xfcalendar \
xfce-mcs-manager \
xfce-mcs-plugins \
xfce-utils \
xfce4-appfinder \
xfce4-icon-theme \
xfce4-mixer \
xfce4-panel \
xfce4-session \
xfce4-terminal \
xfce4-trigger-launcher \
xfdesktop \
xfmedia \
xfprint \
xfwm4"
fi
for package in $packages
do
echo "Updating PO files for '$package (trunk)' package..."
svn up $package/trunk/po
svn up $package/trunk/po-doc
done
exit 0
_______________________________________________
Xfce-i18n mailing list
[email protected]
http://foo-projects.org/mailman/listinfo/xfce-i18n