-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Description
Hi Flutter community,
Is it possible to add languages such as Lithuanian Latvian, Estonian to official flutter localization?
The languages have been translated and exist in the official flutter localization list
I've tested the calendar widget with various languages and it works on the bellow mentioned languages but not lt, lv, et.
These are the languages I've tested on my ShowDatePicker widget
localizationsDelegates: GlobalMaterialLocalizations.delegates,
supportedLocales: [
const Locale('en', 'US'), // English working
const Locale('he', 'IL'), // Hebrew working
const Locale('lt', 'LT'), // lt_LT not supported
const Locale('lv', 'LV'), // lv_LV not supported
const Locale('et', 'EE'), // et_EE not supported
const Locale('pl', 'PL'), //working
const Locale('es', 'ES'), //working
I'm aware it is possible to add the language support unoficially after searching github, but having a legal way would help us :-)!