fix(Chat): use qsTr() over qsTrId() due to non-existent i18n id

Fixes #848
This commit is contained in:
Pascal Precht 2020-09-08 09:54:29 +02:00 committed by Iuri Matias
parent 5f227e6515
commit a9fe6eb3b2
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ ModalPopup {
ensUsername.text == ""; ensUsername.text == "";
pubKey = ""; pubKey = "";
} else if(resolvedPubKey == ""){ } else if(resolvedPubKey == ""){
ensUsername.text = qsTrId("user-not-found"); ensUsername.text = qsTr("User not found");
pubKey = ""; pubKey = "";
} else { } else {
ensUsername.text = chatsModel.formatENSUsername(chatKey.text) + " • " + Utils.compactAddress(resolvedPubKey, 4) ensUsername.text = chatsModel.formatENSUsername(chatKey.text) + " • " + Utils.compactAddress(resolvedPubKey, 4)