diff options
author | tastytea <tastytea@tastytea.de> | 2022-03-08 11:31:54 +0100 |
---|---|---|
committer | tastytea <tastytea@tastytea.de> | 2022-03-08 11:31:54 +0100 |
commit | b75f7e564dc909b03d7ada9a86abb731d31bcb58 (patch) | |
tree | 398cb36178c81fe234f24fa854714d872922bc96 /resources/qml | |
parent | Translated using Weblate (Indonesian) (diff) | |
download | nheko-b75f7e564dc909b03d7ada9a86abb731d31bcb58.tar.xz |
Make “show more” “show less” in room settings translatable
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/dialogs/RoomSettings.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/dialogs/RoomSettings.qml b/resources/qml/dialogs/RoomSettings.qml index 44051610..a5ca0b47 100644 --- a/resources/qml/dialogs/RoomSettings.qml +++ b/resources/qml/dialogs/RoomSettings.qml @@ -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) } |