Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesblasco/arb_editor
Online Editor | Edit your .arb files and translate your app the easiest way
https://github.com/jamesblasco/arb_editor
arb dart flutter internationalization localization
Last synced: 21 days ago
JSON representation
Online Editor | Edit your .arb files and translate your app the easiest way
- Host: GitHub
- URL: https://github.com/jamesblasco/arb_editor
- Owner: jamesblasco
- Created: 2019-12-28T10:51:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-03T13:53:51.000Z (over 4 years ago)
- Last Synced: 2024-10-08T07:28:20.773Z (about 1 month ago)
- Topics: arb, dart, flutter, internationalization, localization
- Language: Dart
- Homepage: https://jamesblasco.github.io/arb_editor/master/
- Size: 1.91 MB
- Stars: 44
- Watchers: 7
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**This project is not under development anymore.**
I am using https://localise.biz/ for editing my translations and exporting them to arb.
With the following dart file I automate the proccess of downloading the files and converting them to dart code.```dart
void main() async {
var shell = Shell();await shell.run('''
curl -s -o 'translated.zip' 'https://localise.biz/api/export/archive/arb.zip?key=$key'
unzip -qq 'translated.zip' -d 'l10n'
rm -f translated.zip
rm -rf lib/l10n/
mv l10n/insights-arb-archive/l10n/ lib/
rm -rf l10n/
dart ../../flutter/dev/tools/localization/bin/gen_l10n.dart --template-arb-file intl_messages_en.arb --output-class AppStrings''');
}
```----
![Arb Editor](https://github.com/jamesblasco/arb_editor/blob/master/header.png?raw=true)
# Arb Editor
This project is not stable and it could cause some errors during downloading
Master version => https://jamesblasco.github.io/arb_editor/master/#/## Roadmap
- [ ] Stable and functional
- [ ] Number, plurals and dates support
- [ ] Github implementation