diff options
author | dartraiden <wowemuh@gmail.com> | 2020-01-30 21:21:19 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-01-30 21:23:19 +0300 |
commit | 004d26a2217bb4391199b01d060b3d6248453da8 (patch) | |
tree | 7718eeb5d96a49d0da09eea31c505bce7bd63602 /protocols/Discord/src/proto.cpp | |
parent | 4c281b28075dfa69d8cc2301b06492fbddb62f24 (diff) |
Discord: string unification
Diffstat (limited to 'protocols/Discord/src/proto.cpp')
-rw-r--r-- | protocols/Discord/src/proto.cpp | 4 |
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); |