diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-06-19 10:17:27 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-06-19 10:17:27 +0000 |
commit | 171edab82a050ae69ee76361c4ccd1f81ce20107 (patch) | |
tree | e52141daefd0b1e55a9a6125c8c9277db1cc06d2 /plugins/DbEditorPP | |
parent | 22df7d24b001bb104cbc6ea92eb6f2952234cfce (diff) |
another correction (thx Wishmaster)
git-svn-id: http://svn.miranda-ng.org/main/trunk@14258 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP')
-rw-r--r-- | plugins/DbEditorPP/src/main_window.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbEditorPP/src/main_window.cpp b/plugins/DbEditorPP/src/main_window.cpp index 44fd5fa2f2..87482e939d 100644 --- a/plugins/DbEditorPP/src/main_window.cpp +++ b/plugins/DbEditorPP/src/main_window.cpp @@ -451,10 +451,10 @@ INT_PTR CALLBACK MainDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) newFindWindow();
break;
case MENU_FIX_RESIDENT:
- if (dlg(TranslateT("Fix resident setting deleting them from database?"), MB_YESNO | MB_ICONEXCLAMATION) == IDYES) {
+ if (dlg(TranslateT("Delete resident settings from database?"), MB_YESNO | MB_ICONEXCLAMATION) == IDYES) {
int cnt = fixResidentSettings();
TCHAR text[MSG_SIZE];
- mir_sntprintf(text, TranslateT("Deleted orphaned items: %d"), cnt);
+ mir_sntprintf(text, TranslateT("%d orphaned items deleted."), cnt);
msg(text);
}
break;
|