Unverified Commit e86c1c88 authored by Qun Cheng's avatar Qun Cheng Committed by GitHub

Add tooltip for the clear button on `SearchAnchor`'s search view (#141804)

Fixes #141347
This PR is to add a "clear text" tooltip for the clear button on `SearchAnchor`'s search view and also add a `clearButtonTooltip` entry for `material_localizations`.
parent 5b673c28
...@@ -32,6 +32,9 @@ abstract class MaterialLocalizations { ...@@ -32,6 +32,9 @@ abstract class MaterialLocalizations {
/// The [BackButton]'s tooltip. /// The [BackButton]'s tooltip.
String get backButtonTooltip; String get backButtonTooltip;
/// The tooltip for the clear button to clear text on [SearchAnchor]'s search view.
String get clearButtonTooltip;
/// The [CloseButton]'s tooltip. /// The [CloseButton]'s tooltip.
String get closeButtonTooltip; String get closeButtonTooltip;
...@@ -1053,6 +1056,9 @@ class DefaultMaterialLocalizations implements MaterialLocalizations { ...@@ -1053,6 +1056,9 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
@override @override
String get backButtonTooltip => 'Back'; String get backButtonTooltip => 'Back';
@override
String get clearButtonTooltip => 'Clear text';
@override @override
String get closeButtonTooltip => 'Close'; String get closeButtonTooltip => 'Close';
......
...@@ -20,6 +20,7 @@ import 'ink_well.dart'; ...@@ -20,6 +20,7 @@ import 'ink_well.dart';
import 'input_border.dart'; import 'input_border.dart';
import 'input_decorator.dart'; import 'input_decorator.dart';
import 'material.dart'; import 'material.dart';
import 'material_localizations.dart';
import 'material_state.dart'; import 'material_state.dart';
import 'search_bar_theme.dart'; import 'search_bar_theme.dart';
import 'search_view_theme.dart'; import 'search_view_theme.dart';
...@@ -811,6 +812,7 @@ class _ViewContentState extends State<_ViewContent> { ...@@ -811,6 +812,7 @@ class _ViewContentState extends State<_ViewContent> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
final Widget defaultLeading = IconButton( final Widget defaultLeading = IconButton(
icon: const Icon(Icons.arrow_back), icon: const Icon(Icons.arrow_back),
tooltip: MaterialLocalizations.of(context).backButtonTooltip,
onPressed: () { Navigator.of(context).pop(); }, onPressed: () { Navigator.of(context).pop(); },
style: const ButtonStyle(tapTargetSize: MaterialTapTargetSize.shrinkWrap), style: const ButtonStyle(tapTargetSize: MaterialTapTargetSize.shrinkWrap),
); );
...@@ -818,6 +820,7 @@ class _ViewContentState extends State<_ViewContent> { ...@@ -818,6 +820,7 @@ class _ViewContentState extends State<_ViewContent> {
final List<Widget> defaultTrailing = <Widget>[ final List<Widget> defaultTrailing = <Widget>[
if (_controller.text.isNotEmpty) IconButton( if (_controller.text.isNotEmpty) IconButton(
icon: const Icon(Icons.close), icon: const Icon(Icons.close),
tooltip: MaterialLocalizations.of(context).clearButtonTooltip,
onPressed: () { onPressed: () {
_controller.clear(); _controller.clear();
}, },
......
...@@ -11,6 +11,7 @@ void main() { ...@@ -11,6 +11,7 @@ void main() {
expect(localizations.openAppDrawerTooltip, isNotNull); expect(localizations.openAppDrawerTooltip, isNotNull);
expect(localizations.backButtonTooltip, isNotNull); expect(localizations.backButtonTooltip, isNotNull);
expect(localizations.clearButtonTooltip, isNotNull);
expect(localizations.closeButtonTooltip, isNotNull); expect(localizations.closeButtonTooltip, isNotNull);
expect(localizations.deleteButtonTooltip, isNotNull); expect(localizations.deleteButtonTooltip, isNotNull);
expect(localizations.moreButtonTooltip, isNotNull); expect(localizations.moreButtonTooltip, isNotNull);
......
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Maak kieslys toe", "menuDismissLabel": "Maak kieslys toe",
"lookUpButtonLabel": "Kyk op", "lookUpButtonLabel": "Kyk op",
"searchWebButtonLabel": "Deursoek web", "searchWebButtonLabel": "Deursoek web",
"shareButtonLabel": "Deel …" "shareButtonLabel": "Deel …",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "ምናሌን አሰናብት", "menuDismissLabel": "ምናሌን አሰናብት",
"lookUpButtonLabel": "ይመልከቱ", "lookUpButtonLabel": "ይመልከቱ",
"searchWebButtonLabel": "ድርን ፈልግ", "searchWebButtonLabel": "ድርን ፈልግ",
"shareButtonLabel": "አጋራ..." "shareButtonLabel": "አጋራ...",
"clearButtonTooltip": "Clear text"
} }
...@@ -155,5 +155,6 @@ ...@@ -155,5 +155,6 @@
"menuDismissLabel": "إغلاق القائمة", "menuDismissLabel": "إغلاق القائمة",
"lookUpButtonLabel": "النظر إلى أعلى", "lookUpButtonLabel": "النظر إلى أعلى",
"searchWebButtonLabel": "البحث على الويب", "searchWebButtonLabel": "البحث على الويب",
"shareButtonLabel": "مشاركة…" "shareButtonLabel": "مشاركة…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "অগ্ৰাহ্য কৰাৰ মেনু", "menuDismissLabel": "অগ্ৰাহ্য কৰাৰ মেনু",
"lookUpButtonLabel": "ওপৰলৈ চাওক", "lookUpButtonLabel": "ওপৰলৈ চাওক",
"searchWebButtonLabel": "ৱেবত সন্ধান কৰক", "searchWebButtonLabel": "ৱেবত সন্ধান কৰক",
"shareButtonLabel": "শ্বেয়াৰ কৰক…" "shareButtonLabel": "শ্বেয়াৰ কৰক…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Menyunu qapadın", "menuDismissLabel": "Menyunu qapadın",
"lookUpButtonLabel": "Axtarın", "lookUpButtonLabel": "Axtarın",
"searchWebButtonLabel": "Vebdə axtarın", "searchWebButtonLabel": "Vebdə axtarın",
"shareButtonLabel": "Paylaşın..." "shareButtonLabel": "Paylaşın...",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Закрыць меню", "menuDismissLabel": "Закрыць меню",
"lookUpButtonLabel": "Знайсці", "lookUpButtonLabel": "Знайсці",
"searchWebButtonLabel": "Пошук у сетцы", "searchWebButtonLabel": "Пошук у сетцы",
"shareButtonLabel": "Абагуліць..." "shareButtonLabel": "Абагуліць...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Отхвърляне на менюто", "menuDismissLabel": "Отхвърляне на менюто",
"lookUpButtonLabel": "Look Up", "lookUpButtonLabel": "Look Up",
"searchWebButtonLabel": "Търсене в мрежата", "searchWebButtonLabel": "Търсене в мрежата",
"shareButtonLabel": "Споделяне..." "shareButtonLabel": "Споделяне...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "বাতিল করার মেনু", "menuDismissLabel": "বাতিল করার মেনু",
"lookUpButtonLabel": "লুক-আপ", "lookUpButtonLabel": "লুক-আপ",
"searchWebButtonLabel": "ওয়েবে সার্চ করুন", "searchWebButtonLabel": "ওয়েবে সার্চ করুন",
"shareButtonLabel": "শেয়ার করুন..." "shareButtonLabel": "শেয়ার করুন...",
"clearButtonTooltip": "Clear text"
} }
...@@ -147,5 +147,6 @@ ...@@ -147,5 +147,6 @@
"menuDismissLabel": "Odbacivanje menija", "menuDismissLabel": "Odbacivanje menija",
"lookUpButtonLabel": "Pogled nagore", "lookUpButtonLabel": "Pogled nagore",
"searchWebButtonLabel": "Pretraži Web", "searchWebButtonLabel": "Pretraži Web",
"shareButtonLabel": "Dijeli..." "shareButtonLabel": "Dijeli...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Ignora el menú", "menuDismissLabel": "Ignora el menú",
"lookUpButtonLabel": "Mira amunt", "lookUpButtonLabel": "Mira amunt",
"searchWebButtonLabel": "Cerca al web", "searchWebButtonLabel": "Cerca al web",
"shareButtonLabel": "Comparteix..." "shareButtonLabel": "Comparteix...",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Zavřít nabídku", "menuDismissLabel": "Zavřít nabídku",
"lookUpButtonLabel": "Vyhledat", "lookUpButtonLabel": "Vyhledat",
"searchWebButtonLabel": "Vyhledávat na webu", "searchWebButtonLabel": "Vyhledávat na webu",
"shareButtonLabel": "Sdílet…" "shareButtonLabel": "Sdílet…",
"clearButtonTooltip": "Clear text"
} }
...@@ -155,5 +155,6 @@ ...@@ -155,5 +155,6 @@
"menuDismissLabel": "Diystyru'r ddewislen", "menuDismissLabel": "Diystyru'r ddewislen",
"lookUpButtonLabel": "Chwilio", "lookUpButtonLabel": "Chwilio",
"searchWebButtonLabel": "Chwilio'r We", "searchWebButtonLabel": "Chwilio'r We",
"shareButtonLabel": "Rhannu..." "shareButtonLabel": "Rhannu...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Luk menu", "menuDismissLabel": "Luk menu",
"lookUpButtonLabel": "Slå op", "lookUpButtonLabel": "Slå op",
"searchWebButtonLabel": "Søg på nettet", "searchWebButtonLabel": "Søg på nettet",
"shareButtonLabel": "Del…" "shareButtonLabel": "Del…",
"clearButtonTooltip": "Clear text"
} }
...@@ -145,5 +145,6 @@ ...@@ -145,5 +145,6 @@
"menuDismissLabel": "Menü schließen", "menuDismissLabel": "Menü schließen",
"lookUpButtonLabel": "Nachschlagen", "lookUpButtonLabel": "Nachschlagen",
"searchWebButtonLabel": "Im Web suchen", "searchWebButtonLabel": "Im Web suchen",
"shareButtonLabel": "Teilen…" "shareButtonLabel": "Teilen…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Παράβλεψη μενού", "menuDismissLabel": "Παράβλεψη μενού",
"lookUpButtonLabel": "Look Up", "lookUpButtonLabel": "Look Up",
"searchWebButtonLabel": "Αναζήτηση στον ιστό", "searchWebButtonLabel": "Αναζήτηση στον ιστό",
"shareButtonLabel": "Κοινοποίηση…" "shareButtonLabel": "Κοινοποίηση…",
"clearButtonTooltip": "Clear text"
} }
...@@ -21,6 +21,11 @@ ...@@ -21,6 +21,11 @@
"description": "The tooltip for the back button, which closes the current page and returns to the previous one." "description": "The tooltip for the back button, which closes the current page and returns to the previous one."
}, },
"clearButtonTooltip": "Clear text",
"@clearButtonTooltip": {
"description": "The tooltip for the button that clears the text input on the search view."
},
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"@closeButtonTooltip": { "@closeButtonTooltip": {
"description": "The tooltip for the close button, which closes the current page and returns to the previous one." "description": "The tooltip for the close button, which closes the current page and returns to the previous one."
......
...@@ -145,5 +145,6 @@ ...@@ -145,5 +145,6 @@
"menuDismissLabel": "Cerrar menú", "menuDismissLabel": "Cerrar menú",
"lookUpButtonLabel": "Buscador visual", "lookUpButtonLabel": "Buscador visual",
"searchWebButtonLabel": "Buscar en la Web", "searchWebButtonLabel": "Buscar en la Web",
"shareButtonLabel": "Compartir..." "shareButtonLabel": "Compartir...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Sulge menüü", "menuDismissLabel": "Sulge menüü",
"lookUpButtonLabel": "Look Up", "lookUpButtonLabel": "Look Up",
"searchWebButtonLabel": "Otsi veebist", "searchWebButtonLabel": "Otsi veebist",
"shareButtonLabel": "Jaga …" "shareButtonLabel": "Jaga …",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Baztertu menua", "menuDismissLabel": "Baztertu menua",
"lookUpButtonLabel": "Bilatu", "lookUpButtonLabel": "Bilatu",
"searchWebButtonLabel": "Bilatu sarean", "searchWebButtonLabel": "Bilatu sarean",
"shareButtonLabel": "Partekatu..." "shareButtonLabel": "Partekatu...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "بستن منو", "menuDismissLabel": "بستن منو",
"lookUpButtonLabel": "جستجو", "lookUpButtonLabel": "جستجو",
"searchWebButtonLabel": "جستجو در وب", "searchWebButtonLabel": "جستجو در وب",
"shareButtonLabel": "هم‌رسانی…" "shareButtonLabel": "هم‌رسانی…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Hylkää valikko", "menuDismissLabel": "Hylkää valikko",
"lookUpButtonLabel": "Hae", "lookUpButtonLabel": "Hae",
"searchWebButtonLabel": "Hae verkosta", "searchWebButtonLabel": "Hae verkosta",
"shareButtonLabel": "Jaa…" "shareButtonLabel": "Jaa…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "I-dismiss ang menu", "menuDismissLabel": "I-dismiss ang menu",
"lookUpButtonLabel": "Tumingin sa Itaas", "lookUpButtonLabel": "Tumingin sa Itaas",
"searchWebButtonLabel": "Maghanap sa Web", "searchWebButtonLabel": "Maghanap sa Web",
"shareButtonLabel": "Ibahagi..." "shareButtonLabel": "Ibahagi...",
"clearButtonTooltip": "Clear text"
} }
...@@ -145,5 +145,6 @@ ...@@ -145,5 +145,6 @@
"menuDismissLabel": "Fermer le menu", "menuDismissLabel": "Fermer le menu",
"lookUpButtonLabel": "Recherche visuelle", "lookUpButtonLabel": "Recherche visuelle",
"searchWebButtonLabel": "Rechercher sur le Web", "searchWebButtonLabel": "Rechercher sur le Web",
"shareButtonLabel": "Partager…" "shareButtonLabel": "Partager…",
"clearButtonTooltip": "Clear text"
} }
...@@ -145,5 +145,6 @@ ...@@ -145,5 +145,6 @@
"menuDismissLabel": "Pechar menú", "menuDismissLabel": "Pechar menú",
"lookUpButtonLabel": "Mirar cara arriba", "lookUpButtonLabel": "Mirar cara arriba",
"searchWebButtonLabel": "Buscar na Web", "searchWebButtonLabel": "Buscar na Web",
"shareButtonLabel": "Compartir…" "shareButtonLabel": "Compartir…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Menü schließen", "menuDismissLabel": "Menü schließen",
"lookUpButtonLabel": "Nachschlagen", "lookUpButtonLabel": "Nachschlagen",
"searchWebButtonLabel": "Im Web suchen", "searchWebButtonLabel": "Im Web suchen",
"shareButtonLabel": "Teilen…" "shareButtonLabel": "Teilen…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "મેનૂ છોડી દો", "menuDismissLabel": "મેનૂ છોડી દો",
"lookUpButtonLabel": "શોધો", "lookUpButtonLabel": "શોધો",
"searchWebButtonLabel": "વેબ પર શોધો", "searchWebButtonLabel": "વેબ પર શોધો",
"shareButtonLabel": "શેર કરો…" "shareButtonLabel": "શેર કરો…",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "סגירת התפריט", "menuDismissLabel": "סגירת התפריט",
"lookUpButtonLabel": "חיפוש", "lookUpButtonLabel": "חיפוש",
"searchWebButtonLabel": "חיפוש באינטרנט", "searchWebButtonLabel": "חיפוש באינטרנט",
"shareButtonLabel": "שיתוף…" "shareButtonLabel": "שיתוף…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "मेन्यू खारिज करें", "menuDismissLabel": "मेन्यू खारिज करें",
"lookUpButtonLabel": "लुक अप बटन", "lookUpButtonLabel": "लुक अप बटन",
"searchWebButtonLabel": "वेब पर खोजें", "searchWebButtonLabel": "वेब पर खोजें",
"shareButtonLabel": "शेयर करें…" "shareButtonLabel": "शेयर करें…",
"clearButtonTooltip": "Clear text"
} }
...@@ -147,5 +147,6 @@ ...@@ -147,5 +147,6 @@
"menuDismissLabel": "Odbacivanje izbornika", "menuDismissLabel": "Odbacivanje izbornika",
"lookUpButtonLabel": "Pogled prema gore", "lookUpButtonLabel": "Pogled prema gore",
"searchWebButtonLabel": "Pretraži web", "searchWebButtonLabel": "Pretraži web",
"shareButtonLabel": "Dijeli..." "shareButtonLabel": "Dijeli...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Menü bezárása", "menuDismissLabel": "Menü bezárása",
"lookUpButtonLabel": "Felfelé nézés", "lookUpButtonLabel": "Felfelé nézés",
"searchWebButtonLabel": "Keresés az interneten", "searchWebButtonLabel": "Keresés az interneten",
"shareButtonLabel": "Megosztás…" "shareButtonLabel": "Megosztás…",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Փակել ընտրացանկը", "menuDismissLabel": "Փակել ընտրացանկը",
"lookUpButtonLabel": "Փնտրել", "lookUpButtonLabel": "Փնտրել",
"searchWebButtonLabel": "Որոնել համացանցում", "searchWebButtonLabel": "Որոնել համացանցում",
"shareButtonLabel": "Կիսվել..." "shareButtonLabel": "Կիսվել...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Tutup menu", "menuDismissLabel": "Tutup menu",
"lookUpButtonLabel": "Cari", "lookUpButtonLabel": "Cari",
"searchWebButtonLabel": "Telusuri di Web", "searchWebButtonLabel": "Telusuri di Web",
"shareButtonLabel": "Bagikan..." "shareButtonLabel": "Bagikan...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Loka valmynd", "menuDismissLabel": "Loka valmynd",
"lookUpButtonLabel": "Look Up", "lookUpButtonLabel": "Look Up",
"searchWebButtonLabel": "Leita á vefnum", "searchWebButtonLabel": "Leita á vefnum",
"shareButtonLabel": "Deila..." "shareButtonLabel": "Deila...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Ignora menu", "menuDismissLabel": "Ignora menu",
"lookUpButtonLabel": "Cerca", "lookUpButtonLabel": "Cerca",
"searchWebButtonLabel": "Cerca sul web", "searchWebButtonLabel": "Cerca sul web",
"shareButtonLabel": "Condividi…" "shareButtonLabel": "Condividi…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "メニューを閉じる", "menuDismissLabel": "メニューを閉じる",
"lookUpButtonLabel": "調べる", "lookUpButtonLabel": "調べる",
"searchWebButtonLabel": "ウェブを検索", "searchWebButtonLabel": "ウェブを検索",
"shareButtonLabel": "共有..." "shareButtonLabel": "共有...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "მენიუს უარყოფა", "menuDismissLabel": "მენიუს უარყოფა",
"lookUpButtonLabel": "აიხედეთ ზემოთ", "lookUpButtonLabel": "აიხედეთ ზემოთ",
"searchWebButtonLabel": "ვებში ძიება", "searchWebButtonLabel": "ვებში ძიება",
"shareButtonLabel": "გაზიარება..." "shareButtonLabel": "გაზიარება...",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "Мәзірді жабу", "menuDismissLabel": "Мәзірді жабу",
"lookUpButtonLabel": "Іздеу", "lookUpButtonLabel": "Іздеу",
"searchWebButtonLabel": "Интернеттен іздеу", "searchWebButtonLabel": "Интернеттен іздеу",
"shareButtonLabel": "Бөлісу…" "shareButtonLabel": "Бөлісу…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "ច្រានចោល​ម៉ឺនុយ", "menuDismissLabel": "ច្រានចោល​ម៉ឺនុយ",
"lookUpButtonLabel": "រកមើល", "lookUpButtonLabel": "រកមើល",
"searchWebButtonLabel": "ស្វែងរក​លើបណ្ដាញ", "searchWebButtonLabel": "ស្វែងរក​លើបណ្ដាញ",
"shareButtonLabel": "ចែករំលែក..." "shareButtonLabel": "ចែករំលែក...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "\u0cae\u0cc6\u0ca8\u0cc1\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1\u0020\u0cb5\u0c9c\u0cbe\u0c97\u0cc6\u0cc2\u0cb3\u0cbf\u0cb8\u0cbf", "menuDismissLabel": "\u0cae\u0cc6\u0ca8\u0cc1\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1\u0020\u0cb5\u0c9c\u0cbe\u0c97\u0cc6\u0cc2\u0cb3\u0cbf\u0cb8\u0cbf",
"lookUpButtonLabel": "\u0cae\u0cc7\u0cb2\u0cc6\u0020\u0ca8\u0ccb\u0ca1\u0cbf", "lookUpButtonLabel": "\u0cae\u0cc7\u0cb2\u0cc6\u0020\u0ca8\u0ccb\u0ca1\u0cbf",
"searchWebButtonLabel": "\u0cb5\u0cc6\u0cac\u0ccd\u200c\u0ca8\u0cb2\u0ccd\u0cb2\u0cbf\u0020\u0cb9\u0cc1\u0ca1\u0cc1\u0c95\u0cbf", "searchWebButtonLabel": "\u0cb5\u0cc6\u0cac\u0ccd\u200c\u0ca8\u0cb2\u0ccd\u0cb2\u0cbf\u0020\u0cb9\u0cc1\u0ca1\u0cc1\u0c95\u0cbf",
"shareButtonLabel": "\u0cb9\u0c82\u0c9a\u0cbf\u0c95\u0cca\u0cb3\u0ccd\u0cb3\u0cbf\u002e\u002e\u002e" "shareButtonLabel": "\u0cb9\u0c82\u0c9a\u0cbf\u0c95\u0cca\u0cb3\u0ccd\u0cb3\u0cbf\u002e\u002e\u002e",
"clearButtonTooltip": "\u0043\u006c\u0065\u0061\u0072\u0020\u0074\u0065\u0078\u0074"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "메뉴 닫기", "menuDismissLabel": "메뉴 닫기",
"lookUpButtonLabel": "찾기", "lookUpButtonLabel": "찾기",
"searchWebButtonLabel": "웹 검색", "searchWebButtonLabel": "웹 검색",
"shareButtonLabel": "공유..." "shareButtonLabel": "공유...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Менюну жабуу", "menuDismissLabel": "Менюну жабуу",
"lookUpButtonLabel": "Издөө", "lookUpButtonLabel": "Издөө",
"searchWebButtonLabel": "Интернеттен издөө", "searchWebButtonLabel": "Интернеттен издөө",
"shareButtonLabel": "Бөлүшүү…" "shareButtonLabel": "Бөлүшүү…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "ປິດເມນູ", "menuDismissLabel": "ປິດເມນູ",
"lookUpButtonLabel": "ຊອກຫາຂໍ້ມູນ", "lookUpButtonLabel": "ຊອກຫາຂໍ້ມູນ",
"searchWebButtonLabel": "ຊອກຫາຢູ່ອິນເຕີເນັດ", "searchWebButtonLabel": "ຊອກຫາຢູ່ອິນເຕີເນັດ",
"shareButtonLabel": "ແບ່ງປັນ..." "shareButtonLabel": "ແບ່ງປັນ...",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Atsisakyti meniu", "menuDismissLabel": "Atsisakyti meniu",
"lookUpButtonLabel": "Ieškoti", "lookUpButtonLabel": "Ieškoti",
"searchWebButtonLabel": "Ieškoti žiniatinklyje", "searchWebButtonLabel": "Ieškoti žiniatinklyje",
"shareButtonLabel": "Bendrinti..." "shareButtonLabel": "Bendrinti...",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "Nerādīt izvēlni", "menuDismissLabel": "Nerādīt izvēlni",
"lookUpButtonLabel": "Meklēt", "lookUpButtonLabel": "Meklēt",
"searchWebButtonLabel": "Meklēt tīmeklī", "searchWebButtonLabel": "Meklēt tīmeklī",
"shareButtonLabel": "Kopīgot…" "shareButtonLabel": "Kopīgot…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Отфрлете го менито", "menuDismissLabel": "Отфрлете го менито",
"lookUpButtonLabel": "Погледнете нагоре", "lookUpButtonLabel": "Погледнете нагоре",
"searchWebButtonLabel": "Пребарајте на интернет", "searchWebButtonLabel": "Пребарајте на интернет",
"shareButtonLabel": "Споделете..." "shareButtonLabel": "Споделете...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "മെനു ഡിസ്മിസ് ചെയ്യുക", "menuDismissLabel": "മെനു ഡിസ്മിസ് ചെയ്യുക",
"lookUpButtonLabel": "മുകളിലേക്ക് നോക്കുക", "lookUpButtonLabel": "മുകളിലേക്ക് നോക്കുക",
"searchWebButtonLabel": "വെബിൽ തിരയുക", "searchWebButtonLabel": "വെബിൽ തിരയുക",
"shareButtonLabel": "പങ്കിടുക..." "shareButtonLabel": "പങ്കിടുക...",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "Цэсийг хаах", "menuDismissLabel": "Цэсийг хаах",
"lookUpButtonLabel": "Дээшээ харах", "lookUpButtonLabel": "Дээшээ харах",
"searchWebButtonLabel": "Вебээс хайх", "searchWebButtonLabel": "Вебээс хайх",
"shareButtonLabel": "Хуваалцах..." "shareButtonLabel": "Хуваалцах...",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "मेनू डिसमिस करा", "menuDismissLabel": "मेनू डिसमिस करा",
"lookUpButtonLabel": "शोध घ्या", "lookUpButtonLabel": "शोध घ्या",
"searchWebButtonLabel": "वेबवर शोधा", "searchWebButtonLabel": "वेबवर शोधा",
"shareButtonLabel": "शेअर करा..." "shareButtonLabel": "शेअर करा...",
"clearButtonTooltip": "Clear text"
} }
...@@ -145,5 +145,6 @@ ...@@ -145,5 +145,6 @@
"menuDismissLabel": "Ketepikan menu", "menuDismissLabel": "Ketepikan menu",
"lookUpButtonLabel": "Lihat ke Atas", "lookUpButtonLabel": "Lihat ke Atas",
"searchWebButtonLabel": "Buat carian pada Web", "searchWebButtonLabel": "Buat carian pada Web",
"shareButtonLabel": "Kongsi..." "shareButtonLabel": "Kongsi...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "မီနူးကိုပယ်ပါ", "menuDismissLabel": "မီနူးကိုပယ်ပါ",
"lookUpButtonLabel": "အပေါ်ကြည့်ရန်", "lookUpButtonLabel": "အပေါ်ကြည့်ရန်",
"searchWebButtonLabel": "ဝဘ်တွင်ရှာရန်", "searchWebButtonLabel": "ဝဘ်တွင်ရှာရန်",
"shareButtonLabel": "မျှဝေရန်..." "shareButtonLabel": "မျှဝေရန်...",
"clearButtonTooltip": "Clear text"
} }
...@@ -143,5 +143,6 @@ ...@@ -143,5 +143,6 @@
"menuDismissLabel": "Lukk menyen", "menuDismissLabel": "Lukk menyen",
"lookUpButtonLabel": "Slå opp", "lookUpButtonLabel": "Slå opp",
"searchWebButtonLabel": "Søk på nettet", "searchWebButtonLabel": "Søk på nettet",
"shareButtonLabel": "Del…" "shareButtonLabel": "Del…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "मेनु खारेज गर्नुहोस्", "menuDismissLabel": "मेनु खारेज गर्नुहोस्",
"lookUpButtonLabel": "माथितिर हेर्नुहोस्", "lookUpButtonLabel": "माथितिर हेर्नुहोस्",
"searchWebButtonLabel": "वेबमा खोज्नुहोस्", "searchWebButtonLabel": "वेबमा खोज्नुहोस्",
"shareButtonLabel": "सेयर गर्नुहोस्..." "shareButtonLabel": "सेयर गर्नुहोस्...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Menu sluiten", "menuDismissLabel": "Menu sluiten",
"lookUpButtonLabel": "Opzoeken", "lookUpButtonLabel": "Opzoeken",
"searchWebButtonLabel": "Op internet zoeken", "searchWebButtonLabel": "Op internet zoeken",
"shareButtonLabel": "Delen..." "shareButtonLabel": "Delen...",
"clearButtonTooltip": "Clear text"
} }
...@@ -143,5 +143,6 @@ ...@@ -143,5 +143,6 @@
"menuDismissLabel": "Lukk menyen", "menuDismissLabel": "Lukk menyen",
"lookUpButtonLabel": "Slå opp", "lookUpButtonLabel": "Slå opp",
"searchWebButtonLabel": "Søk på nettet", "searchWebButtonLabel": "Søk på nettet",
"shareButtonLabel": "Del…" "shareButtonLabel": "Del…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "ମେନୁ ଖାରଜ କରନ୍ତୁ", "menuDismissLabel": "ମେନୁ ଖାରଜ କରନ୍ତୁ",
"lookUpButtonLabel": "ଉପରକୁ ଦେଖନ୍ତୁ", "lookUpButtonLabel": "ଉପରକୁ ଦେଖନ୍ତୁ",
"searchWebButtonLabel": "ୱେବ ସର୍ଚ୍ଚ କରନ୍ତୁ", "searchWebButtonLabel": "ୱେବ ସର୍ଚ୍ଚ କରନ୍ତୁ",
"shareButtonLabel": "ସେୟାର୍ କରନ୍ତୁ..." "shareButtonLabel": "ସେୟାର୍ କରନ୍ତୁ...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "ਮੀਨੂ ਖਾਰਜ ਕਰੋ", "menuDismissLabel": "ਮੀਨੂ ਖਾਰਜ ਕਰੋ",
"lookUpButtonLabel": "ਖੋਜੋ", "lookUpButtonLabel": "ਖੋਜੋ",
"searchWebButtonLabel": "ਵੈੱਬ 'ਤੇ ਖੋਜੋ", "searchWebButtonLabel": "ਵੈੱਬ 'ਤੇ ਖੋਜੋ",
"shareButtonLabel": "ਸਾਂਝਾ ਕਰੋ..." "shareButtonLabel": "ਸਾਂਝਾ ਕਰੋ...",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Zamknij menu", "menuDismissLabel": "Zamknij menu",
"lookUpButtonLabel": "Sprawdź", "lookUpButtonLabel": "Sprawdź",
"searchWebButtonLabel": "Szukaj w internecie", "searchWebButtonLabel": "Szukaj w internecie",
"shareButtonLabel": "Udostępnij…" "shareButtonLabel": "Udostępnij…",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "Dismiss menu", "menuDismissLabel": "Dismiss menu",
"lookUpButtonLabel": "Look Up", "lookUpButtonLabel": "Look Up",
"searchWebButtonLabel": "Search Web", "searchWebButtonLabel": "Search Web",
"shareButtonLabel": "Share..." "shareButtonLabel": "Share...",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "Dispensar menu", "menuDismissLabel": "Dispensar menu",
"lookUpButtonLabel": "Pesquisar", "lookUpButtonLabel": "Pesquisar",
"searchWebButtonLabel": "Pesquisar na Web", "searchWebButtonLabel": "Pesquisar na Web",
"shareButtonLabel": "Compartilhar…" "shareButtonLabel": "Compartilhar…",
"clearButtonTooltip": "Clear text"
} }
...@@ -148,5 +148,6 @@ ...@@ -148,5 +148,6 @@
"menuDismissLabel": "Respingeți meniul", "menuDismissLabel": "Respingeți meniul",
"lookUpButtonLabel": "Privire în sus", "lookUpButtonLabel": "Privire în sus",
"searchWebButtonLabel": "Căutați pe web", "searchWebButtonLabel": "Căutați pe web",
"shareButtonLabel": "Trimiteți…" "shareButtonLabel": "Trimiteți…",
"clearButtonTooltip": "Clear text"
} }
...@@ -151,5 +151,6 @@ ...@@ -151,5 +151,6 @@
"menuDismissLabel": "Закрыть меню", "menuDismissLabel": "Закрыть меню",
"lookUpButtonLabel": "Найти", "lookUpButtonLabel": "Найти",
"searchWebButtonLabel": "Искать в интернете", "searchWebButtonLabel": "Искать в интернете",
"shareButtonLabel": "Поделиться" "shareButtonLabel": "Поделиться",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "මෙනුව අස් කරන්න", "menuDismissLabel": "මෙනුව අස් කරන්න",
"lookUpButtonLabel": "උඩ බලන්න", "lookUpButtonLabel": "උඩ බලන්න",
"searchWebButtonLabel": "වෙබය සොයන්න", "searchWebButtonLabel": "වෙබය සොයන්න",
"shareButtonLabel": "බෙදා ගන්න..." "shareButtonLabel": "බෙදා ගන්න...",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Zavrieť ponuku", "menuDismissLabel": "Zavrieť ponuku",
"lookUpButtonLabel": "Pohľad nahor", "lookUpButtonLabel": "Pohľad nahor",
"searchWebButtonLabel": "Hľadať na webe", "searchWebButtonLabel": "Hľadať na webe",
"shareButtonLabel": "Zdieľať…" "shareButtonLabel": "Zdieľať…",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Opusti meni", "menuDismissLabel": "Opusti meni",
"lookUpButtonLabel": "Pogled gor", "lookUpButtonLabel": "Pogled gor",
"searchWebButtonLabel": "Iskanje v spletu", "searchWebButtonLabel": "Iskanje v spletu",
"shareButtonLabel": "Deli …" "shareButtonLabel": "Deli …",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Hiqe menynë", "menuDismissLabel": "Hiqe menynë",
"lookUpButtonLabel": "Kërko", "lookUpButtonLabel": "Kërko",
"searchWebButtonLabel": "Kërko në ueb", "searchWebButtonLabel": "Kërko në ueb",
"shareButtonLabel": "Ndaj..." "shareButtonLabel": "Ndaj...",
"clearButtonTooltip": "Clear text"
} }
...@@ -147,5 +147,6 @@ ...@@ -147,5 +147,6 @@
"menuDismissLabel": "Одбаците мени", "menuDismissLabel": "Одбаците мени",
"lookUpButtonLabel": "Поглед нагоре", "lookUpButtonLabel": "Поглед нагоре",
"searchWebButtonLabel": "Претражи веб", "searchWebButtonLabel": "Претражи веб",
"shareButtonLabel": "Дели…" "shareButtonLabel": "Дели…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Stäng menyn", "menuDismissLabel": "Stäng menyn",
"lookUpButtonLabel": "Titta upp", "lookUpButtonLabel": "Titta upp",
"searchWebButtonLabel": "Sök på webben", "searchWebButtonLabel": "Sök på webben",
"shareButtonLabel": "Dela …" "shareButtonLabel": "Dela …",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "Ondoa menyu", "menuDismissLabel": "Ondoa menyu",
"lookUpButtonLabel": "Tafuta", "lookUpButtonLabel": "Tafuta",
"searchWebButtonLabel": "Tafuta kwenye Wavuti", "searchWebButtonLabel": "Tafuta kwenye Wavuti",
"shareButtonLabel": "Shiriki..." "shareButtonLabel": "Shiriki...",
"clearButtonTooltip": "Clear text"
} }
...@@ -146,5 +146,6 @@ ...@@ -146,5 +146,6 @@
"menuDismissLabel": "மெனுவை மூடும்", "menuDismissLabel": "மெனுவை மூடும்",
"lookUpButtonLabel": "தேடு", "lookUpButtonLabel": "தேடு",
"searchWebButtonLabel": "இணையத்தில் தேடு", "searchWebButtonLabel": "இணையத்தில் தேடு",
"shareButtonLabel": "பகிர்..." "shareButtonLabel": "பகிர்...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "మెనూను తీసివేయండి", "menuDismissLabel": "మెనూను తీసివేయండి",
"lookUpButtonLabel": "వెతకండి", "lookUpButtonLabel": "వెతకండి",
"searchWebButtonLabel": "వెబ్‌లో సెర్చ్ చేయండి", "searchWebButtonLabel": "వెబ్‌లో సెర్చ్ చేయండి",
"shareButtonLabel": "షేర్ చేయండి..." "shareButtonLabel": "షేర్ చేయండి...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "ปิดเมนู", "menuDismissLabel": "ปิดเมนู",
"lookUpButtonLabel": "ค้นหา", "lookUpButtonLabel": "ค้นหา",
"searchWebButtonLabel": "ค้นหาบนอินเทอร์เน็ต", "searchWebButtonLabel": "ค้นหาบนอินเทอร์เน็ต",
"shareButtonLabel": "แชร์..." "shareButtonLabel": "แชร์...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "I-dismiss ang menu", "menuDismissLabel": "I-dismiss ang menu",
"lookUpButtonLabel": "Tumingin sa Itaas", "lookUpButtonLabel": "Tumingin sa Itaas",
"searchWebButtonLabel": "Maghanap sa Web", "searchWebButtonLabel": "Maghanap sa Web",
"shareButtonLabel": "Ibahagi..." "shareButtonLabel": "Ibahagi...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Menüyü kapat", "menuDismissLabel": "Menüyü kapat",
"lookUpButtonLabel": "Ara", "lookUpButtonLabel": "Ara",
"searchWebButtonLabel": "Web'de Ara", "searchWebButtonLabel": "Web'de Ara",
"shareButtonLabel": "Paylaş..." "shareButtonLabel": "Paylaş...",
"clearButtonTooltip": "Clear text"
} }
...@@ -150,5 +150,6 @@ ...@@ -150,5 +150,6 @@
"menuDismissLabel": "Закрити меню", "menuDismissLabel": "Закрити меню",
"lookUpButtonLabel": "Шукати", "lookUpButtonLabel": "Шукати",
"searchWebButtonLabel": "Пошук в Інтернеті", "searchWebButtonLabel": "Пошук в Інтернеті",
"shareButtonLabel": "Поділитися…" "shareButtonLabel": "Поділитися…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "مینو برخاست کریں", "menuDismissLabel": "مینو برخاست کریں",
"lookUpButtonLabel": "تفصیل دیکھیں", "lookUpButtonLabel": "تفصیل دیکھیں",
"searchWebButtonLabel": "ویب تلاش کریں", "searchWebButtonLabel": "ویب تلاش کریں",
"shareButtonLabel": "اشتراک کریں..." "shareButtonLabel": "اشتراک کریں...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Menyuni yopish", "menuDismissLabel": "Menyuni yopish",
"lookUpButtonLabel": "Tepaga qarang", "lookUpButtonLabel": "Tepaga qarang",
"searchWebButtonLabel": "Internetdan qidirish", "searchWebButtonLabel": "Internetdan qidirish",
"shareButtonLabel": "Ulashish…" "shareButtonLabel": "Ulashish…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Đóng trình đơn", "menuDismissLabel": "Đóng trình đơn",
"lookUpButtonLabel": "Tra cứu", "lookUpButtonLabel": "Tra cứu",
"searchWebButtonLabel": "Tìm kiếm trên web", "searchWebButtonLabel": "Tìm kiếm trên web",
"shareButtonLabel": "Chia sẻ..." "shareButtonLabel": "Chia sẻ...",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "关闭菜单", "menuDismissLabel": "关闭菜单",
"lookUpButtonLabel": "向上看", "lookUpButtonLabel": "向上看",
"searchWebButtonLabel": "在网络上搜索", "searchWebButtonLabel": "在网络上搜索",
"shareButtonLabel": "分享…" "shareButtonLabel": "分享…",
"clearButtonTooltip": "Clear text"
} }
...@@ -144,5 +144,6 @@ ...@@ -144,5 +144,6 @@
"menuDismissLabel": "Chitha imenyu", "menuDismissLabel": "Chitha imenyu",
"lookUpButtonLabel": "Bheka Phezulu", "lookUpButtonLabel": "Bheka Phezulu",
"searchWebButtonLabel": "Sesha Iwebhu", "searchWebButtonLabel": "Sesha Iwebhu",
"shareButtonLabel": "Yabelana..." "shareButtonLabel": "Yabelana...",
"clearButtonTooltip": "Clear text"
} }
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