Skip to content
Snippets Groups Projects
Unverified Commit b75f7e56 authored by tastytea's avatar tastytea
Browse files

Make “show more” “show less” in room settings translatable

parent 23e931e4
No related branches found
No related tags found
No related merge requests found
Pipeline #2781 passed
......@@ -378,7 +378,7 @@ ApplicationWindow {
anchors.horizontalCenter: flickable.horizontalCenter
y: Math.min(showMorePlaceholder.y+contentLayout1.y-flickable.contentY,flickable.height-height)
visible: roomTopic.cut
text: roomTopic.showMore? "show less" : "show more"
text: roomTopic.showMore? qsTr("show less") : qsTr("show more")
onClicked: {roomTopic.showMore = !roomTopic.showMore
console.log(flickable.visibleArea)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment