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 ++-- protocols/Xfire/res/resource.rc | 4 ++-- protocols/Xfire/src/pwd_dlg.cpp | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) 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 diff --git a/protocols/Xfire/res/resource.rc b/protocols/Xfire/res/resource.rc index 22a12d16a9..b34ed6da1e 100644 --- a/protocols/Xfire/res/resource.rc +++ b/protocols/Xfire/res/resource.rc @@ -133,7 +133,7 @@ BEGIN LISTBOX IDC_BLOCKUSER,6,11,128,78,LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | NOT WS_BORDER | WS_TABSTOP,WS_EX_CLIENTEDGE PUSHBUTTON "",IDC_REMUSER,138,42,16,15,BS_ICON LTEXT "This list contains all your blocked Xfire users. You can remove one, if you wanna allow him to send you a friend request.",IDC_STC9,160,12,136,74,NOT WS_GROUP - LTEXT "You can simply block someone, if you right click on his friend request in clist and choose Block User ...",IDC_STC19,160,48,130,39,NOT WS_GROUP + LTEXT "You can simply block someone, if you right click on his friend request in clist and choose Block User...",IDC_STC19,160,48,130,39,NOT WS_GROUP LTEXT "This file is used for the game search, game detection and gameid resolving. It contains all xfire supported games.",IDC_STC20,92,105,206,28,NOT WS_GROUP LTEXT "This file contains all original game icons. You can also activate the option for icon downloading, if you don't have it.",IDC_STC21,92,136,206,30,NOT WS_GROUP LTEXT "Be sure you put these files in following folder:",IDC_STC24,7,171,290,9,NOT WS_GROUP @@ -180,7 +180,7 @@ BEGIN LTEXT "(manual added)",IDC_MANADDED,162,31,134,9,NOT WS_VISIBLE | NOT WS_GROUP LTEXT "Extra Command Line Parameters:",IDC_STC15,142,99,150,9,NOT WS_GROUP EDITTEXT IDC_EXTRAPARAMS,142,110,152,13,ES_AUTOHSCROLL | NOT WS_BORDER,WS_EX_CLIENTEDGE - PUSHBUTTON "Edit ...",IDC_EDITGAME,222,199,72,17 + PUSHBUTTON "Edit...",IDC_EDITGAME,222,199,72,17 END IDD_UD DIALOGEX 0, 0, 223, 159 diff --git a/protocols/Xfire/src/pwd_dlg.cpp b/protocols/Xfire/src/pwd_dlg.cpp index b31f771cc0..a0bb0d5232 100644 --- a/protocols/Xfire/src/pwd_dlg.cpp +++ b/protocols/Xfire/src/pwd_dlg.cpp @@ -11,7 +11,7 @@ INT_PTR CALLBACK DlgPwProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) { case WM_INITDIALOG: { - SetWindowText(hwndDlg, LPGENT("Please enter server password ...")); + SetWindowText(hwndDlg, LPGENT("Please enter server password...")); TranslateDialogDefault(hwndDlg); SendMessage(hwndDlg,WM_SETICON, (WPARAM)false, (LPARAM)LoadIcon(hinstance, MAKEINTRESOURCE(IDI_TM))); return TRUE; -- cgit v1.2.3