diff options
9 files changed, 40 insertions, 40 deletions
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml index 0f9ed319aa..696ccb89cf 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/ButtonSpecifics.qml @@ -45,7 +45,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("Text displayed on the button.") + tooltip: qsTr("Text displayed on the button.") } SecondColumnLayout { @@ -57,7 +57,7 @@ Column { Label { text: qsTr("Checked") - toolTip: qsTr("State of the button.") + tooltip: qsTr("State of the button.") } SecondColumnLayout { @@ -74,7 +74,7 @@ Column { Label { text: qsTr("Checkable") - toolTip: qsTr("Determines whether the button is checkable or not.") + tooltip: qsTr("Determines whether the button is checkable or not.") } SecondColumnLayout { @@ -97,7 +97,7 @@ Column { Label { text: qsTr("Enabled") - toolTip: qsTr("Determines whether the button is enabled or not.") + tooltip: qsTr("Determines whether the button is enabled or not.") } SecondColumnLayout { @@ -114,7 +114,7 @@ Column { Label { text: qsTr("Default button") - toolTip: qsTr("Sets the button as the default button in a dialog.") + tooltip: qsTr("Sets the button as the default button in a dialog.") } SecondColumnLayout { @@ -130,7 +130,7 @@ Column { Label { text: qsTr("Tool tip") - toolTip: qsTr("The tool tip shown for the button.") + tooltip: qsTr("The tool tip shown for the button.") } SecondColumnLayout { @@ -142,7 +142,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: "Determines whether the button gets focus if pressed." + tooltip: qsTr("Determines whether the button gets focus if pressed.") } SecondColumnLayout { @@ -159,7 +159,7 @@ Column { Label { text: qsTr("Icon source") - toolTip: qsTr("The URL of an icon resource.") + tooltip: qsTr("The URL of an icon resource.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml index 6d5a8d39c6..a684c49005 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/CheckBoxSpecifics.qml @@ -45,7 +45,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("Text shown on the check box.") + tooltip: qsTr("Text shown on the check box.") } SecondColumnLayout { @@ -57,7 +57,7 @@ Column { Label { text: qsTr("Checked") - toolTip: qsTr("State of the check box.") + tooltip: qsTr("State of the check box.") } SecondColumnLayout { @@ -74,7 +74,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: qsTr("Determines whether the check box gets focus if pressed.") + tooltip: qsTr("Determines whether the check box gets focus if pressed.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml index 0b24f92d20..c46e934566 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/ComboBoxSpecifics.qml @@ -45,7 +45,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: "Determines whether the combobox gets focus if pressed." + tooltip: qsTr("Determines whether the combobox gets focus if pressed.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml index 92f1eac103..45d5ec2b9d 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/RadioButtonSpecifics.qml @@ -45,7 +45,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("Text label for the radio button.") + tooltip: qsTr("Text label for the radio button.") } SecondColumnLayout { @@ -57,7 +57,7 @@ Column { Label { text: qsTr("Checked") - toolTip: qsTr("Determines whether the radio button is checked or not.") + tooltip: qsTr("Determines whether the radio button is checked or not.") } SecondColumnLayout { @@ -75,7 +75,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: "Determines whether the radio button gets focus if pressed." + tooltip: qsTr("Determines whether the radio button gets focus if pressed.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml index 138baa4925..105d438af0 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml @@ -35,7 +35,7 @@ Section { SectionLayout { Label { text: qsTr("Value") - toolTip: qsTr("Current value of the Slider. The default value is 0.0.") + tooltip: qsTr("Current value of the Slider. The default value is 0.0.") } SecondColumnLayout { SpinBox { @@ -50,7 +50,7 @@ Section { } Label { text: qsTr("Maximum value") - toolTip: qsTr("Maximum value of the slider. The default value is 1.0.") + tooltip: qsTr("Maximum value of the slider. The default value is 1.0.") } SecondColumnLayout { SpinBox { @@ -66,7 +66,7 @@ Section { } Label { text: qsTr("Minimum value") - toolTip: qsTr("Minimum value of the slider. The default value is 0.0.") + tooltip: qsTr("Minimum value of the slider. The default value is 0.0.") } SecondColumnLayout { SpinBox { @@ -82,7 +82,7 @@ Section { } Label { text: qsTr("Orientation") - toolTip: qsTr("Layout orientation of the slider.") + tooltip: qsTr("Layout orientation of the slider.") } SecondColumnLayout { OrientationCombobox { @@ -93,7 +93,7 @@ Section { } Label { text: qsTr("Step size") - toolTip: qsTr("Indicates the slider step size.") + tooltip: qsTr("Indicates the slider step size.") } SecondColumnLayout { SpinBox { @@ -108,7 +108,7 @@ Section { Label { text: qsTr("Active focus on press") - toolTip: qsTr("Indicates whether the slider should receive active focus when pressed.") + tooltip: qsTr("Indicates whether the slider should receive active focus when pressed.") } SecondColumnLayout { @@ -121,7 +121,7 @@ Section { } Label { text: qsTr("Tick marks enabled") - toolTip: qsTr("Indicates whether the slider should display tick marks at step intervals.") + tooltip: qsTr("Indicates whether the slider should display tick marks at step intervals.") } SecondColumnLayout { @@ -134,7 +134,7 @@ Section { } Label { text: qsTr("Update value while dragging") - toolTip: qsTr("Determines whether the current value should be updated while the user is moving the slider handle, or only when the button has been released.") + tooltip: qsTr("Determines whether the current value should be updated while the user is moving the slider handle, or only when the button has been released.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/SplitViewSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/SplitViewSpecifics.qml index 85009a0196..41ce3fdbda 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/SplitViewSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/SplitViewSpecifics.qml @@ -44,7 +44,7 @@ Column { SectionLayout { Label { text: qsTr("Orientation") - toolTip: qsTr("Orientation of the split view.") + tooltip: qsTr("Orientation of the split view.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TabViewSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TabViewSpecifics.qml index ee65e7047e..367862a0f4 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TabViewSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TabViewSpecifics.qml @@ -54,7 +54,7 @@ Column { Label { text: qsTr("Frame visible") - toolTip: qsTr("Determines the visibility of the tab frame around contents.") + tooltip: qsTr("Determines the visibility of the tab frame around contents.") } SecondColumnLayout { @@ -70,7 +70,7 @@ Column { Label { text: qsTr("Tabs visible") - toolTip: qsTr("Determines the visibility of the the tab bar.") + tooltip: qsTr("Determines the visibility of the the tab bar.") } SecondColumnLayout { @@ -86,7 +86,7 @@ Column { Label { text: qsTr("Tab position") - toolTip: qsTr("Determines the position of the tabs.") + tooltip: qsTr("Determines the position of the tabs.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml index eed8d80132..19a8149b59 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextAreaSpecifics.qml @@ -59,7 +59,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("Text shown on the text area.") + tooltip: qsTr("Text shown on the text area.") } SecondColumnLayout { @@ -72,7 +72,7 @@ Column { Label { text: qsTr("Read only") - toolTip: qsTr("Determines whether the text area is read only.") + tooltip: qsTr("Determines whether the text area is read only.") } SecondColumnLayout { @@ -88,7 +88,7 @@ Column { Label { text: qsTr("Document margins") - toolTip: qsTr("Margins of the text area.") + tooltip: qsTr("Margins of the text area.") } SectionLayout { @@ -107,7 +107,7 @@ Column { Label { text: qsTr("Frame width") - toolTip: qsTr("Width of the frame.") + tooltip: qsTr("Width of the frame.") } SectionLayout { @@ -125,7 +125,7 @@ Column { Label { text: qsTr("Contents frame") - toolTip: qsTr("Determines whether the frame around contents is shown.") + tooltip: qsTr("Determines whether the frame around contents is shown.") } SecondColumnLayout { @@ -157,7 +157,7 @@ Column { Label { text: qsTr("Highlight on focus") - toolTip: qsTr("Determines whether the text area is highlighted on focus.") + tooltip: qsTr("Determines whether the text area is highlighted on focus.") } SecondColumnLayout { @@ -173,7 +173,7 @@ Column { Label { text: qsTr("Tab changes focus") - toolTip: qsTr("Determines whether tab changes the focus of the text area.") + tooltip: qsTr("Determines whether tab changes the focus of the text area.") } SecondColumnLayout { @@ -189,7 +189,7 @@ Column { Label { text: qsTr("Focus on press") - toolTip: qsTr("Determines whether the text area gets focus if pressed.") + tooltip: qsTr("Determines whether the text area gets focus if pressed.") } SecondColumnLayout { diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml index 6ee8e7f6c5..a76ca9a69f 100644 --- a/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml +++ b/src/plugins/qmldesigner/componentsplugin/Controls/TextFieldSpecifics.qml @@ -45,7 +45,7 @@ Column { Label { text: qsTr("Text") - toolTip: qsTr("Text shown on the text field.") + tooltip: qsTr("Text shown on the text field.") } SecondColumnLayout { @@ -59,7 +59,7 @@ Column { Label { text: qsTr("Placeholder text") - toolTip: qsTr("Placeholder text.") + tooltip: qsTr("Placeholder text.") } SecondColumnLayout { @@ -71,7 +71,7 @@ Column { Label { text: qsTr("Read only") - toolTip: qsTr("Determines whether the text field is read only.") + tooltip: qsTr("Determines whether the text field is read only.") } SecondColumnLayout { @@ -87,7 +87,7 @@ Column { Label { text: qsTr("Input mask") - toolTip: qsTr("Restricts the valid text in the text field.") + tooltip: qsTr("Restricts the valid text in the text field.") } SecondColumnLayout { @@ -99,7 +99,7 @@ Column { Label { text: qsTr("Echo mode") - toolTip: qsTr("Specifies how the text is displayed in the text field.") + tooltip: qsTr("Specifies how the text is displayed in the text field.") } SecondColumnLayout { |