Help
Dart app internationalization and localization
Dart is a general-purpose programming language originally developed by Google and later approved as a standard by Ecma (ECMA-408). It is used to build web, server, and mobile applications.
Dart is an object-oriented, class defined language using a C-style syntax that transcompiles optionally into JavaScript. It supports interfaces, mixins, abstract classes, reified generics, static typing, and a sound type system.
- Created by
- Released
- October 2011
- Links
-
https://dart.dev
Wikipedia
🔗Dart applications are usually translated these file formats
🔗Related Platforms
🔗Best way to localize Dart apps
The first step is to extract the text to translate into language files. This process is called internationalization. One of the packages listed below can be used to extract out the text to translate into JSON or YAML files.
Once you have internationalized your Dart app, use a translation software localization tool such as WebTranslateIt to manage your localization workflow.
It is easy to translate a Dart app with WebTranslateIt. Create a project, upload your source language file in the File Manager and translate it on the Translation Interface.
The tools included in WebTranslateIt, such as Batch Operations, the Translation Memory or Machine Translation can help you translate that file automatically, faster and cost effectively.
🔗Links of interest
- WebTranslateIt’s CLI to help sync language files.
- MohiuddinM/i18n Internationalization package for Dart, using YAML files
- ilteoood/flutter_i18n Internationalization package for Flutter using JSON, YAML, TOML or XML
- ilteoood/flutter_i18n Internationalization package for Flutter using JSON, YAML, TOML or XML
- Tienisto/flutter-fast-i18n Lightweight i18n solution for Flutter using JSON
- Internationalizing Flutter apps
- Flutter Internationalization user guide (a PDF)