Multilanguage Applications

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tosch

    #1

    Multilanguage Applications

    I have to write a multilanguage application with the following
    criteria:

    - The language code can be set in a config file or similar. I don't
    want .NET do decide which language to use. This way it's possible to
    run say a french version of my app on an italian Windows.

    - add new language versions to the application without need to
    recompole

    - minimal coding requirement

    Does anyone have a sample application or ideas how to approach this?

    Tosch
  • CT

    #2
    Re: Multilanguage Applications

    That can certainly be done, as long as you save your localized resources in
    satellite assemblies and load the locale say from your .config file. Check
    out how to use satellite assemblies in the MSDN docs and here are a few
    links as well:




    --
    Carsten Thomsen
    Enterprise Development with VS .NET, UML, and MSF

    "Tosch" <tosch_nospam@s wissonline.ch> wrote in message
    news:tbjm90ps8h mvnrd7k325tm83c 8tv599kkg@4ax.c om...[color=blue]
    >I have to write a multilanguage application with the following
    > criteria:
    >
    > - The language code can be set in a config file or similar. I don't
    > want .NET do decide which language to use. This way it's possible to
    > run say a french version of my app on an italian Windows.
    >
    > - add new language versions to the application without need to
    > recompole
    >
    > - minimal coding requirement
    >
    > Does anyone have a sample application or ideas how to approach this?
    >
    > Tosch[/color]


    Comment

    Working...