aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/gallery/pages/RadioButtonPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols/gallery/pages/RadioButtonPage.qml')
-rw-r--r--examples/quickcontrols/gallery/pages/RadioButtonPage.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/quickcontrols/gallery/pages/RadioButtonPage.qml b/examples/quickcontrols/gallery/pages/RadioButtonPage.qml
index 644543c007..6939d47dba 100644
--- a/examples/quickcontrols/gallery/pages/RadioButtonPage.qml
+++ b/examples/quickcontrols/gallery/pages/RadioButtonPage.qml
@@ -15,8 +15,8 @@ ScrollablePage {
width: parent.width
wrapMode: Label.Wrap
horizontalAlignment: Qt.AlignHCenter
- text: "RadioButton presents an option button that can be toggled on or off. "
- + "Radio buttons are typically used to select one option from a set of options."
+ text: qsTr("RadioButton presents an option button that can be toggled on or off. "
+ + "Radio buttons are typically used to select one option from a set of options.")
}
Column {
@@ -24,14 +24,14 @@ ScrollablePage {
anchors.horizontalCenter: parent.horizontalCenter
RadioButton {
- text: "First"
+ text: qsTr("First")
}
RadioButton {
- text: "Second"
+ text: qsTr("Second")
checked: true
}
RadioButton {
- text: "Third"
+ text: qsTr("Third")
enabled: false
}
}