diff options
author | nobody <nobody@localhost> | 2002-05-16 00:19:25 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-05-16 00:19:25 +0800 |
commit | acdd664f5104862243db8c3a0689d5ac4ede774e (patch) | |
tree | 9a14849dd3a40bd1667b88d689e2aa7d58d08bce /po/update.sh | |
parent | 74f4231f4eb650f0243ff39ab5a085b1df4f7697 (diff) | |
download | gsoc2013-evolution-GNOME_UTILS_2_0_2.tar gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.gz gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.bz2 gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.lz gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.xz gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.zst gsoc2013-evolution-GNOME_UTILS_2_0_2.zip |
This commit was manufactured by cvs2svn to create tagGNOME_UTILS_2_0_2
'GNOME_UTILS_2_0_2'.
svn path=/tags/GNOME_UTILS_2_0_2/; revision=16870
Diffstat (limited to 'po/update.sh')
-rwxr-xr-x | po/update.sh | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/po/update.sh b/po/update.sh deleted file mode 100755 index f16601f81b..0000000000 --- a/po/update.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/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> - -PACKAGE=evolution - -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@@) -XML_I18N_EXTRACT="$XMLDIR/share/xml-i18n-tools/xml-i18n-extract" -XML_I18N_UPDATE="$XMLDIR/share/xml-i18n-tools/xml-i18n-update" -PACKAGE=$PACKAGE XML_I18N_EXTRACT=$XML_I18N_EXTRACT \ -$XML_I18N_UPDATE $1 |