From 5d03a6fd94c17442e05574b918970dfe12400cfa Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 2 Feb 2008 14:16:47 -0600 Subject: Remove gettext calls from gensync/updatesync Signed-off-by: Dan McGee --- contrib/gensync | 30 +++++++++++++++--------------- contrib/updatesync | 30 +++++++++++++++--------------- 2 files changed, 30 insertions(+), 30 deletions(-) (limited to 'contrib') diff --git a/contrib/gensync b/contrib/gensync index 829ae3c2..04df52ac 100755 --- a/contrib/gensync +++ b/contrib/gensync @@ -24,29 +24,29 @@ myver='3.1.1' usage() { printf "gensync (pacman) %s\n\n" "$myver" - printf "$(gettext "Usage: %s [package_directory]")\n\n" "$0" - printf "$(gettext "\ + printf "Usage: %s [package_directory]\n\n" "$0" + printf "\ gensync will generate a sync database by reading all PKGBUILD files\n\ from . gensync builds the database in a temporary directory\n\ -and then compresses it to .\n\n")" - printf "$(gettext "\ +and then compresses it to .\n\n" + printf "\ gensync will calculate md5sums of packages in the same directory as\n\ -, unless an alternate [package_directory] is specified.\n\n")" - printf "$(gettext "\ +, unless an alternate [package_directory] is specified.\n\n" + printf "\ note: The name is important. It must be of the form\n\ {treename}.db.tar.gz where {treename} is the name of the custom\n\ package repository you configured in /etc/pacman.conf. The\n\ generated database must reside in the same directory as your\n\ - custom packages (also configured in /etc/pacman.conf)\n\n")" - echo "$(gettext "Example: gensync /var/abs/local /home/mypkgs/custom.db.tar.gz")" + custom packages (also configured in /etc/pacman.conf)\n\n" + echo "Example: gensync /var/abs/local /home/mypkgs/custom.db.tar.gz" } version() { printf "gensync (pacman) %s\n" "$myver" - printf "$(gettext "\ + printf "\ Copyright (C) 2002-2007 Judd Vinet .\n\n\ This is free software; see the source for copying conditions.\n\ -There is NO WARRANTY, to the extent permitted by law.\n")" +There is NO WARRANTY, to the extent permitted by law.\n" } error () { @@ -109,9 +109,9 @@ if [ "$3" != "" ]; then pkgdir="$3" fi -[ ! -d "$rootdir" ] && die "$(gettext "invalid root dir: %s")" $rootdir +[ ! -d "$rootdir" ] && die "invalid root dir: $rootdir" -echo "$(gettext "gensync: building database entries, generating md5sums...")" >&2 +echo "gensync: building database entries, generating md5sums..." >&2 cd "$destdir" pkgs="" @@ -120,7 +120,7 @@ forcepkgs="" for file in $(find "$rootdir"/* -name "$BUILDSCRIPT"); do unset pkgname pkgver pkgrel options - source $file || die "$(gettext "failed to parse %s")" $file + source $file || die "failed to parse $file" if [ "$arch" = 'any' ]; then CARCH='any' fi @@ -131,7 +131,7 @@ for file in $(find "$rootdir"/* -name "$BUILDSCRIPT"); do fi if [ ! -f "$pkgfile" ]; then - error "$(gettext "could not find %s-%s-%s-%s%s - skipping")" $pkgname $pkgver $pkgrel $CARCH $PKGEXT + error "could not find %s-%s-%s-%s%s - skipping" $pkgname $pkgver $pkgrel $CARCH $PKGEXT else if check_force; then forcepkgs="$forcepkgs $pkgfile" @@ -141,7 +141,7 @@ for file in $(find "$rootdir"/* -name "$BUILDSCRIPT"); do fi done -echo "$(gettext "creating repo DB...")" +echo "creating repo DB..." # we'll trim the output just a tad, as gensync may be used on large repos repo-add $destfile $pkgs --force $force_pkgs \ diff --git a/contrib/updatesync b/contrib/updatesync index 4df02ef9..9d5d54e9 100755 --- a/contrib/updatesync +++ b/contrib/updatesync @@ -25,27 +25,27 @@ myver='3.1.1' usage() { printf "updatesync (pacman) %s\n\n" "$myver" - printf "$(gettext "Usage: %s