Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support Azerbaijani language (az) #72

Open
cancavid opened this issue Sep 28, 2024 · 0 comments
Open

add support Azerbaijani language (az) #72

cancavid opened this issue Sep 28, 2024 · 0 comments

Comments

@cancavid
Copy link

part of 'date_picker_i18n.dart';

/// Azerbaijani
class _StringsAz extends _StringsI18n {
const _StringsAz();

@OverRide
String getCancelText() {
return 'İmtina et';
}

@OverRide
String getDoneText() {
return 'Təsdiqlə';
}

@OverRide
List getMonths() {
return [
"Yanvar",
"Fevral",
"Mart",
"Aprel",
"May",
"İyun",
"İyul",
"Avqust",
"Sentyabr",
"Oktyabr",
"Noyabr",
"Dekabr"
];
}

@OverRide
List getWeeksFull() {
return [
"Bazar ertəsi",
"Çərşənbə axşamı",
"Çərşənbə",
"Cümə axşamı",
"Cümə",
"Şənbə",
"Bazar",
];
}

@OverRide
List getWeeksShort() {
return [
"Be",
"Ça",
"Ç",
"Ca",
"C",
"Ş",
"B",
];
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant