diff options
-rw-r--r-- | plugins/DbEditorPP/src/main_window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DbEditorPP/src/main_window.cpp b/plugins/DbEditorPP/src/main_window.cpp index d7bf3bbaa0..44fd5fa2f2 100644 --- a/plugins/DbEditorPP/src/main_window.cpp +++ b/plugins/DbEditorPP/src/main_window.cpp @@ -451,7 +451,7 @@ 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 DB ?"), MB_YESNO | MB_ICONEXCLAMATION) == IDYES) {
+ if (dlg(TranslateT("Fix resident setting deleting them from database?"), MB_YESNO | MB_ICONEXCLAMATION) == IDYES) {
int cnt = fixResidentSettings();
TCHAR text[MSG_SIZE];
mir_sntprintf(text, TranslateT("Deleted orphaned items: %d"), cnt);
|