diff options
author | Christian Kandeler <[email protected]> | 2014-04-17 14:09:47 +0200 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2014-04-22 10:06:40 +0200 |
commit | eccc1198d6d49707987ab3846da084e38edaf7c4 (patch) | |
tree | c4056ac7e0dfd26bc5aff3ceaed6e9fb1ec5b559 /src/plugins/cvs/cvsplugin.cpp | |
parent | c20f40e12e0b6c5c85d0edfa349ab25b5472f06c (diff) |
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56
Reviewed-by: Leena Miettinen <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r-- | src/plugins/cvs/cvsplugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp index af1d5d27287..fe6819d90ff 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); |