From 1d562f91e8bfc5fadc75b0088a80eb97989ac76f Mon Sep 17 00:00:00 2001 From: RMN Date: Sun, 30 Aug 2015 13:34:06 +0000 Subject: - 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 --- protocols/JabberG/src/jabber_opt.cpp | 2 +- protocols/SkypeWeb/src/skype_trouter.cpp | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'protocols') diff --git a/protocols/JabberG/src/jabber_opt.cpp b/protocols/JabberG/src/jabber_opt.cpp index e422eca806..30a1b3b212 100644 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -801,7 +801,7 @@ public: m_otvOptions.AddOption(LPGENT("Other") _T("/") LPGENT("Automatically accept authorization requests"), m_proto->m_options.AutoAcceptAuthorization); m_otvOptions.AddOption(LPGENT("Other") _T("/") LPGENT("Fix incorrect timestamps in incoming messages"), m_proto->m_options.FixIncorrectTimestamps); m_otvOptions.AddOption(LPGENT("Other") _T("/") LPGENT("Disable frame"), m_proto->m_options.DisableFrame); - m_otvOptions.AddOption(LPGENT("Other") _T("/") LPGENT("Enable XMPP link processing (requires Association Manager)"), m_proto->m_options.ProcessXMPPLinks); + m_otvOptions.AddOption(LPGENT("Other") _T("/") LPGENT("Enable XMPP link processing (requires AssocMgr)"), m_proto->m_options.ProcessXMPPLinks); m_otvOptions.AddOption(LPGENT("Other") _T("/") LPGENT("Keep contacts assigned to local groups (ignore roster group)"), m_proto->m_options.IgnoreRosterGroups); m_otvOptions.AddOption(LPGENT("Security") _T("/") LPGENT("Allow servers to request version (XEP-0092)"), m_proto->m_options.AllowVersionRequests); 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; } -- cgit v1.2.3