diff options
author | RMN <rmn@miranda-ng.org> | 2015-08-30 13:34:06 +0000 |
---|---|---|
committer | RMN <rmn@miranda-ng.org> | 2015-08-30 13:34:06 +0000 |
commit | 1d562f91e8bfc5fadc75b0088a80eb97989ac76f (patch) | |
tree | 93cbc73513029931045d72cc123d4e197cb52057 /protocols/SkypeWeb/src/skype_trouter.cpp | |
parent | 10aaf104c7ad7f89fbc1a9eda713c99b21fdcfa2 (diff) |
- cosmetics and grammar correction;
- Toaster translation template updated manually;
- langpacks Russian and Ukrainian updated.
git-svn-id: http://svn.miranda-ng.org/main/trunk@15116 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_trouter.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_trouter.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/SkypeWeb/src/skype_trouter.cpp b/protocols/SkypeWeb/src/skype_trouter.cpp index a5702b6b9c..d2bde973d0 100644 --- a/protocols/SkypeWeb/src/skype_trouter.cpp +++ b/protocols/SkypeWeb/src/skype_trouter.cpp @@ -21,13 +21,13 @@ void CSkypeProto::OnCreateTrouter(const NETLIBHTTPREQUEST *response) {
if (response == NULL || response->pData == NULL)
{
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
JSONNode root = JSONNode::parse(response->pData);
if (!root) {
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
@@ -39,7 +39,7 @@ void CSkypeProto::OnCreateTrouter(const NETLIBHTTPREQUEST *response) if (!ccid || !connId || !instance || !socketio || !url)
{
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
@@ -56,14 +56,14 @@ void CSkypeProto::OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response) {
if (response == NULL || response->pData == NULL)
{
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
JSONNode root = JSONNode::parse(response->pData);
if (!root)
{
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
@@ -73,7 +73,7 @@ void CSkypeProto::OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response) if (!st || !se || !sig)
{
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
@@ -95,7 +95,7 @@ void CSkypeProto::OnGetTrouter(const NETLIBHTTPREQUEST *response) {
if (response == NULL || response->pData == NULL)
{
- ShowNotification(m_tszUserName, TranslateT("Failed establish a TRouter connection."), NULL, 1);
+ ShowNotification(m_tszUserName, TranslateT("Failed to establish a TRouter connection."), NULL, 1);
return;
}
|