Unverified Commit b1ecf1ea authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Add localizations for navigation menu, popup menu, dialog, and alert (#16633)

* add localizations for navigation menu, popup menu, dialog, and alert
parent 85be28d3
...@@ -144,6 +144,22 @@ abstract class MaterialLocalizations { ...@@ -144,6 +144,22 @@ abstract class MaterialLocalizations {
/// user interaction with elements behind it. /// user interaction with elements behind it.
String get modalBarrierDismissLabel; String get modalBarrierDismissLabel;
/// Label read out by accessibility tools (TalkBack or VoiceOver) when a
/// drawer widget is opened.
String get drawerLabel;
/// Label read out by accessibility tools (TalkBack or VoiceOver) when a
/// popup menu widget is opened.
String get popupMenuLabel;
/// Label read out by accessibility tools (TalkBack or VoiceOver) when a
/// dialog widget is opened.
String get dialogLabel;
/// Label read out by accessibility tools (TalkBack or VoiceOver) when an
/// alert dialog widget is opened.
String get alertDialogLabel;
/// The format used to lay out the time picker. /// The format used to lay out the time picker.
/// ///
/// The documentation for [TimeOfDayFormat] enum values provides details on /// The documentation for [TimeOfDayFormat] enum values provides details on
...@@ -509,6 +525,18 @@ class DefaultMaterialLocalizations implements MaterialLocalizations { ...@@ -509,6 +525,18 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
@override @override
String get showMenuTooltip => 'Show menu'; String get showMenuTooltip => 'Show menu';
@override
String get drawerLabel => 'Navigation menu';
@override
String get popupMenuLabel => 'Popup menu';
@override
String get dialogLabel => 'Dialog';
@override
String get alertDialogLabel => 'Alert';
@override @override
String aboutListTileTitle(String applicationName) => 'About $applicationName'; String aboutListTileTitle(String applicationName) => 'About $applicationName';
......
...@@ -30,6 +30,10 @@ void main() { ...@@ -30,6 +30,10 @@ void main() {
expect(localizations.selectAllButtonLabel, isNotNull); expect(localizations.selectAllButtonLabel, isNotNull);
expect(localizations.viewLicensesButtonLabel, isNotNull); expect(localizations.viewLicensesButtonLabel, isNotNull);
expect(localizations.modalBarrierDismissLabel, isNotNull); expect(localizations.modalBarrierDismissLabel, isNotNull);
expect(localizations.drawerLabel, isNotNull);
expect(localizations.popupMenuLabel, isNotNull);
expect(localizations.dialogLabel, isNotNull);
expect(localizations.alertDialogLabel, isNotNull);
expect(localizations.aboutListTileTitle('FOO'), isNotNull); expect(localizations.aboutListTileTitle('FOO'), isNotNull);
expect(localizations.aboutListTileTitle('FOO'), contains('FOO')); expect(localizations.aboutListTileTitle('FOO'), contains('FOO'));
......
...@@ -60,6 +60,10 @@ class TranslationBundle { ...@@ -60,6 +60,10 @@ class TranslationBundle {
String get hideAccountsLabel => parent?.hideAccountsLabel; String get hideAccountsLabel => parent?.hideAccountsLabel;
String get showAccountsLabel => parent?.showAccountsLabel; String get showAccountsLabel => parent?.showAccountsLabel;
String get modalBarrierDismissLabel => parent?.modalBarrierDismissLabel; String get modalBarrierDismissLabel => parent?.modalBarrierDismissLabel;
String get drawerLabel => parent?.drawerLabel;
String get popupMenuLabel => parent?.popupMenuLabel;
String get dialogLabel => parent?.dialogLabel;
String get alertDialogLabel => parent?.alertDialogLabel;
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -105,6 +109,10 @@ class _Bundle_ar extends TranslationBundle { ...@@ -105,6 +109,10 @@ class _Bundle_ar extends TranslationBundle {
@override String get hideAccountsLabel => r'إخفاء الحسابات'; @override String get hideAccountsLabel => r'إخفاء الحسابات';
@override String get showAccountsLabel => r'إظهار الحسابات'; @override String get showAccountsLabel => r'إظهار الحسابات';
@override String get modalBarrierDismissLabel => r'رفض'; @override String get modalBarrierDismissLabel => r'رفض';
@override String get drawerLabel => r'قائمة الإبحار';
@override String get popupMenuLabel => r'القائمة المنبثقة';
@override String get dialogLabel => r'الحوار';
@override String get alertDialogLabel => r'مربع حوار التنبيه';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -147,6 +155,10 @@ class _Bundle_de extends TranslationBundle { ...@@ -147,6 +155,10 @@ class _Bundle_de extends TranslationBundle {
@override String get hideAccountsLabel => r'Konten ausblenden'; @override String get hideAccountsLabel => r'Konten ausblenden';
@override String get showAccountsLabel => r'Konten anzeigen'; @override String get showAccountsLabel => r'Konten anzeigen';
@override String get modalBarrierDismissLabel => r'Schließen'; @override String get modalBarrierDismissLabel => r'Schließen';
@override String get drawerLabel => r'Navigationsmenü';
@override String get popupMenuLabel => r'Popup-Menü';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Aufmerksam';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -189,6 +201,10 @@ class _Bundle_en extends TranslationBundle { ...@@ -189,6 +201,10 @@ class _Bundle_en extends TranslationBundle {
@override String get signedInLabel => r'Signed in'; @override String get signedInLabel => r'Signed in';
@override String get hideAccountsLabel => r'Hide accounts'; @override String get hideAccountsLabel => r'Hide accounts';
@override String get showAccountsLabel => r'Show accounts'; @override String get showAccountsLabel => r'Show accounts';
@override String get drawerLabel => r'Navigation menu';
@override String get popupMenuLabel => r'Popup menu';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Alert';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -231,6 +247,10 @@ class _Bundle_es extends TranslationBundle { ...@@ -231,6 +247,10 @@ class _Bundle_es extends TranslationBundle {
@override String get hideAccountsLabel => r'Ocultar cuentas'; @override String get hideAccountsLabel => r'Ocultar cuentas';
@override String get showAccountsLabel => r'Mostrar cuentas'; @override String get showAccountsLabel => r'Mostrar cuentas';
@override String get modalBarrierDismissLabel => r'Ignorar'; @override String get modalBarrierDismissLabel => r'Ignorar';
@override String get drawerLabel => r'Menú de Navegación';
@override String get popupMenuLabel => r'Menú emergente';
@override String get dialogLabel => r'Diálogo';
@override String get alertDialogLabel => r'Alerta';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -272,6 +292,10 @@ class _Bundle_fa extends TranslationBundle { ...@@ -272,6 +292,10 @@ class _Bundle_fa extends TranslationBundle {
@override String get hideAccountsLabel => r'پنهان کردن حساب‌ها'; @override String get hideAccountsLabel => r'پنهان کردن حساب‌ها';
@override String get showAccountsLabel => r'نشان دادن حساب‌ها'; @override String get showAccountsLabel => r'نشان دادن حساب‌ها';
@override String get modalBarrierDismissLabel => r'نپذیرفتن'; @override String get modalBarrierDismissLabel => r'نپذیرفتن';
@override String get drawerLabel => r'منوی هدایت';
@override String get popupMenuLabel => r'منوی پنجره';
@override String get dialogLabel => r'گفتگو';
@override String get alertDialogLabel => r'هشدار';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -314,6 +338,10 @@ class _Bundle_fr extends TranslationBundle { ...@@ -314,6 +338,10 @@ class _Bundle_fr extends TranslationBundle {
@override String get hideAccountsLabel => r'Masquer les comptes'; @override String get hideAccountsLabel => r'Masquer les comptes';
@override String get showAccountsLabel => r'Afficher les comptes'; @override String get showAccountsLabel => r'Afficher les comptes';
@override String get modalBarrierDismissLabel => r'Ignorer'; @override String get modalBarrierDismissLabel => r'Ignorer';
@override String get drawerLabel => r'le menu de navigation';
@override String get popupMenuLabel => r'Menu contextuel';
@override String get dialogLabel => r'Dialogue';
@override String get alertDialogLabel => r'Alerte';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -355,6 +383,10 @@ class _Bundle_gsw extends TranslationBundle { ...@@ -355,6 +383,10 @@ class _Bundle_gsw extends TranslationBundle {
@override String get anteMeridiemAbbreviation => r'VORM.'; @override String get anteMeridiemAbbreviation => r'VORM.';
@override String get postMeridiemAbbreviation => r'NACHM.'; @override String get postMeridiemAbbreviation => r'NACHM.';
@override String get modalBarrierDismissLabel => r'Schließen'; @override String get modalBarrierDismissLabel => r'Schließen';
@override String get drawerLabel => r'Navigationsmenü';
@override String get popupMenuLabel => r'Popup-Menü';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Aufmerksam';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -398,6 +430,10 @@ class _Bundle_he extends TranslationBundle { ...@@ -398,6 +430,10 @@ class _Bundle_he extends TranslationBundle {
@override String get hideAccountsLabel => r'הסתרת החשבונות'; @override String get hideAccountsLabel => r'הסתרת החשבונות';
@override String get showAccountsLabel => r'הצגת החשבונות'; @override String get showAccountsLabel => r'הצגת החשבונות';
@override String get modalBarrierDismissLabel => r'סגירה'; @override String get modalBarrierDismissLabel => r'סגירה';
@override String get drawerLabel => r'תפריט ניווט';
@override String get popupMenuLabel => r'תפריט קופץ';
@override String get dialogLabel => r'דיאלוג';
@override String get alertDialogLabel => r'עֵרָנִי';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -439,6 +475,10 @@ class _Bundle_id extends TranslationBundle { ...@@ -439,6 +475,10 @@ class _Bundle_id extends TranslationBundle {
@override String get signedInLabel => r'Telah login'; @override String get signedInLabel => r'Telah login';
@override String get hideAccountsLabel => r'Sembunyikan akun'; @override String get hideAccountsLabel => r'Sembunyikan akun';
@override String get showAccountsLabel => r'Tampilkan akun'; @override String get showAccountsLabel => r'Tampilkan akun';
@override String get drawerLabel => r'Menu navigasi';
@override String get popupMenuLabel => r'Menu popup';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Waspada';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -480,6 +520,10 @@ class _Bundle_it extends TranslationBundle { ...@@ -480,6 +520,10 @@ class _Bundle_it extends TranslationBundle {
@override String get hideAccountsLabel => r'Nascondi account'; @override String get hideAccountsLabel => r'Nascondi account';
@override String get showAccountsLabel => r'Mostra account'; @override String get showAccountsLabel => r'Mostra account';
@override String get modalBarrierDismissLabel => r'Ignora'; @override String get modalBarrierDismissLabel => r'Ignora';
@override String get drawerLabel => r'Menu di navigazione';
@override String get popupMenuLabel => r'Menù popup';
@override String get dialogLabel => r'Dialogo';
@override String get alertDialogLabel => r'Mettere in guardia';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -521,6 +565,10 @@ class _Bundle_ja extends TranslationBundle { ...@@ -521,6 +565,10 @@ class _Bundle_ja extends TranslationBundle {
@override String get hideAccountsLabel => r'アカウントを非表示'; @override String get hideAccountsLabel => r'アカウントを非表示';
@override String get showAccountsLabel => r'アカウントを表示'; @override String get showAccountsLabel => r'アカウントを表示';
@override String get modalBarrierDismissLabel => r'閉じる'; @override String get modalBarrierDismissLabel => r'閉じる';
@override String get drawerLabel => r'ナビゲーションメニュー';
@override String get popupMenuLabel => r'ポップアップメニュー';
@override String get dialogLabel => r'ダイアログ';
@override String get alertDialogLabel => r'アラート';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -562,6 +610,10 @@ class _Bundle_ko extends TranslationBundle { ...@@ -562,6 +610,10 @@ class _Bundle_ko extends TranslationBundle {
@override String get hideAccountsLabel => r'계정 숨기기'; @override String get hideAccountsLabel => r'계정 숨기기';
@override String get showAccountsLabel => r'계정 표시'; @override String get showAccountsLabel => r'계정 표시';
@override String get modalBarrierDismissLabel => r'닫기'; @override String get modalBarrierDismissLabel => r'닫기';
@override String get drawerLabel => r'탐색 메뉴';
@override String get popupMenuLabel => r'팝업 메뉴';
@override String get dialogLabel => r'대화';
@override String get alertDialogLabel => r'경보';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -603,6 +655,10 @@ class _Bundle_nl extends TranslationBundle { ...@@ -603,6 +655,10 @@ class _Bundle_nl extends TranslationBundle {
@override String get hideAccountsLabel => r'Accounts verbergen'; @override String get hideAccountsLabel => r'Accounts verbergen';
@override String get showAccountsLabel => r'Accounts weergeven'; @override String get showAccountsLabel => r'Accounts weergeven';
@override String get modalBarrierDismissLabel => r'Sluiten'; @override String get modalBarrierDismissLabel => r'Sluiten';
@override String get drawerLabel => r'Navigatie menu';
@override String get popupMenuLabel => r'Popup menu';
@override String get dialogLabel => r'Dialoog';
@override String get alertDialogLabel => r'Alarm';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -644,6 +700,10 @@ class _Bundle_no extends TranslationBundle { ...@@ -644,6 +700,10 @@ class _Bundle_no extends TranslationBundle {
@override String get signedInLabel => r'Pålogget'; @override String get signedInLabel => r'Pålogget';
@override String get hideAccountsLabel => r'Skjul kontoer'; @override String get hideAccountsLabel => r'Skjul kontoer';
@override String get showAccountsLabel => r'Vis kontoer'; @override String get showAccountsLabel => r'Vis kontoer';
@override String get drawerLabel => r'Navigasjonsmeny';
@override String get popupMenuLabel => r'Popup meny';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Varsling';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -687,6 +747,10 @@ class _Bundle_pl extends TranslationBundle { ...@@ -687,6 +747,10 @@ class _Bundle_pl extends TranslationBundle {
@override String get hideAccountsLabel => r'Ukryj konta'; @override String get hideAccountsLabel => r'Ukryj konta';
@override String get showAccountsLabel => r'Pokaż konta'; @override String get showAccountsLabel => r'Pokaż konta';
@override String get modalBarrierDismissLabel => r'Zamknij'; @override String get modalBarrierDismissLabel => r'Zamknij';
@override String get drawerLabel => r'Menu nawigacji';
@override String get popupMenuLabel => r'Menu podręczne';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Alarm';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -725,6 +789,10 @@ class _Bundle_ps extends TranslationBundle { ...@@ -725,6 +789,10 @@ class _Bundle_ps extends TranslationBundle {
@override String get hideAccountsLabel => r'حسابونه پټ کړئ'; @override String get hideAccountsLabel => r'حسابونه پټ کړئ';
@override String get showAccountsLabel => r'حسابونه ښکاره کړئ'; @override String get showAccountsLabel => r'حسابونه ښکاره کړئ';
@override String get modalBarrierDismissLabel => r'رد کړه'; @override String get modalBarrierDismissLabel => r'رد کړه';
@override String get drawerLabel => r'د نیویگیشن مینو';
@override String get popupMenuLabel => r'د پاپ اپ مینو';
@override String get dialogLabel => r'خبرې اترې';
@override String get alertDialogLabel => r'خبرتیا';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -766,6 +834,10 @@ class _Bundle_pt extends TranslationBundle { ...@@ -766,6 +834,10 @@ class _Bundle_pt extends TranslationBundle {
@override String get hideAccountsLabel => r'Ocultar contas'; @override String get hideAccountsLabel => r'Ocultar contas';
@override String get showAccountsLabel => r'Mostrar contas'; @override String get showAccountsLabel => r'Mostrar contas';
@override String get modalBarrierDismissLabel => r'Dispensar'; @override String get modalBarrierDismissLabel => r'Dispensar';
@override String get drawerLabel => r'Menu de navegação';
@override String get popupMenuLabel => r'Menu popup';
@override String get dialogLabel => r'Diálogo';
@override String get alertDialogLabel => r'Alerta';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -809,6 +881,10 @@ class _Bundle_ro extends TranslationBundle { ...@@ -809,6 +881,10 @@ class _Bundle_ro extends TranslationBundle {
@override String get hideAccountsLabel => r'Ascundeți conturile'; @override String get hideAccountsLabel => r'Ascundeți conturile';
@override String get showAccountsLabel => r'Afișați conturile'; @override String get showAccountsLabel => r'Afișați conturile';
@override String get modalBarrierDismissLabel => r'Închideți'; @override String get modalBarrierDismissLabel => r'Închideți';
@override String get drawerLabel => r'Meniu de navigatie';
@override String get popupMenuLabel => r'Meniu pop-up';
@override String get dialogLabel => r'Dialog';
@override String get alertDialogLabel => r'Alerta';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -853,6 +929,10 @@ class _Bundle_ru extends TranslationBundle { ...@@ -853,6 +929,10 @@ class _Bundle_ru extends TranslationBundle {
@override String get hideAccountsLabel => r'Скрыть аккаунты'; @override String get hideAccountsLabel => r'Скрыть аккаунты';
@override String get showAccountsLabel => r'Показать аккаунты'; @override String get showAccountsLabel => r'Показать аккаунты';
@override String get modalBarrierDismissLabel => r'Закрыть'; @override String get modalBarrierDismissLabel => r'Закрыть';
@override String get drawerLabel => r'Меню навигации';
@override String get popupMenuLabel => r'Всплывающее меню';
@override String get dialogLabel => r'диалог';
@override String get alertDialogLabel => r'бдительный';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -894,6 +974,10 @@ class _Bundle_th extends TranslationBundle { ...@@ -894,6 +974,10 @@ class _Bundle_th extends TranslationBundle {
@override String get hideAccountsLabel => r'ซ่อนบัญชี'; @override String get hideAccountsLabel => r'ซ่อนบัญชี';
@override String get showAccountsLabel => r'แสดงบัญชี'; @override String get showAccountsLabel => r'แสดงบัญชี';
@override String get modalBarrierDismissLabel => r'ปิด'; @override String get modalBarrierDismissLabel => r'ปิด';
@override String get drawerLabel => r'เมนูนำทาง';
@override String get popupMenuLabel => r'เมนูป๊อปอัพ';
@override String get dialogLabel => r'โต้ตอบ';
@override String get alertDialogLabel => r'เตือนภัย';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -935,6 +1019,10 @@ class _Bundle_tr extends TranslationBundle { ...@@ -935,6 +1019,10 @@ class _Bundle_tr extends TranslationBundle {
@override String get hideAccountsLabel => r'Hesapları gizle'; @override String get hideAccountsLabel => r'Hesapları gizle';
@override String get showAccountsLabel => r'Hesapları göster'; @override String get showAccountsLabel => r'Hesapları göster';
@override String get modalBarrierDismissLabel => r'Kapat'; @override String get modalBarrierDismissLabel => r'Kapat';
@override String get drawerLabel => r'Gezinme menüsü';
@override String get popupMenuLabel => r'Açılır menü';
@override String get dialogLabel => r'Diyalog';
@override String get alertDialogLabel => r'Alarm';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -976,6 +1064,10 @@ class _Bundle_ur extends TranslationBundle { ...@@ -976,6 +1064,10 @@ class _Bundle_ur extends TranslationBundle {
@override String get hideAccountsLabel => r'اکاؤنٹس چھپائیں'; @override String get hideAccountsLabel => r'اکاؤنٹس چھپائیں';
@override String get showAccountsLabel => r'اکاؤنٹس دکھائیں'; @override String get showAccountsLabel => r'اکاؤنٹس دکھائیں';
@override String get modalBarrierDismissLabel => r'برخاست کریں'; @override String get modalBarrierDismissLabel => r'برخاست کریں';
@override String get drawerLabel => r'نیویگیشن مینو';
@override String get popupMenuLabel => r'پاپ اپ مینو';
@override String get dialogLabel => r'ڈائیلاگ';
@override String get alertDialogLabel => r'انتباہ';
} }
// ignore: camel_case_types // ignore: camel_case_types
...@@ -1017,6 +1109,10 @@ class _Bundle_zh extends TranslationBundle { ...@@ -1017,6 +1109,10 @@ class _Bundle_zh extends TranslationBundle {
@override String get hideAccountsLabel => r'隐藏帐号'; @override String get hideAccountsLabel => r'隐藏帐号';
@override String get showAccountsLabel => r'显示帐号'; @override String get showAccountsLabel => r'显示帐号';
@override String get modalBarrierDismissLabel => r'关闭'; @override String get modalBarrierDismissLabel => r'关闭';
@override String get drawerLabel => r'导航菜单';
@override String get popupMenuLabel => r'弹出菜单';
@override String get dialogLabel => r'对话';
@override String get alertDialogLabel => r'警报';
} }
// ignore: camel_case_types // ignore: camel_case_types
......
...@@ -38,5 +38,9 @@ ...@@ -38,5 +38,9 @@
"signedInLabel": "تم تسجيل الدخول", "signedInLabel": "تم تسجيل الدخول",
"hideAccountsLabel": "إخفاء الحسابات", "hideAccountsLabel": "إخفاء الحسابات",
"showAccountsLabel": "إظهار الحسابات", "showAccountsLabel": "إظهار الحسابات",
"modalBarrierDismissLabel": "رفض" "modalBarrierDismissLabel": "رفض",
"drawerLabel": "قائمة الإبحار",
"popupMenuLabel": "القائمة المنبثقة",
"dialogLabel": "الحوار",
"alertDialogLabel": "مربع حوار التنبيه"
} }
...@@ -35,5 +35,9 @@ ...@@ -35,5 +35,9 @@
"signedInLabel": "Angemeldet", "signedInLabel": "Angemeldet",
"hideAccountsLabel": "Konten ausblenden", "hideAccountsLabel": "Konten ausblenden",
"showAccountsLabel": "Konten anzeigen", "showAccountsLabel": "Konten anzeigen",
"modalBarrierDismissLabel": "Schließen" "modalBarrierDismissLabel": "Schließen",
"drawerLabel": "Navigationsmenü",
"popupMenuLabel": "Popup-Menü",
"dialogLabel": "Dialog",
"alertDialogLabel": "Aufmerksam"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "LIZENZEN ANZEIGEN", "viewLicensesButtonLabel": "LIZENZEN ANZEIGEN",
"anteMeridiemAbbreviation": "VORM.", "anteMeridiemAbbreviation": "VORM.",
"postMeridiemAbbreviation": "NACHM.", "postMeridiemAbbreviation": "NACHM.",
"modalBarrierDismissLabel": "Schliessen" "modalBarrierDismissLabel": "Schliessen",
"drawerLabel": "Navigationsmenü",
"popupMenuLabel": "Popup-Menü",
"dialogLabel": "Dialog",
"alertDialogLabel": "Aufmerksam"
} }
...@@ -179,5 +179,25 @@ ...@@ -179,5 +179,25 @@
"showAccountsLabel": "Show accounts", "showAccountsLabel": "Show accounts",
"@showAccountsLabel": { "@showAccountsLabel": {
"description": "The accessibility label used for the button on a UserAccountsDrawerHeader that shows the list of accounts." "description": "The accessibility label used for the button on a UserAccountsDrawerHeader that shows the list of accounts."
},
"drawerLabel": "Navigation menu",
"@drawerLabel": {
"description": "The audio announcement made when the Drawer is opened."
},
"popupMenuLabel": "Popup menu",
"@popupMenuLabel": {
"description": "The audio announcement made when a PopupMenu is opened."
},
"dialogLabel": "Dialog",
"@dialogLabel": {
"description": "The audio announcement made when a Dialog is opened."
},
"alertDialogLabel": "Alert",
"@dialogLabel": {
"description": "The audio announcement made when an AlertDialog is opened."
} }
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"showMenuTooltip": "Show menu", "showMenuTooltip": "Show menu",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"showMenuTooltip": "Show menu", "showMenuTooltip": "Show menu",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"showMenuTooltip": "Show menu", "showMenuTooltip": "Show menu",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Dismiss" "modalBarrierDismissLabel": "Dismiss",
"drawerLabel": "Navigation menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alert"
} }
...@@ -35,5 +35,9 @@ ...@@ -35,5 +35,9 @@
"signedInLabel": "Sesión iniciada", "signedInLabel": "Sesión iniciada",
"hideAccountsLabel": "Ocultar cuentas", "hideAccountsLabel": "Ocultar cuentas",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Ignorar" "modalBarrierDismissLabel": "Ignorar",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "h:mm a", "timeOfDayFormat": "h:mm a",
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m." "postMeridiemAbbreviation": "p.m.",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "a.m.", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.", "postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos" "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"drawerLabel": "Menú de Navegación",
"popupMenuLabel": "Menú emergente",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "واردشده به سیستم", "signedInLabel": "واردشده به سیستم",
"hideAccountsLabel": "پنهان کردن حساب‌ها", "hideAccountsLabel": "پنهان کردن حساب‌ها",
"showAccountsLabel": "نشان دادن حساب‌ها", "showAccountsLabel": "نشان دادن حساب‌ها",
"modalBarrierDismissLabel": "نپذیرفتن" "modalBarrierDismissLabel": "نپذیرفتن",
"drawerLabel": "منوی هدایت",
"popupMenuLabel": "منوی پنجره",
"dialogLabel": "گفتگو",
"alertDialogLabel": "هشدار"
} }
...@@ -35,5 +35,9 @@ ...@@ -35,5 +35,9 @@
"signedInLabel": "Connecté", "signedInLabel": "Connecté",
"hideAccountsLabel": "Masquer les comptes", "hideAccountsLabel": "Masquer les comptes",
"showAccountsLabel": "Afficher les comptes", "showAccountsLabel": "Afficher les comptes",
"modalBarrierDismissLabel": "Ignorer" "modalBarrierDismissLabel": "Ignorer",
"drawerLabel": "le menu de navigation",
"popupMenuLabel": "Menu contextuel",
"dialogLabel": "Dialogue",
"alertDialogLabel": "Alerte"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "LIZENZEN ANZEIGEN", "viewLicensesButtonLabel": "LIZENZEN ANZEIGEN",
"anteMeridiemAbbreviation": "VORM.", "anteMeridiemAbbreviation": "VORM.",
"postMeridiemAbbreviation": "NACHM.", "postMeridiemAbbreviation": "NACHM.",
"modalBarrierDismissLabel": "Schließen" "modalBarrierDismissLabel": "Schließen",
"drawerLabel": "Navigationsmenü",
"popupMenuLabel": "Popup-Menü",
"dialogLabel": "Dialog",
"alertDialogLabel": "Aufmerksam"
} }
...@@ -36,5 +36,9 @@ ...@@ -36,5 +36,9 @@
"signedInLabel": "מחובר", "signedInLabel": "מחובר",
"hideAccountsLabel": "הסתרת החשבונות", "hideAccountsLabel": "הסתרת החשבונות",
"showAccountsLabel": "הצגת החשבונות", "showAccountsLabel": "הצגת החשבונות",
"modalBarrierDismissLabel": "סגירה" "modalBarrierDismissLabel": "סגירה",
"drawerLabel": "תפריט ניווט",
"popupMenuLabel": "תפריט קופץ",
"dialogLabel": "דיאלוג",
"alertDialogLabel": "עֵרָנִי"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"modalBarrierDismissLabel": "Tutup", "modalBarrierDismissLabel": "Tutup",
"signedInLabel": "Telah login", "signedInLabel": "Telah login",
"hideAccountsLabel": "Sembunyikan akun", "hideAccountsLabel": "Sembunyikan akun",
"showAccountsLabel": "Tampilkan akun" "showAccountsLabel": "Tampilkan akun",
"drawerLabel": "Menu navigasi",
"popupMenuLabel": "Menu popup",
"dialogLabel": "Dialog",
"alertDialogLabel": "Waspada"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "Connesso", "signedInLabel": "Connesso",
"hideAccountsLabel": "Nascondi account", "hideAccountsLabel": "Nascondi account",
"showAccountsLabel": "Mostra account", "showAccountsLabel": "Mostra account",
"modalBarrierDismissLabel": "Ignora" "modalBarrierDismissLabel": "Ignora",
"drawerLabel": "Menu di navigazione",
"popupMenuLabel": "Menù popup",
"dialogLabel": "Dialogo",
"alertDialogLabel": "Mettere in guardia"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "ログイン中", "signedInLabel": "ログイン中",
"hideAccountsLabel": "アカウントを非表示", "hideAccountsLabel": "アカウントを非表示",
"showAccountsLabel": "アカウントを表示", "showAccountsLabel": "アカウントを表示",
"modalBarrierDismissLabel": "閉じる" "modalBarrierDismissLabel": "閉じる",
"drawerLabel": "ナビゲーションメニュー",
"popupMenuLabel": "ポップアップメニュー",
"dialogLabel": "ダイアログ",
"alertDialogLabel": "アラート"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "로그인됨", "signedInLabel": "로그인됨",
"hideAccountsLabel": "계정 숨기기", "hideAccountsLabel": "계정 숨기기",
"showAccountsLabel": "계정 표시", "showAccountsLabel": "계정 표시",
"modalBarrierDismissLabel": "닫기" "modalBarrierDismissLabel": "닫기",
"drawerLabel": "탐색 메뉴",
"popupMenuLabel": "팝업 메뉴",
"dialogLabel": "대화",
"alertDialogLabel": "경보"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "Ingelogd", "signedInLabel": "Ingelogd",
"hideAccountsLabel": "Accounts verbergen", "hideAccountsLabel": "Accounts verbergen",
"showAccountsLabel": "Accounts weergeven", "showAccountsLabel": "Accounts weergeven",
"modalBarrierDismissLabel": "Sluiten" "modalBarrierDismissLabel": "Sluiten",
"drawerLabel": "Navigatie menu",
"popupMenuLabel": "Popup menu",
"dialogLabel": "Dialoog",
"alertDialogLabel": "Alarm"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"modalBarrierDismissLabel": "Avvis", "modalBarrierDismissLabel": "Avvis",
"signedInLabel": "Pålogget", "signedInLabel": "Pålogget",
"hideAccountsLabel": "Skjul kontoer", "hideAccountsLabel": "Skjul kontoer",
"showAccountsLabel": "Vis kontoer" "showAccountsLabel": "Vis kontoer",
"drawerLabel": "Navigasjonsmeny",
"popupMenuLabel": "Popup meny",
"dialogLabel": "Dialog",
"alertDialogLabel": "Varsling"
} }
...@@ -36,5 +36,9 @@ ...@@ -36,5 +36,9 @@
"signedInLabel": "Zalogowani użytkownicy", "signedInLabel": "Zalogowani użytkownicy",
"hideAccountsLabel": "Ukryj konta", "hideAccountsLabel": "Ukryj konta",
"showAccountsLabel": "Pokaż konta", "showAccountsLabel": "Pokaż konta",
"modalBarrierDismissLabel": "Zamknij" "modalBarrierDismissLabel": "Zamknij",
"drawerLabel": "Menu nawigacji",
"popupMenuLabel": "Menu podręczne",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alarm"
} }
...@@ -33,5 +33,9 @@ ...@@ -33,5 +33,9 @@
"signedInLabel": "ننوتل", "signedInLabel": "ننوتل",
"hideAccountsLabel": "حسابونه پټ کړئ", "hideAccountsLabel": "حسابونه پټ کړئ",
"showAccountsLabel": "حسابونه ښکاره کړئ", "showAccountsLabel": "حسابونه ښکاره کړئ",
"modalBarrierDismissLabel": "رد کړه" "modalBarrierDismissLabel": "رد کړه",
"drawerLabel": "د نیویگیشن مینو",
"popupMenuLabel": "د پاپ اپ مینو",
"dialogLabel": "خبرې اترې",
"alertDialogLabel": "خبرتیا"
} }
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
"postMeridiemAbbreviation": "Tarde/noite", "postMeridiemAbbreviation": "Tarde/noite",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"@anteMeridiemAbbreviation": {"notUsed":"Pashto time format does not use a.m. indicator"}, "@anteMeridiemAbbreviation": {"notUsed":"portuguese time format does not use a.m. indicator"},
"@postMeridiemAbbreviation": {"notUsed":"Pashto time format does not use p.m. indicator"}, "@postMeridiemAbbreviation": {"notUsed":"portuguese time format does not use p.m. indicator"},
"openAppDrawerTooltip": "Abrir menu de navegação", "openAppDrawerTooltip": "Abrir menu de navegação",
"backButtonTooltip": "Voltar", "backButtonTooltip": "Voltar",
"closeButtonTooltip": "Fechar", "closeButtonTooltip": "Fechar",
...@@ -36,5 +36,9 @@ ...@@ -36,5 +36,9 @@
"signedInLabel": "Conectado a", "signedInLabel": "Conectado a",
"hideAccountsLabel": "Ocultar contas", "hideAccountsLabel": "Ocultar contas",
"showAccountsLabel": "Mostrar contas", "showAccountsLabel": "Mostrar contas",
"modalBarrierDismissLabel": "Dispensar" "modalBarrierDismissLabel": "Dispensar",
"drawerLabel": "Menu de navegação",
"popupMenuLabel": "Menu popup",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"viewLicensesButtonLabel": "VER LICENÇAS", "viewLicensesButtonLabel": "VER LICENÇAS",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"modalBarrierDismissLabel": "Ignorar" "modalBarrierDismissLabel": "Ignorar",
"drawerLabel": "Menu de navegação",
"popupMenuLabel": "Menu popup",
"dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta"
} }
...@@ -36,5 +36,9 @@ ...@@ -36,5 +36,9 @@
"signedInLabel": "V-ați conectat", "signedInLabel": "V-ați conectat",
"hideAccountsLabel": "Ascundeți conturile", "hideAccountsLabel": "Ascundeți conturile",
"showAccountsLabel": "Afișați conturile", "showAccountsLabel": "Afișați conturile",
"modalBarrierDismissLabel": "Închideți" "modalBarrierDismissLabel": "Închideți",
"drawerLabel": "Meniu de navigatie",
"popupMenuLabel": "Meniu pop-up",
"dialogLabel": "Dialog",
"alertDialogLabel": "Alerta"
} }
...@@ -37,5 +37,9 @@ ...@@ -37,5 +37,9 @@
"signedInLabel": "Вход выполнен", "signedInLabel": "Вход выполнен",
"hideAccountsLabel": "Скрыть аккаунты", "hideAccountsLabel": "Скрыть аккаунты",
"showAccountsLabel": "Показать аккаунты", "showAccountsLabel": "Показать аккаунты",
"modalBarrierDismissLabel": "Закрыть" "modalBarrierDismissLabel": "Закрыть",
"drawerLabel": "Меню навигации",
"popupMenuLabel": "Всплывающее меню",
"dialogLabel": "диалог",
"alertDialogLabel": "бдительный"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "ลงชื่อเข้าใช้", "signedInLabel": "ลงชื่อเข้าใช้",
"hideAccountsLabel": "ซ่อนบัญชี", "hideAccountsLabel": "ซ่อนบัญชี",
"showAccountsLabel": "แสดงบัญชี", "showAccountsLabel": "แสดงบัญชี",
"modalBarrierDismissLabel": "ปิด" "modalBarrierDismissLabel": "ปิด",
"drawerLabel": "เมนูนำทาง",
"popupMenuLabel": "เมนูป๊อปอัพ",
"dialogLabel": "โต้ตอบ",
"alertDialogLabel": "เตือนภัย"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "Oturum açıldı", "signedInLabel": "Oturum açıldı",
"hideAccountsLabel": "Hesapları gizle", "hideAccountsLabel": "Hesapları gizle",
"showAccountsLabel": "Hesapları göster", "showAccountsLabel": "Hesapları göster",
"modalBarrierDismissLabel": "Kapat" "modalBarrierDismissLabel": "Kapat",
"drawerLabel": "Gezinme menüsü",
"popupMenuLabel": "Açılır menü",
"dialogLabel": "Diyalog",
"alertDialogLabel": "Alarm"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "سائن ان کردہ ہے", "signedInLabel": "سائن ان کردہ ہے",
"hideAccountsLabel": "اکاؤنٹس چھپائیں", "hideAccountsLabel": "اکاؤنٹس چھپائیں",
"showAccountsLabel": "اکاؤنٹس دکھائیں", "showAccountsLabel": "اکاؤنٹس دکھائیں",
"modalBarrierDismissLabel": "برخاست کریں" "modalBarrierDismissLabel": "برخاست کریں",
"drawerLabel": "نیویگیشن مینو",
"popupMenuLabel": "پاپ اپ مینو",
"dialogLabel": "ڈائیلاگ",
"alertDialogLabel": "انتباہ"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"signedInLabel": "已登录", "signedInLabel": "已登录",
"hideAccountsLabel": "隐藏帐号", "hideAccountsLabel": "隐藏帐号",
"showAccountsLabel": "显示帐号", "showAccountsLabel": "显示帐号",
"modalBarrierDismissLabel": "关闭" "modalBarrierDismissLabel": "关闭",
"drawerLabel": "导航菜单",
"popupMenuLabel": "弹出菜单",
"dialogLabel": "对话",
"alertDialogLabel": "警报"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "上午", "anteMeridiemAbbreviation": "上午",
"postMeridiemAbbreviation": "下午", "postMeridiemAbbreviation": "下午",
"timePickerHourModeAnnouncement": "選取小時數", "timePickerHourModeAnnouncement": "選取小時數",
"timePickerMinuteModeAnnouncement": "選取分鐘數" "timePickerMinuteModeAnnouncement": "選取分鐘數",
"drawerLabel": "导航菜单",
"popupMenuLabel": "弹出菜单",
"dialogLabel": "对话",
"alertDialogLabel": "警报"
} }
...@@ -34,5 +34,9 @@ ...@@ -34,5 +34,9 @@
"anteMeridiemAbbreviation": "上午", "anteMeridiemAbbreviation": "上午",
"postMeridiemAbbreviation": "下午", "postMeridiemAbbreviation": "下午",
"timePickerHourModeAnnouncement": "選取小時數", "timePickerHourModeAnnouncement": "選取小時數",
"timePickerMinuteModeAnnouncement": "選取分鐘數" "timePickerMinuteModeAnnouncement": "選取分鐘數",
"drawerLabel": "导航菜单",
"popupMenuLabel": "弹出菜单",
"dialogLabel": "对话",
"alertDialogLabel": "警报"
} }
...@@ -255,6 +255,18 @@ class GlobalMaterialLocalizations implements MaterialLocalizations { ...@@ -255,6 +255,18 @@ class GlobalMaterialLocalizations implements MaterialLocalizations {
@override @override
String get showMenuTooltip => _translationBundle.showMenuTooltip; String get showMenuTooltip => _translationBundle.showMenuTooltip;
@override
String get drawerLabel => _translationBundle.alertDialogLabel;
@override
String get popupMenuLabel => _translationBundle.popupMenuLabel;
@override
String get dialogLabel => _translationBundle.dialogLabel;
@override
String get alertDialogLabel => _translationBundle.alertDialogLabel;
@override @override
String aboutListTileTitle(String applicationName) { String aboutListTileTitle(String applicationName) {
final String text = _translationBundle.aboutListTileTitle; final String text = _translationBundle.aboutListTileTitle;
......
...@@ -61,6 +61,10 @@ void main() { ...@@ -61,6 +61,10 @@ void main() {
expect(localizations.pasteButtonLabel, isNotNull); expect(localizations.pasteButtonLabel, isNotNull);
expect(localizations.selectAllButtonLabel, isNotNull); expect(localizations.selectAllButtonLabel, isNotNull);
expect(localizations.viewLicensesButtonLabel, isNotNull); expect(localizations.viewLicensesButtonLabel, isNotNull);
expect(localizations.drawerLabel, isNotNull);
expect(localizations.popupMenuLabel, isNotNull);
expect(localizations.dialogLabel, isNotNull);
expect(localizations.alertDialogLabel, isNotNull);
expect(localizations.aboutListTileTitle('FOO'), isNotNull); expect(localizations.aboutListTileTitle('FOO'), isNotNull);
expect(localizations.aboutListTileTitle('FOO'), contains('FOO')); expect(localizations.aboutListTileTitle('FOO'), contains('FOO'));
......
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