Unverified Commit 8abeefef authored by Justin McCandless's avatar Justin McCandless Committed by GitHub

Localize the 'No Replacements Found' spell check string (#124259)

Localize the 'No Replacements Found' spell check string
parent ad4c06ef
...@@ -236,6 +236,11 @@ abstract class CupertinoLocalizations { ...@@ -236,6 +236,11 @@ abstract class CupertinoLocalizations {
// The global version uses the translated string from the arb file. // The global version uses the translated string from the arb file.
String get pasteButtonLabel; String get pasteButtonLabel;
/// Label that appears in the Cupertino toolbar when the spell checker
/// couldn't find any replacements for the current word.
// The global version uses the translated string from the arb file.
String get noSpellCheckReplacementsLabel;
/// The term used for selecting everything. /// The term used for selecting everything.
// The global version uses the translated string from the arb file. // The global version uses the translated string from the arb file.
String get selectAllButtonLabel; String get selectAllButtonLabel;
...@@ -440,6 +445,9 @@ class DefaultCupertinoLocalizations implements CupertinoLocalizations { ...@@ -440,6 +445,9 @@ class DefaultCupertinoLocalizations implements CupertinoLocalizations {
@override @override
String get pasteButtonLabel => 'Paste'; String get pasteButtonLabel => 'Paste';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get selectAllButtonLabel => 'Select All'; String get selectAllButtonLabel => 'Select All';
......
...@@ -6,6 +6,8 @@ import 'package:flutter/scheduler.dart'; ...@@ -6,6 +6,8 @@ import 'package:flutter/scheduler.dart';
import 'package:flutter/services.dart' show SelectionChangedCause, SuggestionSpan; import 'package:flutter/services.dart' show SelectionChangedCause, SuggestionSpan;
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'debug.dart';
import 'localizations.dart';
import 'text_selection_toolbar.dart'; import 'text_selection_toolbar.dart';
import 'text_selection_toolbar_button.dart'; import 'text_selection_toolbar_button.dart';
...@@ -56,10 +58,12 @@ class CupertinoSpellCheckSuggestionsToolbar extends StatelessWidget { ...@@ -56,10 +58,12 @@ class CupertinoSpellCheckSuggestionsToolbar extends StatelessWidget {
return null; return null;
} }
if (spanAtCursorIndex.suggestions.isEmpty) { if (spanAtCursorIndex.suggestions.isEmpty) {
assert(debugCheckHasCupertinoLocalizations(context));
final CupertinoLocalizations localizations = CupertinoLocalizations.of(context);
return <ContextMenuButtonItem>[ return <ContextMenuButtonItem>[
ContextMenuButtonItem( ContextMenuButtonItem(
onPressed: () {}, onPressed: () {},
label: 'No Replacements Found', label: localizations.noSpellCheckReplacementsLabel,
) )
]; ];
} }
......
...@@ -33,6 +33,7 @@ void main() { ...@@ -33,6 +33,7 @@ void main() {
expect(localizations.modalBarrierDismissLabel, isNotNull); expect(localizations.modalBarrierDismissLabel, isNotNull);
expect(localizations.searchTextFieldPlaceholderLabel, isNotNull); expect(localizations.searchTextFieldPlaceholderLabel, isNotNull);
expect(localizations.noSpellCheckReplacementsLabel, isNotNull);
}); });
testWidgets('CupertinoLocalizations.of throws', (WidgetTester tester) async { testWidgets('CupertinoLocalizations.of throws', (WidgetTester tester) async {
......
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Kies alles", "selectAllButtonLabel": "Kies alles",
"tabSemanticsLabel": "Oortjie $tabIndex van $tabCount", "tabSemanticsLabel": "Oortjie $tabIndex van $tabCount",
"modalBarrierDismissLabel": "Maak toe", "modalBarrierDismissLabel": "Maak toe",
"searchTextFieldPlaceholderLabel": "Soek" "searchTextFieldPlaceholderLabel": "Soek",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "ሁሉንም ምረጥ", "selectAllButtonLabel": "ሁሉንም ምረጥ",
"tabSemanticsLabel": "ትር $tabIndex ከ$tabCount", "tabSemanticsLabel": "ትር $tabIndex ከ$tabCount",
"modalBarrierDismissLabel": "አሰናብት", "modalBarrierDismissLabel": "አሰናብት",
"searchTextFieldPlaceholderLabel": "ፍለጋ" "searchTextFieldPlaceholderLabel": "ፍለጋ",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -41,5 +41,6 @@ ...@@ -41,5 +41,6 @@
"selectAllButtonLabel": "اختيار الكل", "selectAllButtonLabel": "اختيار الكل",
"tabSemanticsLabel": "علامة التبويب $tabIndex من $tabCount", "tabSemanticsLabel": "علامة التبويب $tabIndex من $tabCount",
"modalBarrierDismissLabel": "رفض", "modalBarrierDismissLabel": "رفض",
"searchTextFieldPlaceholderLabel": "بحث" "searchTextFieldPlaceholderLabel": "بحث",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "সকলো বাছনি কৰক", "selectAllButtonLabel": "সকলো বাছনি কৰক",
"tabSemanticsLabel": "$tabCount টা টেবৰ $tabIndex নম্বৰটো", "tabSemanticsLabel": "$tabCount টা টেবৰ $tabIndex নম্বৰটো",
"modalBarrierDismissLabel": "অগ্ৰাহ্য কৰক", "modalBarrierDismissLabel": "অগ্ৰাহ্য কৰক",
"searchTextFieldPlaceholderLabel": "সন্ধান কৰক" "searchTextFieldPlaceholderLabel": "সন্ধান কৰক",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Hamısını seçin", "selectAllButtonLabel": "Hamısını seçin",
"tabSemanticsLabel": "Tab $tabIndex/$tabCount", "tabSemanticsLabel": "Tab $tabIndex/$tabCount",
"modalBarrierDismissLabel": "İmtina edin", "modalBarrierDismissLabel": "İmtina edin",
"searchTextFieldPlaceholderLabel": "Axtarın" "searchTextFieldPlaceholderLabel": "Axtarın",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Выбраць усе", "selectAllButtonLabel": "Выбраць усе",
"tabSemanticsLabel": "Укладка $tabIndex з $tabCount", "tabSemanticsLabel": "Укладка $tabIndex з $tabCount",
"modalBarrierDismissLabel": "Адхіліць", "modalBarrierDismissLabel": "Адхіліць",
"searchTextFieldPlaceholderLabel": "Пошук" "searchTextFieldPlaceholderLabel": "Пошук",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Избиране на всички", "selectAllButtonLabel": "Избиране на всички",
"tabSemanticsLabel": "Раздел $tabIndex от $tabCount", "tabSemanticsLabel": "Раздел $tabIndex от $tabCount",
"modalBarrierDismissLabel": "Отхвърляне", "modalBarrierDismissLabel": "Отхвърляне",
"searchTextFieldPlaceholderLabel": "Търсене" "searchTextFieldPlaceholderLabel": "Търсене",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "সব বেছে নিন", "selectAllButtonLabel": "সব বেছে নিন",
"tabSemanticsLabel": "$tabCount-এর মধ্যে $tabIndex নম্বর ট্যাব", "tabSemanticsLabel": "$tabCount-এর মধ্যে $tabIndex নম্বর ট্যাব",
"modalBarrierDismissLabel": "খারিজ করুন", "modalBarrierDismissLabel": "খারিজ করুন",
"searchTextFieldPlaceholderLabel": "সার্চ করুন" "searchTextFieldPlaceholderLabel": "সার্চ করুন",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
"selectAllButtonLabel": "Odaberi sve", "selectAllButtonLabel": "Odaberi sve",
"tabSemanticsLabel": "Kartica $tabIndex od $tabCount", "tabSemanticsLabel": "Kartica $tabIndex od $tabCount",
"modalBarrierDismissLabel": "Odbaci", "modalBarrierDismissLabel": "Odbaci",
"searchTextFieldPlaceholderLabel": "Pretraživanje" "searchTextFieldPlaceholderLabel": "Pretraživanje",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Selecciona-ho tot", "selectAllButtonLabel": "Selecciona-ho tot",
"tabSemanticsLabel": "Pestanya $tabIndex de $tabCount", "tabSemanticsLabel": "Pestanya $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Ignora", "modalBarrierDismissLabel": "Ignora",
"searchTextFieldPlaceholderLabel": "Cerca" "searchTextFieldPlaceholderLabel": "Cerca",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Vybrat vše", "selectAllButtonLabel": "Vybrat vše",
"tabSemanticsLabel": "Karta $tabIndex z $tabCount", "tabSemanticsLabel": "Karta $tabIndex z $tabCount",
"modalBarrierDismissLabel": "Zavřít", "modalBarrierDismissLabel": "Zavřít",
"searchTextFieldPlaceholderLabel": "Hledat" "searchTextFieldPlaceholderLabel": "Hledat",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -41,5 +41,6 @@ ...@@ -41,5 +41,6 @@
"pasteButtonLabel": "Gludo", "pasteButtonLabel": "Gludo",
"selectAllButtonLabel": "Dewis y Cyfan", "selectAllButtonLabel": "Dewis y Cyfan",
"searchTextFieldPlaceholderLabel": "Chwilio", "searchTextFieldPlaceholderLabel": "Chwilio",
"modalBarrierDismissLabel": "Diystyru" "modalBarrierDismissLabel": "Diystyru",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Vælg alle", "selectAllButtonLabel": "Vælg alle",
"tabSemanticsLabel": "Fane $tabIndex af $tabCount", "tabSemanticsLabel": "Fane $tabIndex af $tabCount",
"modalBarrierDismissLabel": "Afvis", "modalBarrierDismissLabel": "Afvis",
"searchTextFieldPlaceholderLabel": "Søg" "searchTextFieldPlaceholderLabel": "Søg",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Alles auswählen", "selectAllButtonLabel": "Alles auswählen",
"tabSemanticsLabel": "Tab $tabIndex von $tabCount", "tabSemanticsLabel": "Tab $tabIndex von $tabCount",
"modalBarrierDismissLabel": "Schließen", "modalBarrierDismissLabel": "Schließen",
"searchTextFieldPlaceholderLabel": "Suche" "searchTextFieldPlaceholderLabel": "Suche",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Επιλογή όλων", "selectAllButtonLabel": "Επιλογή όλων",
"tabSemanticsLabel": "Καρτέλα $tabIndex από $tabCount", "tabSemanticsLabel": "Καρτέλα $tabIndex από $tabCount",
"modalBarrierDismissLabel": "Παράβλεψη", "modalBarrierDismissLabel": "Παράβλεψη",
"searchTextFieldPlaceholderLabel": "Αναζήτηση" "searchTextFieldPlaceholderLabel": "Αναζήτηση",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -165,6 +165,11 @@ ...@@ -165,6 +165,11 @@
"description": "The label for select-all buttons and menu items. The reference abbreviation is what iOS shows on text selection toolbars." "description": "The label for select-all buttons and menu items. The reference abbreviation is what iOS shows on text selection toolbars."
}, },
"noSpellCheckReplacementsLabel": "No Replacements Found",
"@noSpellCheckReplacementsLabel": {
"description": "The label shown in the text selection context menu on iOS when a misspelled word is tapped but the spell checker found no reasonable fixes for it."
},
"searchTextFieldPlaceholderLabel": "Search", "searchTextFieldPlaceholderLabel": "Search",
"@searchTextFieldPlaceholderLabel": { "@searchTextFieldPlaceholderLabel": {
"description": "The default placeholder label used in an iOS styled search bar." "description": "The default placeholder label used in an iOS styled search bar."
......
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Seleccionar todos", "selectAllButtonLabel": "Seleccionar todos",
"tabSemanticsLabel": "Pestaña $tabIndex de $tabCount", "tabSemanticsLabel": "Pestaña $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Cerrar", "modalBarrierDismissLabel": "Cerrar",
"searchTextFieldPlaceholderLabel": "Buscar" "searchTextFieldPlaceholderLabel": "Buscar",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Vali kõik", "selectAllButtonLabel": "Vali kõik",
"tabSemanticsLabel": "$tabIndex. vaheleht $tabCount-st", "tabSemanticsLabel": "$tabIndex. vaheleht $tabCount-st",
"modalBarrierDismissLabel": "Loobu", "modalBarrierDismissLabel": "Loobu",
"searchTextFieldPlaceholderLabel": "Otsige" "searchTextFieldPlaceholderLabel": "Otsige",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Hautatu guztiak", "selectAllButtonLabel": "Hautatu guztiak",
"tabSemanticsLabel": "$tabIndex/$tabCount fitxa", "tabSemanticsLabel": "$tabIndex/$tabCount fitxa",
"modalBarrierDismissLabel": "Baztertu", "modalBarrierDismissLabel": "Baztertu",
"searchTextFieldPlaceholderLabel": "Bilatu" "searchTextFieldPlaceholderLabel": "Bilatu",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "انتخاب همه", "selectAllButtonLabel": "انتخاب همه",
"tabSemanticsLabel": "برگه $tabIndex از $tabCount", "tabSemanticsLabel": "برگه $tabIndex از $tabCount",
"modalBarrierDismissLabel": "نپذیرفتن", "modalBarrierDismissLabel": "نپذیرفتن",
"searchTextFieldPlaceholderLabel": "جستجو" "searchTextFieldPlaceholderLabel": "جستجو",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Valitse kaikki", "selectAllButtonLabel": "Valitse kaikki",
"tabSemanticsLabel": "Välilehti $tabIndex/$tabCount", "tabSemanticsLabel": "Välilehti $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Ohita", "modalBarrierDismissLabel": "Ohita",
"searchTextFieldPlaceholderLabel": "Hae" "searchTextFieldPlaceholderLabel": "Hae",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Piliin Lahat", "selectAllButtonLabel": "Piliin Lahat",
"tabSemanticsLabel": "Tab $tabIndex ng $tabCount", "tabSemanticsLabel": "Tab $tabIndex ng $tabCount",
"modalBarrierDismissLabel": "I-dismiss", "modalBarrierDismissLabel": "I-dismiss",
"searchTextFieldPlaceholderLabel": "Hanapin" "searchTextFieldPlaceholderLabel": "Hanapin",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Tout sélect.", "selectAllButtonLabel": "Tout sélect.",
"tabSemanticsLabel": "Onglet $tabIndex sur $tabCount", "tabSemanticsLabel": "Onglet $tabIndex sur $tabCount",
"modalBarrierDismissLabel": "Ignorer", "modalBarrierDismissLabel": "Ignorer",
"searchTextFieldPlaceholderLabel": "Rechercher" "searchTextFieldPlaceholderLabel": "Rechercher",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Seleccionar todo", "selectAllButtonLabel": "Seleccionar todo",
"tabSemanticsLabel": "Pestana $tabIndex de $tabCount", "tabSemanticsLabel": "Pestana $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Ignorar", "modalBarrierDismissLabel": "Ignorar",
"searchTextFieldPlaceholderLabel": "Fai unha busca" "searchTextFieldPlaceholderLabel": "Fai unha busca",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Alles auswählen", "selectAllButtonLabel": "Alles auswählen",
"tabSemanticsLabel": "Tab $tabIndex von $tabCount", "tabSemanticsLabel": "Tab $tabIndex von $tabCount",
"modalBarrierDismissLabel": "Schließen", "modalBarrierDismissLabel": "Schließen",
"searchTextFieldPlaceholderLabel": "Suche" "searchTextFieldPlaceholderLabel": "Suche",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "બધા પસંદ કરો", "selectAllButtonLabel": "બધા પસંદ કરો",
"tabSemanticsLabel": "$tabCountમાંથી $tabIndex ટૅબ", "tabSemanticsLabel": "$tabCountમાંથી $tabIndex ટૅબ",
"modalBarrierDismissLabel": "છોડી દો", "modalBarrierDismissLabel": "છોડી દો",
"searchTextFieldPlaceholderLabel": "શોધો" "searchTextFieldPlaceholderLabel": "શોધો",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "בחירת הכול", "selectAllButtonLabel": "בחירת הכול",
"tabSemanticsLabel": "כרטיסייה $tabIndex מתוך $tabCount", "tabSemanticsLabel": "כרטיסייה $tabIndex מתוך $tabCount",
"modalBarrierDismissLabel": "סגירה", "modalBarrierDismissLabel": "סגירה",
"searchTextFieldPlaceholderLabel": "חיפוש" "searchTextFieldPlaceholderLabel": "חיפוש",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "सभी चुनें", "selectAllButtonLabel": "सभी चुनें",
"tabSemanticsLabel": "$tabCount का टैब $tabIndex", "tabSemanticsLabel": "$tabCount का टैब $tabIndex",
"modalBarrierDismissLabel": "खारिज करें", "modalBarrierDismissLabel": "खारिज करें",
"searchTextFieldPlaceholderLabel": "खोजें" "searchTextFieldPlaceholderLabel": "खोजें",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
"selectAllButtonLabel": "Odaberi sve", "selectAllButtonLabel": "Odaberi sve",
"tabSemanticsLabel": "Kartica $tabIndex od $tabCount", "tabSemanticsLabel": "Kartica $tabIndex od $tabCount",
"modalBarrierDismissLabel": "Odbaci", "modalBarrierDismissLabel": "Odbaci",
"searchTextFieldPlaceholderLabel": "Pretraživanje" "searchTextFieldPlaceholderLabel": "Pretraživanje",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Összes kijelölése", "selectAllButtonLabel": "Összes kijelölése",
"tabSemanticsLabel": "$tabCount/$tabIndex. lap", "tabSemanticsLabel": "$tabCount/$tabIndex. lap",
"modalBarrierDismissLabel": "Elvetés", "modalBarrierDismissLabel": "Elvetés",
"searchTextFieldPlaceholderLabel": "Keresés" "searchTextFieldPlaceholderLabel": "Keresés",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Նշել բոլորը", "selectAllButtonLabel": "Նշել բոլորը",
"tabSemanticsLabel": "Ներդիր $tabIndex՝ $tabCount-ից", "tabSemanticsLabel": "Ներդիր $tabIndex՝ $tabCount-ից",
"modalBarrierDismissLabel": "Փակել", "modalBarrierDismissLabel": "Փակել",
"searchTextFieldPlaceholderLabel": "Որոնում" "searchTextFieldPlaceholderLabel": "Որոնում",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Pilih Semua", "selectAllButtonLabel": "Pilih Semua",
"tabSemanticsLabel": "Tab $tabIndex dari $tabCount", "tabSemanticsLabel": "Tab $tabIndex dari $tabCount",
"modalBarrierDismissLabel": "Tutup", "modalBarrierDismissLabel": "Tutup",
"searchTextFieldPlaceholderLabel": "Telusuri" "searchTextFieldPlaceholderLabel": "Telusuri",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Velja allt", "selectAllButtonLabel": "Velja allt",
"tabSemanticsLabel": "Flipi $tabIndex af $tabCount", "tabSemanticsLabel": "Flipi $tabIndex af $tabCount",
"modalBarrierDismissLabel": "Hunsa", "modalBarrierDismissLabel": "Hunsa",
"searchTextFieldPlaceholderLabel": "Leit" "searchTextFieldPlaceholderLabel": "Leit",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Seleziona tutto", "selectAllButtonLabel": "Seleziona tutto",
"tabSemanticsLabel": "Scheda $tabIndex di $tabCount", "tabSemanticsLabel": "Scheda $tabIndex di $tabCount",
"modalBarrierDismissLabel": "Ignora", "modalBarrierDismissLabel": "Ignora",
"searchTextFieldPlaceholderLabel": "Cerca" "searchTextFieldPlaceholderLabel": "Cerca",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "すべて選択", "selectAllButtonLabel": "すべて選択",
"tabSemanticsLabel": "タブ: $tabIndex/$tabCount", "tabSemanticsLabel": "タブ: $tabIndex/$tabCount",
"modalBarrierDismissLabel": "閉じる", "modalBarrierDismissLabel": "閉じる",
"searchTextFieldPlaceholderLabel": "検索" "searchTextFieldPlaceholderLabel": "検索",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "ყველას არჩევა", "selectAllButtonLabel": "ყველას არჩევა",
"tabSemanticsLabel": "ჩანართი $tabIndex / $tabCount-დან", "tabSemanticsLabel": "ჩანართი $tabIndex / $tabCount-დან",
"modalBarrierDismissLabel": "დახურვა", "modalBarrierDismissLabel": "დახურვა",
"searchTextFieldPlaceholderLabel": "ძიება" "searchTextFieldPlaceholderLabel": "ძიება",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Барлығын таңдау", "selectAllButtonLabel": "Барлығын таңдау",
"tabSemanticsLabel": "Қойынды: $tabIndex/$tabCount", "tabSemanticsLabel": "Қойынды: $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Жабу", "modalBarrierDismissLabel": "Жабу",
"searchTextFieldPlaceholderLabel": "Іздеу" "searchTextFieldPlaceholderLabel": "Іздеу",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "ជ្រើសរើស​ទាំងអស់", "selectAllButtonLabel": "ជ្រើសរើស​ទាំងអស់",
"tabSemanticsLabel": "ផ្ទាំងទី $tabIndex នៃ $tabCount", "tabSemanticsLabel": "ផ្ទាំងទី $tabIndex នៃ $tabCount",
"modalBarrierDismissLabel": "ច្រាន​ចោល", "modalBarrierDismissLabel": "ច្រាន​ចោល",
"searchTextFieldPlaceholderLabel": "ស្វែងរក" "searchTextFieldPlaceholderLabel": "ស្វែងរក",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "\u0c8e\u0cb2\u0ccd\u0cb2\u0cb5\u0ca8\u0ccd\u0ca8\u0cc2\u0020\u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf", "selectAllButtonLabel": "\u0c8e\u0cb2\u0ccd\u0cb2\u0cb5\u0ca8\u0ccd\u0ca8\u0cc2\u0020\u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf",
"modalBarrierDismissLabel": "\u0cb5\u0c9c\u0cbe\u0c97\u0cca\u0cb3\u0cbf\u0cb8\u0cbf", "modalBarrierDismissLabel": "\u0cb5\u0c9c\u0cbe\u0c97\u0cca\u0cb3\u0cbf\u0cb8\u0cbf",
"tabSemanticsLabel": "\u0024\u0074\u0061\u0062\u0043\u006f\u0075\u006e\u0074\u0020\u0cb0\u0cb2\u0ccd\u0cb2\u0cbf\u0ca8\u0020\u0024\u0074\u0061\u0062\u0049\u006e\u0064\u0065\u0078\u0020\u0c9f\u0ccd\u0caf\u0cbe\u0cac\u0ccd", "tabSemanticsLabel": "\u0024\u0074\u0061\u0062\u0043\u006f\u0075\u006e\u0074\u0020\u0cb0\u0cb2\u0ccd\u0cb2\u0cbf\u0ca8\u0020\u0024\u0074\u0061\u0062\u0049\u006e\u0064\u0065\u0078\u0020\u0c9f\u0ccd\u0caf\u0cbe\u0cac\u0ccd",
"searchTextFieldPlaceholderLabel": "\u0cb9\u0cc1\u0ca1\u0cc1\u0c95\u0cbf" "searchTextFieldPlaceholderLabel": "\u0cb9\u0cc1\u0ca1\u0cc1\u0c95\u0cbf",
"noSpellCheckReplacementsLabel": "\u004e\u006f\u0020\u0052\u0065\u0070\u006c\u0061\u0063\u0065\u006d\u0065\u006e\u0074\u0073\u0020\u0046\u006f\u0075\u006e\u0064"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "전체 선택", "selectAllButtonLabel": "전체 선택",
"tabSemanticsLabel": "탭 $tabCount개 중 $tabIndex번째", "tabSemanticsLabel": "탭 $tabCount개 중 $tabIndex번째",
"modalBarrierDismissLabel": "닫기", "modalBarrierDismissLabel": "닫기",
"searchTextFieldPlaceholderLabel": "검색" "searchTextFieldPlaceholderLabel": "검색",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Баарын тандоо", "selectAllButtonLabel": "Баарын тандоо",
"tabSemanticsLabel": "$tabCount ичинен $tabIndex-өтмөк", "tabSemanticsLabel": "$tabCount ичинен $tabIndex-өтмөк",
"modalBarrierDismissLabel": "Жабуу", "modalBarrierDismissLabel": "Жабуу",
"searchTextFieldPlaceholderLabel": "Издөө" "searchTextFieldPlaceholderLabel": "Издөө",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "ເລືອກທັງໝົດ", "selectAllButtonLabel": "ເລືອກທັງໝົດ",
"tabSemanticsLabel": "ແຖບທີ $tabIndex ຈາກທັງໝົດ $tabCount", "tabSemanticsLabel": "ແຖບທີ $tabIndex ຈາກທັງໝົດ $tabCount",
"modalBarrierDismissLabel": "ປິດໄວ້", "modalBarrierDismissLabel": "ປິດໄວ້",
"searchTextFieldPlaceholderLabel": "ຊອກຫາ" "searchTextFieldPlaceholderLabel": "ຊອກຫາ",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Pasirinkti viską", "selectAllButtonLabel": "Pasirinkti viską",
"tabSemanticsLabel": "$tabIndex skirtukas iš $tabCount", "tabSemanticsLabel": "$tabIndex skirtukas iš $tabCount",
"modalBarrierDismissLabel": "Atsisakyti", "modalBarrierDismissLabel": "Atsisakyti",
"searchTextFieldPlaceholderLabel": "Paieška" "searchTextFieldPlaceholderLabel": "Paieška",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
"selectAllButtonLabel": "Atlasīt visu", "selectAllButtonLabel": "Atlasīt visu",
"tabSemanticsLabel": "$tabIndex. cilne no $tabCount", "tabSemanticsLabel": "$tabIndex. cilne no $tabCount",
"modalBarrierDismissLabel": "Nerādīt", "modalBarrierDismissLabel": "Nerādīt",
"searchTextFieldPlaceholderLabel": "Meklēšana" "searchTextFieldPlaceholderLabel": "Meklēšana",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Избери ги сите", "selectAllButtonLabel": "Избери ги сите",
"tabSemanticsLabel": "Картичка $tabIndex од $tabCount", "tabSemanticsLabel": "Картичка $tabIndex од $tabCount",
"modalBarrierDismissLabel": "Отфрли", "modalBarrierDismissLabel": "Отфрли",
"searchTextFieldPlaceholderLabel": "Пребарувајте" "searchTextFieldPlaceholderLabel": "Пребарувајте",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "എല്ലാം തിരഞ്ഞെടുക്കുക", "selectAllButtonLabel": "എല്ലാം തിരഞ്ഞെടുക്കുക",
"tabSemanticsLabel": "$tabCount ടാബിൽ $tabIndex-ാമത്തേത്", "tabSemanticsLabel": "$tabCount ടാബിൽ $tabIndex-ാമത്തേത്",
"modalBarrierDismissLabel": "നിരസിക്കുക", "modalBarrierDismissLabel": "നിരസിക്കുക",
"searchTextFieldPlaceholderLabel": "തിരയുക" "searchTextFieldPlaceholderLabel": "തിരയുക",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Бүгдийг сонгох", "selectAllButtonLabel": "Бүгдийг сонгох",
"tabSemanticsLabel": "$tabCount-н $tabIndex-р таб", "tabSemanticsLabel": "$tabCount-н $tabIndex-р таб",
"modalBarrierDismissLabel": "Үл хэрэгсэх", "modalBarrierDismissLabel": "Үл хэрэгсэх",
"searchTextFieldPlaceholderLabel": "Хайх" "searchTextFieldPlaceholderLabel": "Хайх",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "सर्व निवडा", "selectAllButtonLabel": "सर्व निवडा",
"tabSemanticsLabel": "$tabCount पैकी $tabIndex टॅब", "tabSemanticsLabel": "$tabCount पैकी $tabIndex टॅब",
"modalBarrierDismissLabel": "डिसमिस करा", "modalBarrierDismissLabel": "डिसमिस करा",
"searchTextFieldPlaceholderLabel": "शोधा" "searchTextFieldPlaceholderLabel": "शोधा",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Pilih Semua", "selectAllButtonLabel": "Pilih Semua",
"tabSemanticsLabel": "Tab $tabIndex daripada $tabCount", "tabSemanticsLabel": "Tab $tabIndex daripada $tabCount",
"modalBarrierDismissLabel": "Tolak", "modalBarrierDismissLabel": "Tolak",
"searchTextFieldPlaceholderLabel": "Cari" "searchTextFieldPlaceholderLabel": "Cari",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "အားလုံး ရွေးရန်", "selectAllButtonLabel": "အားလုံး ရွေးရန်",
"tabSemanticsLabel": "တဘ် $tabCount ခုအနက် $tabIndex ခု", "tabSemanticsLabel": "တဘ် $tabCount ခုအနက် $tabIndex ခု",
"modalBarrierDismissLabel": "ပယ်ရန်", "modalBarrierDismissLabel": "ပယ်ရန်",
"searchTextFieldPlaceholderLabel": "ရှာရန်" "searchTextFieldPlaceholderLabel": "ရှာရန်",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"pasteButtonLabel": "Lim inn", "pasteButtonLabel": "Lim inn",
"selectAllButtonLabel": "Velg alle", "selectAllButtonLabel": "Velg alle",
"modalBarrierDismissLabel": "Avvis", "modalBarrierDismissLabel": "Avvis",
"searchTextFieldPlaceholderLabel": "Søk" "searchTextFieldPlaceholderLabel": "Søk",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "सबै चयन गर्नुहोस्", "selectAllButtonLabel": "सबै चयन गर्नुहोस्",
"tabSemanticsLabel": "$tabCount मध्ये $tabIndex ट्याब", "tabSemanticsLabel": "$tabCount मध्ये $tabIndex ट्याब",
"modalBarrierDismissLabel": "खारेज गर्नुहोस्", "modalBarrierDismissLabel": "खारेज गर्नुहोस्",
"searchTextFieldPlaceholderLabel": "खोज्नुहोस्" "searchTextFieldPlaceholderLabel": "खोज्नुहोस्",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Alles selecteren", "selectAllButtonLabel": "Alles selecteren",
"tabSemanticsLabel": "Tabblad $tabIndex van $tabCount", "tabSemanticsLabel": "Tabblad $tabIndex van $tabCount",
"modalBarrierDismissLabel": "Sluiten", "modalBarrierDismissLabel": "Sluiten",
"searchTextFieldPlaceholderLabel": "Zoeken" "searchTextFieldPlaceholderLabel": "Zoeken",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"pasteButtonLabel": "Lim inn", "pasteButtonLabel": "Lim inn",
"selectAllButtonLabel": "Velg alle", "selectAllButtonLabel": "Velg alle",
"modalBarrierDismissLabel": "Avvis", "modalBarrierDismissLabel": "Avvis",
"searchTextFieldPlaceholderLabel": "Søk" "searchTextFieldPlaceholderLabel": "Søk",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "ସମସ୍ତ ଚୟନ କରନ୍ତୁ", "selectAllButtonLabel": "ସମସ୍ତ ଚୟନ କରନ୍ତୁ",
"tabSemanticsLabel": "$tabCountର $tabIndex ଟାବ୍", "tabSemanticsLabel": "$tabCountର $tabIndex ଟାବ୍",
"modalBarrierDismissLabel": "ଖାରଜ କରନ୍ତୁ", "modalBarrierDismissLabel": "ଖାରଜ କରନ୍ତୁ",
"searchTextFieldPlaceholderLabel": "ସନ୍ଧାନ କରନ୍ତୁ" "searchTextFieldPlaceholderLabel": "ସନ୍ଧାନ କରନ୍ତୁ",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "ਸਭ ਚੁਣੋ", "selectAllButtonLabel": "ਸਭ ਚੁਣੋ",
"tabSemanticsLabel": "$tabCount ਵਿੱਚੋਂ $tabIndex ਟੈਬ", "tabSemanticsLabel": "$tabCount ਵਿੱਚੋਂ $tabIndex ਟੈਬ",
"modalBarrierDismissLabel": "ਖਾਰਜ ਕਰੋ", "modalBarrierDismissLabel": "ਖਾਰਜ ਕਰੋ",
"searchTextFieldPlaceholderLabel": "ਖੋਜੋ" "searchTextFieldPlaceholderLabel": "ਖੋਜੋ",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Wybierz wszystkie", "selectAllButtonLabel": "Wybierz wszystkie",
"tabSemanticsLabel": "Karta $tabIndex z $tabCount", "tabSemanticsLabel": "Karta $tabIndex z $tabCount",
"modalBarrierDismissLabel": "Zamknij", "modalBarrierDismissLabel": "Zamknij",
"searchTextFieldPlaceholderLabel": "Szukaj" "searchTextFieldPlaceholderLabel": "Szukaj",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Selecionar Tudo", "selectAllButtonLabel": "Selecionar Tudo",
"tabSemanticsLabel": "Guia $tabIndex de $tabCount", "tabSemanticsLabel": "Guia $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Dispensar", "modalBarrierDismissLabel": "Dispensar",
"searchTextFieldPlaceholderLabel": "Pesquisar" "searchTextFieldPlaceholderLabel": "Pesquisar",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
"selectAllButtonLabel": "Selectați-le pe toate", "selectAllButtonLabel": "Selectați-le pe toate",
"tabSemanticsLabel": "Fila $tabIndex din $tabCount", "tabSemanticsLabel": "Fila $tabIndex din $tabCount",
"modalBarrierDismissLabel": "Închideți", "modalBarrierDismissLabel": "Închideți",
"searchTextFieldPlaceholderLabel": "Căutați" "searchTextFieldPlaceholderLabel": "Căutați",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Выбрать все", "selectAllButtonLabel": "Выбрать все",
"tabSemanticsLabel": "Вкладка $tabIndex из $tabCount", "tabSemanticsLabel": "Вкладка $tabIndex из $tabCount",
"modalBarrierDismissLabel": "Закрыть", "modalBarrierDismissLabel": "Закрыть",
"searchTextFieldPlaceholderLabel": "Поиск" "searchTextFieldPlaceholderLabel": "Поиск",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "සියල්ල තෝරන්න", "selectAllButtonLabel": "සියල්ල තෝරන්න",
"tabSemanticsLabel": "ටැබ $tabCount න් $tabIndex", "tabSemanticsLabel": "ටැබ $tabCount න් $tabIndex",
"modalBarrierDismissLabel": "ඉවත ලන්න", "modalBarrierDismissLabel": "ඉවත ලන්න",
"searchTextFieldPlaceholderLabel": "සෙවීම" "searchTextFieldPlaceholderLabel": "සෙවීම",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Vybrať všetko", "selectAllButtonLabel": "Vybrať všetko",
"tabSemanticsLabel": "Karta $tabIndex z $tabCount", "tabSemanticsLabel": "Karta $tabIndex z $tabCount",
"modalBarrierDismissLabel": "Odmietnuť", "modalBarrierDismissLabel": "Odmietnuť",
"searchTextFieldPlaceholderLabel": "Hľadať" "searchTextFieldPlaceholderLabel": "Hľadať",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Izberi vse", "selectAllButtonLabel": "Izberi vse",
"tabSemanticsLabel": "Zavihek $tabIndex od $tabCount", "tabSemanticsLabel": "Zavihek $tabIndex od $tabCount",
"modalBarrierDismissLabel": "Opusti", "modalBarrierDismissLabel": "Opusti",
"searchTextFieldPlaceholderLabel": "Iskanje" "searchTextFieldPlaceholderLabel": "Iskanje",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Zgjidhi të gjitha", "selectAllButtonLabel": "Zgjidhi të gjitha",
"tabSemanticsLabel": "Skeda $tabIndex nga $tabCount", "tabSemanticsLabel": "Skeda $tabIndex nga $tabCount",
"modalBarrierDismissLabel": "Hiq", "modalBarrierDismissLabel": "Hiq",
"searchTextFieldPlaceholderLabel": "Kërko" "searchTextFieldPlaceholderLabel": "Kërko",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
"selectAllButtonLabel": "Изабери све", "selectAllButtonLabel": "Изабери све",
"tabSemanticsLabel": "$tabIndex. картица од $tabCount", "tabSemanticsLabel": "$tabIndex. картица од $tabCount",
"modalBarrierDismissLabel": "Одбаци", "modalBarrierDismissLabel": "Одбаци",
"searchTextFieldPlaceholderLabel": "Претражите" "searchTextFieldPlaceholderLabel": "Претражите",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Markera alla", "selectAllButtonLabel": "Markera alla",
"tabSemanticsLabel": "Flik $tabIndex av $tabCount", "tabSemanticsLabel": "Flik $tabIndex av $tabCount",
"modalBarrierDismissLabel": "Stäng", "modalBarrierDismissLabel": "Stäng",
"searchTextFieldPlaceholderLabel": "Sök" "searchTextFieldPlaceholderLabel": "Sök",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Teua Zote", "selectAllButtonLabel": "Teua Zote",
"tabSemanticsLabel": "Kichupo cha $tabIndex kati ya $tabCount", "tabSemanticsLabel": "Kichupo cha $tabIndex kati ya $tabCount",
"modalBarrierDismissLabel": "Ondoa", "modalBarrierDismissLabel": "Ondoa",
"searchTextFieldPlaceholderLabel": "Tafuta" "searchTextFieldPlaceholderLabel": "Tafuta",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "எல்லாம் தேர்ந்தெடு", "selectAllButtonLabel": "எல்லாம் தேர்ந்தெடு",
"tabSemanticsLabel": "தாவல் $tabIndex / $tabCount", "tabSemanticsLabel": "தாவல் $tabIndex / $tabCount",
"modalBarrierDismissLabel": "நிராகரிக்கும்", "modalBarrierDismissLabel": "நிராகரிக்கும்",
"searchTextFieldPlaceholderLabel": "தேடுக" "searchTextFieldPlaceholderLabel": "தேடுக",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "అన్నింటినీ ఎంచుకోండి", "selectAllButtonLabel": "అన్నింటినీ ఎంచుకోండి",
"tabSemanticsLabel": "$tabCountలో $tabIndexవ ట్యాబ్", "tabSemanticsLabel": "$tabCountలో $tabIndexవ ట్యాబ్",
"modalBarrierDismissLabel": "విస్మరించు", "modalBarrierDismissLabel": "విస్మరించు",
"searchTextFieldPlaceholderLabel": "సెర్చ్ చేయి" "searchTextFieldPlaceholderLabel": "సెర్చ్ చేయి",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "เลือกทั้งหมด", "selectAllButtonLabel": "เลือกทั้งหมด",
"tabSemanticsLabel": "แท็บที่ $tabIndex จาก $tabCount", "tabSemanticsLabel": "แท็บที่ $tabIndex จาก $tabCount",
"modalBarrierDismissLabel": "ปิด", "modalBarrierDismissLabel": "ปิด",
"searchTextFieldPlaceholderLabel": "ค้นหา" "searchTextFieldPlaceholderLabel": "ค้นหา",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Piliin Lahat", "selectAllButtonLabel": "Piliin Lahat",
"tabSemanticsLabel": "Tab $tabIndex ng $tabCount", "tabSemanticsLabel": "Tab $tabIndex ng $tabCount",
"modalBarrierDismissLabel": "I-dismiss", "modalBarrierDismissLabel": "I-dismiss",
"searchTextFieldPlaceholderLabel": "Hanapin" "searchTextFieldPlaceholderLabel": "Hanapin",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Tümünü Seç", "selectAllButtonLabel": "Tümünü Seç",
"tabSemanticsLabel": "Sekme $tabIndex/$tabCount", "tabSemanticsLabel": "Sekme $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Kapat", "modalBarrierDismissLabel": "Kapat",
"searchTextFieldPlaceholderLabel": "Ara" "searchTextFieldPlaceholderLabel": "Ara",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
"selectAllButtonLabel": "Вибрати все", "selectAllButtonLabel": "Вибрати все",
"tabSemanticsLabel": "Вкладка $tabIndex з $tabCount", "tabSemanticsLabel": "Вкладка $tabIndex з $tabCount",
"modalBarrierDismissLabel": "Закрити", "modalBarrierDismissLabel": "Закрити",
"searchTextFieldPlaceholderLabel": "Шукайте" "searchTextFieldPlaceholderLabel": "Шукайте",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "سبھی منتخب کریں", "selectAllButtonLabel": "سبھی منتخب کریں",
"tabSemanticsLabel": "$tabCount میں سے $tabIndex ٹیب", "tabSemanticsLabel": "$tabCount میں سے $tabIndex ٹیب",
"modalBarrierDismissLabel": "برخاست کریں", "modalBarrierDismissLabel": "برخاست کریں",
"searchTextFieldPlaceholderLabel": "تلاش کریں" "searchTextFieldPlaceholderLabel": "تلاش کریں",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Barchasini tanlash", "selectAllButtonLabel": "Barchasini tanlash",
"tabSemanticsLabel": "$tabCount varaqdan $tabIndex", "tabSemanticsLabel": "$tabCount varaqdan $tabIndex",
"modalBarrierDismissLabel": "Yopish", "modalBarrierDismissLabel": "Yopish",
"searchTextFieldPlaceholderLabel": "Qidiruv" "searchTextFieldPlaceholderLabel": "Qidiruv",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Chọn tất cả", "selectAllButtonLabel": "Chọn tất cả",
"tabSemanticsLabel": "Thẻ $tabIndex/$tabCount", "tabSemanticsLabel": "Thẻ $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Bỏ qua", "modalBarrierDismissLabel": "Bỏ qua",
"searchTextFieldPlaceholderLabel": "Tìm kiếm" "searchTextFieldPlaceholderLabel": "Tìm kiếm",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "全选", "selectAllButtonLabel": "全选",
"tabSemanticsLabel": "第 $tabIndex 个标签,共 $tabCount 个", "tabSemanticsLabel": "第 $tabIndex 个标签,共 $tabCount 个",
"modalBarrierDismissLabel": "关闭", "modalBarrierDismissLabel": "关闭",
"searchTextFieldPlaceholderLabel": "搜索" "searchTextFieldPlaceholderLabel": "搜索",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -21,5 +21,6 @@ ...@@ -21,5 +21,6 @@
"selectAllButtonLabel": "Khetha konke", "selectAllButtonLabel": "Khetha konke",
"tabSemanticsLabel": "Ithebhu $tabIndex kwangu-$tabCount", "tabSemanticsLabel": "Ithebhu $tabIndex kwangu-$tabCount",
"modalBarrierDismissLabel": "Cashisa", "modalBarrierDismissLabel": "Cashisa",
"searchTextFieldPlaceholderLabel": "Sesha" "searchTextFieldPlaceholderLabel": "Sesha",
"noSpellCheckReplacementsLabel": "No Replacements Found"
} }
...@@ -94,6 +94,9 @@ class CupertinoLocalizationAf extends GlobalCupertinoLocalizations { ...@@ -94,6 +94,9 @@ class CupertinoLocalizationAf extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Maak toe'; String get modalBarrierDismissLabel => 'Maak toe';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Plak'; String get pasteButtonLabel => 'Plak';
...@@ -241,6 +244,9 @@ class CupertinoLocalizationAm extends GlobalCupertinoLocalizations { ...@@ -241,6 +244,9 @@ class CupertinoLocalizationAm extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'አሰናብት'; String get modalBarrierDismissLabel => 'አሰናብት';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ለጥፍ'; String get pasteButtonLabel => 'ለጥፍ';
...@@ -388,6 +394,9 @@ class CupertinoLocalizationAr extends GlobalCupertinoLocalizations { ...@@ -388,6 +394,9 @@ class CupertinoLocalizationAr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'رفض'; String get modalBarrierDismissLabel => 'رفض';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'لصق'; String get pasteButtonLabel => 'لصق';
...@@ -535,6 +544,9 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations { ...@@ -535,6 +544,9 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'অগ্ৰাহ্য কৰক'; String get modalBarrierDismissLabel => 'অগ্ৰাহ্য কৰক';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => "পে'ষ্ট কৰক"; String get pasteButtonLabel => "পে'ষ্ট কৰক";
...@@ -682,6 +694,9 @@ class CupertinoLocalizationAz extends GlobalCupertinoLocalizations { ...@@ -682,6 +694,9 @@ class CupertinoLocalizationAz extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'İmtina edin'; String get modalBarrierDismissLabel => 'İmtina edin';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Yerləşdirin'; String get pasteButtonLabel => 'Yerləşdirin';
...@@ -829,6 +844,9 @@ class CupertinoLocalizationBe extends GlobalCupertinoLocalizations { ...@@ -829,6 +844,9 @@ class CupertinoLocalizationBe extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Адхіліць'; String get modalBarrierDismissLabel => 'Адхіліць';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Уставіць'; String get pasteButtonLabel => 'Уставіць';
...@@ -976,6 +994,9 @@ class CupertinoLocalizationBg extends GlobalCupertinoLocalizations { ...@@ -976,6 +994,9 @@ class CupertinoLocalizationBg extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Отхвърляне'; String get modalBarrierDismissLabel => 'Отхвърляне';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Поставяне'; String get pasteButtonLabel => 'Поставяне';
...@@ -1123,6 +1144,9 @@ class CupertinoLocalizationBn extends GlobalCupertinoLocalizations { ...@@ -1123,6 +1144,9 @@ class CupertinoLocalizationBn extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'খারিজ করুন'; String get modalBarrierDismissLabel => 'খারিজ করুন';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'পেস্ট করুন'; String get pasteButtonLabel => 'পেস্ট করুন';
...@@ -1270,6 +1294,9 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations { ...@@ -1270,6 +1294,9 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Odbaci'; String get modalBarrierDismissLabel => 'Odbaci';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Zalijepi'; String get pasteButtonLabel => 'Zalijepi';
...@@ -1417,6 +1444,9 @@ class CupertinoLocalizationCa extends GlobalCupertinoLocalizations { ...@@ -1417,6 +1444,9 @@ class CupertinoLocalizationCa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Ignora'; String get modalBarrierDismissLabel => 'Ignora';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Enganxa'; String get pasteButtonLabel => 'Enganxa';
...@@ -1564,6 +1594,9 @@ class CupertinoLocalizationCs extends GlobalCupertinoLocalizations { ...@@ -1564,6 +1594,9 @@ class CupertinoLocalizationCs extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Zavřít'; String get modalBarrierDismissLabel => 'Zavřít';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Vložit'; String get pasteButtonLabel => 'Vložit';
...@@ -1711,6 +1744,9 @@ class CupertinoLocalizationCy extends GlobalCupertinoLocalizations { ...@@ -1711,6 +1744,9 @@ class CupertinoLocalizationCy extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Diystyru'; String get modalBarrierDismissLabel => 'Diystyru';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Gludo'; String get pasteButtonLabel => 'Gludo';
...@@ -1858,6 +1894,9 @@ class CupertinoLocalizationDa extends GlobalCupertinoLocalizations { ...@@ -1858,6 +1894,9 @@ class CupertinoLocalizationDa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Afvis'; String get modalBarrierDismissLabel => 'Afvis';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Indsæt'; String get pasteButtonLabel => 'Indsæt';
...@@ -2005,6 +2044,9 @@ class CupertinoLocalizationDe extends GlobalCupertinoLocalizations { ...@@ -2005,6 +2044,9 @@ class CupertinoLocalizationDe extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Schließen'; String get modalBarrierDismissLabel => 'Schließen';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Einsetzen'; String get pasteButtonLabel => 'Einsetzen';
...@@ -2173,6 +2215,9 @@ class CupertinoLocalizationEl extends GlobalCupertinoLocalizations { ...@@ -2173,6 +2215,9 @@ class CupertinoLocalizationEl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Παράβλεψη'; String get modalBarrierDismissLabel => 'Παράβλεψη';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Επικόλληση'; String get pasteButtonLabel => 'Επικόλληση';
...@@ -2320,6 +2365,9 @@ class CupertinoLocalizationEn extends GlobalCupertinoLocalizations { ...@@ -2320,6 +2365,9 @@ class CupertinoLocalizationEn extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Dismiss'; String get modalBarrierDismissLabel => 'Dismiss';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Paste'; String get pasteButtonLabel => 'Paste';
...@@ -2659,6 +2707,9 @@ class CupertinoLocalizationEs extends GlobalCupertinoLocalizations { ...@@ -2659,6 +2707,9 @@ class CupertinoLocalizationEs extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Cerrar'; String get modalBarrierDismissLabel => 'Cerrar';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Pegar'; String get pasteButtonLabel => 'Pegar';
...@@ -3466,6 +3517,9 @@ class CupertinoLocalizationEt extends GlobalCupertinoLocalizations { ...@@ -3466,6 +3517,9 @@ class CupertinoLocalizationEt extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Loobu'; String get modalBarrierDismissLabel => 'Loobu';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Kleebi'; String get pasteButtonLabel => 'Kleebi';
...@@ -3613,6 +3667,9 @@ class CupertinoLocalizationEu extends GlobalCupertinoLocalizations { ...@@ -3613,6 +3667,9 @@ class CupertinoLocalizationEu extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Baztertu'; String get modalBarrierDismissLabel => 'Baztertu';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Itsatsi'; String get pasteButtonLabel => 'Itsatsi';
...@@ -3760,6 +3817,9 @@ class CupertinoLocalizationFa extends GlobalCupertinoLocalizations { ...@@ -3760,6 +3817,9 @@ class CupertinoLocalizationFa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'نپذیرفتن'; String get modalBarrierDismissLabel => 'نپذیرفتن';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'جای‌گذاری'; String get pasteButtonLabel => 'جای‌گذاری';
...@@ -3907,6 +3967,9 @@ class CupertinoLocalizationFi extends GlobalCupertinoLocalizations { ...@@ -3907,6 +3967,9 @@ class CupertinoLocalizationFi extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Ohita'; String get modalBarrierDismissLabel => 'Ohita';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Liitä'; String get pasteButtonLabel => 'Liitä';
...@@ -4054,6 +4117,9 @@ class CupertinoLocalizationFil extends GlobalCupertinoLocalizations { ...@@ -4054,6 +4117,9 @@ class CupertinoLocalizationFil extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'I-dismiss'; String get modalBarrierDismissLabel => 'I-dismiss';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'I-paste'; String get pasteButtonLabel => 'I-paste';
...@@ -4201,6 +4267,9 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations { ...@@ -4201,6 +4267,9 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Ignorer'; String get modalBarrierDismissLabel => 'Ignorer';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Coller'; String get pasteButtonLabel => 'Coller';
...@@ -4390,6 +4459,9 @@ class CupertinoLocalizationGl extends GlobalCupertinoLocalizations { ...@@ -4390,6 +4459,9 @@ class CupertinoLocalizationGl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Ignorar'; String get modalBarrierDismissLabel => 'Ignorar';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Pegar'; String get pasteButtonLabel => 'Pegar';
...@@ -4537,6 +4609,9 @@ class CupertinoLocalizationGsw extends GlobalCupertinoLocalizations { ...@@ -4537,6 +4609,9 @@ class CupertinoLocalizationGsw extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Schließen'; String get modalBarrierDismissLabel => 'Schließen';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Einsetzen'; String get pasteButtonLabel => 'Einsetzen';
...@@ -4684,6 +4759,9 @@ class CupertinoLocalizationGu extends GlobalCupertinoLocalizations { ...@@ -4684,6 +4759,9 @@ class CupertinoLocalizationGu extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'છોડી દો'; String get modalBarrierDismissLabel => 'છોડી દો';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'પેસ્ટ કરો'; String get pasteButtonLabel => 'પેસ્ટ કરો';
...@@ -4831,6 +4909,9 @@ class CupertinoLocalizationHe extends GlobalCupertinoLocalizations { ...@@ -4831,6 +4909,9 @@ class CupertinoLocalizationHe extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'סגירה'; String get modalBarrierDismissLabel => 'סגירה';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'הדבקה'; String get pasteButtonLabel => 'הדבקה';
...@@ -4978,6 +5059,9 @@ class CupertinoLocalizationHi extends GlobalCupertinoLocalizations { ...@@ -4978,6 +5059,9 @@ class CupertinoLocalizationHi extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'खारिज करें'; String get modalBarrierDismissLabel => 'खारिज करें';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'चिपकाएं'; String get pasteButtonLabel => 'चिपकाएं';
...@@ -5125,6 +5209,9 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations { ...@@ -5125,6 +5209,9 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Odbaci'; String get modalBarrierDismissLabel => 'Odbaci';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Zalijepi'; String get pasteButtonLabel => 'Zalijepi';
...@@ -5272,6 +5359,9 @@ class CupertinoLocalizationHu extends GlobalCupertinoLocalizations { ...@@ -5272,6 +5359,9 @@ class CupertinoLocalizationHu extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Elvetés'; String get modalBarrierDismissLabel => 'Elvetés';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Beillesztés'; String get pasteButtonLabel => 'Beillesztés';
...@@ -5419,6 +5509,9 @@ class CupertinoLocalizationHy extends GlobalCupertinoLocalizations { ...@@ -5419,6 +5509,9 @@ class CupertinoLocalizationHy extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Փակել'; String get modalBarrierDismissLabel => 'Փակել';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Տեղադրել'; String get pasteButtonLabel => 'Տեղադրել';
...@@ -5566,6 +5659,9 @@ class CupertinoLocalizationId extends GlobalCupertinoLocalizations { ...@@ -5566,6 +5659,9 @@ class CupertinoLocalizationId extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Tutup'; String get modalBarrierDismissLabel => 'Tutup';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Tempel'; String get pasteButtonLabel => 'Tempel';
...@@ -5713,6 +5809,9 @@ class CupertinoLocalizationIs extends GlobalCupertinoLocalizations { ...@@ -5713,6 +5809,9 @@ class CupertinoLocalizationIs extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Hunsa'; String get modalBarrierDismissLabel => 'Hunsa';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Líma'; String get pasteButtonLabel => 'Líma';
...@@ -5860,6 +5959,9 @@ class CupertinoLocalizationIt extends GlobalCupertinoLocalizations { ...@@ -5860,6 +5959,9 @@ class CupertinoLocalizationIt extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Ignora'; String get modalBarrierDismissLabel => 'Ignora';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Incolla'; String get pasteButtonLabel => 'Incolla';
...@@ -6007,6 +6109,9 @@ class CupertinoLocalizationJa extends GlobalCupertinoLocalizations { ...@@ -6007,6 +6109,9 @@ class CupertinoLocalizationJa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => '閉じる'; String get modalBarrierDismissLabel => '閉じる';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => '貼り付け'; String get pasteButtonLabel => '貼り付け';
...@@ -6154,6 +6259,9 @@ class CupertinoLocalizationKa extends GlobalCupertinoLocalizations { ...@@ -6154,6 +6259,9 @@ class CupertinoLocalizationKa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'დახურვა'; String get modalBarrierDismissLabel => 'დახურვა';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ჩასმა'; String get pasteButtonLabel => 'ჩასმა';
...@@ -6301,6 +6409,9 @@ class CupertinoLocalizationKk extends GlobalCupertinoLocalizations { ...@@ -6301,6 +6409,9 @@ class CupertinoLocalizationKk extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Жабу'; String get modalBarrierDismissLabel => 'Жабу';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Қою'; String get pasteButtonLabel => 'Қою';
...@@ -6448,6 +6559,9 @@ class CupertinoLocalizationKm extends GlobalCupertinoLocalizations { ...@@ -6448,6 +6559,9 @@ class CupertinoLocalizationKm extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ច្រាន​ចោល'; String get modalBarrierDismissLabel => 'ច្រាន​ចោល';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ដាក់​ចូល'; String get pasteButtonLabel => 'ដាក់​ចូល';
...@@ -6595,6 +6709,9 @@ class CupertinoLocalizationKn extends GlobalCupertinoLocalizations { ...@@ -6595,6 +6709,9 @@ class CupertinoLocalizationKn extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => '\u{cb5}\u{c9c}\u{cbe}\u{c97}\u{cca}\u{cb3}\u{cbf}\u{cb8}\u{cbf}'; String get modalBarrierDismissLabel => '\u{cb5}\u{c9c}\u{cbe}\u{c97}\u{cca}\u{cb3}\u{cbf}\u{cb8}\u{cbf}';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => '\u{c85}\u{c82}\u{c9f}\u{cbf}\u{cb8}\u{cbf}'; String get pasteButtonLabel => '\u{c85}\u{c82}\u{c9f}\u{cbf}\u{cb8}\u{cbf}';
...@@ -6742,6 +6859,9 @@ class CupertinoLocalizationKo extends GlobalCupertinoLocalizations { ...@@ -6742,6 +6859,9 @@ class CupertinoLocalizationKo extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => '닫기'; String get modalBarrierDismissLabel => '닫기';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => '붙여넣기'; String get pasteButtonLabel => '붙여넣기';
...@@ -6889,6 +7009,9 @@ class CupertinoLocalizationKy extends GlobalCupertinoLocalizations { ...@@ -6889,6 +7009,9 @@ class CupertinoLocalizationKy extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Жабуу'; String get modalBarrierDismissLabel => 'Жабуу';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Чаптоо'; String get pasteButtonLabel => 'Чаптоо';
...@@ -7036,6 +7159,9 @@ class CupertinoLocalizationLo extends GlobalCupertinoLocalizations { ...@@ -7036,6 +7159,9 @@ class CupertinoLocalizationLo extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ປິດໄວ້'; String get modalBarrierDismissLabel => 'ປິດໄວ້';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ວາງ'; String get pasteButtonLabel => 'ວາງ';
...@@ -7183,6 +7309,9 @@ class CupertinoLocalizationLt extends GlobalCupertinoLocalizations { ...@@ -7183,6 +7309,9 @@ class CupertinoLocalizationLt extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Atsisakyti'; String get modalBarrierDismissLabel => 'Atsisakyti';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Įklijuoti'; String get pasteButtonLabel => 'Įklijuoti';
...@@ -7330,6 +7459,9 @@ class CupertinoLocalizationLv extends GlobalCupertinoLocalizations { ...@@ -7330,6 +7459,9 @@ class CupertinoLocalizationLv extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Nerādīt'; String get modalBarrierDismissLabel => 'Nerādīt';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Ielīmēt'; String get pasteButtonLabel => 'Ielīmēt';
...@@ -7477,6 +7609,9 @@ class CupertinoLocalizationMk extends GlobalCupertinoLocalizations { ...@@ -7477,6 +7609,9 @@ class CupertinoLocalizationMk extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Отфрли'; String get modalBarrierDismissLabel => 'Отфрли';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Залепи'; String get pasteButtonLabel => 'Залепи';
...@@ -7624,6 +7759,9 @@ class CupertinoLocalizationMl extends GlobalCupertinoLocalizations { ...@@ -7624,6 +7759,9 @@ class CupertinoLocalizationMl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'നിരസിക്കുക'; String get modalBarrierDismissLabel => 'നിരസിക്കുക';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ഒട്ടിക്കുക'; String get pasteButtonLabel => 'ഒട്ടിക്കുക';
...@@ -7771,6 +7909,9 @@ class CupertinoLocalizationMn extends GlobalCupertinoLocalizations { ...@@ -7771,6 +7909,9 @@ class CupertinoLocalizationMn extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Үл хэрэгсэх'; String get modalBarrierDismissLabel => 'Үл хэрэгсэх';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Буулгах'; String get pasteButtonLabel => 'Буулгах';
...@@ -7918,6 +8059,9 @@ class CupertinoLocalizationMr extends GlobalCupertinoLocalizations { ...@@ -7918,6 +8059,9 @@ class CupertinoLocalizationMr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'डिसमिस करा'; String get modalBarrierDismissLabel => 'डिसमिस करा';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'पेस्ट करा'; String get pasteButtonLabel => 'पेस्ट करा';
...@@ -8065,6 +8209,9 @@ class CupertinoLocalizationMs extends GlobalCupertinoLocalizations { ...@@ -8065,6 +8209,9 @@ class CupertinoLocalizationMs extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Tolak'; String get modalBarrierDismissLabel => 'Tolak';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Tampal'; String get pasteButtonLabel => 'Tampal';
...@@ -8212,6 +8359,9 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations { ...@@ -8212,6 +8359,9 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ပယ်ရန်'; String get modalBarrierDismissLabel => 'ပယ်ရန်';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ကူးထည့်ရန်'; String get pasteButtonLabel => 'ကူးထည့်ရန်';
...@@ -8359,6 +8509,9 @@ class CupertinoLocalizationNb extends GlobalCupertinoLocalizations { ...@@ -8359,6 +8509,9 @@ class CupertinoLocalizationNb extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Avvis'; String get modalBarrierDismissLabel => 'Avvis';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Lim inn'; String get pasteButtonLabel => 'Lim inn';
...@@ -8506,6 +8659,9 @@ class CupertinoLocalizationNe extends GlobalCupertinoLocalizations { ...@@ -8506,6 +8659,9 @@ class CupertinoLocalizationNe extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'खारेज गर्नुहोस्'; String get modalBarrierDismissLabel => 'खारेज गर्नुहोस्';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'टाँस्नुहोस्'; String get pasteButtonLabel => 'टाँस्नुहोस्';
...@@ -8653,6 +8809,9 @@ class CupertinoLocalizationNl extends GlobalCupertinoLocalizations { ...@@ -8653,6 +8809,9 @@ class CupertinoLocalizationNl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Sluiten'; String get modalBarrierDismissLabel => 'Sluiten';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Plakken'; String get pasteButtonLabel => 'Plakken';
...@@ -8800,6 +8959,9 @@ class CupertinoLocalizationNo extends GlobalCupertinoLocalizations { ...@@ -8800,6 +8959,9 @@ class CupertinoLocalizationNo extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Avvis'; String get modalBarrierDismissLabel => 'Avvis';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Lim inn'; String get pasteButtonLabel => 'Lim inn';
...@@ -8947,6 +9109,9 @@ class CupertinoLocalizationOr extends GlobalCupertinoLocalizations { ...@@ -8947,6 +9109,9 @@ class CupertinoLocalizationOr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ଖାରଜ କରନ୍ତୁ'; String get modalBarrierDismissLabel => 'ଖାରଜ କରନ୍ତୁ';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ପେଷ୍ଟ କରନ୍ତୁ'; String get pasteButtonLabel => 'ପେଷ୍ଟ କରନ୍ତୁ';
...@@ -9094,6 +9259,9 @@ class CupertinoLocalizationPa extends GlobalCupertinoLocalizations { ...@@ -9094,6 +9259,9 @@ class CupertinoLocalizationPa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ਖਾਰਜ ਕਰੋ'; String get modalBarrierDismissLabel => 'ਖਾਰਜ ਕਰੋ';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ਪੇਸਟ ਕਰੋ'; String get pasteButtonLabel => 'ਪੇਸਟ ਕਰੋ';
...@@ -9241,6 +9409,9 @@ class CupertinoLocalizationPl extends GlobalCupertinoLocalizations { ...@@ -9241,6 +9409,9 @@ class CupertinoLocalizationPl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Zamknij'; String get modalBarrierDismissLabel => 'Zamknij';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Wklej'; String get pasteButtonLabel => 'Wklej';
...@@ -9388,6 +9559,9 @@ class CupertinoLocalizationPt extends GlobalCupertinoLocalizations { ...@@ -9388,6 +9559,9 @@ class CupertinoLocalizationPt extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Dispensar'; String get modalBarrierDismissLabel => 'Dispensar';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Colar'; String get pasteButtonLabel => 'Colar';
...@@ -9574,6 +9748,9 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations { ...@@ -9574,6 +9748,9 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Închideți'; String get modalBarrierDismissLabel => 'Închideți';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Inserați'; String get pasteButtonLabel => 'Inserați';
...@@ -9721,6 +9898,9 @@ class CupertinoLocalizationRu extends GlobalCupertinoLocalizations { ...@@ -9721,6 +9898,9 @@ class CupertinoLocalizationRu extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Закрыть'; String get modalBarrierDismissLabel => 'Закрыть';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Вставить'; String get pasteButtonLabel => 'Вставить';
...@@ -9868,6 +10048,9 @@ class CupertinoLocalizationSi extends GlobalCupertinoLocalizations { ...@@ -9868,6 +10048,9 @@ class CupertinoLocalizationSi extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ඉවත ලන්න'; String get modalBarrierDismissLabel => 'ඉවත ලන්න';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'අලවන්න'; String get pasteButtonLabel => 'අලවන්න';
...@@ -10015,6 +10198,9 @@ class CupertinoLocalizationSk extends GlobalCupertinoLocalizations { ...@@ -10015,6 +10198,9 @@ class CupertinoLocalizationSk extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Odmietnuť'; String get modalBarrierDismissLabel => 'Odmietnuť';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Prilepiť'; String get pasteButtonLabel => 'Prilepiť';
...@@ -10162,6 +10348,9 @@ class CupertinoLocalizationSl extends GlobalCupertinoLocalizations { ...@@ -10162,6 +10348,9 @@ class CupertinoLocalizationSl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Opusti'; String get modalBarrierDismissLabel => 'Opusti';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Prilepi'; String get pasteButtonLabel => 'Prilepi';
...@@ -10309,6 +10498,9 @@ class CupertinoLocalizationSq extends GlobalCupertinoLocalizations { ...@@ -10309,6 +10498,9 @@ class CupertinoLocalizationSq extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Hiq'; String get modalBarrierDismissLabel => 'Hiq';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Ngjit'; String get pasteButtonLabel => 'Ngjit';
...@@ -10456,6 +10648,9 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations { ...@@ -10456,6 +10648,9 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Одбаци'; String get modalBarrierDismissLabel => 'Одбаци';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Налепи'; String get pasteButtonLabel => 'Налепи';
...@@ -10717,6 +10912,9 @@ class CupertinoLocalizationSv extends GlobalCupertinoLocalizations { ...@@ -10717,6 +10912,9 @@ class CupertinoLocalizationSv extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Stäng'; String get modalBarrierDismissLabel => 'Stäng';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Klistra in'; String get pasteButtonLabel => 'Klistra in';
...@@ -10864,6 +11062,9 @@ class CupertinoLocalizationSw extends GlobalCupertinoLocalizations { ...@@ -10864,6 +11062,9 @@ class CupertinoLocalizationSw extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Ondoa'; String get modalBarrierDismissLabel => 'Ondoa';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Bandika'; String get pasteButtonLabel => 'Bandika';
...@@ -11011,6 +11212,9 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations { ...@@ -11011,6 +11212,9 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'நிராகரிக்கும்'; String get modalBarrierDismissLabel => 'நிராகரிக்கும்';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'ஒட்டு'; String get pasteButtonLabel => 'ஒட்டு';
...@@ -11158,6 +11362,9 @@ class CupertinoLocalizationTe extends GlobalCupertinoLocalizations { ...@@ -11158,6 +11362,9 @@ class CupertinoLocalizationTe extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'విస్మరించు'; String get modalBarrierDismissLabel => 'విస్మరించు';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'పేస్ట్ చేయండి'; String get pasteButtonLabel => 'పేస్ట్ చేయండి';
...@@ -11305,6 +11512,9 @@ class CupertinoLocalizationTh extends GlobalCupertinoLocalizations { ...@@ -11305,6 +11512,9 @@ class CupertinoLocalizationTh extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'ปิด'; String get modalBarrierDismissLabel => 'ปิด';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'วาง'; String get pasteButtonLabel => 'วาง';
...@@ -11452,6 +11662,9 @@ class CupertinoLocalizationTl extends GlobalCupertinoLocalizations { ...@@ -11452,6 +11662,9 @@ class CupertinoLocalizationTl extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'I-dismiss'; String get modalBarrierDismissLabel => 'I-dismiss';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'I-paste'; String get pasteButtonLabel => 'I-paste';
...@@ -11599,6 +11812,9 @@ class CupertinoLocalizationTr extends GlobalCupertinoLocalizations { ...@@ -11599,6 +11812,9 @@ class CupertinoLocalizationTr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Kapat'; String get modalBarrierDismissLabel => 'Kapat';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Yapıştır'; String get pasteButtonLabel => 'Yapıştır';
...@@ -11746,6 +11962,9 @@ class CupertinoLocalizationUk extends GlobalCupertinoLocalizations { ...@@ -11746,6 +11962,9 @@ class CupertinoLocalizationUk extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Закрити'; String get modalBarrierDismissLabel => 'Закрити';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Вставити'; String get pasteButtonLabel => 'Вставити';
...@@ -11893,6 +12112,9 @@ class CupertinoLocalizationUr extends GlobalCupertinoLocalizations { ...@@ -11893,6 +12112,9 @@ class CupertinoLocalizationUr extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'برخاست کریں'; String get modalBarrierDismissLabel => 'برخاست کریں';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'پیسٹ کریں'; String get pasteButtonLabel => 'پیسٹ کریں';
...@@ -12040,6 +12262,9 @@ class CupertinoLocalizationUz extends GlobalCupertinoLocalizations { ...@@ -12040,6 +12262,9 @@ class CupertinoLocalizationUz extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Yopish'; String get modalBarrierDismissLabel => 'Yopish';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Joylash'; String get pasteButtonLabel => 'Joylash';
...@@ -12187,6 +12412,9 @@ class CupertinoLocalizationVi extends GlobalCupertinoLocalizations { ...@@ -12187,6 +12412,9 @@ class CupertinoLocalizationVi extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Bỏ qua'; String get modalBarrierDismissLabel => 'Bỏ qua';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Dán'; String get pasteButtonLabel => 'Dán';
...@@ -12334,6 +12562,9 @@ class CupertinoLocalizationZh extends GlobalCupertinoLocalizations { ...@@ -12334,6 +12562,9 @@ class CupertinoLocalizationZh extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => '关闭'; String get modalBarrierDismissLabel => '关闭';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => '粘贴'; String get pasteButtonLabel => '粘贴';
...@@ -12628,6 +12859,9 @@ class CupertinoLocalizationZu extends GlobalCupertinoLocalizations { ...@@ -12628,6 +12859,9 @@ class CupertinoLocalizationZu extends GlobalCupertinoLocalizations {
@override @override
String get modalBarrierDismissLabel => 'Cashisa'; String get modalBarrierDismissLabel => 'Cashisa';
@override
String get noSpellCheckReplacementsLabel => 'No Replacements Found';
@override @override
String get pasteButtonLabel => 'Namathisela'; String get pasteButtonLabel => 'Namathisela';
......
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