diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-03 09:54:32 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-03 09:54:32 +0000 |
commit | 26d732f860ac32d50f8d2cee096ae4cd30bab179 (patch) | |
tree | de9d639d3545d3417624d6f482bb10e70e54d883 /plugins/Exchange | |
parent | 417e4fe5aa7f0f3860e227653f25e3655b5489f4 (diff) |
- cosmetic patches from dartraiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@5219 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Exchange')
-rw-r--r-- | plugins/Exchange/docs/exchange_readme.txt | 8 | ||||
-rw-r--r-- | plugins/Exchange/res/exchange.rc | 12 | ||||
-rw-r--r-- | plugins/Exchange/src/emails.cpp | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/plugins/Exchange/docs/exchange_readme.txt b/plugins/Exchange/docs/exchange_readme.txt index cba731781a..9e659d660a 100644 --- a/plugins/Exchange/docs/exchange_readme.txt +++ b/plugins/Exchange/docs/exchange_readme.txt @@ -104,9 +104,9 @@ Translation strings - last update v0.0.1.8: [Plugins]
[Exchange notify]
;Options dialog
-[Username :]
-[Password :]
-[Server :]
+[Username:]
+[Password:]
+[Server:]
[Connection]
[Preferences]
[Show email notifications using popup module]
@@ -124,7 +124,7 @@ Translation strings - last update v0.0.1.8: [You have %d unread emails ...]
[You have one unread email ...]
[Exchange email]
-[Do you want to see the email headers ?]
+[Do you want to see the email headers?]
[Server is not configured ...]
[Server not available]
[Cannot connect to Exchange server ...]
diff --git a/plugins/Exchange/res/exchange.rc b/plugins/Exchange/res/exchange.rc index 6a2d685b52..337c167ec8 100644 --- a/plugins/Exchange/res/exchange.rc +++ b/plugins/Exchange/res/exchange.rc @@ -33,13 +33,13 @@ CAPTION "Dialog" FONT 8, "MS Shell Dlg", 400, 0, 1
{
GROUPBOX "Connection", IDC_STATIC, 4, 4, 179, 65
- LTEXT "Username :", IDC_STATIC, 7, 21, 58, 8, SS_LEFT
+ LTEXT "Username:", IDC_STATIC, 7, 19, 58, 8, SS_LEFT
EDITTEXT IDC_USER_EDIT, 65, 16, 113, 14, ES_AUTOHSCROLL
- LTEXT "Password :", IDC_STATIC, 7, 36, 58, 8, SS_LEFT
+ LTEXT "Password:", IDC_STATIC, 7, 35, 58, 8, SS_LEFT
EDITTEXT IDC_PASSWORD_EDIT, 65, 32, 113, 14, ES_AUTOHSCROLL | ES_PASSWORD
- LTEXT "Server :", IDC_STATIC, 7, 54, 27, 8, SS_LEFT
- EDITTEXT IDC_SERVER_EDIT, 65, 51, 83, 14, ES_AUTOHSCROLL
- EDITTEXT IDC_PORT_EDIT, 150, 51, 28, 14, ES_AUTOHSCROLL
+ LTEXT "Server:", IDC_STATIC, 7, 51, 27, 8, SS_LEFT
+ EDITTEXT IDC_SERVER_EDIT, 65, 48, 83, 14, ES_AUTOHSCROLL
+ EDITTEXT IDC_PORT_EDIT, 150, 48, 28, 14, ES_AUTOHSCROLL
GROUPBOX "Preferences", IDC_STATIC, 4, 69, 179, 81
AUTOCHECKBOX "Check every", IDC_CHECK_EMAILS, 9, 80, 64, 9
EDITTEXT IDC_INTERVAL_EDIT, 108, 76, 27, 14, ES_AUTOHSCROLL
@@ -50,7 +50,7 @@ FONT 8, "MS Shell Dlg", 400, 0, 1 AUTOCHECKBOX "Check server before trying to connect", IDC_USE_PORTCHECK, 9, 110, 169, 10
LTEXT "Try to connect", IDC_STATIC, 9, 124, 52, 8, SS_LEFT
EDITTEXT IDC_MAX_RETRIES, 62, 121, 20, 14, ES_AUTOHSCROLL
- LTEXT "times before giving up.", IDC_STATIC, 86, 124, 92, 8, SS_LEFT
+ LTEXT "times before giving up", IDC_STATIC, 86, 124, 92, 8, SS_LEFT
AUTOCHECKBOX "Show email notifications using popup module", IDC_USE_POPUPS, 9, 137, 169, 10
}
diff --git a/plugins/Exchange/src/emails.cpp b/plugins/Exchange/src/emails.cpp index 1ee8a90688..f13a15c1b8 100644 --- a/plugins/Exchange/src/emails.cpp +++ b/plugins/Exchange/src/emails.cpp @@ -372,7 +372,7 @@ int ShowMessage(TCHAR *message, int cUnreadEmails) return ShowPopupMessage(TranslateT("Exchange email"), message, cUnreadEmails);
}
else{
- return ShowMessageBoxMessage(TranslateT("Do you want to see the email headers ?"), message, cUnreadEmails);
+ return ShowMessageBoxMessage(TranslateT("Do you want to see the email headers?"), message, cUnreadEmails);
}
return 0;
|