X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxvc.C;h=6e4d421eee50fab9f8bad8db90e5d3899bc253d5;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=d05c292f7a20aab3b0859d0836ae6031c198e2f4;hpb=8c93f63b48a1b15d4f3e163b7305213f2f73879e;p=lyx.git diff --git a/src/lyxvc.C b/src/lyxvc.C index d05c292f7a..6e4d421eee 100644 --- a/src/lyxvc.C +++ b/src/lyxvc.C @@ -26,15 +26,20 @@ #include "support/filetools.h" #include "support/lyxlib.h" -using lyx::support::bformat; -using lyx::support::isFileReadable; -using lyx::support::makeDisplayPath; -using lyx::support::tempName; + +namespace lyx { + +using support::bformat; +using support::isFileReadable; +using support::makeDisplayPath; +using support::tempName; using std::endl; using std::string; using std::pair; +namespace Alert = frontend::Alert; + LyXVC::LyXVC() { @@ -92,7 +97,7 @@ void LyXVC::registrer() if (!isFileReadable(filename)) { Alert::error(_("Document not saved"), _("You must save the document " - "before it can be registered.")); + "before it can be registered.")); return; } @@ -103,14 +108,14 @@ void LyXVC::registrer() if (isFileReadable(cvs_entries)) { lyxerr[Debug::LYXVC] << "LyXVC: registering " - << makeDisplayPath(filename) + << to_utf8(makeDisplayPath(filename)) << " with CVS" << endl; vcs.reset(new CVS(cvs_entries, filename)); } else { lyxerr[Debug::LYXVC] << "LyXVC: registering " - << makeDisplayPath(filename) + << to_utf8(makeDisplayPath(filename)) << " with RCS" << endl; vcs.reset(new RCS(filename)); } @@ -119,7 +124,7 @@ void LyXVC::registrer() } lyxerr[Debug::LYXVC] << "LyXVC: registrer" << endl; - pair tmp = + pair tmp = Alert::askForText(_("LyX VC: Initial description"), _("(no initial description)")); if (!tmp.first || tmp.second.empty()) { @@ -128,7 +133,7 @@ void LyXVC::registrer() return; } - vcs->registrer(tmp.second); + vcs->registrer(to_utf8(tmp.second)); } @@ -136,12 +141,12 @@ void LyXVC::checkIn() { lyxerr[Debug::LYXVC] << "LyXVC: checkIn" << endl; - pair tmp = Alert::askForText(_("LyX VC: Log Message")); + pair tmp = Alert::askForText(_("LyX VC: Log Message")); if (tmp.first) { if (tmp.second.empty()) { tmp.second = _("(no log message)"); } - vcs->checkIn(tmp.second); + vcs->checkIn(to_utf8(tmp.second)); } else { lyxerr[Debug::LYXVC] << "LyXVC: user cancelled" << endl; } @@ -160,10 +165,10 @@ void LyXVC::revert() { lyxerr[Debug::LYXVC] << "LyXVC: revert" << endl; - string const file = makeDisplayPath(owner_->fileName(), 20); - string text = bformat(_("Reverting to the stored version of the " + docstring const file = makeDisplayPath(owner_->fileName(), 20); + docstring text = bformat(_("Reverting to the stored version of the " "document %1$s will lose all current changes.\n\n" - "Do you want to revert to the saved version?"), file); + "Do you want to revert to the saved version?"), file); int const ret = Alert::prompt(_("Revert to stored version of document?"), text, 0, 1, _("&Revert"), _("&Cancel")); @@ -232,3 +237,6 @@ string const LyXVC::getLogFile() const vcs->getLog(tmpf); return tmpf; } + + +} // namespace lyx