diff options
author | Jarek Kobus <jaroslaw.kobus@digia.com> | 2014-03-13 09:55:53 +0100 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@digia.com> | 2014-03-13 12:06:27 +0100 |
commit | 96a3fd53e8c5b11978b59884a63e347fb77149ff (patch) | |
tree | a94278dc90c53e656a2985221587a631d8dd6c97 /src/libs | |
parent | 402ea02821351b987cb209ac517871c92fe09618 (diff) | |
download | qt-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')
4 files changed, 23 insertions, 23 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; } diff --git a/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp b/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp index 3206499752..6047e7b826 100644 --- a/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp +++ b/src/libs/qmleditorwidgets/contextpanewidgetimage.cpp @@ -84,7 +84,7 @@ ContextPaneWidgetImage::ContextPaneWidgetImage(QWidget *parent, bool borderImage uiBorderImage->setupUi(this); m_fileWidget = uiBorderImage->fileWidget; m_sizeLabel = uiBorderImage->sizeLabel; - uiBorderImage->label->setToolTip(tr("double click for preview")); + uiBorderImage->label->setToolTip(tr("Double click for preview.")); uiBorderImage->label->installEventFilter(labelFilter); @@ -103,7 +103,7 @@ ContextPaneWidgetImage::ContextPaneWidgetImage(QWidget *parent, bool borderImage } else { ui = new Ui::ContextPaneWidgetImage; ui->setupUi(this); - ui->label->setToolTip(tr("double click for preview")); + ui->label->setToolTip(tr("Double click for preview.")); ui->label->installEventFilter(labelFilter); m_fileWidget = ui->fileWidget; m_sizeLabel = ui->sizeLabel; diff --git a/src/libs/qmleditorwidgets/contextpanewidgetimage.ui b/src/libs/qmleditorwidgets/contextpanewidgetimage.ui index ed25fbf0fd..1f7fe1299e 100644 --- a/src/libs/qmleditorwidgets/contextpanewidgetimage.ui +++ b/src/libs/qmleditorwidgets/contextpanewidgetimage.ui @@ -57,7 +57,7 @@ <item row="1" column="1"> <widget class="QRadioButton" name="stretchRadioButton"> <property name="toolTip"> - <string>The image is scaled to fit</string> + <string>The image is scaled to fit.</string> </property> <property name="text"> <string/> @@ -77,7 +77,7 @@ <item row="1" column="2"> <widget class="QRadioButton" name="horizontalStretchRadioButton"> <property name="toolTip"> - <string>The image is stretched horizontally and tiled vertically</string> + <string>The image is stretched horizontally and tiled vertically.</string> </property> <property name="text"> <string/> @@ -97,7 +97,7 @@ <item row="1" column="3"> <widget class="QRadioButton" name="verticalStretchRadioButton"> <property name="toolTip"> - <string>The image is stretched vertically and tiled horizontally</string> + <string>The image is stretched vertically and tiled horizontally.</string> </property> <property name="text"> <string/> @@ -117,7 +117,7 @@ <item row="2" column="1"> <widget class="QRadioButton" name="tileRadioButton"> <property name="toolTip"> - <string>The image is duplicated horizontally and vertically</string> + <string>The image is duplicated horizontally and vertically.</string> </property> <property name="text"> <string/> @@ -137,7 +137,7 @@ <item row="2" column="2"> <widget class="QRadioButton" name="preserveAspectFitRadioButton"> <property name="toolTip"> - <string>The image is scaled uniformly to fit without cropping</string> + <string>The image is scaled uniformly to fit without cropping.</string> </property> <property name="text"> <string/> @@ -157,7 +157,7 @@ <item row="2" column="3"> <widget class="QRadioButton" name="cropAspectFitRadioButton"> <property name="toolTip"> - <string>The image is scaled uniformly to fill, cropping if necessary</string> + <string>The image is scaled uniformly to fill, cropping if necessary.</string> </property> <property name="text"> <string/> diff --git a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.ui b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.ui index f883e743fc..aa351e986f 100644 --- a/src/libs/qmleditorwidgets/easingpane/easingcontextpane.ui +++ b/src/libs/qmleditorwidgets/easingpane/easingcontextpane.ui @@ -54,7 +54,7 @@ </size> </property> <property name="toolTip"> - <string>Play simulation</string> + <string>Play simulation.</string> </property> </widget> </item> @@ -83,7 +83,7 @@ </size> </property> <property name="toolTip"> - <string>Type of easing curve</string> + <string>Type of easing curve.</string> </property> <item> <property name="text"> @@ -164,7 +164,7 @@ </sizepolicy> </property> <property name="toolTip"> - <string>Acceleration or deceleration of easing curve</string> + <string>Acceleration or deceleration of easing curve.</string> </property> <item> <property name="text"> @@ -207,7 +207,7 @@ </size> </property> <property name="toolTip"> - <string>Duration of animation</string> + <string>Duration of animation.</string> </property> <property name="specialValueText"> <string>INVALID</string> @@ -251,7 +251,7 @@ </size> </property> <property name="toolTip"> - <string>Amplitude of elastic and bounce easing curves</string> + <string>Amplitude of elastic and bounce easing curves.</string> </property> <property name="specialValueText"> <string>INVALID</string> @@ -292,7 +292,7 @@ </size> </property> <property name="toolTip"> - <string>Easing period of an elastic curve</string> + <string>Easing period of an elastic curve.</string> </property> <property name="specialValueText"> <string>INVALID</string> @@ -333,7 +333,7 @@ </size> </property> <property name="toolTip"> - <string>Easing overshoot for a back curve</string> + <string>Easing overshoot for a back curve.</string> </property> <property name="specialValueText"> <string>INVALID</string> |