summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authortastytea <tastytea@tastytea.de>2022-03-08 11:31:54 +0100
committertastytea <tastytea@tastytea.de>2022-03-08 11:31:54 +0100
commitb75f7e564dc909b03d7ada9a86abb731d31bcb58 (patch)
tree398cb36178c81fe234f24fa854714d872922bc96 /resources/qml
parentTranslated using Weblate (Indonesian) (diff)
downloadnheko-b75f7e564dc909b03d7ada9a86abb731d31bcb58.tar.xz
Make “show more” “show less” in room settings translatable
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/dialogs/RoomSettings.qml2
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)
         }