locale top-level property
Implementation
final Map<String, dynamic> locale = {
'Name': 'en',
'Months': {
1: 'January',
2: 'February',
3: 'March',
4: 'April',
5: 'May',
6: 'June',
7: 'July',
8: 'August',
9: 'September',
10: 'October',
11: 'November',
12: 'December'
},
'Weekdays': {
1: 'Monday',
2: 'Tuesday',
3: 'Wednesday',
4: 'Thursday',
5: 'Friday',
6: 'Saturday',
7: 'Sunday'
},
'AM': 'AM',
'PM': 'PM',
'RelativeTime': {
'future': 'in %s',
'past': '%s ago',
's': 'a few seconds',
'm': 'a minute',
'mm': '%d minutes',
'h': 'an hour',
'hh': '%d hours',
'd': 'a day',
'dd': '%d days',
'M': 'a month',
'MM': '%d months',
'y': 'a year',
'yy': '%d years'
}
};