summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2023-03-22 15:05:00 +0300
committerdartraiden <wowemuh@gmail.com>2023-03-22 15:05:00 +0300
commitb121ac908e588b92edc61a47219e1d881912a75a (patch)
treea47b15298d2b77806b880c2b97088ac6acf3696d
parente808045e7fd3641cde4a43ac2f40b5035b630520 (diff)
fixes #3437 for the rest of message plugins
-rw-r--r--src/mir_app/src/chat_tools.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_app/src/chat_tools.cpp b/src/mir_app/src/chat_tools.cpp
index 605c713c3e..4b101c4c66 100644
--- a/src/mir_app/src/chat_tools.cpp
+++ b/src/mir_app/src/chat_tools.cpp
@@ -311,13 +311,13 @@ BOOL DoPopup(SESSION_INFO *si, GCEVENT *gce)
switch (gce->iType) {
case GC_EVENT_MESSAGE | GC_EVENT_HIGHLIGHT:
- dwColor = g_chatApi.aFonts[16].color; wszText.Format(TranslateT("%s says"), wszNick.c_str());
+ dwColor = g_chatApi.aFonts[16].color; wszText.Format(L"%s:", wszNick.c_str());
break;
case GC_EVENT_ACTION | GC_EVENT_HIGHLIGHT:
dwColor = g_chatApi.aFonts[16].color;
break;
case GC_EVENT_MESSAGE:
- dwColor = g_chatApi.aFonts[9].color; wszText.Format(TranslateT("%s says"), wszNick.c_str());
+ dwColor = g_chatApi.aFonts[9].color; wszText.Format(L"%s:", wszNick.c_str());
break;
case GC_EVENT_ACTION:
dwColor = g_chatApi.aFonts[15].color;