diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2021-10-19 17:42:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 17:42:38 +0000 |
commit | 702d3cf3a83ae5de953485f7216d109930f73839 (patch) | |
tree | 2bf55112cdcd892ce0e12c638daecdcbd2dd9877 /resources | |
parent | Translated using Weblate (Portuguese (Portugal)) (diff) | |
parent | Fix incorrect pluralization of "rooms" (diff) | |
download | nheko-702d3cf3a83ae5de953485f7216d109930f73839.tar.xz |
Merge pull request #768 from ISSOtm/patch-2
Fix incorrect pluralization of "rooms"
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/TopBar.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml index 05c61d99..e9f482c9 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml @@ -114,7 +114,7 @@ Rectangle { case Crypto.Verified: return qsTr("This room contains only verified devices."); case Crypto.TOFU: - return qsTr("This rooms contain verified devices and devices which have never changed their master key."); + return qsTr("This room contains verified devices and devices which have never changed their master key."); default: return qsTr("This room contains unverified devices!"); } |