From 795c0d336c7edda004d9dcb799c5a6969748a5df Mon Sep 17 00:00:00 2001 From: Eric Mastro Date: Fri, 17 Sep 2021 18:49:58 +1000 Subject: [PATCH] fix(@desktop/chat): add new chat validation error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Translation was missing for "enter-a-valid-chat-key-or-ens-usernameā€. --- ui/shared/ContactsListAndSearch.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/shared/ContactsListAndSearch.qml b/ui/shared/ContactsListAndSearch.qml index 0a73677aa8..534693d141 100644 --- a/ui/shared/ContactsListAndSearch.qml +++ b/ui/shared/ContactsListAndSearch.qml @@ -34,8 +34,7 @@ Item { function validate() { if (!Utils.isChatKey(chatKey.text) && !Utils.isValidETHNamePrefix(chatKey.text)) { - //% "Enter a valid chat key or ENS username" - root.validationError = "enter-a-valid-chat-key-or-ens-username"; + root.validationError = qsTr("Enter a valid chat key or ENS username"); pubKey = "" ensUsername = ""; } else if (profileModel.profile.pubKey === chatKey.text) {