Collect and adapt languages not supported by Flutter
- Irish : ga
- Luxembourgish: lb
- Māori: mi
- copy ga_cupertino_localization.dart and ga_material_localization.dart to project
- Add language support in localizationsDelegates
MaterialApp(
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
GlobalCupertinoLocalizations.delegate,
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GaMaterialLocalizations.delegate,
GaCupertinoLocalizations.delegate,
],
)
If you want to add other languages, please submit a PR or issue.