Skip to content
Snippets Groups Projects
Unverified Commit e836045b authored by Nicolas Werner's avatar Nicolas Werner Committed by GitHub
Browse files

Merge pull request #980 from tastytea/translatable-strings

Make “show more” “show less” in room settings translatable
parents 23e931e4 b75f7e56
No related branches found
No related tags found
No related merge requests found
Pipeline #2782 passed
...@@ -378,7 +378,7 @@ ApplicationWindow { ...@@ -378,7 +378,7 @@ ApplicationWindow {
anchors.horizontalCenter: flickable.horizontalCenter anchors.horizontalCenter: flickable.horizontalCenter
y: Math.min(showMorePlaceholder.y+contentLayout1.y-flickable.contentY,flickable.height-height) y: Math.min(showMorePlaceholder.y+contentLayout1.y-flickable.contentY,flickable.height-height)
visible: roomTopic.cut visible: roomTopic.cut
text: roomTopic.showMore? "show less" : "show more" text: roomTopic.showMore? qsTr("show less") : qsTr("show more")
onClicked: {roomTopic.showMore = !roomTopic.showMore onClicked: {roomTopic.showMore = !roomTopic.showMore
console.log(flickable.visibleArea) 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