diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-02-03 14:55:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-02-03 14:55:13 +0000 |
commit | 39f30015883856e6605871c2aecf3c88b3da1a3d (patch) | |
tree | 7031672b347e330d812332a2a62c37fbefddf9b4 /plugins/DbEditorPP/src | |
parent | b238e16e3eba035ba930492974ca96d17eb53f8d (diff) |
translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8024 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src')
-rw-r--r-- | plugins/DbEditorPP/src/deletemodule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbEditorPP/src/deletemodule.cpp b/plugins/DbEditorPP/src/deletemodule.cpp index 3026a2523c..188f96460d 100644 --- a/plugins/DbEditorPP/src/deletemodule.cpp +++ b/plugins/DbEditorPP/src/deletemodule.cpp @@ -78,8 +78,8 @@ INT_PTR CALLBACK DeleteModuleDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM SetWindowText(hwnd,Translate("Delete module from Database... Loading"));
EnableWindow(GetDlgItem(hwnd,IDC_CONTACTS),0);
EnableWindow(GetDlgItem(hwnd,IDOK),0);
- SetDlgItemText(hwnd,IDC_INFOTEXT,"Delete module from Database");
- SetDlgItemText(hwnd,CHK_COPY2ALL,"Delete module from all contacts (Includes Setting)");
+ SetDlgItemText(hwnd,IDC_INFOTEXT, Translate("Delete module from Database"));
+ SetDlgItemText(hwnd,CHK_COPY2ALL, Translate("Delete module from all contacts (Includes Setting)"));
EnableWindow(GetDlgItem(hwnd,CHK_COPY2ALL),0);
CheckDlgButton(hwnd,CHK_COPY2ALL,1);
TranslateDialogDefault(hwnd);
|