I have a problem with resource files in my project. When I created it in English, I transferred it to the translation team. Somehow, they returned me a resource file with values ββin a different order, so it was not sorted in alphabetical order.
So first it was:
<data name="a1" xml:space="preserve"> <value>some text2</value> </data> <data name="b1" xml:space="preserve"> <value>some text3</value> </data> <data name="c1" xml:space="preserve"> <value>some text1</value> </data>
and I got:
<data name="c1" xml:space="preserve"> <value>some text1</value> </data> <data name="a1" xml:space="preserve"> <value>some text2</value> </data> <data name="b1" xml:space="preserve"> <value>some text3</value> </data>
So, is there a way to sort these elements in a .resx file with the <data name attribute?
ticky source share