aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/gallery/pages/FramePage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols/gallery/pages/FramePage.qml')
-rw-r--r--examples/quickcontrols/gallery/pages/FramePage.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/quickcontrols/gallery/pages/FramePage.qml b/examples/quickcontrols/gallery/pages/FramePage.qml
index 8526442537..b32d8af00c 100644
--- a/examples/quickcontrols/gallery/pages/FramePage.qml
+++ b/examples/quickcontrols/gallery/pages/FramePage.qml
@@ -17,7 +17,7 @@ ScrollablePage {
width: parent.width
wrapMode: Label.Wrap
horizontalAlignment: Qt.AlignHCenter
- text: "Frame is used to layout a logical group of controls together, within a visual frame."
+ text: qsTr("Frame is used to layout a logical group of controls together, within a visual frame.")
}
Frame {
@@ -28,17 +28,17 @@ ScrollablePage {
width: page.itemWidth
RadioButton {
- text: "First"
+ text: qsTr("First")
checked: true
width: parent.width
}
RadioButton {
id: button
- text: "Second"
+ text: qsTr("Second")
width: parent.width
}
RadioButton {
- text: "Third"
+ text: qsTr("Third")
width: parent.width
}
}