diff options
-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;
|