Trololo21
Question . Can u make something like a compiler?
The trick is , that i found a Website that translates files from Russian to English.
Problem is that....
Its supposed to look like this the correct way:
<entry original="Вы состоите в школьной группе" translated="You are in a school group"/>
But the website translates it like this :
<entry original="You are in a school group" translated="You are in a school group"/>
Therefore eliminating the template which should be translated.
Soo..
Heres untranslated:
<entry original="Вы состоите в школьной группе" translated="Вы состоите в школьной группе"/>
And make it so , that the compiler copy/pass what comes after the keyword "translated="
And replaces the second line from the translated file
<entry original="You are in a school group" translated="You are in a school group"/>
The lines in Original and Translated remain in the same place.
So just brute force smash them together according to line of possition of the keyword , and then move to another keyword..
Question . Can u make something like a compiler?
The trick is , that i found a Website that translates files from Russian to English.
Problem is that....
Its supposed to look like this the correct way:
<entry original="Вы состоите в школьной группе" translated="You are in a school group"/>
But the website translates it like this :
<entry original="You are in a school group" translated="You are in a school group"/>
Therefore eliminating the template which should be translated.
Soo..
Heres untranslated:
<entry original="Вы состоите в школьной группе" translated="Вы состоите в школьной группе"/>
And make it so , that the compiler copy/pass what comes after the keyword "translated="
And replaces the second line from the translated file
<entry original="You are in a school group" translated="You are in a school group"/>
The lines in Original and Translated remain in the same place.
So just brute force smash them together according to line of possition of the keyword , and then move to another keyword..