summaryrefslogtreecommitdiff
path: root/plugins/IEView/src/HTMLBuilder.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-02-20 12:25:22 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-02-20 12:25:22 +0300
commit84a0b4084a07e89225da4a5fda09b3d88681bd83 (patch)
treeaf0ff7c509d7c429381674a07929cbf1129ba86c /plugins/IEView/src/HTMLBuilder.cpp
parent0902cdc3a5413dae6146e4079ec6f76efd96f14f (diff)
translation fix
Diffstat (limited to 'plugins/IEView/src/HTMLBuilder.cpp')
-rw-r--r--plugins/IEView/src/HTMLBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IEView/src/HTMLBuilder.cpp b/plugins/IEView/src/HTMLBuilder.cpp
index 8bcb5737c5..bb9aeae778 100644
--- a/plugins/IEView/src/HTMLBuilder.cpp
+++ b/plugins/IEView/src/HTMLBuilder.cpp
@@ -171,13 +171,13 @@ wchar_t* HTMLBuilder::getContactName(MCONTACT hContact, const char *szProto)
if (str != nullptr)
return mir_wstrdup(str);
- return mir_wstrdup(TranslateT("(Unknown Contact)"));
+ return mir_wstrdup(TranslateT("(Unknown contact)"));
}
char* HTMLBuilder::getEncodedContactName(MCONTACT hContact, const char *szProto)
{
ptrW name(getContactName(hContact, szProto));
- return encodeUTF8(hContact, (name != NULL) ? name : TranslateT("(Unknown Contact)"), ENF_NAMESMILEYS, true);
+ return encodeUTF8(hContact, (name != NULL) ? name : TranslateT("(Unknown contact)"), ENF_NAMESMILEYS, true);
}
void HTMLBuilder::appendEventNew(IEView *view, IEVIEWEVENT *event)