0
votes

I have an MFC outlookbar implemenated.There is dialog appears on clicking outlooktab bar tab(Navigation pane option).I want to localize the dialog string because i think its a MFC provided dialog so on localization of application this dialog's string is not getting localized.

1

1 Answers

1
votes

You need your own localization of the MFC resources.

In VS-2013 for example this is a MFC120xxx.DLL, ENU for english, DEU for German, TRK for turkish, etc.

The MFC comes only with a few translations.

If you use static resources you need to create your own translation in the include folders of the MFC here (i.e. turkish):

C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\atlmfc\include\l.trk

Sample folder is for VS-2013.

I used make files from an older VS-Version to create my own MFC language resource files. They still work with VS-2010 and later.