diff options
author | dartraiden <wowemuh@gmail.com> | 2022-11-05 17:57:36 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-11-05 17:57:52 +0300 |
commit | f866da220b19c2f932aaf723c2731ce14f175381 (patch) | |
tree | 42274557fa74c8cbbc561e5ed45bd160f8f00323 | |
parent | e792a6d80235c52df8d10a8dcb76f704849034ff (diff) |
WhatsApp: unify error message with IRC protocol
-rw-r--r-- | protocols/WhatsApp/src/proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/proto.cpp b/protocols/WhatsApp/src/proto.cpp index 64bc73a292..d101a26255 100644 --- a/protocols/WhatsApp/src/proto.cpp +++ b/protocols/WhatsApp/src/proto.cpp @@ -167,7 +167,7 @@ int WhatsAppProto::SetStatus(int new_status) return 0; if (!mir_wstrlen(m_wszNick)) { - Popup(0, LPGENW("You need to specify nick name in the Options dialog"), LPGENW("Error")); + Popup(0, LPGENW("Connection cannot be established! You have not completed all necessary fields (Nick)."), LPGENW("Error")); return 0; } |