Fix Tamil DateTime representation of AM/PM (#108185)

* init

* testS

* init

* accidentally committed wrong file
This commit is contained in:
Tae Hyung Kim 2022-07-25 11:33:06 -07:00 committed by GitHub
parent e74b9b5bef
commit e3b851a634
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 8 deletions

View file

@ -5,8 +5,8 @@
"datePickerMinuteSemanticsLabelOther": "$minute நிமிடங்கள்",
"datePickerDateOrder": "dmy",
"datePickerDateTimeOrder": "date_time_dayPeriod",
"anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM",
"anteMeridiemAbbreviation": "முற்பகல்",
"postMeridiemAbbreviation": "பிற்பகல்",
"todayLabel": "இன்று",
"alertDialogLabel": "விழிப்பூட்டல்",
"timerPickerHourLabelOne": "மணிநேரம்",

View file

@ -10811,7 +10811,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
String get alertDialogLabel => 'விழிப்பூட்டல்';
@override
String get anteMeridiemAbbreviation => 'AM';
String get anteMeridiemAbbreviation => 'முற்பகல்';
@override
String get copyButtonLabel => 'நகலெடு';
@ -10868,7 +10868,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
String get pasteButtonLabel => 'ஒட்டு';
@override
String get postMeridiemAbbreviation => 'PM';
String get postMeridiemAbbreviation => 'பிற்பகல்';
@override
String get searchTextFieldPlaceholderLabel => 'தேடுக';

View file

@ -34141,7 +34141,7 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations {
String get alertDialogLabel => 'விழிப்பூட்டல்';
@override
String get anteMeridiemAbbreviation => 'AM';
String get anteMeridiemAbbreviation => 'முற்பகல்';
@override
String get backButtonTooltip => 'முந்தைய பக்கம்';
@ -34432,7 +34432,7 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations {
String get popupMenuLabel => 'பாப்-அப் மெனு';
@override
String get postMeridiemAbbreviation => 'PM';
String get postMeridiemAbbreviation => 'பிற்பகல்';
@override
String get previousMonthTooltip => 'முந்தைய மாதம்';

View file

@ -39,8 +39,8 @@
"selectedRowCountTitleOther": "$selectedRowCount வரிசைகள் தேர்ந்தெடுக்கப்பட்டன",
"cancelButtonLabel": "ரத்துசெய்",
"viewLicensesButtonLabel": "உரிமங்களைக் காட்டு",
"anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM",
"anteMeridiemAbbreviation": "முற்பகல்",
"postMeridiemAbbreviation": "பிற்பகல்",
"timePickerHourModeAnnouncement": "மணிநேரத்தைத் தேர்ந்தெடுக்கவும்",
"timePickerMinuteModeAnnouncement": "நிமிடங்களைத் தேர்ந்தெடுக்கவும்",
"modalBarrierDismissLabel": "நிராகரிக்கும்",

View file

@ -113,6 +113,7 @@ void main() {
testWidgets('formats ${TimeOfDayFormat.a_space_h_colon_mm}', (WidgetTester tester) async {
expect(await formatTimeOfDay(tester, const Locale('zh'), const TimeOfDay(hour: 9, minute: 32)), '上午 9:32');
expect(await formatTimeOfDay(tester, const Locale('ta'), const TimeOfDay(hour: 9, minute: 32)), 'முற்பகல் 9:32');
});
});