diff options
| -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  | 
