summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Tox/src/tox_events.cpp')
-rw-r--r--protocols/Tox/src/tox_events.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Tox/src/tox_events.cpp b/protocols/Tox/src/tox_events.cpp
index 22b7bf4afd..637a96d9bd 100644
--- a/protocols/Tox/src/tox_events.cpp
+++ b/protocols/Tox/src/tox_events.cpp
@@ -22,22 +22,22 @@ void CToxProto::InitCustomDbEvents()
CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
dbEventType.eventType = DB_EVENT_AUDIO_CALL;
- dbEventType.descr = Translate("Audio call");
+ dbEventType.descr = Translate("Outgoint call");
dbEventType.eventIcon = GetIconHandle("audio_call");
CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
dbEventType.eventType = DB_EVENT_AUDIO_RING;
- dbEventType.descr = Translate("Audio ring");
+ dbEventType.descr = Translate("Incoming call");
dbEventType.eventIcon = GetIconHandle("audio_ring");
CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
dbEventType.eventType = DB_EVENT_AUDIO_START;
- dbEventType.descr = Translate("Audio start");
+ dbEventType.descr = Translate("Call started");
dbEventType.eventIcon = GetIconHandle("audio_start");
CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
dbEventType.eventType = DB_EVENT_AUDIO_END;
- dbEventType.descr = Translate("Audio end");
+ dbEventType.descr = Translate("Call ended");
dbEventType.eventIcon = GetIconHandle("audio_end");
CallService(MS_DB_EVENT_REGISTERTYPE, 0, (LPARAM)&dbEventType);
} \ No newline at end of file