I have an application in C#/WPF which is internationalized (resource string for some languages).
Currently I am using the following codes for the resource files: default.resx, de-DE, fr-FR, es-ES, pt-BR, pt-PT, nl-NL etc.
But I have some questions:
E.g. for nl, there are two variants: nl-NL (Netherlands) and nl-BE. Currently I use nl-NL, but I guess if a person from Belgium will get the default texts since nl-BE is not defined. Is this true?
Should I use then nl instead of nl-NL?
For some languages only one country is defined (e.g. hu-HU) ... what is then the difference between hu and hu-HU? I think nothing but I want to be sure.
