| 941 | } |
| 942 | |
| 943 | String CLanguageSelect::LoadString(UINT id) const |
| 944 | { |
| 945 | String s; |
| 946 | if (id) |
| 947 | { |
| 948 | wchar_t text[1024]; |
| 949 | AfxLoadString(id, text, static_cast<unsigned>(std::size(text))); |
| 950 | if (!TranslateString(text, s)) |
| 951 | s = text; |
| 952 | } |
| 953 | return s; |
| 954 | } |
| 955 | |
| 956 | std::wstring CLanguageSelect::LoadDialogCaption(const tchar_t* lpDialogTemplateID) const |
| 957 | { |
no test coverage detected