diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-10-30 23:34:46 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-10-30 23:34:46 +0000 |
commit | 429c94a0999733ca166d0eb26e784e8fbcdb5f5c (patch) | |
tree | 91ae1eae759ce5128a10ebf94a676320a595ee6b /protocols/Yahoo/src/yahoo.cpp | |
parent | c52fccdd727adacb3c11f8b29837f294ab584430 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@6708 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/yahoo.cpp')
-rw-r--r-- | protocols/Yahoo/src/yahoo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Yahoo/src/yahoo.cpp b/protocols/Yahoo/src/yahoo.cpp index 60f5815421..6b4b9f4dc4 100644 --- a/protocols/Yahoo/src/yahoo.cpp +++ b/protocols/Yahoo/src/yahoo.cpp @@ -754,7 +754,7 @@ void CYahooProto::ext_buddy_added(char *myid, char *who, char *group, int status case 1: /* invalid ID? */
case 3: /* invalid ID */
if (hContact != NULL) {
- ShowPopup( TranslateT("Invalid Contact"), TranslateT("The id you tried to add is invalid."), NULL);
+ ShowPopup( TranslateT("Invalid Contact"), TranslateT("The ID you tried to add is invalid."), NULL);
/* Make it TEMP first, we don't want to send any extra packets for FALSE ids */
db_set_b( hContact, "CList", "NotOnList", 1 );
CallService(MS_DB_CONTACT_DELETE, (WPARAM) hContact, 0);
@@ -764,7 +764,7 @@ void CYahooProto::ext_buddy_added(char *myid, char *who, char *group, int status default:
/* ??? */
if (hContact != NULL) {
- ShowPopup( TranslateT("Invalid Contact"), TranslateT("Unknown Error??."), NULL);
+ ShowPopup( TranslateT("Invalid Contact"), TranslateT("Unknown Error."), NULL);
/* Make it TEMP first, we don't want to send any extra packets for FALSE ids */
db_set_b( hContact, "CList", "NotOnList", 1 );
CallService(MS_DB_CONTACT_DELETE, (WPARAM) hContact, 0);
|