I have a C # application and I use visual studio 2013 to develop it. When trying to support i18n, resource files were created for each language:
resources.en.resx
resources.fr.resx
resources.es.resx
resources.de.resx and so on...
I want to change the KEY (not the value) of all resource files to something more descriptive, for example change "Header.Text" to "MainExceptionTitle.Text". Currently, I see no way to do this, but changing it manually in each file is very tedious.
I looked at the zeta resource editor project , but it also allows you to edit values, not keys.
Is there any way to do this?
source
share