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"
} }
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