diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-05-01 17:08:53 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-05-01 17:08:53 +0000 |
commit | ef97fb204e8bb9d3924c304b6b44a51070c51177 (patch) | |
tree | ce49d031fc4a5daaa3ff7377d69b09beea061274 /plugins/Exchange/src/emails.cpp | |
parent | 7e2bed99b8564bb1393b0b133c2a3ae415682fde (diff) |
Exchange:
-Minor fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@13336 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Exchange/src/emails.cpp')
-rw-r--r-- | plugins/Exchange/src/emails.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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;
}
|