Skip to main content
Topic: Patch - translate transformer (Read 7830 times) previous topic - next topic

Re: Patch - translate transformer

Reply #1
Code: [Select]
-	const char *get_name() const {return "Aufspanntransformator";}
+ const char *get_name() const {return translator::translate("PowerSource");}
The call to the translator is unnecessary here. The "Aufspanntransformator" name is already being p****ed to the translator for display in the info window title; The appropriate entry in the xx.tab file is simply missing...

Code: [Select]
-	const char *get_name() const {return "Aufspanntransformator";}
+ const char *get_name() const {return "PowerSource";}
would be fine to change from a german to an english basis for the translator. Same for "PowerDest".

 

Re: Patch - translate transformer

Reply #2
...
Code: [Select]
-	const char *get_name() const {return "Aufspanntransformator";}
+ const char *get_name() const {return "PowerSource";}
would be fine to change from a german to an english basis for the translator. Same for "PowerDest".

ops, sorry

ok, import to Translator

rename can later