flutter_csv_localization 0.3.0+1 copy "flutter_csv_localization: ^0.3.0+1" to clipboard
flutter_csv_localization: ^0.3.0+1 copied to clipboard

outdated

Flutter localizations generator from CSV files.

Flutter localizations generator from CSV files. #

Generates a localizations delegate from a CSV file.

Usage #

Install globally the tool :

$ pub global activate flutter_csv_localization

CSV #

Then run the generator :

$ pub global run flutter_csv_localization:generate -o example.g.dart example.csv

Google Sheet #

Make sure that your sheet is shared :

share

Extract from the link the DOCID and SHEETID values : https://docs.google.com/spreadsheets/d/<DOCID>/edit#gid=<SHEETID>) :

Run the command :

$ pub global run flutter_csv_localization:generate -g -o example.g.dart <DOCID>/<SHEETID>

Example #

.csv -> .dart

CSV format #

The csv file should have :

  • Row
    • Column 0 : "Key"
    • then each supported language code ("en", "fr", ...)
  • Following rows for labels
    • Column 0 : the label key (can be a hierarchy, separated by dots)
    • then each translation based on language code of the column

example

Key,fr,en
dates.weekday.monday,lundi,monday
dates.weekday.tuesday,mardi,tuesday
dates.weekday.wednesday,mercredi,wednesday
dates.weekday.thursday,jeudi,thursday
dates.weekday.friday,vendredi,friday
dates.weekday.saturday,samedi,saturday
dates.weekday.sunday,dimanche,sunday

Roadmap / Ideas #

  • Multiple values per label (plural, gender, ...)
  • Native labels (plist, xml, ...)

Why ? #

I find the Flutter internationalization tools not really easy to use, and I wanted a simple tool for sharing translations.

0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Flutter localizations generator from CSV files.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

args, code_builder, csv, dart_style, http, meta, recase

More

Packages that depend on flutter_csv_localization