We have a big project, just English language.
Business users require changes to the text in the application sometimes and they are forced to wait until the next release to get the changes.
One possible solution would be to have the strings into the database, another would be in a text file not embedded into the assembly to be able to change it after deployment.
The resources file are attractive as they have already a framework in place for creating classes and properties for access, but, as far as I understood, they are just embedded into the assembly and cannot be modified (easily) after.
What would be the best way to approach this problem?