summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-10-01 15:20:38 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-10-01 15:20:38 +0200
commit7ec842ba511702e9636d2420b8833b99c792f4df (patch)
treee99cda1024e90d8eb404ba2db53af567a2f8e9f5 /resources/qml
parentFix wrong file urls (diff)
downloadnheko-7ec842ba511702e9636d2420b8833b99c792f4df.tar.xz
Replace some user visible mentions of spaces
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/CommunitiesList.qml4
-rw-r--r--resources/qml/RoomList.qml2
-rw-r--r--resources/qml/components/SpaceMenuLevel.qml2
-rw-r--r--resources/qml/delegates/MessageDelegate.qml2
4 files changed, 5 insertions, 5 deletions
diff --git a/resources/qml/CommunitiesList.qml b/resources/qml/CommunitiesList.qml

index ca63bffd..853302a5 100644 --- a/resources/qml/CommunitiesList.qml +++ b/resources/qml/CommunitiesList.qml
@@ -48,14 +48,14 @@ Page { } Platform.MenuItem { - text: qsTr("Do not show notification counts for this space or tag.") + text: qsTr("Do not show notification counts for this community or tag.") checkable: true checked: communityContextMenu.muted onTriggered: Communities.toggleTagMute(communityContextMenu.tagId) } Platform.MenuItem { - text: qsTr("Hide rooms with this tag or from this space by default.") + text: qsTr("Hide rooms with this tag or from this community by default.") checkable: true checked: communityContextMenu.hidden onTriggered: Communities.toggleTagId(communityContextMenu.tagId) diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml
index a4628aa7..a777c369 100644 --- a/resources/qml/RoomList.qml +++ b/resources/qml/RoomList.qml
@@ -211,7 +211,7 @@ Page { roomid: roomContextMenu.roomid position: -1 - title: qsTr("Add or remove from space") + title: qsTr("Add or remove from community...") childMenu: nestedSpaceMenuLevel } } diff --git a/resources/qml/components/SpaceMenuLevel.qml b/resources/qml/components/SpaceMenuLevel.qml
index 419b0f6e..f552978d 100644 --- a/resources/qml/components/SpaceMenuLevel.qml +++ b/resources/qml/components/SpaceMenuLevel.qml
@@ -13,7 +13,7 @@ Platform.Menu { property Component childMenu property int position: modelData == undefined ? -2 : modelData.treeIndex - title: modelData != undefined ? modelData.name : qsTr("Add or remove from space") + title: modelData != undefined ? modelData.name : qsTr("Add or remove from community") property bool loadChildren: false onAboutToShow: loadChildren = true diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml
index 2ea5df05..200c34d4 100644 --- a/resources/qml/delegates/MessageDelegate.qml +++ b/resources/qml/delegates/MessageDelegate.qml
@@ -322,7 +322,7 @@ Item { isReply: d.isReply keepFullText: d.keepFullText isStateEvent: d.isStateEvent - formatted: qsTr("%1 changed the parent spaces for this room.").arg(d.userName) + formatted: qsTr("%1 changed the parent communities for this room.").arg(d.userName) } }