diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-09-25 12:17:14 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-09-25 12:17:14 +0000 |
commit | 7d03ca58390038dc87ee51c5881ac22e9dacd1bb (patch) | |
tree | 0b52237457a1c9a060160a05eb7cbe8cfb1972ad /protocols/WhatsApp/src/connection.cpp | |
parent | 91c00a198a8df0adc96b8aeb66150b3316f53882 (diff) |
WhatsApp: decapitalization, spelling correction
git-svn-id: http://svn.miranda-ng.org/main/trunk@10583 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/connection.cpp')
-rw-r--r-- | protocols/WhatsApp/src/connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/WhatsApp/src/connection.cpp b/protocols/WhatsApp/src/connection.cpp index 27af21cebb..b970db7d96 100644 --- a/protocols/WhatsApp/src/connection.cpp +++ b/protocols/WhatsApp/src/connection.cpp @@ -41,7 +41,7 @@ void WhatsAppProto::stayConnectedLoop(void*) db_free(&dbv);
}
if (cc.empty()) {
- NotifyEvent(m_tszUserName, TranslateT("Please enter a country-code."), NULL, WHATSAPP_EVENT_CLIENT);
+ NotifyEvent(m_tszUserName, TranslateT("Please enter a country code."), NULL, WHATSAPP_EVENT_CLIENT);
return;
}
@@ -50,7 +50,7 @@ void WhatsAppProto::stayConnectedLoop(void*) db_free(&dbv);
}
if (in.empty()) {
- NotifyEvent(m_tszUserName, TranslateT("Please enter a phone-number without country code."), NULL, WHATSAPP_EVENT_CLIENT);
+ NotifyEvent(m_tszUserName, TranslateT("Please enter a phone number without country code."), NULL, WHATSAPP_EVENT_CLIENT);
return;
}
this->phoneNumber = cc + in;
|