I have 6 resource files for 6 different languages (En, Nl, De, Es, It, Fr). I'm getting the string with ResourceManager.GetString, but it only seems to work if the AppResources file has the full en-EN, fr-FR etc.
Is it possible to name the files AppResources.es.resx, instead of es-ES, so it works in Spain and Mexico, or fr instead of fr-FR so it works for France and Canada?
The following solution was something I've tried, but it didn't seem to work:
ResourceManager.GetString(Text, new CultureInfo(cultureInfo.TwoLetterISOLanguageName))