Fix minor typos

This commit is contained in:
Yuri Chornoivan
2024-04-13 08:47:48 +03:00
parent 335c012f1b
commit 55caf84b94
6 changed files with 7 additions and 7 deletions

View File

@@ -43,7 +43,7 @@ Kirigami.Page {
actions: [
Kirigami.Action {
text: i18nc("@action As in 'edit the state of this rooms'", "Edit state")
text: i18nc("@action As in 'edit the state of this room'", "Edit state")
icon.name: "document-edit"
visible: root.allowEdit
enabled: room.canSendState(root.type) && (!root.stateKey.startsWith("@") || root.stateKey === root.room.connection.localUserId) && root.type !== "m.room.create"
@@ -53,7 +53,7 @@ Kirigami.Page {
stateKey: root.stateKey,
sourceText: root.contentJson,
}, {
title: i18nc("@title As in 'edit the state of this rooms'", "Edit State")
title: i18nc("@title As in 'edit the state of this room'", "Edit State")
})
}
]