From a9fe6eb3b26854a3aa459538447dd9070dbfc5e0 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Tue, 8 Sep 2020 09:54:29 +0200 Subject: [PATCH] fix(Chat): use qsTr() over qsTrId() due to non-existent i18n id Fixes #848 --- ui/app/AppLayouts/Chat/components/PrivateChatPopup.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/components/PrivateChatPopup.qml b/ui/app/AppLayouts/Chat/components/PrivateChatPopup.qml index 8b1b4f8875..539d6f7664 100644 --- a/ui/app/AppLayouts/Chat/components/PrivateChatPopup.qml +++ b/ui/app/AppLayouts/Chat/components/PrivateChatPopup.qml @@ -77,7 +77,7 @@ ModalPopup { ensUsername.text == ""; pubKey = ""; } else if(resolvedPubKey == ""){ - ensUsername.text = qsTrId("user-not-found"); + ensUsername.text = qsTr("User not found"); pubKey = ""; } else { ensUsername.text = chatsModel.formatENSUsername(chatKey.text) + " • " + Utils.compactAddress(resolvedPubKey, 4)