From ffd94f1138296c95ddd64ed3fd5036104dcc409f Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 2 Jul 2021 10:36:07 +0200 Subject: [PATCH] QML Designer: Fix UI text in Properties view - Check capitalization of UI text (titles, headings and captions should use title case; labels should use sentence case) - Fix some label text - Fix some tooltips Task-number: QTCREATORBUG-25915 Change-Id: Ifaffe77fa5ad3f9f310bd470ef59b021c1cf6456 Reviewed-by: Vikas Pachdha --- .../QtQuick/AdvancedSection.qml | 4 ++-- .../QtQuick/AlignDistributeSection.qml | 8 ++++---- .../QtQuick/AnimatedImageSpecifics.qml | 4 ++-- .../QtQuick/ComponentSection.qml | 8 ++++---- .../QtQuick/ConnectionsSpecifics.qml | 2 +- .../QtQuick/Controls/BusyIndicatorSpecifics.qml | 4 ++-- .../QtQuick/Controls/CheckSection.qml | 2 +- .../QtQuick/Controls/DelayButtonSpecifics.qml | 2 +- .../QtQuick/Controls/DialSpecifics.qml | 2 +- .../QtQuick/Controls/FrameSpecifics.qml | 2 +- .../QtQuick/Controls/GroupBoxSpecifics.qml | 2 +- .../QtQuick/Controls/ItemDelegateSection.qml | 2 +- .../QtQuick/Controls/PageIndicatorSpecifics.qml | 2 +- .../QtQuick/Controls/PaneSpecifics.qml | 2 +- .../QtQuick/Controls/ProgressBarSpecifics.qml | 2 +- .../QtQuick/Controls/RadioDelegateSpecifics.qml | 2 +- .../QtQuick/Controls/RangeSliderSpecifics.qml | 6 +++--- .../QtQuick/Controls/RoundButtonSpecifics.qml | 2 +- .../QtQuick/Controls/ScrollViewSpecifics.qml | 4 ++-- .../QtQuick/Controls/SliderSpecifics.qml | 4 ++-- .../QtQuick/Controls/SpinBoxSpecifics.qml | 14 +++++++------- .../QtQuick/Controls/StackViewSpecifics.qml | 2 +- .../QtQuick/Controls/SwipeViewSpecifics.qml | 4 ++-- .../QtQuick/Controls/TabBarSpecifics.qml | 4 ++-- .../QtQuick/Controls/TextFieldSpecifics.qml | 2 +- .../QtQuick/Controls/TextSection.qml | 4 ++-- .../QtQuick/Controls/ToolBarSpecifics.qml | 4 ++-- .../QtQuick/Controls/ToolSeparatorSpecifics.qml | 2 +- .../QtQuick/Controls/TumblerSpecifics.qml | 2 +- .../QtQuick/GeometrySection.qml | 4 ++-- .../QtQuick/LayerSection.qml | 4 ++-- .../QtQuick/ListViewSpecifics.qml | 6 +++--- .../QtQuick/MouseAreaSpecifics.qml | 2 +- .../QtQuick/StateSpecifics.qml | 4 ++-- 34 files changed, 62 insertions(+), 62 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml index a29a2716e5b..cb9c5bce84d 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml @@ -111,7 +111,7 @@ Section { } PropertyLabel { - text: qsTr("Focus on Tab") + text: qsTr("Focus on tab") tooltip: qsTr("Adds the component to the tab focus chain.") disabledState: !backendValues.activeFocusOnTab.isAvailable } @@ -129,7 +129,7 @@ Section { } PropertyLabel { - text: qsTr("Baseline Offset") + text: qsTr("Baseline offset") tooltip: qsTr("Position of the component's baseline in local coordinates.") disabledState: !backendValues.baselineOffset.isAvailable } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AlignDistributeSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AlignDistributeSection.qml index 0b435c48eab..e2228795935 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AlignDistributeSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AlignDistributeSection.qml @@ -124,7 +124,7 @@ Section { } } - PropertyLabel { text: qsTr("Distribute Objects") } + PropertyLabel { text: qsTr("Distribute objects") } SecondColumnLayout { Spacer { implicitWidth: StudioTheme.Values.actionIndicatorWidth } @@ -196,7 +196,7 @@ Section { } } - PropertyLabel { text: qsTr("Distribute Spacing") } + PropertyLabel { text: qsTr("Distribute spacing") } SecondColumnLayout { Spacer { implicitWidth: StudioTheme.Values.actionIndicatorWidth } @@ -275,7 +275,7 @@ Section { } } - PropertyLabel { text: qsTr("Pixel Spacing") } + PropertyLabel { text: qsTr("Pixel spacing") } SecondColumnLayout { Spacer { implicitWidth: StudioTheme.Values.actionIndicatorWidth } @@ -318,7 +318,7 @@ Section { ExpandingSpacer {} } - PropertyLabel { text: qsTr("Key Object") } + PropertyLabel { text: qsTr("Key object") } SecondColumnLayout { ComboBox { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedImageSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedImageSpecifics.qml index 1d4e8fe87ce..f2b0c16b8c9 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedImageSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedImageSpecifics.qml @@ -38,7 +38,7 @@ Column { } Section { - caption: qsTr("Animated image") + caption: qsTr("Animated Image") anchors.left: parent.left anchors.right: parent.right @@ -69,7 +69,7 @@ Column { PropertyLabel { text: qsTr("Playing") - tooltip: qsTr("Whether the animation is playing and/or paused.") + tooltip: qsTr("Whether the animation is playing or paused.") disabledState: !backendValues.playing.isAvailable && !backendValues.paused.isAvailable } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ComponentSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ComponentSection.qml index bbab6812539..266ac2b0274 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ComponentSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ComponentSection.qml @@ -103,7 +103,7 @@ Section { ExpandingSpacer {} } - PropertyLabel { text: qsTr("id") } + PropertyLabel { text: qsTr("ID") } SecondColumnLayout { Spacer { implicitWidth: StudioTheme.Values.actionIndicatorWidth } @@ -187,7 +187,7 @@ Section { ExpandingSpacer {} } - PropertyLabel { text: qsTr("id Annotation") } + PropertyLabel { text: qsTr("Name") } SecondColumnLayout { enabled: !modelNodeBackend.multiSelection @@ -205,7 +205,7 @@ Section { - removeAnnotationButton.width + 2 * StudioTheme.Values.border backendValue: backendValues.customId__AUX - placeholderText: qsTr("customId") + placeholderText: qsTr("Descriptive text") text: backendValue.value showTranslateCheckBox: false showExtendedFunctionButton: false @@ -233,7 +233,7 @@ Section { implicitWidth: StudioTheme.Values.singleControlColumnWidth width: StudioTheme.Values.singleControlColumnWidth visible: !annotationEditor.hasAuxData - buttonIcon: qsTr("add") + buttonIcon: qsTr("Add Annotation") iconFont: StudioTheme.Constants.font onClicked: annotationEditor.showWidget() onHoveredChanged: annotationEditor.checkAux() diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml index 0eaee579db5..98d03a35458 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml @@ -52,7 +52,7 @@ Column { Label { text: qsTr("Ignore unknown signals") - tooltip: qsTr("A connection to a non-existent signal produces runtime errors. If this property is set to true, such errors are ignored") + tooltip: qsTr("Ignores runtime errors produced by connections to non-existent signals.") } SecondColumnLayout { CheckBox { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml index b9f36804145..0a92222b578 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml @@ -44,7 +44,7 @@ Column { width: parent.width Section { - caption: qsTr("Busy indicator") + caption: qsTr("Busy Indicator") width: parent.width @@ -56,7 +56,7 @@ Column { SecondColumnLayout { CheckBox { - text: qsTr("live") + text: qsTr("Live") implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth backendValue: backendValues.running diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml index 1985f3ccffe..edf449fcaf7 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml @@ -41,7 +41,7 @@ import StudioControls 1.0 as StudioControls import StudioTheme 1.0 as StudioTheme Section { - caption: qsTr("Check box") + caption: qsTr("Check Box") anchors.left: parent.left anchors.right: parent.right diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml index 2a72cb6436f..995997af65a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml @@ -43,7 +43,7 @@ Column { width: parent.width Section { - caption: qsTr("Delay button") + caption: qsTr("Delay Button") width: parent.width diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml index e5ddf049504..e3fae4a024a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml @@ -68,7 +68,7 @@ Column { Spacer { implicitWidth: StudioTheme.Values.controlLabelGap } CheckBox { - text: qsTr("live") + text: qsTr("Live") implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth backendValue: backendValues.live diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml index fa746a930e0..33b98e44814 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml @@ -51,7 +51,7 @@ Column { PaddingSection {} FontSection { - caption: qsTr("Font inheritance") + caption: qsTr("Font Inheritance") expanded: false } } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml index 67618f58782..a8b5801fde1 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml @@ -43,7 +43,7 @@ Column { width: parent.width Section { - caption: qsTr("Group box") + caption: qsTr("Group Box") width: parent.width diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml index ffe81ef7fa4..fc5c0e5f0d5 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml @@ -42,7 +42,7 @@ import StudioTheme 1.0 as StudioTheme Section { id: section - caption: qsTr("Item delegate") + caption: qsTr("Item Delegate") anchors.left: parent.left anchors.right: parent.right diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml index 426e35b78f9..1f188f4e2ba 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml @@ -44,7 +44,7 @@ Column { Section { width: parent.width - caption: qsTr("PageIndicator") + caption: qsTr("Page Indicator") SectionLayout { PropertyLabel { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml index 2b1ad460026..dde8aab73d1 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml @@ -49,7 +49,7 @@ Column { PaddingSection {} FontSection { - caption: qsTr("Font inheritance") + caption: qsTr("Font Inheritance") expanded: false } } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml index c53893b861b..104803b72f2 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml @@ -43,7 +43,7 @@ Column { width: parent.width Section { - caption: qsTr("Progress bar") + caption: qsTr("Progress Bar") width: parent.width diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml index 92e814a624f..31e32eeed7a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml @@ -43,7 +43,7 @@ Column { width: parent.width ItemDelegateSection { - caption: qsTr("Radio delegate") + caption: qsTr("Radio Delegate") } AbstractButtonSection {} diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml index d51943cb4b1..430a7b49987 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml @@ -43,7 +43,7 @@ Column { width: parent.width Section { - caption: qsTr("Range slider") + caption: qsTr("Range Slider") width: parent.width @@ -67,7 +67,7 @@ Column { Spacer { implicitWidth: StudioTheme.Values.twoControlColumnGap } CheckBox { - text: qsTr("live") + text: qsTr("Live") implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth backendValue: backendValues.live @@ -156,7 +156,7 @@ Column { PropertyLabel { text: qsTr("Drag threshold") - tooltip: qsTr("The threshold (in logical pixels) at which a Drag event will be initiated.") + tooltip: qsTr("The threshold (in logical pixels) at which a drag event will be initiated.") } SecondColumnLayout { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml index 6a7fbda94de..85ddd4fab50 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml @@ -44,7 +44,7 @@ Column { Section { width: parent.width - caption: qsTr("Round button") + caption: qsTr("Round Button") SectionLayout { PropertyLabel { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml index 7088f08faf2..5de17cb387b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml @@ -44,7 +44,7 @@ Column { Section { width: parent.width - caption: qsTr("Scroll view") + caption: qsTr("Scroll View") SectionLayout { PropertyLabel { text: qsTr("Content size") } @@ -96,7 +96,7 @@ Column { PaddingSection {} FontSection { - caption: qsTr("Font inheritance") + caption: qsTr("Font Inheritance") expanded: false } } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml index 577693824f0..4bc16353bc5 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml @@ -66,7 +66,7 @@ Column { Spacer { implicitWidth: StudioTheme.Values.twoControlColumnGap } CheckBox { - text: qsTr("live") + text: qsTr("Live") implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth backendValue: backendValues.live @@ -135,7 +135,7 @@ Column { PropertyLabel { text: qsTr("Drag threshold") - tooltip: qsTr("The threshold (in logical pixels) at which a Drag event will be initiated.") + tooltip: qsTr("The threshold (in logical pixels) at which a drag event will be initiated.") } SecondColumnLayout { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml index c6bb8362a60..01322a57ba2 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml @@ -44,12 +44,12 @@ Column { Section { width: parent.width - caption: qsTr("Spin box") + caption: qsTr("Spin Box") SectionLayout { PropertyLabel { text: qsTr("Value") - tooltip: qsTr("The current value of the spinbox.") + tooltip: qsTr("The current value of the spin box.") } SecondColumnLayout { @@ -67,7 +67,7 @@ Column { PropertyLabel { text: qsTr("From") - tooltip: qsTr("The starting value of the spinbox range.") + tooltip: qsTr("The starting value of the spin box range.") } SecondColumnLayout { @@ -85,7 +85,7 @@ Column { PropertyLabel { text: qsTr("To") - tooltip: qsTr("The ending value of the spinbox range.") + tooltip: qsTr("The ending value of the spin box range.") } SecondColumnLayout { @@ -103,7 +103,7 @@ Column { PropertyLabel { text: qsTr("Step size") - tooltip: qsTr("The step size of the spinbox.") + tooltip: qsTr("The step size of the spin box.") } SecondColumnLayout { @@ -121,7 +121,7 @@ Column { PropertyLabel { text: qsTr("Editable") - tooltip: qsTr("Whether the spinbox is editable.") + tooltip: qsTr("Whether the spin box is editable.") } SecondColumnLayout { @@ -137,7 +137,7 @@ Column { PropertyLabel { text: qsTr("Wrap") - tooltip: qsTr("Whether the spinbox wraps.") + tooltip: qsTr("Whether the spin box values wrap.") } SecondColumnLayout { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml index 37ba9bb66c9..3f8bb535cf5 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml @@ -47,7 +47,7 @@ Column { PaddingSection {} FontSection { - caption: qsTr("Font inheritance") + caption: qsTr("Font Inheritance") expanded: false } } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml index 525b61dc640..aab4f96a29e 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml @@ -44,7 +44,7 @@ Column { Section { width: parent.width - caption: qsTr("Swipe view") + caption: qsTr("Swipe View") SectionLayout { PropertyLabel { @@ -90,7 +90,7 @@ Column { PaddingSection {} FontSection { - caption: qsTr("Font inheritance") + caption: qsTr("Font Inheritance") expanded: false } } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml index 5c5ff6d4431..4d465955066 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml @@ -45,12 +45,12 @@ Column { Section { width: parent.width - caption: qsTr("Tab bar") + caption: qsTr("Tab Bar") SectionLayout { PropertyLabel { text: qsTr("Position") - tooltip: qsTr("Position of the tabbar.") + tooltip: qsTr("Position of the tab bar.") } SecondColumnLayout { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml index e5d7edb79fe..3c4c0dc8dc4 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml @@ -44,7 +44,7 @@ Column { width: parent.width TextSection { - caption: qsTr("Text field") + caption: qsTr("Text Field") } CharacterSection {} diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml index 7e23e522283..e5b2bcae655 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml @@ -41,7 +41,7 @@ import StudioTheme 1.0 as StudioTheme Section { width: parent.width - caption: qsTr("Text area") + caption: qsTr("Text Area") SectionLayout { PropertyLabel { @@ -62,7 +62,7 @@ Section { PropertyLabel { text: qsTr("Placeholder color") - tooltip: qsTr("Placeholder text color") + tooltip: qsTr("Placeholder text color.") } ColorEditor { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml index 582f2120c3a..445c3bc256b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml @@ -44,7 +44,7 @@ Column { Section { width: parent.width - caption: qsTr("Tool bar") + caption: qsTr("Tool Bar") SectionLayout { PropertyLabel { @@ -74,7 +74,7 @@ Column { PaddingSection {} FontSection { - caption: qsTr("Font inheritance") + caption: qsTr("Font Inheritance") expanded: false } } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml index 0c456d8c76a..53345e711a5 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml @@ -44,7 +44,7 @@ Column { Section { width: parent.width - caption: qsTr("Tool separator") + caption: qsTr("Tool Separator") SectionLayout { PropertyLabel { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml index d56d529ea48..487cd148606 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml @@ -85,7 +85,7 @@ Column { PropertyLabel { text: qsTr("Wrap") - tooltip: qsTr("Whether the tumbler wrap.") + tooltip: qsTr("Whether the tumbler values wrap.") } SecondColumnLayout { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml index c4bbef3ba9c..275640af7bf 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml @@ -31,7 +31,7 @@ import StudioTheme 1.0 as StudioTheme Section { id: root - caption: qsTr("Geometry - 2d") + caption: qsTr("Geometry - 2D") anchors.left: parent.left anchors.right: parent.right @@ -231,7 +231,7 @@ Section { ExpandingSpacer {} } - PropertyLabel { text: qsTr("Z Stack") } + PropertyLabel { text: qsTr("Z stack") } SecondColumnLayout { SpinBox { diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml index 2afadcf282d..063a2bbb309 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml @@ -52,7 +52,7 @@ Section { } PropertyLabel { - text: qsTr("Sampler Name") + text: qsTr("Sampler name") tooltip: qsTr("Name of the effect's source texture property.") } @@ -185,7 +185,7 @@ Section { } PropertyLabel { - text: qsTr("Texture Mirroring") + text: qsTr("Texture mirroring") tooltip: qsTr("Sets how the generated OpenGL texture should be mirrored.") } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml index 40e91577b04..d6540e72d3d 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml @@ -43,7 +43,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Orientation") - tooltip: qsTr("Orientation of the list") + tooltip: qsTr("Orientation of the list.") } SecondColumnLayout { @@ -118,7 +118,7 @@ Column { PropertyLabel { text: qsTr("Cache") - tooltip: qsTr("Cache buffer") + tooltip: qsTr("Cache buffer.") disabledState: !backendValues.cacheBuffer.isAvailable } @@ -165,7 +165,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Range") - tooltip: qsTr("Highlight range") + tooltip: qsTr("Highlight range.") disabledState: !backendValues.highlightRangeMode.isAvailable } diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml index 9baf18e690d..b3eb942d4fb 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml @@ -34,7 +34,7 @@ Column { anchors.right: parent.right Section { - caption: qsTr("Mouse area") + caption: qsTr("Mouse Area") anchors.left: parent.left anchors.right: parent.right diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml index 7010ba2bcf1..2f7fddfd4d9 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml @@ -52,7 +52,7 @@ Column { Label { text: qsTr("Name") - tooltip: qsTr("Holds the name of the state.") + tooltip: qsTr("The name of the state.") } SecondColumnLayout { LineEdit { @@ -65,7 +65,7 @@ Column { Label { text: qsTr("Extend") - tooltip: qsTr("Holds the state that this state extends.") + tooltip: qsTr("The state that this state extends.") } SecondColumnLayout { LineEdit {