summaryrefslogtreecommitdiff
path: root/plugins/DbEditorPP
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2016-01-02 20:46:35 +0000
committerDart Raiden <wowemuh@gmail.com>2016-01-02 20:46:35 +0000
commita7ca837b1c1b04991497b90212cff709f28801b1 (patch)
tree82e445f5d85c2209db7299eff62e77a2f99086d4 /plugins/DbEditorPP
parent5e992068777facb7fee658231d3d78a46813bb77 (diff)
DbEditorPP: more understandable
git-svn-id: http://svn.miranda-ng.org/main/trunk@16000 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP')
-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;