Standard/Best Practice For Multi-Lingual Add-in Development

J

Jonathan

Is there a standard way to develop a new Add-in to so that it can be
multi-lingual?

I.e. Dialog prompts, form text labels etc would lookup a language table with
the appropriate word, phrase or sentences based on the language chosen?

TIA
 
K

Ken Slovak - [MVP - Outlook]

Of course there is, how you do it depends on what language platform you use
to develop your addin. For unmanaged code you can use a resources file with
different columns, one column for each language you intend to support. For
managed code you can also use a string resource file and use the culture
settings to load the appropriate string for the current language.
 
J

Jonathan

Thanks Ken.


Ken Slovak - said:
Of course there is, how you do it depends on what language platform you use
to develop your addin. For unmanaged code you can use a resources file with
different columns, one column for each language you intend to support. For
managed code you can also use a string resource file and use the culture
settings to load the appropriate string for the current language.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top