I just can't seem to get localization to work.
I have a class library. Now I want to create resx files in there, and return some values based on the thread culture.
How can I do that?
|
I just can't seem to get localization to work. I have a class library. Now I want to create resx files in there, and return some values based on the thread culture. How can I do that? |
||||
|
|
Run this code:
It should print "Hello". Now, add a new resource file, named "strings.fr.resx" (note the "fr" part; this one will contain resources in French). Add a string resource with the same name as in strings.resx, but with the value in French (Name="Hello", Value="Salut"). Now, if you run the following code, it should print Salut:
What happens is that the system will look for a resource for "fr-FR". It will not find one (since we specified "fr" in your file"). It will then fall back to checking for "fr", which it finds (and uses). The following code, will print "Hello":
That is because it does not find any "en-US" resource, and also no "en" resource, so it will fall back to the default, which is the one that we added from the start. You can create files with more specific resources if needed (for instance strings.fr-FR.resx and strings.fr-CA.resx for French in France and Canada respectively). In each such file you will need to add the resources for those strings that differ from the resource that it would fall back to. So if a text is the same in France and Canada, you can put it in strings.fr.resx, while strings that are different in Canadian french could go into strings.fr-CA.resx. |
|||||||||||||||||||||
|
|
It's quite simple, actually. Create a new resource file, for example Now, when you want to add, say, German localization, add a localized resx file. This will be typically Now go create a string - let's say a string with the name Now you have this generated You can use the |
|||
|
|
|
In addition @Fredrik Mörk's great answer on strings, to add localization to a form do the following:
This is MSDN article on Localizing Windows Forms gives some more info on it. |
|||
|
|
|
Great answer by F.Mörk. But if you want to update translation, or add new languages once the application is released, you're stuck, because you always have to recompile it to generate the resources.dll. Here is a solution to manually compile a resource dll. It uses the resgen.exe and al.exe tools (installed with the sdk). Say you have a Strings.fr.resx resource file, you can compile a resources dll with the following batch:
Be sure to keep the original namespace in the file names (here "WpfRibbonApplication1") |
|||
|
|
|
It might help if you describe what is not working. Have you tride looking up tutorials? This thread should help you: http://forums.asp.net/t/1278099.aspx You may also have a look at: http://www.java2s.com/Tutorial/CSharp/0460__GUI-Windows-Forms/CreateaResxresourcefile.htm |
|||
|
|
|
Well, you didn't mention any specific problem, so we can give some specific help. This link might help. It has some sample files and sample code on using them. |
||||
|
|