summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMartin Quinson <mquinson@debian.org>2003-02-14 13:18:11 +0000
committerMartin Quinson <mquinson@debian.org>2003-02-14 13:18:11 +0000
commit79a014a2ea88e84ab0f494efcf7a11b92c4bc6af (patch)
tree67323a104667a1767d61e2412c6ea5a6353ae6d2 /bin
parentb324e11dcfa120a1cf5827c0c5a96ef28a7743cf (diff)
downloadquilt-79a014a2ea88e84ab0f494efcf7a11b92c4bc6af.tar.gz
Implement i18n, french l10n and bump version number
Diffstat (limited to 'bin')
-rw-r--r--bin/quilt.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/quilt.in b/bin/quilt.in
index bd7eeed..6f8861e 100644
--- a/bin/quilt.in
+++ b/bin/quilt.in
@@ -6,11 +6,13 @@
#
# See the COPYING and AUTHORS files for more details.
+export TEXTDOMAIN=quilt
+
usage()
{
- echo "Usage: quilt command [-h] ..."
- #echo "Commands are:" $(
+ echo $"Usage: quilt command [-h] ..."
+ #echo $"Commands are:" $(
# local command
# for command in @QUILT@/*
# do
@@ -21,7 +23,7 @@ usage()
# done \
# | sort
#)
- echo "Commands are:"
+ echo $"Commands are:"
quilt_commands \
| sort \
| column | column -t \
@@ -78,7 +80,7 @@ then
command="${commands[0]}"
unset commands
else
- echo "$command:" "${commands[@]}" >&2
+ echo $"$command:" "${commands[@]}" >&2
exit 1
fi
fi