From ef97fb204e8bb9d3924c304b6b44a51070c51177 Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Fri, 1 May 2015 17:08:53 +0000 Subject: Exchange: -Minor fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@13336 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Exchange/src/emails.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Exchange/src/emails.cpp') diff --git a/plugins/Exchange/src/emails.cpp b/plugins/Exchange/src/emails.cpp index b4f73d207e..a0d9cdab37 100644 --- a/plugins/Exchange/src/emails.cpp +++ b/plugins/Exchange/src/emails.cpp @@ -45,7 +45,7 @@ int CExchangeServer::Connect(int bForceConnect) if (cConnections >= maxRetries) { bTryConnect = 0; cConnections = 0; - _popupUtil("Maximum number of retries reached.\nPlugin will stop trying to connect automatically."); + _popupUtil(TranslateT("Maximum number of retries reached.\nPlugin will stop trying to connect automatically.")); } if (bTryConnect) @@ -53,7 +53,7 @@ int CExchangeServer::Connect(int bForceConnect) if ((bTryConnect) && !IsServerAvailable()) { bTryConnect = 0; - _popupUtil("Server not available"); + _popupUtil(TranslateT("Server not available")); } if ( !IsConnected() && bTryConnect) { @@ -72,7 +72,7 @@ int CExchangeServer::Connect(int bForceConnect) if (_tcslen(server) > 0) //only connect if there's a server to connect to return DoConnect(user, password, server, port); - _popupUtil("Server is not configured..."); + _popupUtil(TranslateT("Server is not configured...")); } return -1; //0 on success, != 0 otherwise } @@ -288,7 +288,7 @@ int CExchangeServer::Check(int bNoEmailsNotify) } if (count==-1) - _popupUtil("Cannot connect to Exchange server..."); + _popupUtil(TranslateT("Cannot connect to Exchange server...")); return count; } -- cgit v1.2.3