summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/DbEditorPP/res/resource.rc2
-rw-r--r--plugins/DbEditorPP/src/main_window.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbEditorPP/res/resource.rc b/plugins/DbEditorPP/res/resource.rc
index e193f8e7c6..a3540a4644 100644
--- a/plugins/DbEditorPP/res/resource.rc
+++ b/plugins/DbEditorPP/res/resource.rc
@@ -306,7 +306,7 @@ BEGIN
BEGIN
MENUITEM "&Search and replace", MENU_FINDANDREPLACE
MENUITEM SEPARATOR
- MENUITEM "&Fix resident settings", MENU_FIX_RESIDENT
+ MENUITEM "Delete &resident settings", MENU_FIX_RESIDENT
MENUITEM SEPARATOR
MENUITEM "&Delete module", MENU_DELETE
END
diff --git a/plugins/DbEditorPP/src/main_window.cpp b/plugins/DbEditorPP/src/main_window.cpp
index 7249e7bfc7..06618f7034 100644
--- a/plugins/DbEditorPP/src/main_window.cpp
+++ b/plugins/DbEditorPP/src/main_window.cpp
@@ -443,7 +443,7 @@ INT_PTR CALLBACK MainDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
case MENU_FIX_RESIDENT:
if (dlg(TranslateT("Delete resident settings from database?"), MB_YESNO | MB_ICONEXCLAMATION) == IDYES) {
int cnt = fixResidentSettings();
- mir_sntprintf(text, TranslateT("%d orphaned items deleted."), cnt);
+ mir_sntprintf(text, TranslateT("%d items deleted."), cnt);
msg(text);
}
break;