summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2022-03-08 13:18:33 +0000
committerGitHub <noreply@github.com>2022-03-08 13:18:33 +0000
commite836045be358c71065945da23635909db5758551 (patch)
tree398cb36178c81fe234f24fa854714d872922bc96 /resources
parentTranslated using Weblate (Indonesian) (diff)
parentMake “show more” “show less” in room settings translatable (diff)
downloadnheko-e836045be358c71065945da23635909db5758551.tar.xz
Merge pull request #980 from tastytea/translatable-strings
Make “show more” “show less” in room settings translatable
Diffstat (limited to 'resources')
-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) }