diff options
Diffstat (limited to 'plugins/DbEditorPP/src/addeditsettingsdlg.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/addeditsettingsdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbEditorPP/src/addeditsettingsdlg.cpp b/plugins/DbEditorPP/src/addeditsettingsdlg.cpp index 968ee92bc0..6cd364ef04 100644 --- a/plugins/DbEditorPP/src/addeditsettingsdlg.cpp +++ b/plugins/DbEditorPP/src/addeditsettingsdlg.cpp @@ -80,7 +80,7 @@ BOOL convertSetting(HANDLE hContact, char* module, char* setting, int toType) // }
if (!Result)
- msg(Translate("Cannot Convert!"), modFullname);
+ msg("Cannot Convert!", modFullname);
DBFreeVariant(&dbv);
}
@@ -335,7 +335,7 @@ INT_PTR CALLBACK EditSettingDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l if (!setting || !value)
{
- msg(Translate("Couldnt allocate enough memory!"), modFullname);
+ msg("Couldnt allocate enough memory!", modFullname);
DestroyWindow(hwnd);
break;
}
|