diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-12 19:10:13 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-12 19:10:13 +0000 |
commit | ea515096f493bb4a629409aa5e41442bc0dea60f (patch) | |
tree | 435f2abe9418c1f8113fab8d0e90bb1d6be4f9b8 /plugins/DbEditorPP/src/addeditsettingsdlg.cpp | |
parent | a3ff000eb0e2e29c77c38d184d65597e1ad32fcc (diff) |
- DbEditorPP: unneeded translations removed (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3582 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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;
}
|