summaryrefslogtreecommitdiff
path: root/src/plugins/cvs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-04-17 14:09:47 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-04-22 10:06:40 +0200
commiteccc1198d6d49707987ab3846da084e38edaf7c4 (patch)
treec4056ac7e0dfd26bc5aff3ceaed6e9fb1ec5b559 /src/plugins/cvs
parentc20f40e12e0b6c5c85d0edfa349ab25b5472f06c (diff)
downloadqt-creator-eccc1198d6d49707987ab3846da084e38edaf7c4.tar.gz
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src/plugins/cvs')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
index af1d5d2728..fe6819d90f 100644
--- a/src/plugins/cvs/cvsplugin.cpp
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -83,7 +83,7 @@ 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));
}
@@ -858,8 +858,8 @@ bool CvsPlugin::unedit(const QString &topLevel, const QStringList &files)
return false;
if (modified) {
const QString question = files.isEmpty() ?
- tr("Would you like to discard your changes to the repository '%1'?").arg(topLevel) :
- tr("Would you like to discard your changes to the file '%1'?").arg(files.front());
+ tr("Would you like to discard your changes to the repository \"%1\"?").arg(topLevel) :
+ tr("Would you like to discard your changes to the file \"%1\"?").arg(files.front());
if (!messageBoxQuestion(tr("Unedit"), question))
return false;
}
@@ -1032,7 +1032,7 @@ bool CvsPlugin::describe(const QString &toplevel, const QString &file, const
// Describe all files found, pass on dir to obtain correct absolute paths.
const QList<CvsLogEntry> repoEntries = parseLogEntries(repoLogResponse.stdOut, QString(), commitId);
if (repoEntries.empty()) {
- *errorMessage = tr("Could not find commits of id '%1' on %2.").arg(commitId, dateS);
+ *errorMessage = tr("Could not find commits of id \"%1\" on %2.").arg(commitId, dateS);
return false;
}
return describe(toplevel, repoEntries, errorMessage);