diff options
author | dartraiden <wowemuh@gmail.com> | 2024-01-31 03:04:57 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-01-31 03:14:24 +0300 |
commit | e94815ce37cd35776694262aee36a52aa88362a6 (patch) | |
tree | 07f5b3b893be5e54f2618022a0dcaf4043559ab5 /protocols/JabberG | |
parent | ff3c91922762c0e2d41258e02f76b1c90771995c (diff) |
Fix capitalization
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber_userinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_userinfo.cpp b/protocols/JabberG/src/jabber_userinfo.cpp index 8f3a9ee873..a6017785c0 100644 --- a/protocols/JabberG/src/jabber_userinfo.cpp +++ b/protocols/JabberG/src/jabber_userinfo.cpp @@ -434,7 +434,7 @@ public: m_tree.DeleteAllItems();
HTREEITEM htiRoot = FillInfoLine(nullptr, IcoLib_GetIconByHandle(ppro->m_hProtoIcon), L"JID", jid, sttInfoLineId(0, INFOLINE_NAME), true);
if (ppro->m_bJabberOnline)
- FillInfoLine(htiRoot, g_plugin.getIcon(IDI_VCARD), nullptr, TranslateU("Received VCard does not contain any information."));
+ FillInfoLine(htiRoot, g_plugin.getIcon(IDI_VCARD), nullptr, TranslateU("Received vCard does not contain any information."));
else
FillInfoLine(htiRoot, g_plugin.getIcon(IDI_VCARD), nullptr, TranslateU("Please switch online to see more details."));
return false;
|