Unverified Commit e3b851a6 authored by Tae Hyung Kim's avatar Tae Hyung Kim Committed by GitHub

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

* init

* testS

* init

* accidentally committed wrong file
parent e74b9b5b
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
"datePickerMinuteSemanticsLabelOther": "$minute நிமிடங்கள்", "datePickerMinuteSemanticsLabelOther": "$minute நிமிடங்கள்",
"datePickerDateOrder": "dmy", "datePickerDateOrder": "dmy",
"datePickerDateTimeOrder": "date_time_dayPeriod", "datePickerDateTimeOrder": "date_time_dayPeriod",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "முற்பகல்",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "பிற்பகல்",
"todayLabel": "இன்று", "todayLabel": "இன்று",
"alertDialogLabel": "விழிப்பூட்டல்", "alertDialogLabel": "விழிப்பூட்டல்",
"timerPickerHourLabelOne": "மணிநேரம்", "timerPickerHourLabelOne": "மணிநேரம்",
......
...@@ -10811,7 +10811,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations { ...@@ -10811,7 +10811,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
String get alertDialogLabel => 'விழிப்பூட்டல்'; String get alertDialogLabel => 'விழிப்பூட்டல்';
@override @override
String get anteMeridiemAbbreviation => 'AM'; String get anteMeridiemAbbreviation => 'முற்பகல்';
@override @override
String get copyButtonLabel => 'நகலெடு'; String get copyButtonLabel => 'நகலெடு';
...@@ -10868,7 +10868,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations { ...@@ -10868,7 +10868,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
String get pasteButtonLabel => 'ஒட்டு'; String get pasteButtonLabel => 'ஒட்டு';
@override @override
String get postMeridiemAbbreviation => 'PM'; String get postMeridiemAbbreviation => 'பிற்பகல்';
@override @override
String get searchTextFieldPlaceholderLabel => 'தேடுக'; String get searchTextFieldPlaceholderLabel => 'தேடுக';
......
...@@ -34141,7 +34141,7 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations { ...@@ -34141,7 +34141,7 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations {
String get alertDialogLabel => 'விழிப்பூட்டல்'; String get alertDialogLabel => 'விழிப்பூட்டல்';
@override @override
String get anteMeridiemAbbreviation => 'AM'; String get anteMeridiemAbbreviation => 'முற்பகல்';
@override @override
String get backButtonTooltip => 'முந்தைய பக்கம்'; String get backButtonTooltip => 'முந்தைய பக்கம்';
...@@ -34432,7 +34432,7 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations { ...@@ -34432,7 +34432,7 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations {
String get popupMenuLabel => 'பாப்-அப் மெனு'; String get popupMenuLabel => 'பாப்-அப் மெனு';
@override @override
String get postMeridiemAbbreviation => 'PM'; String get postMeridiemAbbreviation => 'பிற்பகல்';
@override @override
String get previousMonthTooltip => 'முந்தைய மாதம்'; String get previousMonthTooltip => 'முந்தைய மாதம்';
......
...@@ -39,8 +39,8 @@ ...@@ -39,8 +39,8 @@
"selectedRowCountTitleOther": "$selectedRowCount வரிசைகள் தேர்ந்தெடுக்கப்பட்டன", "selectedRowCountTitleOther": "$selectedRowCount வரிசைகள் தேர்ந்தெடுக்கப்பட்டன",
"cancelButtonLabel": "ரத்துசெய்", "cancelButtonLabel": "ரத்துசெய்",
"viewLicensesButtonLabel": "உரிமங்களைக் காட்டு", "viewLicensesButtonLabel": "உரிமங்களைக் காட்டு",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "முற்பகல்",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "பிற்பகல்",
"timePickerHourModeAnnouncement": "மணிநேரத்தைத் தேர்ந்தெடுக்கவும்", "timePickerHourModeAnnouncement": "மணிநேரத்தைத் தேர்ந்தெடுக்கவும்",
"timePickerMinuteModeAnnouncement": "நிமிடங்களைத் தேர்ந்தெடுக்கவும்", "timePickerMinuteModeAnnouncement": "நிமிடங்களைத் தேர்ந்தெடுக்கவும்",
"modalBarrierDismissLabel": "நிராகரிக்கும்", "modalBarrierDismissLabel": "நிராகரிக்கும்",
......
...@@ -113,6 +113,7 @@ void main() { ...@@ -113,6 +113,7 @@ void main() {
testWidgets('formats ${TimeOfDayFormat.a_space_h_colon_mm}', (WidgetTester tester) async { 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('zh'), const TimeOfDay(hour: 9, minute: 32)), '上午 9:32');
expect(await formatTimeOfDay(tester, const Locale('ta'), const TimeOfDay(hour: 9, minute: 32)), 'முற்பகல் 9:32');
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment