Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What online tool do you use to automate translation of .arb files? [closed]

Do you know any good tools to support the translation of .arb files?

It's a standard for Flutter and since Google Translator Toolkit will be sunset soon (https://support.google.com/translatortoolkit/answer/9462068) we're searching for a good solution to translate/gather our translations

like image 543
Marcin Urbanski Avatar asked Sep 17 '19 10:09

Marcin Urbanski


People also ask

What are .ARB files?

Format Options The Application Resource Bundle (. arb) is a file format for localization based on JSON. The resource entries are encoded as JSON objects. Each object consists of a resource key with an optional attribute. ARB files are used for the localization of apps built with Google's Mobile App SDK called Flutter.


2 Answers

Edit (June 2020): There's great new open source project called Arbify. This is a self-hosted tool to manage multiple translation projects focused on Flutter. You can edit arb files and fetch them via Dart package tool.

Aside from that some services like POEditor have announced basic support for ARB too.


At the moment the best support for arb files is on Localizely. However, this is a paid service and has strict limits on a free version. It allows to export arb translation files with plurals and placeholder support. It doesn't support genders, though.

There is also one simple web editor and one desktop editor (Babel) that support arb files.

like image 160
Dominik Roszkowski Avatar answered Feb 17 '23 22:02

Dominik Roszkowski


Crowdin supports .arb:

https://support.crowdin.com/supported-formats/

It is also able to pull the data from a Git repo and send Pull Requests on GitHub.

However, when I used it in 2018 there was a problem of @@last_modified attribute being updated without any other changes to the translation files, causing lots of churn in PRs. By that time, they were reluctant to improve the situation (based on email conversation with their support), so we resorted to manual edits.

like image 31
J. Williams Avatar answered Feb 17 '23 22:02

J. Williams