summaryrefslogtreecommitdiff
path: root/protocols/Discord/src/dispatch.cpp
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2020-01-30 21:21:19 +0300
committerdartraiden <wowemuh@gmail.com>2020-01-30 21:23:19 +0300
commit004d26a2217bb4391199b01d060b3d6248453da8 (patch)
tree7718eeb5d96a49d0da09eea31c505bce7bd63602 /protocols/Discord/src/dispatch.cpp
parent4c281b28075dfa69d8cc2301b06492fbddb62f24 (diff)
Discord: string unification
Diffstat (limited to 'protocols/Discord/src/dispatch.cpp')
-rw-r--r--protocols/Discord/src/dispatch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Discord/src/dispatch.cpp b/protocols/Discord/src/dispatch.cpp
index 10fe201ba1..90d0c6af40 100644
--- a/protocols/Discord/src/dispatch.cpp
+++ b/protocols/Discord/src/dispatch.cpp
@@ -95,7 +95,7 @@ void CDiscordProto::OnCommandCallCreated(const JSONNode &pRoot)
pCall->startTime = time(0);
arVoiceCalls.insert(pCall);
- char *szMessage = TranslateU("Incoming voice call");
+ char *szMessage = TranslateU("Incoming call");
DBEVENTINFO dbei = {};
dbei.szModule = m_szModuleName;
dbei.timestamp = pCall->startTime;
@@ -129,7 +129,7 @@ void CDiscordProto::OnCommandCallDeleted(const JSONNode &pRoot)
return;
}
- CMStringA szMessage(FORMAT, TranslateU("Voice call ended, %d seconds long"), elapsed);
+ CMStringA szMessage(FORMAT, TranslateU("Call ended, %d seconds long"), elapsed);
DBEVENTINFO dbei = {};
dbei.szModule = m_szModuleName;
dbei.timestamp = currTime;