开发者

What is the fastest/better way to localize a .Net Compact Framework application?

I am developing an application for a Windows CE OS.

I am using .Net Compact Framework 3.5.

I want to localize my control texts on my form , and I am looking for the fastest way and compatibl开发者_Go百科e to compact framework using C#.

Please guide me with your valuable ideas how can I do it ?


It depends.

Usually if you just place all your "UI strings" into a resources.resx you can then generate a different resx for each culture en-GB or en-US or fr-FR for example. A rough overview can be found here although there are probably better resources to be found on Google.

Basically the premise is that the user will set the device to their own culture (for example fr-FR for French) and then when your app loads if there are .resx files for fr-FR these will be loaded instead.

A couple of issues to be aware of:

  • To manage these strings effectively it's best to wrap them all into a base .dll. This means you need to edit the tool that generates the code. By default it lists the resources as internal and you need these to be public instead. Otherwise you end up with a number of .resx files all over the place which is hard to manage.

  • It's all or nothing. So if you want someone to have french text when they set their culture this will modify all items pertaining to the culture including formatting and clock orientation

  • You CANNOT change the culture on WinCE at run-time. So if you have an app that needs to change cultures (as I once did with a bus application that moved between Ireland and Northern Ireland) then using .resx is no good at all and you have to roll your own system.

The other option is to roll your own localisation.

If you are going to be providing extensive culture specific localisation then consider your formatting of dates, currencies and text comparisons. Read up on the Turkey test to see what kind of things you need to bear in mind.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜