From 4fdf79aaf61ba7f896e40324bdb27f759b951f7f Mon Sep 17 00:00:00 2001 From: Dart Raiden Date: Sat, 19 Oct 2013 00:39:27 +0000 Subject: removing unnecessary spaces git-svn-id: http://svn.miranda-ng.org/main/trunk@6527 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Exchange/src/emails.cpp | 8 ++++---- plugins/KeyboardNotify/res/resources.rc | 2 +- plugins/NewEventNotify/res/resource.rc | 2 +- plugins/QuickContacts/res/resource.rc | 4 ++-- plugins/StatusChange/res/resource.rc | 2 +- plugins/WhenWasIt/src/services.cpp | 4 ++-- plugins/YAMN/res/YAMN.rc | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) (limited to 'plugins') diff --git a/plugins/Exchange/src/emails.cpp b/plugins/Exchange/src/emails.cpp index 7f8d0494cb..39dfa6d86a 100644 --- a/plugins/Exchange/src/emails.cpp +++ b/plugins/Exchange/src/emails.cpp @@ -86,7 +86,7 @@ int CExchangeServer::Connect(int bForceConnect) return DoConnect(user, password, server, port); } else { - _popupUtil("Server is not configured ..."); + _popupUtil("Server is not configured..."); } } return -1; //0 on success, != 0 otherwise @@ -335,10 +335,10 @@ int CExchangeServer::Check(int bNoEmailsNotify) TCHAR buffer[1024]; if (count != 1) { - mir_sntprintf(buffer,_countof(buffer), TranslateT("You have %d unread emails ..."), count); + mir_sntprintf(buffer,_countof(buffer), TranslateT("You have %d unread emails..."), count); } else { - mir_sntprintf(buffer, _countof(buffer),TranslateT("You have one unread email ...")); + mir_sntprintf(buffer, _countof(buffer),TranslateT("You have one unread email...")); } ShowMessage(buffer, count); @@ -361,7 +361,7 @@ int CExchangeServer::Check(int bNoEmailsNotify) if (count==-1) { - _popupUtil("Cannot connect to Exchange server ..."); + _popupUtil("Cannot connect to Exchange server..."); } return count; diff --git a/plugins/KeyboardNotify/res/resources.rc b/plugins/KeyboardNotify/res/resources.rc index a65613b6d9..10c441de09 100644 --- a/plugins/KeyboardNotify/res/resources.rc +++ b/plugins/KeyboardNotify/res/resources.rc @@ -53,7 +53,7 @@ BEGIN CONTROL "Everything else",IDC_ONOTHER,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,19,55,128,10 GROUPBOX "Message-Event only",IDC_STATIC,3,77,147,57 CONTROL "Blink if message window is open",IDC_IFOPEN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,19,89,126,10 - CONTROL " ... and not in foreground",IDC_IFNOTTOP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,19,102,125,10 + CONTROL "and not in foreground",IDC_IFNOTTOP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,31,102,115,10 CONTROL "Only if last is",IDC_IFOLDER,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,19,115,54,10 EDITTEXT IDC_SOLDER,76,114,36,13,ES_NUMBER CONTROL "Spin1",IDC_OLDERSPIN,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_ARROWKEYS | UDS_NOTHOUSANDS,102,114,9,13 diff --git a/plugins/NewEventNotify/res/resource.rc b/plugins/NewEventNotify/res/resource.rc index 96a29e6d30..14414847c8 100644 --- a/plugins/NewEventNotify/res/resource.rc +++ b/plugins/NewEventNotify/res/resource.rc @@ -81,7 +81,7 @@ BEGIN WS_TABSTOP,185,91,11,10 CONTROL "",IDC_CHKINFINITE_OTHERS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,185,103,11,10 - GROUPBOX "Notify me of ...",IDC_STATIC,208,2,100,56 + GROUPBOX "Notify me of...",IDC_STATIC,208,2,100,56 CONTROL "Message",IDC_CHKNOTIFY_MESSAGE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,212,11,90,10 CONTROL "URL",IDC_CHKNOTIFY_URL,"Button",BS_AUTOCHECKBOX | diff --git a/plugins/QuickContacts/res/resource.rc b/plugins/QuickContacts/res/resource.rc index 8f9eccc374..0f173ee773 100644 --- a/plugins/QuickContacts/res/resource.rc +++ b/plugins/QuickContacts/res/resource.rc @@ -48,9 +48,9 @@ BEGIN "Button",BS_AUTOCHECKBOX | WS_TABSTOP,27,159,214,8 CONTROL "Append group name to contact name",IDC_APPEND_GROUP, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,171,225,8 - CONTROL "But show it as a column ...",IDC_GROUP_COLUMN,"Button", + CONTROL "But show it as a column...",IDC_GROUP_COLUMN,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,27,183,214,8 - CONTROL "... on left side of name",IDC_GROUP_LEFT,"Button", + CONTROL "...on left side of name",IDC_GROUP_LEFT,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,27,195,214,8 CONTROL "Hide subcontacts",IDC_SUBCONTACTS,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,16,207,225,8 diff --git a/plugins/StatusChange/res/resource.rc b/plugins/StatusChange/res/resource.rc index 260ee00118..9196aea0a3 100644 --- a/plugins/StatusChange/res/resource.rc +++ b/plugins/StatusChange/res/resource.rc @@ -64,7 +64,7 @@ BEGIN LTEXT "URL",-1,73,46,85,8,NOT WS_GROUP LTEXT "File transfer",-1,73,64,85,8,NOT WS_GROUP GROUPBOX "...change status to...",-1,45,86,220,68,WS_GROUP - GROUPBOX "... if status is...",-1,45,163,220,68,WS_GROUP + GROUPBOX "...if status is...",-1,45,163,220,68,WS_GROUP ICON "",IDC_MSGICON,51,20,21,20,SS_CENTERIMAGE ICON "",IDC_URLICON,51,40,21,20,SS_CENTERIMAGE ICON "",IDC_FILEICON,51,59,21,20,SS_CENTERIMAGE diff --git a/plugins/WhenWasIt/src/services.cpp b/plugins/WhenWasIt/src/services.cpp index b0fb1a7a6c..5ad63f93d4 100644 --- a/plugins/WhenWasIt/src/services.cpp +++ b/plugins/WhenWasIt/src/services.cpp @@ -232,7 +232,7 @@ INT_PTR ImportBirthdaysService(WPARAM wParam, LPARAM lParam) of.lpstrFilter = filter; of.lpstrFile = fileName; of.nMaxFile = 1024; - of.lpstrTitle = TranslateT("Please select a file to import birthdays from ..."); + of.lpstrTitle = TranslateT("Please select a file to import birthdays from..."); of.Flags = OFN_FILEMUSTEXIST; if ( GetOpenFileName(&of)) { @@ -257,7 +257,7 @@ INT_PTR ExportBirthdaysService(WPARAM wParam, LPARAM lParam) of.lpstrFilter = filter; of.lpstrFile = fileName; of.nMaxFile = 1024; - of.lpstrTitle = TranslateT("Please select a file to export birthdays to ..."); + of.lpstrTitle = TranslateT("Please select a file to export birthdays to..."); if ( GetSaveFileName(&of)) { TCHAR buffer[2048]; diff --git a/plugins/YAMN/res/YAMN.rc b/plugins/YAMN/res/YAMN.rc index 55336ab9fa..0526b07194 100644 --- a/plugins/YAMN/res/YAMN.rc +++ b/plugins/YAMN/res/YAMN.rc @@ -207,7 +207,7 @@ BEGIN CONTROL "Startup check",IDC_CHECKSTART,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,167,43,78,10 CONTROL "Auto retrieve body",IDC_AUTOBODY,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,166,86,137,10 CONTROL "Check from menu",IDC_CHECKFORCE,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,166,97,137,8 - PUSHBUTTON "Only check when ...",IDC_BTNSTATUS,195,69,81,13 + PUSHBUTTON "Only check when...",IDC_BTNSTATUS,195,69,81,13 CONTROL "Sound notification if failed",IDC_CHECKFSND,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,166,163,135,10 CONTROL "Message notification if failed",IDC_CHECKFMSG,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,166,174,135,10 CONTROL "Tray icon notification if failed",IDC_CHECKFICO,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,166,186,135,10 @@ -228,7 +228,7 @@ END IDD_CHOOSESTATUSMODES DIALOG 0, 0, 226, 154 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Check while ..." +CAPTION "Check while..." FONT 8, "MS Shell Dlg" BEGIN DEFPUSHBUTTON "OK",IDOK,112,133,50,14 -- cgit v1.2.3