aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/gallery/pages/GroupBoxPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols/gallery/pages/GroupBoxPage.qml')
-rw-r--r--examples/quickcontrols/gallery/pages/GroupBoxPage.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/quickcontrols/gallery/pages/GroupBoxPage.qml b/examples/quickcontrols/gallery/pages/GroupBoxPage.qml
index 9e24d8e6ca..a30adf8a8f 100644
--- a/examples/quickcontrols/gallery/pages/GroupBoxPage.qml
+++ b/examples/quickcontrols/gallery/pages/GroupBoxPage.qml
@@ -17,11 +17,11 @@ ScrollablePage {
width: parent.width
wrapMode: Label.Wrap
horizontalAlignment: Qt.AlignHCenter
- text: "A GroupBox provides a frame, a title on top of it, and a logical group of controls within that frame."
+ text: qsTr("A GroupBox provides a frame, a title on top of it, and a logical group of controls within that frame.")
}
GroupBox {
- title: "Title"
+ title: qsTr("Title")
anchors.horizontalCenter: parent.horizontalCenter
Column {
@@ -29,17 +29,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
}
}