]> err.no Git - dpkg/commitdiff
minor fixes for translations
authorWichert Akkerman <wakkerma@debian.org>
Mon, 25 Oct 1999 19:06:26 +0000 (19:06 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Mon, 25 Oct 1999 19:06:26 +0000 (19:06 +0000)
main/main.c
split/main.c

index 71a02463c8d1e03f98f205327fc2b2f278140610..2c8ce6230122a74140b1783e7ab569762c90ec60 100644 (file)
@@ -94,7 +94,7 @@ Options:\n\
   --instdir=<directory>      Change inst'n root without changing admin dir\n\
   -O|--selected-only         Skip packages not selected for install/upgrade\n\
   -E|--skip-same-version     Skip packages whose same version is installed\n\
-  -G=--refuse-downgrade      Skip packages with earlier version than installed\n\
+  -G|--refuse-downgrade      Skip packages with earlier version than installed\n\
   -B|--auto-deconfigure      Install even if it would break some other package\n\
   --largemem | --smallmem    Optimise for large (>4Mb) or small (<4Mb) RAM use\n\
   --no-act                   Just say what we would do - don't do it\n\
index 560d10c568f84582c93aac59f097d53a4b353949..b90818b75d5c8dd5a46245350349f36805c3ded1 100644 (file)
@@ -44,7 +44,7 @@ static void printversion(void) {
 }
 
 static void usage(void) {
-  if (fputs(_("\
+  if (printf(_("\
 Usage: dpkg-split -s|--split <file> [<prefix>]     Split an archive.\n\
        dpkg-split -j|--join <part> <part> ...      Join parts together.\n\
        dpkg-split -I|--info <part> ...             Display info about a part.\n\
@@ -54,14 +54,14 @@ Usage: dpkg-split -s|--split <file> [<prefix>]     Split an archive.\n\
        dpkg-split -l|--listq                       List unmatched pieces.\n\
        dpkg-split -d|--discard [<filename> ...]    Discard unmatched pieces.\n\
 \n\
-Options:  --depotdir <directory>  (default is " ADMINDIR "/" PARTSDIR ")\n\
+Options:  --depotdir <directory>  (default is %s/%s)\n\
           -S|--partsize <size>    (in Kb, for -s, default is 450)\n\
           -o|--output <file>      (for -j, default is <package>-<version>.deb)\n\
           -Q|--npquiet            (be quiet when -a is not a part)\n\
           --msdos                 (generate 8.3 filenames)\n\
 \n\
 Exit status: 0 = OK;  1 = -a is not a part;  2 = trouble!\n"),
-             stdout) < 0) werr("stdout");
+             ADMINDIR, PARTSDIR) < 0) werr("stdout");
 }
 
 const char thisname[]= SPLITTER;