diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-17 07:37:38 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-17 07:37:38 +0000 |
commit | 2ff3fc22cca2302a3787930efb4bbefb45c2d975 (patch) | |
tree | c579d4a895f9d0a1524d5adb8b6103d6a5c9fb31 /plugins | |
parent | 2ead0631aee725055c4b007d752ee94647fc9614 (diff) |
- cosmetic patches from dartraiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@5393 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Db_autobackups/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/VersionInfo/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/WhoUsesMyFiles/res/resource.rc | 12 | ||||
-rw-r--r-- | plugins/WhoUsesMyFiles/src/wumfplug.cpp | 4 |
4 files changed, 10 insertions, 10 deletions
diff --git a/plugins/Db_autobackups/src/options.cpp b/plugins/Db_autobackups/src/options.cpp index f90da0aa85..fc411f9aa8 100644 --- a/plugins/Db_autobackups/src/options.cpp +++ b/plugins/Db_autobackups/src/options.cpp @@ -312,7 +312,7 @@ INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP if(err != ERROR_ALREADY_EXISTS && err != 0) {
TCHAR msg_buff[512];
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, err, 0, msg_buff, 512, 0);
- MessageBox(0, msg_buff, TranslateT("Error Creating Backup Folder"), MB_OK | MB_ICONERROR);
+ MessageBox(0, msg_buff, TranslateT("Error creating backup folder"), MB_OK | MB_ICONERROR);
folder_ok = FALSE;
}
diff --git a/plugins/VersionInfo/res/resource.rc b/plugins/VersionInfo/res/resource.rc index 58ed3ad245..a509586c34 100644 --- a/plugins/VersionInfo/res/resource.rc +++ b/plugins/VersionInfo/res/resource.rc @@ -55,7 +55,7 @@ BEGIN PUSHBUTTON "Do it now",IDC_GETINFONOW,265,4,48,13
GROUPBOX "Output to:",IDC_STATIC,5,4,197,130
CONTROL "Text file",IDC_TOFILE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,16,186,10
- EDITTEXT IDC_FILENAME,24,26,150,14,ES_AUTOHSCROLL
+ EDITTEXT IDC_FILENAME,24,26,172,14,ES_AUTOHSCROLL
CONTROL "MessageBox",IDC_TOMESSAGEBOX,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,40,186,10
CONTROL "DialogBox",IDC_TODIALOGBOX,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,51,186,10
CONTROL "Show window in taskbar",IDC_SHOWINTASKBAR,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,21,62,177,10
diff --git a/plugins/WhoUsesMyFiles/res/resource.rc b/plugins/WhoUsesMyFiles/res/resource.rc index fe24192ffe..7a46fc8465 100644 --- a/plugins/WhoUsesMyFiles/res/resource.rc +++ b/plugins/WhoUsesMyFiles/res/resource.rc @@ -77,19 +77,19 @@ BEGIN CONTROL "Log into text file",IDC_LOG_INTO_FILE,"Button",
BS_AUTOCHECKBOX | WS_TABSTOP,14,123,64,12
CONTROL "Log folders access",IDC_LOG_FOLDER,"Button",
- BS_AUTOCHECKBOX | WS_TABSTOP,14,143,75,12
+ BS_AUTOCHECKBOX | WS_TABSTOP,14,143,140,12
CONTROL "Alerts on folders access",IDC_ALERT_FOLDER,"Button",
- BS_AUTOCHECKBOX | WS_TABSTOP,165,143,91,12
+ BS_AUTOCHECKBOX | WS_TABSTOP,165,143,147,12
CONTROL "Log files and folders in UNC format",IDC_LOG_UNC,"Button",
- BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,163,125,12
+ BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,163,140,12
CONTROL "Alert files && folders in UNC format",IDC_ALERT_UNC,
"Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,165,
- 163,119,12
+ 163,147Alerts ,12
CONTROL "Log computer name with username",IDC_LOG_COMP,"Button",
- BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,183,126,10
+ BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,183,140,10
CONTROL "Alert computer name with username",IDC_ALERT_COMP,
"Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,165,
- 183,128,10
+ 183,147,10
LTEXT "Disabled options will be available in the next version",
IDC_STATIC,83,194,199,9
PUSHBUTTON "Show current connections",IDC_CONN,162,231,104,15
diff --git a/plugins/WhoUsesMyFiles/src/wumfplug.cpp b/plugins/WhoUsesMyFiles/src/wumfplug.cpp index 52d76d7bd2..f11324e484 100644 --- a/plugins/WhoUsesMyFiles/src/wumfplug.cpp +++ b/plugins/WhoUsesMyFiles/src/wumfplug.cpp @@ -153,7 +153,7 @@ void ShowThePopup(PWumf w, LPTSTR title, LPTSTR text) void ShowThePreview()
{
if ( !ServiceExists(MS_POPUP_ADDPOPUPT)) {
- MessageBox(NULL, TranslateT("Popup plugin not found!"), TranslateT("WUMF plugin"), MB_OK|MB_ICONSTOP);
+ MessageBox(NULL, TranslateT("Popup plugin not found!"), TranslateT("Error"), MB_OK|MB_ICONSTOP);
return;
}
@@ -280,7 +280,7 @@ void ChooseFile(HWND hDlg) else if (CommDlgExtendedError() != 0) {
TCHAR str[256];
mir_sntprintf(str, SIZEOF(str), TranslateT("Common Dialog Error 0x%lx"), CommDlgExtendedError());
- MessageBox(hDlg, str, TranslateT("Wumf plugin"), MB_OK | MB_ICONSTOP);
+ MessageBox(hDlg, str, TranslateT("Error"), MB_OK | MB_ICONSTOP);
}
}
|