summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2015-02-11 17:59:22 +0100
committerJean Delvare <jdelvare@suse.de>2015-02-11 17:59:22 +0100
commit249f34528986e3dbc7bb7e6eb746f85468379137 (patch)
tree4b5ac974952646258bd1008843bedc3b4466e85b /bin
parentcecf83188b19653b0d96781bcdaf0fd8c409599a (diff)
downloadquilt-249f34528986e3dbc7bb7e6eb746f85468379137.tar.gz
Fix translation of main usage message
@ETCDIR@ is substituted at build time so it should not appear in translated messages. Replace it with %s and pass the actual value as a parameter.
Diffstat (limited to 'bin')
-rw-r--r--bin/quilt.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/quilt.in b/bin/quilt.in
index 2271833..45aebbc 100644
--- a/bin/quilt.in
+++ b/bin/quilt.in
@@ -45,7 +45,7 @@ usage()
| sort \
| column | column -t \
| sed -e $'s/^/\t/'
- echo $"
+ printf $"
Global options:
--trace
@@ -53,13 +53,13 @@ Global options:
--quiltrc file
Use the specified configuration file instead of ~/.quiltrc (or
- @ETCDIR@/quilt.quiltrc if ~/.quiltrc does not exist). See the pdf
+ %s/quilt.quiltrc if ~/.quiltrc does not exist). See the pdf
documentation for details about its possible contents. The
special value \"-\" causes quilt not to read any configuration
file.
--version
- Print the version number and exit immediately."
+ Print the version number and exit immediately.\n" "@ETCDIR@"
exit 1
}