Skip to content

Commit

Permalink
Don't translate strings used in tests only
Browse files Browse the repository at this point in the history
We can either do what I suggest in this PR, or don't upload the translation strings from the `test` dir. I think this is easier.
  • Loading branch information
suricactus authored and nirvn committed Nov 21, 2024
1 parent 648c505 commit 55d5143
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/qml/tst_qFieldGuide.qml
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@ TestCase {
id: testTour
baseRoot: dummyParent
steps: [{
"title": qsTr("dummyItem1"),
"description": qsTr("dummyItem1 responsibility."),
"title": "dummyItem1",
"description": "dummyItem1 responsibility.",
"target": () => [dummyItem1]
}, {
"title": qsTr("dummyItem2"),
"description": qsTr("dummyItem2 responsibility."),
"title": "dummyItem2",
"description": "dummyItem2 responsibility.",
"target": () => [dummyItem2]
}, {
"title": qsTr("dummyItem3"),
"description": qsTr("dummyItem3 responsibility."),
"title": "dummyItem3",
"description": "dummyItem3 responsibility.",
"target": () => [dummyItem3]
}, {
"title": qsTr("dummyItem4"),
"description": qsTr("dummyItem4 responsibility."),
"title": "dummyItem4",
"description": "dummyItem4 responsibility.",
"target": () => [dummyItem4]
}]
}
Expand Down

0 comments on commit 55d5143

Please sign in to comment.