Generates a localizations delegate from a CSV file.
Install globally the tool :
$ pub global activate flutter_csv_localizationThen run the generator :
$ pub global run flutter_csv_localization:generate -o example.g.dart example.csvMake sure that your sheet is shared :
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>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
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- Multiple values per label (plural, gender, ...)
- Native labels (plist, xml, ...)
I find the Flutter internationalization tools not really easy to use, and I wanted a simple tool for sharing translations.

