I want to localize my windows forms project. I use resx files. The problem is resx files includes all the parameters of controls (label, textbox...) These parameters are buttonName for example like above
.>>buttonVazgec.Name buttonMybutton
or
.>>textBoxYetkili.ZOrder 25
I do not want to localize these parameters. the worst thing about this behavior is when I try to change the form (adding a new textbox) I need to redesign for all languages. how can I exclude these properties from my resource. can these properties be saved in a different partial resx or sth?
thanks