I have the resources.resx
in my c# code with some strings filled:
Text1,"Some Text"
and i can call it during running time by
Properties.Resources.Text1
which results in
"Some Text"
Now i want to have Text1 a different output (another language for example or something)
so that Properties.Resources.Text1
results in "Different Text"
.
How can i achieve this?
EDIT1: i discovered this but i was looking for a different approach with the resource files.