aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2018-02-05 16:39:27 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2018-02-06 12:02:51 +0000
commitc4202f28fe59d4b88d2788d8ac86ea8a0daa9153 (patch)
treeb871b302905976f37325227376d2db3249851b99 /share/qtcreator
parentb405f81ada86791c901e3bad03078e9846f51f99 (diff)
Qt Quick Designer: Fix caps for property editor text
Change-Id: I8a0e727e981f5cd2c441fadda0cb71718ec1c667 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share/qtcreator')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionButton.qml2
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml4
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml2
3 files changed, 4 insertions, 4 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionButton.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionButton.qml
index c0177032b77..80ab3d39faa 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionButton.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionButton.qml
@@ -157,7 +157,7 @@ Item {
}
Controls.MenuItem {
- text: qsTr("Insert keyframe")
+ text: qsTr("Insert Keyframe")
visible: hasActiveTimeline
onTriggered: insertKeyframe(backendValue.name)
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
index de97df46b80..602d442be18 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
@@ -237,11 +237,11 @@ Section {
}
CheckBox {
- text: qsTr("Prefer Shaping")
+ text: qsTr("Prefer shaping")
Layout.fillWidth: true
backendValue: (backendValues.font_preferShaping === undefined) ? dummyBackendValue : backendValues.font_preferShaping
tooltip: qsTr("Sometimes, a font will apply complex rules to a set of characters in order to display them correctly.\n" +
- "In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, but in e.g." +
+ "In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, whereas in" +
"Latin script,\n it is merely a cosmetic feature. Setting the preferShaping property to false will disable all such features\nwhen they are not required, which will improve performance in most cases.")
}
}
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
index 152d17eb0bc..917cad87342 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
@@ -131,7 +131,7 @@ Section {
Label {
- text: qsTr("Line Height")
+ text: qsTr("Line height")
tooltip: qsTr("Sets the line height for the text.")
}