From b75f7e564dc909b03d7ada9a86abb731d31bcb58 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 8 Mar 2022 11:31:54 +0100 Subject: [PATCH] =?UTF-8?q?Make=20=E2=80=9Cshow=20more=E2=80=9D=20?= =?UTF-8?q?=E2=80=9Cshow=20less=E2=80=9D=20in=20room=20settings=20translat?= =?UTF-8?q?able?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/qml/dialogs/RoomSettings.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }