For an Asp.Net MVC 3 application, I will use resource files to store my I18N ( How-to ).
It’s not me who will translate all the fields in the whole language, I just need to create in one language and create empty language files for the other two languages. And in the implementation I will use these three files.
So, I have no problems for development, but after I created the site, this is a client that will translate all these fields. I found a great application that allows you to transfer from one resx to another ( SimpleResxEditor ). But now, how can a client modify this resx file on asp.net without a visual studio? Is there a way to indicate in visual studio that we are using a “non-embedded” resource file, and a change to this file takes effect immediately?
source
share