Standardize usage of period in UI sentences

This commit is contained in:
miruka
2019-12-04 09:32:07 -04:00
parent 915c96f174
commit 470b031a6f
7 changed files with 8 additions and 8 deletions

View File

@@ -33,10 +33,10 @@ HBox {
let txt = qsTr("Unknown error - %1: %2").arg(type).arg(args)
if (type === "InvalidUserInContext")
txt = qsTr("You cannot invite yourself!")
txt = qsTr("You can't invite yourself!")
if (type === "UserNotFound")
txt = qsTr("This user does not exist.")
txt = qsTr("This user does not exist")
errorMessage.text = txt
})

View File

@@ -1,5 +1,5 @@
import "../Base"
HNoticePage {
text: qsTr("Add or select a room to start.")
text: qsTr("No chat selected")
}