We are working on a ASP.NET project and we are using the resx files to implement the internationalization.
Although, it only compiles when I create the default resource file (Page.ascx.resx for instance). It doesn't let us to use only culture-specific files (like Page.ascx.en-US.resx, Page.ascx.km-KH.resx, Page.ascx.pl-PL.resx, etc.)
I already used the following assembly attribute. It lets me compile, but I get a runtime error.
[assembly: NeutralResourcesLanguageAttribute("km-KH",UltimateResourceFallbackLocation.Satellite)]
Any sugestions?
Thanks!