diff options
author | dartraiden <wowemuh@gmail.com> | 2017-08-23 14:40:41 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2017-08-23 14:40:41 +0300 |
commit | 25081c44e66ec1135d5c375b2e4bd0fe4e488ec6 (patch) | |
tree | d6c50c623bd59531629d0eb0995096a9fd4430d7 /protocols/Tox/src | |
parent | 22ddb8cad9845e24420fedd9d15c1d1cf487f932 (diff) |
more understandable error description
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r-- | protocols/Tox/src/tox_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp index f90c927004..6ef9a5b0fb 100644 --- a/protocols/Tox/src/tox_utils.cpp +++ b/protocols/Tox/src/tox_utils.cpp @@ -84,7 +84,7 @@ wchar_t* CToxProto::ToxErrorToString(TOX_ERR_FRIEND_SEND_MESSAGE error) case TOX_ERR_FRIEND_SEND_MESSAGE_NULL:
return TranslateT("One of the arguments is missing");
case TOX_ERR_FRIEND_SEND_MESSAGE_FRIEND_NOT_FOUND:
- return TranslateT("The friend number did not designate a valid friend");
+ return TranslateT("The friend ID did not designate a valid friend");
case TOX_ERR_FRIEND_SEND_MESSAGE_FRIEND_NOT_CONNECTED:
return TranslateT("This client is currently not connected to the friend");
case TOX_ERR_FRIEND_SEND_MESSAGE_SENDQ:
|