summaryrefslogtreecommitdiff
path: root/plugins/ShellExt/src/options.cpp
diff options
context:
space:
mode:
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.