How to translate language json files?

Viewed 12972

I'm using ngx-translate to localizing the app developed by angular. Since there are more than 20 languages ​​that need to be translated, I need a tool that can translate the language json files.

I found a website that helps,but it takes a long time, and sometimes I can’t receive emails with translation results.

So Is there a tool that can parse the json file and tranlate it please.

Thanks for your help

1 Answers

Yes, simpleen.io does exactly that.

It supports the JSON format including different depths. It currently supports a dozen languages (based on DeepL). It also supports the default interpolation of variables in ngx-translate, which are marked as {{variableName}}.

Basically you signup, configure a translator and then you can use it directly via copy&pasting your JSON structure. It takes probably 1-3 seconds, then you receive your result.

It is currently in beta, but will support more languages when other translation services are implemented.

Disclaimer: I am the creator of the service, so if you have any questions or feedback, please let me know.

Related