aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cvs/cvsplugin.cpp
diff options
context:
space:
mode:
authorTobias Hunger <[email protected]>2010-10-08 10:56:31 +0200
committerTobias Hunger <[email protected]>2010-10-08 14:30:33 +0200
commite78b8cf4cce975b8e7ebd3251437a1db559a6f8e (patch)
tree1e69c7bfdc852ea52f4bb56139dc42d6a6ced724 /src/plugins/cvs/cvsplugin.cpp
parenteb9b15be8cf34fd24eba6184c30480aa9388a78c (diff)
VCS: String update
String update as suggested by Leena.
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
index c904002cd8e..018e458b0c8 100644
--- a/src/plugins/cvs/cvsplugin.cpp
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -629,7 +629,7 @@ void CVSPlugin::revertAll()
const VCSBase::VCSBasePluginState state = currentState();
QTC_ASSERT(state.hasTopLevel(), return)
const QString title = tr("Revert repository");
- if (!messageBoxQuestion(title, tr("Would you like to revert all changes to the repository?")))
+ if (!messageBoxQuestion(title, tr("Revert all pending changes to the repository?")))
return;
QStringList args;
args << QLatin1String("update") << QLatin1String("-C") << state.topLevel();