Results 1 to 2 of 2

Thread: [RESOLVED] [2005] Creating a setup for multi-language

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Dec 2001
    Posts
    1,331

    Resolved [RESOLVED] [2005] Creating a setup for multi-language

    Hello,

    I have added multi-language using the short article below.

    When you add for example German language you will have these files: formMain.resx formMain.de-DE.resx formMain.Designer.cs formMain.cs

    In first file you will have resources for neutral language, like strings, images, ..

    So now you need to add also resources for strings used in code. Add a new resource file and name it formMain.Strings.resx Then i will enter name, value pair for every string that should be translated. When you add resource file then it is automatically typed because another file with name formMain.Strings.Designer.cs is automatically regenerated on every close of resx designer.

    Add another resource with name formMain.Strings.de-DE.resx. Add the same Name key's from previous resource, and just change the Value with coresponding german words. Now to access created resource from the source it will be like this.

    MessageBox.Show(formMain_Strings.SameStringName);

    However, I have changed my to Thai language. Everything works fine when I run my app in VS.

    However, as soon as I add a setup project and install on the clients machine it won't change the language to Thai and just keeps to the default language.

    So I have added the resource files and the th-TH dll to the project setup. And I still get the same problem.
    Code:
    Packaging file 'Lang.Strings.resx'...
    Packaging file 'MultiLanguage.resources.dll'...
    Packaging file 'MultiLanguage.exe'...
    Packaging file 'Lang.Strings.th-TH.resx'...
    As everything works fine when running in visual studio. Is there something I need to do to get it to run once its been installed. All the properties for each of the file I have keep the default.

    Many thanks,
    steve

  2. #2

    Thread Starter
    Frenzied Member
    Join Date
    Dec 2001
    Posts
    1,331

    Re: [2005] Creating a setup for multi-language

    Hello,

    I found the answer

    Click the Setup Project in Solution Explorer and then click Add\Project Output\ . From dialog select the project for which you want to include localization (satelite) assemblies and then select Localized resources.

    After the installation in the folder that I install to, I have the th-TH folder which includes the satellite assembly.
    steve

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width