Unverified Commit d39e2bb7 authored by Greg Spencer's avatar Greg Spencer Committed by GitHub

Check in new diffs to material localizations (#44736)

Updates localizations to match what is now generated. It's unclear what caused the change: it didn't happen because of a flutter PR change, so we're still looking for where the source of the non-determinism is.  In the meantime, this will fix the build.
parent 99055c75
...@@ -17907,19 +17907,19 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh { ...@@ -17907,19 +17907,19 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh {
); );
@override @override
String get tabLabelRaw => r'第 $tabIndex 個標籤,總共 $tabCount 個'; String get tabLabelRaw => r'第 $tabIndex 個分頁 (共 $tabCount 個)';
@override @override
String get showAccountsLabel => r'顯示帳戶'; String get showAccountsLabel => r'顯示帳戶';
@override @override
String get modalBarrierDismissLabel => r'拒絕'; String get modalBarrierDismissLabel => r'關閉';
@override @override
String get hideAccountsLabel => r'隱藏帳戶'; String get hideAccountsLabel => r'隱藏帳戶';
@override @override
String get signedInLabel => r'已登入'; String get signedInLabel => r'已登入帳戶';
@override @override
String get openAppDrawerTooltip => r'開啟導覽選單'; String get openAppDrawerTooltip => r'開啟導覽選單';
...@@ -17946,16 +17946,16 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh { ...@@ -17946,16 +17946,16 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh {
String get showMenuTooltip => r'顯示選單'; String get showMenuTooltip => r'顯示選單';
@override @override
String get aboutListTileTitleRaw => r'關於$applicationName'; String get aboutListTileTitleRaw => r'關於「$applicationName」';
@override @override
String get licensesPageTitle => r'授權'; String get licensesPageTitle => r'授權';
@override @override
String get pageRowsInfoTitleRaw => r'第 $firstRow 至 $lastRow 列,共 $rowCount 列'; String get pageRowsInfoTitleRaw => r'第 $firstRow - $lastRow 列 (總共 $rowCount 列)';
@override @override
String get pageRowsInfoTitleApproximateRaw => r'第 $firstRow 至 $lastRow 列,共約 $rowCount 列'; String get pageRowsInfoTitleApproximateRaw => r'第 $firstRow - $lastRow 列 (總共約 $rowCount 列)';
@override @override
String get rowsPerPageTitle => r'每頁列數:'; String get rowsPerPageTitle => r'每頁列數:';
...@@ -17991,10 +17991,10 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh { ...@@ -17991,10 +17991,10 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh {
String get viewLicensesButtonLabel => r'查看授權'; String get viewLicensesButtonLabel => r'查看授權';
@override @override
String get timePickerHourModeAnnouncement => r'揀選小時'; String get timePickerHourModeAnnouncement => r'選取小時數';
@override @override
String get timePickerMinuteModeAnnouncement => r'揀選分鐘'; String get timePickerMinuteModeAnnouncement => r'選取分鐘數';
@override @override
String get drawerLabel => r'導覽選單'; String get drawerLabel => r'導覽選單';
...@@ -18006,16 +18006,16 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh { ...@@ -18006,16 +18006,16 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh {
String get dialogLabel => r'對話方塊'; String get dialogLabel => r'對話方塊';
@override @override
String get alertDialogLabel => r'通知'; String get alertDialogLabel => r'快訊';
@override @override
String get searchFieldLabel => r'搜尋'; String get searchFieldLabel => r'搜尋';
@override @override
String get reorderItemToStart => r'移開頭'; String get reorderItemToStart => r'移開頭';
@override @override
String get reorderItemToEnd => r'移到最後'; String get reorderItemToEnd => r'移至結尾';
@override @override
String get reorderItemUp => r'向上移'; String get reorderItemUp => r'向上移';
...@@ -18036,10 +18036,10 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh { ...@@ -18036,10 +18036,10 @@ class MaterialLocalizationZhHant extends MaterialLocalizationZh {
String get collapsedIconTapHint => r'展開'; String get collapsedIconTapHint => r'展開';
@override @override
String get remainingTextFieldCharacterCountOne => r'尚餘 1 個字元'; String get remainingTextFieldCharacterCountOne => r'還可輸入 1 個字元';
@override @override
String get remainingTextFieldCharacterCountOther => r'尚餘 $remainingCount 個字元'; String get remainingTextFieldCharacterCountOther => r'還可輸入 $remainingCount 個字元';
@override @override
String get refreshIndicatorSemanticLabel => r'重新整理'; String get refreshIndicatorSemanticLabel => r'重新整理';
...@@ -18067,69 +18067,69 @@ class MaterialLocalizationZhHantHk extends MaterialLocalizationZhHant { ...@@ -18067,69 +18067,69 @@ class MaterialLocalizationZhHantHk extends MaterialLocalizationZhHant {
decimalFormat: decimalFormat, decimalFormat: decimalFormat,
twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat, twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat,
); );
}
/// The translations for Chinese, as used in Taiwan, using the Han script (`zh_Hant_TW`).
class MaterialLocalizationZhHantTw extends MaterialLocalizationZhHant {
/// Create an instance of the translation bundle for Chinese, as used in Taiwan, using the Han script.
///
/// For details on the meaning of the arguments, see [GlobalMaterialLocalizations].
const MaterialLocalizationZhHantTw({
String localeName = 'zh_Hant_TW',
@required intl.DateFormat fullYearFormat,
@required intl.DateFormat mediumDateFormat,
@required intl.DateFormat longDateFormat,
@required intl.DateFormat yearMonthFormat,
@required intl.NumberFormat decimalFormat,
@required intl.NumberFormat twoDigitZeroPaddedFormat,
}) : super(
localeName: localeName,
fullYearFormat: fullYearFormat,
mediumDateFormat: mediumDateFormat,
longDateFormat: longDateFormat,
yearMonthFormat: yearMonthFormat,
decimalFormat: decimalFormat,
twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat,
);
@override @override
String get tabLabelRaw => r'第 $tabIndex 個分頁 (共 $tabCount 個)'; String get tabLabelRaw => r'第 $tabIndex 個標籤,總共 $tabCount 個';
@override @override
String get modalBarrierDismissLabel => r'關閉'; String get modalBarrierDismissLabel => r'拒絕';
@override @override
String get signedInLabel => r'已登入帳戶'; String get signedInLabel => r'已登入';
@override @override
String get aboutListTileTitleRaw => r'關於「$applicationName」'; String get aboutListTileTitleRaw => r'關於$applicationName';
@override @override
String get pageRowsInfoTitleRaw => r'第 $firstRow - $lastRow 列 (總共 $rowCount 列)'; String get pageRowsInfoTitleRaw => r'第 $firstRow 至 $lastRow 列,共 $rowCount 列';
@override @override
String get pageRowsInfoTitleApproximateRaw => r'第 $firstRow - $lastRow 列 (總共約 $rowCount 列)'; String get pageRowsInfoTitleApproximateRaw => r'第 $firstRow 至 $lastRow 列,共約 $rowCount 列';
@override @override
String get timePickerHourModeAnnouncement => r'選取小時數'; String get timePickerHourModeAnnouncement => r'揀選小時';
@override @override
String get timePickerMinuteModeAnnouncement => r'選取分鐘數'; String get timePickerMinuteModeAnnouncement => r'揀選分鐘';
@override @override
String get alertDialogLabel => r'快訊'; String get alertDialogLabel => r'通知';
@override @override
String get reorderItemToStart => r'移開頭'; String get reorderItemToStart => r'移開頭';
@override @override
String get reorderItemToEnd => r'移至結尾'; String get reorderItemToEnd => r'移到最後';
@override @override
String get remainingTextFieldCharacterCountOne => r'還可輸入 1 個字元'; String get remainingTextFieldCharacterCountOne => r'尚餘 1 個字元';
@override @override
String get remainingTextFieldCharacterCountOther => r'還可輸入 $remainingCount 個字元'; String get remainingTextFieldCharacterCountOther => r'尚餘 $remainingCount 個字元';
}
/// The translations for Chinese, as used in Taiwan, using the Han script (`zh_Hant_TW`).
class MaterialLocalizationZhHantTw extends MaterialLocalizationZhHant {
/// Create an instance of the translation bundle for Chinese, as used in Taiwan, using the Han script.
///
/// For details on the meaning of the arguments, see [GlobalMaterialLocalizations].
const MaterialLocalizationZhHantTw({
String localeName = 'zh_Hant_TW',
@required intl.DateFormat fullYearFormat,
@required intl.DateFormat mediumDateFormat,
@required intl.DateFormat longDateFormat,
@required intl.DateFormat yearMonthFormat,
@required intl.NumberFormat decimalFormat,
@required intl.NumberFormat twoDigitZeroPaddedFormat,
}) : super(
localeName: localeName,
fullYearFormat: fullYearFormat,
mediumDateFormat: mediumDateFormat,
longDateFormat: longDateFormat,
yearMonthFormat: yearMonthFormat,
decimalFormat: decimalFormat,
twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat,
);
} }
/// The translations for Zulu (`zu`). /// The translations for Zulu (`zu`).
......
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