forked from qt-creator/qt-creator
CVS: fix UI text capitalization and punctuation
Change-Id: If7745a7ab1a709cecdf605fbceb1d1d4bd9752c7 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
217862be2f
commit
46dfb79ae1
@@ -90,13 +90,13 @@ namespace Internal {
|
||||
|
||||
static inline QString msgCannotFindTopLevel(const QString &f)
|
||||
{
|
||||
return CvsPlugin::tr("Cannot find repository for \"%1\"").
|
||||
return CvsPlugin::tr("Cannot find repository for \"%1\".").
|
||||
arg(QDir::toNativeSeparators(f));
|
||||
}
|
||||
|
||||
static inline QString msgLogParsingFailed()
|
||||
{
|
||||
return CvsPlugin::tr("Parsing of the log output failed");
|
||||
return CvsPlugin::tr("Parsing of the log output failed.");
|
||||
}
|
||||
|
||||
const char CVS_CONTEXT[] = "CVS Context";
|
||||
@@ -611,7 +611,7 @@ void CvsPlugin::revertAll()
|
||||
{
|
||||
const VcsBasePluginState state = currentState();
|
||||
QTC_ASSERT(state.hasTopLevel(), return);
|
||||
const QString title = tr("Revert repository");
|
||||
const QString title = tr("Revert Repository");
|
||||
if (!messageBoxQuestion(title, tr("Revert all pending changes to the repository?")))
|
||||
return;
|
||||
QStringList args;
|
||||
@@ -1190,7 +1190,7 @@ CvsResponse CvsPlugin::runCvs(const QString &workingDirectory,
|
||||
CvsResponse response;
|
||||
if (executable.isEmpty()) {
|
||||
response.result = CvsResponse::OtherError;
|
||||
response.message =tr("No cvs executable specified.");
|
||||
response.message =tr("No CVS executable specified.");
|
||||
return response;
|
||||
}
|
||||
// Run, connect stderr to the output window
|
||||
|
||||
Reference in New Issue
Block a user