summaryrefslogtreecommitdiff
path: root/src/libs/extensionsystem/pluginerrorview.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@digia.com>2014-03-13 09:55:53 +0100
committerJarek Kobus <jaroslaw.kobus@digia.com>2014-03-13 12:06:27 +0100
commit96a3fd53e8c5b11978b59884a63e347fb77149ff (patch)
treea94278dc90c53e656a2985221587a631d8dd6c97 /src/libs/extensionsystem/pluginerrorview.cpp
parent402ea02821351b987cb209ac517871c92fe09618 (diff)
downloadqt-creator-96a3fd53e8c5b11978b59884a63e347fb77149ff.tar.gz
Fix tooltips, add lacking dots
Change-Id: Id54a11b6868d5033fd1ecfd6324b7e50b94e305c Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src/libs/extensionsystem/pluginerrorview.cpp')
-rw-r--r--src/libs/extensionsystem/pluginerrorview.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libs/extensionsystem/pluginerrorview.cpp b/src/libs/extensionsystem/pluginerrorview.cpp
index 3c3170e0d2..cfb3b18f0f 100644
--- a/src/libs/extensionsystem/pluginerrorview.cpp
+++ b/src/libs/extensionsystem/pluginerrorview.cpp
@@ -75,35 +75,35 @@ void PluginErrorView::update(PluginSpec *spec)
switch (spec->state()) {
case PluginSpec::Invalid:
text = tr("Invalid");
- tooltip = tr("Description file found, but error on read");
+ tooltip = tr("Description file found, but error on read.");
break;
case PluginSpec::Read:
text = tr("Read");
- tooltip = tr("Description successfully read");
+ tooltip = tr("Description successfully read.");
break;
case PluginSpec::Resolved:
text = tr("Resolved");
- tooltip = tr("Dependencies are successfully resolved");
+ tooltip = tr("Dependencies are successfully resolved.");
break;
case PluginSpec::Loaded:
text = tr("Loaded");
- tooltip = tr("Library is loaded");
+ tooltip = tr("Library is loaded.");
break;
case PluginSpec::Initialized:
text = tr("Initialized");
- tooltip = tr("Plugin's initialization function succeeded");
+ tooltip = tr("Plugin's initialization function succeeded.");
break;
case PluginSpec::Running:
text = tr("Running");
- tooltip = tr("Plugin successfully loaded and running");
+ tooltip = tr("Plugin successfully loaded and running.");
break;
case PluginSpec::Stopped:
text = tr("Stopped");
- tooltip = tr("Plugin was shut down");
+ tooltip = tr("Plugin was shut down.");
break;
case PluginSpec::Deleted:
text = tr("Deleted");
- tooltip = tr("Plugin ended its life cycle and was deleted");
+ tooltip = tr("Plugin ended its life cycle and was deleted.");
break;
}