summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2014-09-10 17:28:18 +0200
committerLeena Miettinen <riitta-leena.miettinen@digia.com>2014-09-17 12:27:37 +0200
commit7e8245eae5f002c9543e52085367281821533eaf (patch)
tree7bc1558f1f6ab01d1ad6e8b409564a7c91f24818
parent7e7879d2a71ac197d403b803f4eed4aef190c2ab (diff)
downloadqt-creator-7e8245eae5f002c9543e52085367281821533eaf.tar.gz
Doc: fix tooltips for Qt Quick Controls
Remove initial definite article and add punctuation. Change-Id: Ic64af9bfe2b565a625d46b163bffecface897eda Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
-rw-r--r--src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml4
-rw-r--r--src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml4
-rw-r--r--src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml2
-rw-r--r--src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml6
-rw-r--r--src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml4
5 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml
index 9a3bbc5d9b..03bce4cbae 100644
--- a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml
+++ b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml
@@ -44,7 +44,7 @@ Column {
Label {
text: qsTr("Text")
- toolTip: qsTr("The text shown on the button")
+ toolTip: qsTr("Text displayed on the button.")
}
SecondColumnLayout {
@@ -56,7 +56,7 @@ Column {
Label {
text: qsTr("Checked")
- toolTip: qsTr("The state of the button")
+ toolTip: qsTr("State of the button.")
}
SecondColumnLayout {
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml
index e9c646d101..844333ff01 100644
--- a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml
+++ b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml
@@ -44,7 +44,7 @@ Column {
Label {
text: qsTr("Text")
- toolTip: qsTr("The text shown on the check box")
+ toolTip: qsTr("Text shown on the check box.")
}
SecondColumnLayout {
@@ -56,7 +56,7 @@ Column {
Label {
text: qsTr("Checked")
- toolTip: qsTr("The state of the check box")
+ toolTip: qsTr("State of the check box.")
}
SecondColumnLayout {
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml
index 8318c7ddff..430778da0b 100644
--- a/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml
+++ b/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml
@@ -44,7 +44,7 @@ Column {
Label {
text: qsTr("Text")
- toolTip: qsTr("The text label for the radio button")
+ toolTip: qsTr("Text label for the radio button.")
}
SecondColumnLayout {
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml
index 70347cf6db..60268343c7 100644
--- a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml
+++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml
@@ -58,7 +58,7 @@ Column {
Label {
text: qsTr("Text")
- toolTip: qsTr("The text shown on the text area")
+ toolTip: qsTr("Text shown on the text area.")
}
SecondColumnLayout {
@@ -87,7 +87,7 @@ Column {
Label {
text: qsTr("Document margins")
- toolTip: qsTr("The margins of the text area")
+ toolTip: qsTr("Margins of the text area.")
}
SectionLayout {
@@ -106,7 +106,7 @@ Column {
Label {
text: qsTr("Frame width")
- toolTip: qsTr("The width of the frame")
+ toolTip: qsTr("Width of the frame.")
}
SectionLayout {
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml
index c379e738b0..4d39b5fefb 100644
--- a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml
+++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml
@@ -44,7 +44,7 @@ Column {
Label {
text: qsTr("Text")
- toolTip: qsTr("The text shown on the text field")
+ toolTip: qsTr("Text shown on the text field.")
}
SecondColumnLayout {
@@ -58,7 +58,7 @@ Column {
Label {
text: qsTr("Placeholder text")
- toolTip: qsTr("The placeholder text")
+ toolTip: qsTr("Placeholder text.")
}
SecondColumnLayout {