diff options
author | Daniel Brahneborg <basic@chello.se> | 2002-07-16 18:08:42 +0000 |
---|---|---|
committer | Daniel Brahneborg <basic@chello.se> | 2002-07-16 18:08:42 +0000 |
commit | 8ad9e586ddafb33c9b5bc37528bfb83cc8a3c90c (patch) | |
tree | ccb51171677e586e467372795c274ca48da49f3e | |
parent | 2758bb0d5efdae188e4494d8d0e245ff14381d70 (diff) | |
download | plptools-8ad9e586ddafb33c9b5bc37528bfb83cc8a3c90c.tar.gz plptools-8ad9e586ddafb33c9b5bc37528bfb83cc8a3c90c.tar.bz2 plptools-8ad9e586ddafb33c9b5bc37528bfb83cc8a3c90c.zip |
Text cleanups.
-rw-r--r-- | plpbackup/plpbackup.cc | 4 | ||||
-rw-r--r-- | sisinstall/sismain.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plpbackup/plpbackup.cc b/plpbackup/plpbackup.cc index 6b49a30..676eac7 100644 --- a/plpbackup/plpbackup.cc +++ b/plpbackup/plpbackup.cc @@ -835,7 +835,7 @@ askOverwrite(PlpDirent e) cout << " Date: " << e.getPsiTime() << endl; cout << " Attr: " << Rfsv->attr2String(e.getAttr()).c_str() << endl; while (1) { - cout << "(O)verwrite, overwrite (A)ll, (S)kip? (O/A/S) " << flush; + cout << _("(O)verwrite, overwrite (A)ll, (S)kip? (O/A/S) ") << flush; string validA = _("OAS"); char answer; cin >> answer; @@ -933,7 +933,7 @@ runRestore() if (verbose > 0) cout << _("Extracting tar archive ...") << endl; if (system(tarcmd.str()) != 0) - cerr << _("Execution of ") << tarcmd.str() << " failed." + cerr << _("Execution of ") << tarcmd.str() << _(" failed.") << endl; continue; } diff --git a/sisinstall/sismain.cpp b/sisinstall/sismain.cpp index 70d285f..c845408 100644 --- a/sisinstall/sismain.cpp +++ b/sisinstall/sismain.cpp @@ -61,7 +61,7 @@ void printHelp() " -h, --help Display this text.\n" " -V, --version Print version and exit.\n" " -v, --verbose=LEVEL Set the verbosity level, by default 0.\n" - " -n, --dry-run Just parse file file.\n" + " -n, --dry-run Just parse the file.\n" #if HAVE_LIBNEWT " -w, --newt Use the Newt interface.\n" #endif |