diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-03-22 19:57:30 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-03-22 19:57:30 +0000 |
commit | ed348afe049c9651602edf07c03617d0366b6cdc (patch) | |
tree | 10e01008386ae5a310f7743618a01e262feb1b28 /protocols/Sametime/src/messaging.cpp | |
parent | f8f8028f21082433a2ac43ff2787d01ccce5a29a (diff) |
Sametime: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@8694 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Sametime/src/messaging.cpp')
-rw-r--r-- | protocols/Sametime/src/messaging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Sametime/src/messaging.cpp b/protocols/Sametime/src/messaging.cpp index 58cc83b600..7825a9f2e0 100644 --- a/protocols/Sametime/src/messaging.cpp +++ b/protocols/Sametime/src/messaging.cpp @@ -108,7 +108,7 @@ void mwIm_place_invite(struct mwConversation* conv, const char* message, const c TCHAR* tszMessage = mir_utf8decodeT(message);
TCHAR msg[512];
- mir_sntprintf(msg, SIZEOF(msg), TranslateT("SERVICE UNIMPLEMENTED. %s"), tszMessage);
+ mir_sntprintf(msg, SIZEOF(msg), TranslateT("SERVICE NOT IMPLEMENTED. %s"), tszMessage);
proto->showPopup(msg, SAMETIME_POPUP_INFO);
mir_free(tszMessage);
|