Replace some user visible mentions of spaces
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)
}
}
|