diff options
author | George Hazan <ghazan@miranda.im> | 2021-02-27 17:15:06 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-02-27 17:15:06 +0300 |
commit | 0723e910521a85953805ec63cbb723641cbf5d4a (patch) | |
tree | 67db0d4aeda366b17f47acd41a5a18c4761e74d5 /protocols | |
parent | b8c8df44a68fe62575e46278ba10da3f91c60517 (diff) |
fixes #2751 (misprint in error message)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/IRCG/src/ircproto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/ircproto.cpp b/protocols/IRCG/src/ircproto.cpp index ed12929143..2d6a97709c 100644 --- a/protocols/IRCG/src/ircproto.cpp +++ b/protocols/IRCG/src/ircproto.cpp @@ -684,7 +684,7 @@ int CIrcProto::SetStatusInternal(int iNewStatus, bool bIsInternal) }
if (iNewStatus != ID_STATUS_OFFLINE && !m_nick[0] || !m_userID[0] || !m_name[0]) {
- Clist_TrayNotifyW(m_szModuleName, TranslateT("IRC error"), TranslateT("Connection cannot be established! You have not completed all necessary fields (Nickname, User ID and m_name)."), NIIF_ERROR, 15000);
+ Clist_TrayNotifyW(m_szModuleName, TranslateT("IRC error"), TranslateT("Connection cannot be established! You have not completed all necessary fields (Nickname, User ID and Full name)."), NIIF_ERROR, 15000);
return 0;
}
|