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 @@
"datePickerMinuteSemanticsLabelOther": "$minute நிமிடங்கள்",
"datePickerDateOrder": "dmy",
"datePickerDateTimeOrder": "date_time_dayPeriod",
"anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM",
"anteMeridiemAbbreviation": "முற்பகல்",
"postMeridiemAbbreviation": "பிற்பகல்",
"todayLabel": "இன்று",
"alertDialogLabel": "விழிப்பூட்டல்",
"timerPickerHourLabelOne": "மணிநேரம்",
......
......@@ -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 => 'தேடுக';
......
......@@ -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 => 'முந்தைய மாதம்';
......
......@@ -39,8 +39,8 @@
"selectedRowCountTitleOther": "$selectedRowCount வரிசைகள் தேர்ந்தெடுக்கப்பட்டன",
"cancelButtonLabel": "ரத்துசெய்",
"viewLicensesButtonLabel": "உரிமங்களைக் காட்டு",
"anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM",
"anteMeridiemAbbreviation": "முற்பகல்",
"postMeridiemAbbreviation": "பிற்பகல்",
"timePickerHourModeAnnouncement": "மணிநேரத்தைத் தேர்ந்தெடுக்கவும்",
"timePickerMinuteModeAnnouncement": "நிமிடங்களைத் தேர்ந்தெடுக்கவும்",
"modalBarrierDismissLabel": "நிராகரிக்கும்",
......
......@@ -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');
});
});
......
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