diff options
Diffstat (limited to 'protocols/SkypeWeb/src')
-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;
}
|