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 threa
strings.resx
.System.Threading
and System.Globalization
Run this code:
Console.WriteLine(Properties.strings.Hello);
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:
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("fr-FR");
Console.WriteLine(Properties.strings.Hello);
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":
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");
Console.WriteLine(Properties.strings.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.
In general you put your translations in resource files, e.g. resources.resx.
Each specific culture has a different name, e.g. resources.nl.resx, resources.fr.resx, resources.de.resx, …
Now the most important part of a solution is to maintain your translations. In Visual Studio install the Microsoft MAT tool: Multilingual App Toolkit (MAT). Works with winforms, wpf, asp.net (core), uwp, …
In general, e.g. for a WPF solution, in the WPF project
[assembly: System.Resources.NeutralResourcesLanguage("en")]
What you will see is that a new folder will be created, called "MultilingualResources" containing a ....nl.xlf
file.
The only thing you now have to do is:
(the .xlf files should open with the "Multilingual Editor", if this is not the case, right mouse click on the .xlf file, select "Open With…" and select "Multilingual Editor".
Have fun! now you can also see what has not been translated, export translations in xlf to external translation companies, import them again, recycle translations from other projects etc...
More info:
It's quite simple, actually. Create a new resource file, for example Strings.resx
. Set Access Modifier
to Public
. Use the apprioriate file template, so Visual Studio will automatically generate an accessor class (the name will be Strings
, in this case). This is your default language.
Now, when you want to add, say, German localization, add a localized resx file. This will be typically Strings.de.resx
in this case. If you want to add additional localization for, say, Austria, you'll additionally create a Strings.de-AT.resx
.
Now go create a string - let's say a string with the name HelloWorld
. In your Strings.resx
, add this string with the value "Hello, world!". In Strings.de.resx
, add "Hallo, Welt!". And in Strings.de-AT.resx
, add "Servus, Welt!". That's it so far.
Now you have this generated Strings
class, and it has a property with a getter HelloWorld
. Getting this property will load "Servus, Welt!" when your locale is de-AT, "Hallo, Welt! when your locale is any other de locale (including de-DE and de-CH), and "Hello, World!" when your locale is anything else. If a string is missing in the localized version, the resource manager will automatically walk up the chain, from the most specialized to the invariant resource.
You can use the ResourceManager
class for more control about how exactly you are loading things. The generated Strings
class uses it as well.