summaryrefslogtreecommitdiff
path: root/protocols/Discord/src/proto.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/proto.cpp
parent4c281b28075dfa69d8cc2301b06492fbddb62f24 (diff)
Discord: string unification
Diffstat (limited to 'protocols/Discord/src/proto.cpp')
-rw-r--r--protocols/Discord/src/proto.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Discord/src/proto.cpp b/protocols/Discord/src/proto.cpp
index f07fa1bfab..0ab49eb03c 100644
--- a/protocols/Discord/src/proto.cpp
+++ b/protocols/Discord/src/proto.cpp
@@ -78,12 +78,12 @@ CDiscordProto::CDiscordProto(const char *proto_name, const wchar_t *username) :
dbEventType.flags = DETF_HISTORY | DETF_MSGWINDOW;
dbEventType.eventType = EVENT_INCOMING_CALL;
- dbEventType.descr = Translate("Incoming voice call");
+ dbEventType.descr = Translate("Incoming call");
dbEventType.eventIcon = g_plugin.getIconHandle(IDI_VOICE_CALL);
DbEvent_RegisterType(&dbEventType);
dbEventType.eventType = EVENT_CALL_FINISHED;
- dbEventType.descr = Translate("Voice call ended");
+ dbEventType.descr = Translate("Call ended");
dbEventType.eventIcon = g_plugin.getIconHandle(IDI_VOICE_ENDED);
DbEvent_RegisterType(&dbEventType);