Do to my lack of knowledge I've edited this question
I am making a UserControl
with DataGridView
in it and I want to simplify implementation process as much as possible, so I am wondering should I do that with localization?
Do to my knowledge and research thus far, my approach for localization is this:
For example say I have one button on my form/UserControl
with text property set to "hello" , now I want to localize my form/UserControl
for Italian language.
- Set localizable property to true and choose language (in this case Italian)
- Google translate
- Set text property to "Ciao"
English is by default so i already have .resx
file in my form, but after this VS will generate resources for Italian with button.Text
property as key and "ciao" as value, if i understood correctly, but what happens if someone comes and change button.Text
property from hello to "hello world", then my Italian resources won't be correct unless they are changed manually, is there a way to somehow do this change automatically?
I am wondering this, because when my UserControl
with DataGridView
is implemented on some form
, I can't tell which columns will my DataGridView
have, so I am wondering should I leave localization process to the person who implements my control?
Thank you, I really appreciate the help, and sorry for edit.