summaryrefslogtreecommitdiff
path: root/plugins/ShellExt/src/options.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-08-24 09:56:27 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-08-24 09:56:27 +0000
commit372ddd7462b69cbe508d0b37e07988c4278e2db8 (patch)
treeaa0039ca2b4b433b80cc82c74c27427fbacbf570 /plugins/ShellExt/src/options.cpp
parentdb938d6a5905c407a2405094399e5e5bf85aea0e (diff)
- translation issues
- minor code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@5813 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ShellExt/src/options.cpp')
-rw-r--r--plugins/ShellExt/src/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ShellExt/src/options.cpp b/plugins/ShellExt/src/options.cpp
index ccc2d3eb6a..8d288f1dc6 100644
--- a/plugins/ShellExt/src/options.cpp
+++ b/plugins/ShellExt/src/options.cpp
@@ -35,8 +35,8 @@ static INT_PTR CALLBACK OptDialogProc(HWND hwndDlg, UINT wMsg, WPARAM wParam, LP
TranslateDialogDefault(hwndDlg);
comReg = IsCOMRegistered();
mir_sntprintf(szBuf, SIZEOF(szBuf), _T("%s (%s)"),
- COM_OKSTR[ (comReg & COMREG_OK) != 0 ],
- COM_APPROVEDSTR[ (comReg & COMREG_APPROVED) != 0 ]);
+ TranslateTS(COM_OKSTR[ (comReg & COMREG_OK) != 0 ]),
+ TranslateTS(COM_APPROVEDSTR[ (comReg & COMREG_APPROVED) != 0 ]));
SetWindowText(GetDlgItem(hwndDlg, IDC_STATUS), szBuf);
// auto size the static windows to fit their text
// they're rendering in a font not selected into the DC.