Skip to content

Commit fe41329

Browse files
committed
qml: Using qsTr() with strings in ConnectionSettings.qml
1 parent ef98ffa commit fe41329

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/qml/components/ConnectionSettings.qml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ ColumnLayout {
1111
spacing: 20
1212
Setting {
1313
Layout.fillWidth: true
14-
header: "Use cellular data"
14+
header: qsTr("Use cellular data")
1515
}
1616
Setting {
1717
Layout.fillWidth: true
18-
header: "Daily upload limit"
18+
header: qsTr("Daily upload limit")
1919
}
2020
Setting {
2121
Layout.fillWidth: true
22-
header: "Connection limit"
22+
header: qsTr("Connection limit")
2323
}
2424
Setting {
2525
Layout.fillWidth: true
26-
header: "Listening enabled"
27-
description: "Reduces data usage."
26+
header: qsTr("Listening enabled")
27+
description: qsTr("Reduces data usage.")
2828
}
2929
Setting {
3030
last: true
3131
Layout.fillWidth: true
32-
header: "Blocks Only"
33-
description: "Do not transfer unconfirmed transactions. Also disabled listening."
32+
header: qsTr("Blocks Only")
33+
description: qsTr("Do not transfer unconfirmed transactions. Also disabled listening.")
3434
}
3535
}

0 commit comments

Comments
 (0)