I'm trying to use the web-based google translate to translate my english files to another language. They contains characters like %s and %d. Is there a way to protect them from being erroneously translated.
For instance, the text:
Athlete already exists with number %s
is translated to:
Athlète existe déjà avec nombre% s
while I would expect it to be translated to:
Athlète existe déjà avec nombre %s
(I'm processing the input and output so I could add characters around it to 'escape' the %s and %d strings. I thought already to replace %s by some word I'm sure google will not try to translate self, but I hope there is a nicer solution)