aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/gallery/pages/ToolTipPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols/gallery/pages/ToolTipPage.qml')
-rw-r--r--examples/quickcontrols/gallery/pages/ToolTipPage.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quickcontrols/gallery/pages/ToolTipPage.qml b/examples/quickcontrols/gallery/pages/ToolTipPage.qml
index dd92c89b4f..9a6cfc5729 100644
--- a/examples/quickcontrols/gallery/pages/ToolTipPage.qml
+++ b/examples/quickcontrols/gallery/pages/ToolTipPage.qml
@@ -15,16 +15,16 @@ ScrollablePage {
width: parent.width
wrapMode: Label.Wrap
horizontalAlignment: Qt.AlignHCenter
- text: "A tool tip is a short piece of text that informs the user of a control's function."
+ text: qsTr("A tool tip is a short piece of text that informs the user of a control's function.")
}
Button {
- text: "Tip"
+ text: qsTr("Tip")
anchors.horizontalCenter: parent.horizontalCenter
ToolTip.timeout: 5000
ToolTip.visible: pressed
- ToolTip.text: "This is a tool tip."
+ ToolTip.text: qsTr("This is a tool tip.")
}
}
}