X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/ebace0167f2a5b5b62d57b288f6059743e9a2fa7..c3fbe7fd0f0b93333191b0489497beaf0d138da0:/dselect/update diff --git a/dselect/update b/dselect/update index 66b942bcb..411033ca9 100755 --- a/dselect/update +++ b/dselect/update @@ -1,6 +1,9 @@ -#!/bin/sh +#!/bin/bash set -e +# Set the textdomain for the translations using $"..." +TEXTDOMAIN="apt" + # Get the configuration from /etc/apt/apt.conf CLEAN="prompt" OPTS="-f" @@ -24,7 +27,7 @@ CACHEDIR=`echo $CACHEDIR | sed -e "s|/$||"` STATUS=1 if $APTGET $OPTS "$APT_OPT0" "$APT_OPT1" update then - echo "Merging Available information" + echo $"Merging available information" rm -f $CACHEDIR/available $APTCACHE dumpavail > $CACHEDIR/available $DPKG "$DPKG_OPTS" --update-avail $CACHEDIR/available @@ -39,7 +42,7 @@ then fi if [ x$PROMPT = "xtrue" ]; then - echo "Press enter to continue." && read RES; + echo $"Press enter to continue." && read RES; fi exit $STATUS