Skip to content

Commit 65cdac7

Browse files
committed
support ga/lb/mi
0 parents  commit 65cdac7

7 files changed

+3696
-0
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## flutter_localizations_extension
2+
3+
> Collect and adapt languages not supported by Flutter
4+
5+
#### Supported
6+
- Irish : ga
7+
- Luxembourgish: lb
8+
- Māori: mi
9+
10+
#### How to use
11+
12+
1. copy **ga_cupertino_localization.dart** and **ga_material_localization.dart** to project
13+
2. Add language support in **localizationsDelegates**
14+
```dart
15+
MaterialApp(
16+
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
17+
GlobalCupertinoLocalizations.delegate,
18+
GlobalMaterialLocalizations.delegate,
19+
GlobalWidgetsLocalizations.delegate,
20+
GaMaterialLocalizations.delegate,
21+
GaCupertinoLocalizations.delegate,
22+
],
23+
)
24+
```
25+
26+
27+
**If you want to add other languages, please submit a PR or issue.**

0 commit comments

Comments
 (0)