Updated russian translation.
This commit is contained in:
parent
a1cb8c491b
commit
896fb9c341
3 changed files with 419 additions and 1409 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-01-17 Valek Filippov <frob@df.ru>
|
||||
|
||||
* ru.po: updated russian translation.
|
||||
|
||||
2001-01-16 Fatih Demir <kabalak@gmx.net>
|
||||
|
||||
* tr.po: Committed an updated Turkish
|
||||
|
|
51
po/update.sh
51
po/update.sh
|
@ -1,8 +1,45 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#
|
||||
# Script for translators not being able to run autogen.sh
|
||||
#
|
||||
# Copyright (C) 2000 Free Software Foundation.
|
||||
#
|
||||
# This library 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; either version 2 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
# Authors: Kenneth Christiansen <kenneth@gnu.org>
|
||||
|
||||
xgettext --default-domain=control-center --directory=.. \
|
||||
--add-comments --keyword=_ --keyword=N_ \
|
||||
--files-from=./POTFILES.in \
|
||||
&& test ! -f control-center.po \
|
||||
|| ( rm -f ./control-center.pot \
|
||||
&& mv control-center.po ./control-center.pot )
|
||||
export PACKAGE=control-center
|
||||
|
||||
DEPENDS=$(which xml-i18n-toolize 2> /dev/null)
|
||||
|
||||
if [ "$DEPENDS" = "" -o ! -x "$DEPENDS" ] ;
|
||||
then echo "The xml-i18n-tools system is not installed or in path!"
|
||||
echo
|
||||
echo "The module $PACKAGE requires this inplimentation, which"
|
||||
echo "can be found at:"
|
||||
echo
|
||||
echo " ftp://ftp.gnome.org/pub/GNOME/stable/xml-i18n-tools "
|
||||
echo
|
||||
echo "Please install before trying to update the translations"
|
||||
echo "again..."
|
||||
echo
|
||||
exit
|
||||
fi
|
||||
|
||||
XMLDIR=$(which xml-i18n-toolize | sed s@/bin/xml-i18n-toolize@@)
|
||||
export XML_I18N_EXTRACT="$XMLDIR/share/xml-i18n-tools/xml-i18n-extract"
|
||||
export XML_I18N_UPDATE="$XMLDIR/share/xml-i18n-tools/xml-i18n-update"
|
||||
|
||||
$XML_I18N_UPDATE $1
|
||||
|
|
Loading…
Add table
Reference in a new issue