summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2015-04-24 23:23:26 +0000
committerDart Raiden <wowemuh@gmail.com>2015-04-24 23:23:26 +0000
commit08d76ccf7db491a94368b2ec81e825bc93df9fce (patch)
tree3af1a0fbc64f0544e80fa6d928b5306604b2a6bd /protocols
parent5744c00a146d5a453d5823bd68539c8be4a190a9 (diff)
en-gb => en-us spelling correction
git-svn-id: http://svn.miranda-ng.org/main/trunk@13121 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r--protocols/Tox/src/tox_multimedia.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Tox/src/tox_multimedia.cpp b/protocols/Tox/src/tox_multimedia.cpp
index 0abf9634b7..597b72263a 100644
--- a/protocols/Tox/src/tox_multimedia.cpp
+++ b/protocols/Tox/src/tox_multimedia.cpp
@@ -353,7 +353,7 @@ void CToxProto::OnAvCancel(void*, int32_t callId, void *arg)
}
}
- char *message = mir_utf8encodeT(TranslateT("Call cancelled"));
+ char *message = mir_utf8encodeT(TranslateT("Call canceled"));
proto->AddEventToDb(hContact, DB_EVENT_CALL, time(NULL), DBEF_UTF, (PBYTE)message, mir_strlen(message));
WindowList_Broadcast(proto->hAudioDialogs, WM_CALL_END, hContact, 0);
@@ -391,7 +391,7 @@ void CToxProto::OnAvReject(void*, int32_t callId, void *arg)
return;
}
- char *message = mir_utf8encodeT(TranslateT("Call cancelled"));
+ char *message = mir_utf8encodeT(TranslateT("Call canceled"));
proto->AddEventToDb(hContact, DB_EVENT_CALL, time(NULL), DBEF_UTF, (PBYTE)message, mir_strlen(message));
WindowList_Broadcast(proto->hAudioDialogs, WM_CALL_END, hContact, 0);
@@ -417,7 +417,7 @@ void CToxProto::OnAvCallTimeout(void*, int32_t callId, void *arg)
return;
}
- char *message = mir_utf8encodeT(TranslateT("Call cancelled"));
+ char *message = mir_utf8encodeT(TranslateT("Call canceled"));
proto->AddEventToDb(hContact, DB_EVENT_CALL, time(NULL), DBEF_UTF, (PBYTE)message, mir_strlen(message));
WindowList_Broadcast(proto->hAudioDialogs, WM_CALL_END, hContact, 0);
@@ -574,7 +574,7 @@ void CToxProto::OnAvPeerTimeout(void*, int32_t callId, void *arg)
if (cle)
CallService(MS_CLIST_REMOVEEVENT, hContact, cle->hDbEvent);
- char *message = mir_utf8encodeT(TranslateT("Call cancelled"));
+ char *message = mir_utf8encodeT(TranslateT("Call canceled"));
proto->AddEventToDb(hContact, DB_EVENT_CALL, time(NULL), DBEF_UTF, (PBYTE)message, mir_strlen(message));
WindowList_Broadcast(proto->hAudioDialogs, WM_CALL_END, hContact, 0);