mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
Merge pull request #980 from tastytea/translatable-strings
Make “show more” “show less” in room settings translatable
This commit is contained in:
commit
e836045be3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue