diff options
author | Dan McGee <dan@archlinux.org> | 2011-02-28 17:50:23 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-02-28 17:50:23 -0600 |
commit | 09ce8b446c01e59a0eb0523846ce6f339ef25fa5 (patch) | |
tree | 9b1105babb144af1aa5129b12c75ce0f3c738eea /scripts/pkgdelta.sh.in | |
parent | 07538b948a0198808dcbe68bf838e520eb341fb3 (diff) | |
download | pacman-09ce8b446c01e59a0eb0523846ce6f339ef25fa5.tar.xz |
Fix some easy to find double translations
A lot of these were places that should have used the same message but
didn't, or were very easy to convert to using the same message and
letting some of the burden off of the translators.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/pkgdelta.sh.in')
-rw-r--r-- | scripts/pkgdelta.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in index 6bc3f5da..ecca4277 100644 --- a/scripts/pkgdelta.sh.in +++ b/scripts/pkgdelta.sh.in @@ -55,7 +55,7 @@ usage() { printf "pkgdelta (pacman) %s\n\n" "$myver" printf "$(gettext "Usage: pkgdelta [-q] <package1> <package2>\n")" printf "$(gettext "\ - pkgdelta will create a delta file between two packages\n\ + pkgdelta will create a delta file between two packages.\n\ This delta file can then be added to a database using repo-add.\n\n")" echo "$(gettext "Example: pkgdelta pacman-3.0.0.pkg.tar.gz pacman-3.0.1.pkg.tar.gz")" } @@ -85,7 +85,7 @@ read_pkginfo() fi done IFS=$OLDIFS - error "$(gettext "Invalid package '%s'")" "$1" + error "$(gettext "Invalid package file '%s'.")" "$1" return 1 } |