initial pr commit
add missing Cupertino localizations
attempt to fix remote tests
fix failing test
fix linux-analyze
rename var, remove unintentionally commited changes
rename var
PR feedback
fix linux analyze
move platform channel check for look up into test from set up
fix tests
restart tests
diff --git a/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart b/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart
index 33f5e50..37dc76e 100644
--- a/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart
+++ b/packages/flutter/lib/src/cupertino/adaptive_text_selection_toolbar.dart
@@ -94,6 +94,7 @@
required VoidCallback? onCut,
required VoidCallback? onPaste,
required VoidCallback? onSelectAll,
+ required VoidCallback? onLookUp,
required VoidCallback? onLiveTextInput,
required this.anchors,
}) : children = null,
@@ -103,6 +104,7 @@
onCut: onCut,
onPaste: onPaste,
onSelectAll: onSelectAll,
+ onLookUp: onLookUp,
onLiveTextInput: onLiveTextInput
);
diff --git a/packages/flutter/lib/src/cupertino/localizations.dart b/packages/flutter/lib/src/cupertino/localizations.dart
index 477fda7..a5b9b6f 100644
--- a/packages/flutter/lib/src/cupertino/localizations.dart
+++ b/packages/flutter/lib/src/cupertino/localizations.dart
@@ -245,6 +245,10 @@
// The global version uses the translated string from the arb file.
String get selectAllButtonLabel;
+ /// The term used for looking up a selection.
+ // The global version uses the translated string from the arb file.
+ String get lookUpButtonLabel;
+
/// The default placeholder used in [CupertinoSearchTextField].
// The global version uses the translated string from the arb file.
String get searchTextFieldPlaceholderLabel;
@@ -452,6 +456,9 @@
String get selectAllButtonLabel => 'Select All';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get searchTextFieldPlaceholderLabel => 'Search';
@override
diff --git a/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart b/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart
index f07d88e..74f9b60 100644
--- a/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart
+++ b/packages/flutter/lib/src/cupertino/text_selection_toolbar_button.dart
@@ -105,6 +105,8 @@
return localizations.pasteButtonLabel;
case ContextMenuButtonType.selectAll:
return localizations.selectAllButtonLabel;
+ case ContextMenuButtonType.lookUp:
+ return localizations.lookUpButtonLabel;
case ContextMenuButtonType.liveTextInput:
case ContextMenuButtonType.delete:
case ContextMenuButtonType.custom:
@@ -189,6 +191,7 @@
case ContextMenuButtonType.paste:
case ContextMenuButtonType.selectAll:
case ContextMenuButtonType.delete:
+ case ContextMenuButtonType.lookUp:
case ContextMenuButtonType.custom:
return textWidget;
case ContextMenuButtonType.liveTextInput:
diff --git a/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart b/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart
index 0d32cfe..e724be5 100644
--- a/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart
+++ b/packages/flutter/lib/src/material/adaptive_text_selection_toolbar.dart
@@ -103,6 +103,7 @@
required VoidCallback? onCut,
required VoidCallback? onPaste,
required VoidCallback? onSelectAll,
+ required VoidCallback? onLookUp,
required VoidCallback? onLiveTextInput,
required this.anchors,
}) : children = null,
@@ -112,6 +113,7 @@
onCut: onCut,
onPaste: onPaste,
onSelectAll: onSelectAll,
+ onLookUp: onLookUp,
onLiveTextInput: onLiveTextInput
);
@@ -215,6 +217,8 @@
return localizations.selectAllButtonLabel;
case ContextMenuButtonType.delete:
return localizations.deleteButtonTooltip.toUpperCase();
+ case ContextMenuButtonType.lookUp:
+ return localizations.lookUpButtonLabel;
case ContextMenuButtonType.liveTextInput:
return localizations.scanTextButtonLabel;
case ContextMenuButtonType.custom:
diff --git a/packages/flutter/lib/src/material/material_localizations.dart b/packages/flutter/lib/src/material/material_localizations.dart
index 489c23a..2b72a40 100644
--- a/packages/flutter/lib/src/material/material_localizations.dart
+++ b/packages/flutter/lib/src/material/material_localizations.dart
@@ -115,6 +115,9 @@
/// Label for "select all" edit buttons and menu items.
String get selectAllButtonLabel;
+ /// Label for "look up" edit buttons and menu items.
+ String get lookUpButtonLabel;
+
/// Label for the [AboutDialog] button that shows the [LicensePage].
String get viewLicensesButtonLabel;
@@ -1175,6 +1178,9 @@
String get selectAllButtonLabel => 'Select all';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get viewLicensesButtonLabel => 'View licenses';
@override
diff --git a/packages/flutter/lib/src/services/text_input.dart b/packages/flutter/lib/src/services/text_input.dart
index f9f475f..2ab806d 100644
--- a/packages/flutter/lib/src/services/text_input.dart
+++ b/packages/flutter/lib/src/services/text_input.dart
@@ -1050,6 +1050,9 @@
/// Whether select all is enabled, must not be null.
bool get selectAllEnabled => true;
+ /// Whether look up is enabled, must not be null.
+ bool get lookUpEnabled => true;
+
/// Whether Live Text input is enabled.
///
/// See also:
diff --git a/packages/flutter/lib/src/widgets/context_menu_button_item.dart b/packages/flutter/lib/src/widgets/context_menu_button_item.dart
index e355ab4..1a214be 100644
--- a/packages/flutter/lib/src/widgets/context_menu_button_item.dart
+++ b/packages/flutter/lib/src/widgets/context_menu_button_item.dart
@@ -26,6 +26,9 @@
/// A button that deletes the current text selection.
delete,
+ /// A button that looks up the current text selection.
+ lookUp,
+
/// A button for starting Live Text input.
///
/// See also:
diff --git a/packages/flutter/lib/src/widgets/editable_text.dart b/packages/flutter/lib/src/widgets/editable_text.dart
index d23229d..7f5e7c0 100644
--- a/packages/flutter/lib/src/widgets/editable_text.dart
+++ b/packages/flutter/lib/src/widgets/editable_text.dart
@@ -1852,6 +1852,7 @@
required final VoidCallback? onCut,
required final VoidCallback? onPaste,
required final VoidCallback? onSelectAll,
+ required final VoidCallback? onLookUp,
required final VoidCallback? onLiveTextInput,
}) {
final List<ContextMenuButtonItem> resultButtonItem = <ContextMenuButtonItem>[];
@@ -1882,6 +1883,11 @@
onPressed: onSelectAll,
type: ContextMenuButtonType.selectAll,
),
+ if (onLookUp != null)
+ ContextMenuButtonItem(
+ onPressed: onLookUp,
+ type: ContextMenuButtonType.lookUp,
+ ),
]);
}
@@ -2233,6 +2239,15 @@
}
@override
+ bool get lookUpEnabled {
+ if (defaultTargetPlatform != TargetPlatform.iOS) {
+ return false;
+ }
+ return !widget.obscureText
+ && !textEditingValue.selection.isCollapsed;
+ }
+
+ @override
bool get liveTextInputEnabled {
return _liveTextInputStatus?.value == LiveTextInputStatus.enabled &&
!widget.obscureText &&
@@ -2397,6 +2412,22 @@
}
}
+ /// Look up the current selection, as in the "Look Up" edit menu button on iOS.
+ /// Currently this is only implemented for iOS.
+ /// Throws an error if the selection is empty or collapsed.
+ Future<void> lookUpSelection(SelectionChangedCause cause) async {
+ assert(!widget.obscureText);
+
+ final String text = textEditingValue.selection.textInside(textEditingValue.text);
+ if (widget.obscureText || text.isEmpty) {
+ return;
+ }
+ await SystemChannels.platform.invokeMethod(
+ 'LookUp.invoke',
+ text,
+ );
+ }
+
void _startLiveTextInput(SelectionChangedCause cause) {
if (!liveTextInputEnabled) {
return;
@@ -2623,6 +2654,9 @@
onSelectAll: selectAllEnabled
? () => selectAll(SelectionChangedCause.toolbar)
: null,
+ onLookUp: lookUpEnabled
+ ? () => lookUpSelection(SelectionChangedCause.toolbar)
+ : null,
onLiveTextInput: liveTextInputEnabled
? () => _startLiveTextInput(SelectionChangedCause.toolbar)
: null,
diff --git a/packages/flutter/test/cupertino/adaptive_text_selection_toolbar_test.dart b/packages/flutter/test/cupertino/adaptive_text_selection_toolbar_test.dart
index d0c6c1a..93f2e93 100644
--- a/packages/flutter/test/cupertino/adaptive_text_selection_toolbar_test.dart
+++ b/packages/flutter/test/cupertino/adaptive_text_selection_toolbar_test.dart
@@ -168,6 +168,7 @@
onPaste: () {},
onSelectAll: () {},
onLiveTextInput: () {},
+ onLookUp: () {},
),
),
));
@@ -180,16 +181,16 @@
switch (defaultTargetPlatform) {
case TargetPlatform.android:
- expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(6));
case TargetPlatform.fuchsia:
- expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(6));
case TargetPlatform.iOS:
- expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(6));
expect(findLiveTextButton(), findsOneWidget);
case TargetPlatform.macOS:
case TargetPlatform.linux:
case TargetPlatform.windows:
- expect(find.byType(CupertinoDesktopTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(CupertinoDesktopTextSelectionToolbarButton), findsNWidgets(6));
}
},
skip: kIsWeb, // [intended] on web the browser handles the context menu.
diff --git a/packages/flutter/test/cupertino/text_field_test.dart b/packages/flutter/test/cupertino/text_field_test.dart
index ab0b3fb..dfe73be 100644
--- a/packages/flutter/test/cupertino/text_field_test.dart
+++ b/packages/flutter/test/cupertino/text_field_test.dart
@@ -201,6 +201,7 @@
setUp(() async {
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(SystemChannels.platform, mockClipboard.handleMethodCall);
+
EditableText.debugDeterministicCursor = false;
// Fill the clipboard so that the Paste option is available in the text
// selection menu.
@@ -250,6 +251,104 @@
},
);
+ testWidgets('Look Up shows up on iOS only (CupertinoTextField)', (WidgetTester tester) async {
+ String? lastLookUp;
+ TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger
+ .setMockMethodCallHandler(SystemChannels.platform, (MethodCall methodCall) async {
+ if (methodCall.method == 'LookUp.invoke') {
+ expect(methodCall.arguments, isA<String>());
+ lastLookUp = methodCall.arguments as String;
+ }
+ return null;
+ });
+
+ final TextEditingController controller = TextEditingController(
+ text: 'Test',
+ );
+ await tester.pumpWidget(
+ CupertinoApp(
+ home: Center(
+ child: CupertinoTextField(
+ controller: controller,
+ ),
+ ),
+ ),
+ );
+
+ final bool isTargetPlatformiOS = defaultTargetPlatform == TargetPlatform.iOS;
+
+ // Long press to put the cursor after the "s".
+ const int index = 3;
+ await tester.longPressAt(textOffsetToPosition(tester, index));
+ await tester.pump();
+
+ // Double tap on the same location to select the word around the cursor.
+ await tester.tapAt(textOffsetToPosition(tester, index));
+ await tester.pump(const Duration(milliseconds: 50));
+ await tester.tapAt(textOffsetToPosition(tester, index));
+ await tester.pumpAndSettle();
+
+ expect(controller.selection, const TextSelection(baseOffset: 0, extentOffset: 4));
+ expect(find.text('Look Up'), isTargetPlatformiOS? findsOneWidget : findsNothing);
+
+ if (isTargetPlatformiOS) {
+ await tester.tap(find.text('Look Up'));
+ expect(lastLookUp, 'Test');
+ }
+ },
+ variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.android }),
+ skip: isContextMenuProvidedByPlatform, // [intended] only applies to platforms where we supply the context menu.
+ );
+
+ testWidgets('Look Up shows up on iOS only (TextField)', (WidgetTester tester) async {
+ String? lastLookUp;
+ TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger
+ .setMockMethodCallHandler(SystemChannels.platform, (MethodCall methodCall) async {
+ if (methodCall.method == 'LookUp.invoke') {
+ expect(methodCall.arguments, isA<String>());
+ lastLookUp = methodCall.arguments as String;
+ }
+ return null;
+ });
+
+ final TextEditingController controller = TextEditingController(
+ text: 'Test ',
+ );
+ await tester.pumpWidget(
+ MaterialApp(
+ home: Material(
+ child: TextField(
+ controller: controller,
+ ),
+ ),
+ ),
+ );
+
+ final bool isTargetPlatformiOS = defaultTargetPlatform == TargetPlatform.iOS;
+
+ // Long press to put the cursor after the "s".
+ const int index = 3;
+ await tester.longPressAt(textOffsetToPosition(tester, index));
+ await tester.pump();
+
+ // Double tap on the same location to select the word around the cursor.
+ await tester.tapAt(textOffsetToPosition(tester, index));
+ await tester.pump(const Duration(milliseconds: 50));
+ await tester.tapAt(textOffsetToPosition(tester, index));
+ await tester.pumpAndSettle();
+
+ expect(controller.selection, const TextSelection(baseOffset: 0, extentOffset: 4));
+ expect(find.text('Look Up'), isTargetPlatformiOS? findsOneWidget : findsNothing);
+
+ if (isTargetPlatformiOS) {
+ await tester.tap(find.text('Look Up'));
+ expect(lastLookUp, 'Test');
+ }
+ },
+ variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.android }),
+ skip: isContextMenuProvidedByPlatform, // [intended] only applies to platforms where we supply the context menu.
+ );
+
testWidgets('can use the desktop cut/copy/paste buttons on Mac', (WidgetTester tester) async {
final TextEditingController controller = TextEditingController(
text: 'blah1 blah2',
@@ -1859,7 +1958,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -1879,10 +1978,10 @@
// Plain collapsed selection.
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 7 : 6);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 7 : 6);
// Toolbar shows on mobile.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformMobile ? findsNWidgets(2) : findsNothing);
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(2) : findsNothing);
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }));
testWidgets(
@@ -2014,7 +2113,7 @@
);
// Selected text shows 3 toolbar buttons.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Tap the selected word to hide the toolbar and retain the selection.
await tester.tapAt(vPos);
@@ -2032,7 +2131,7 @@
controller.selection,
const TextSelection(baseOffset: 24, extentOffset: 35),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Tap past the selected word to move the cursor and hide the toolbar.
await tester.tapAt(ePos);
@@ -2145,8 +2244,8 @@
} else {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
- case TargetPlatform.iOS:
expect(find.byType(CupertinoButton), findsNWidgets(3));
+ case TargetPlatform.iOS:
case TargetPlatform.android:
case TargetPlatform.fuchsia:
case TargetPlatform.linux:
@@ -2329,7 +2428,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -2351,7 +2450,7 @@
await tester.pump(const Duration(milliseconds: 50));
// First tap moved the cursor.
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 12 : 9);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 12 : 9);
await tester.tapAt(pPos);
await tester.pumpAndSettle();
@@ -2363,7 +2462,7 @@
);
// Selected text shows 3 toolbar buttons.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }));
testWidgets(
@@ -2433,7 +2532,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -2451,7 +2550,7 @@
await tester.pump(const Duration(milliseconds: 50));
// First tap moved the cursor.
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 12 : 9);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 12 : 9);
await tester.tapAt(pPos);
await tester.pump(const Duration(milliseconds: 500));
@@ -2464,7 +2563,7 @@
// you tapped instead of the edge like every other single tap. This is
// likely a bug in iOS 12 and not present in other versions.
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 7 : 6);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 7 : 6);
// No toolbar.
expect(find.byType(CupertinoButton), findsNothing);
@@ -2949,18 +3048,18 @@
await tester.longPressAt(ePos);
await tester.pump(const Duration(milliseconds: 50));
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
if (kIsWeb) {
expect(find.byType(CupertinoButton), findsNothing);
} else {
- expect(find.byType(CupertinoButton), findsNWidgets(isTargetPlatformMobile ? 2 : 1));
+ expect(find.byType(CupertinoButton), findsNWidgets(isTargetPlatformIOS ? 2 : 1));
}
expect(controller.selection.isCollapsed, isTrue);
expect(controller.selection.baseOffset, 6);
// Tap in a slightly different position to avoid hitting the context menu
// on desktop.
- final Offset secondTapPos = isTargetPlatformMobile
+ final Offset secondTapPos = isTargetPlatformIOS
? ePos
: ePos + const Offset(-1.0, 0.0);
await tester.tapAt(secondTapPos);
@@ -3308,7 +3407,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -3326,7 +3425,7 @@
await tester.pump(const Duration(milliseconds: 50));
// First tap moved the cursor to the beginning of the second word.
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 12 : 9);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 12 : 9);
await tester.tapAt(pPos);
await tester.pump(const Duration(milliseconds: 500));
@@ -3360,7 +3459,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -3388,7 +3487,7 @@
if (isContextMenuProvidedByPlatform) {
expect(find.byType(CupertinoButton), findsNothing);
} else {
- expect(find.byType(CupertinoButton), isTargetPlatformMobile ? findsNWidgets(2) : findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
}
await tester.tapAt(pPos);
@@ -3397,7 +3496,7 @@
// First tap moved the cursor.
expect(find.byType(CupertinoButton), findsNothing);
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 12 : 9);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 12 : 9);
await tester.tapAt(pPos);
await tester.pumpAndSettle();
@@ -3408,7 +3507,7 @@
const TextSelection(baseOffset: 8, extentOffset: 12),
);
// Shows toolbar.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }));
testWidgets(
@@ -3428,6 +3527,7 @@
);
final Offset textFieldStart = tester.getTopLeft(find.byType(CupertinoTextField));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.tapAt(textFieldStart + const Offset(50.0, 5.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3441,7 +3541,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Double tap selecting the same word somewhere else is fine.
await tester.tapAt(textFieldStart + const Offset(100.0, 5.0));
@@ -3461,7 +3561,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
await tester.tapAt(textFieldStart + const Offset(150.0, 5.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3477,7 +3577,7 @@
controller.selection,
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }));
group('Triple tap/click', () {
@@ -3717,6 +3817,7 @@
);
final Offset textfieldStart = tester.getTopLeft(find.byType(CupertinoTextField));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.tapAt(textfieldStart + const Offset(50.0, 9.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3729,7 +3830,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
await tester.tapAt(textfieldStart + const Offset(50.0, 9.0));
await tester.pumpAndSettle(kDoubleTapTimeout);
@@ -3755,7 +3856,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
// Third tap shows the toolbar and selects the paragraph.
await tester.tapAt(textfieldStart + const Offset(100.0, 9.0));
@@ -3764,7 +3865,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 36),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
await tester.tapAt(textfieldStart + const Offset(150.0, 25.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3782,7 +3883,7 @@
controller.selection,
const TextSelection(baseOffset: 44, extentOffset: 50),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
// Third tap selects the paragraph and shows the toolbar.
await tester.tapAt(textfieldStart + const Offset(150.0, 25.0));
@@ -3791,7 +3892,7 @@
controller.selection,
const TextSelection(baseOffset: 36, extentOffset: 66),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : (isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }),
);
@@ -4794,7 +4895,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -4824,7 +4925,7 @@
// Fall back to a single tap which selects the edge of the word on iOS, and
// a precise position on macOS.
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 12 : 9);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 12 : 9);
await tester.pump();
// Falling back to a single tap doesn't trigger a toolbar.
@@ -4837,7 +4938,7 @@
);
// On iOS/iPadOS, during a tap we select the edge of the word closest to the tap.
// On macOS, we select the precise position of the tap.
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
@@ -4856,7 +4957,7 @@
await tester.tapAt(ePos, pointer: 7);
await tester.pump(const Duration(milliseconds: 50));
expect(controller.selection.isCollapsed, isTrue);
- expect(controller.selection.baseOffset, isTargetPlatformMobile ? 7 : 5);
+ expect(controller.selection.baseOffset, isTargetPlatformIOS ? 7 : 5);
await tester.tapAt(ePos, pointer: 7);
await tester.pumpAndSettle();
expect(controller.selection.baseOffset, 4);
@@ -8142,7 +8243,7 @@
final TextEditingController controller = TextEditingController(
text: 'Atwater Peel Sherbrooke Bonaventure',
);
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -8167,7 +8268,7 @@
kind: PointerDeviceKind.mouse,
);
await tester.pumpAndSettle();
- if (isTargetPlatformMobile) {
+ if (isTargetPlatformIOS) {
await gesture.up();
// Not a double tap + drag.
await tester.pumpAndSettle(kDoubleTapTimeout);
@@ -8176,7 +8277,7 @@
expect(controller.selection.extentOffset, 23);
// Expand the selection a bit.
- if (isTargetPlatformMobile) {
+ if (isTargetPlatformIOS) {
await gesture.down(textOffsetToPosition(tester, 24));
await tester.pumpAndSettle();
}
@@ -8355,7 +8456,7 @@
final TextEditingController controller = TextEditingController(
text: 'Atwater Peel Sherbrooke Bonaventure',
);
- final bool isTargetPlatformMobile = defaultTargetPlatform == TargetPlatform.iOS;
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.pumpWidget(
CupertinoApp(
home: Center(
@@ -8380,7 +8481,7 @@
kind: PointerDeviceKind.mouse,
);
await tester.pumpAndSettle();
- if (isTargetPlatformMobile) {
+ if (isTargetPlatformIOS) {
await gesture.up();
// Not a double tap + drag.
await tester.pumpAndSettle(kDoubleTapTimeout);
@@ -8390,7 +8491,7 @@
expect(controller.selection.extentOffset, 8);
// Expand the selection a bit.
- if (isTargetPlatformMobile) {
+ if (isTargetPlatformIOS) {
await gesture.down(textOffsetToPosition(tester, 7));
await tester.pumpAndSettle();
}
diff --git a/packages/flutter/test/cupertino/text_selection_test.dart b/packages/flutter/test/cupertino/text_selection_test.dart
index b679eb6..b154e9a 100644
--- a/packages/flutter/test/cupertino/text_selection_test.dart
+++ b/packages/flutter/test/cupertino/text_selection_test.dart
@@ -247,7 +247,7 @@
testWidgets("When a menu item doesn't fit, a second page is used.", (WidgetTester tester) async {
// Set the screen size to more narrow, so that Paste can't fit.
- tester.view.physicalSize = const Size(800, 800);
+ tester.view.physicalSize = const Size(900, 800);
addTearDown(tester.view.reset);
final TextEditingController controller = TextEditingController(text: 'abc def ghi');
@@ -270,6 +270,7 @@
expect(find.text('Copy'), findsNothing);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsNothing);
expect(findOverflowNextButton(), findsNothing);
@@ -285,27 +286,43 @@
expect(find.text('Copy'), findsOneWidget);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsNothing);
expect(findOverflowNextButton(), findsOneWidget);
+ // Tapping the next button shows both the overflow, back, and next buttons.
+ await tester.tapAt(tester.getCenter(findOverflowNextButton()));
+ await tester.pumpAndSettle();
+ expect(find.text('Cut'), findsNothing);
+ expect(find.text('Copy'), findsNothing);
+ expect(find.text('Paste'), findsOneWidget);
+ expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
+ expect(findOverflowBackButton(), findsOneWidget);
+ expect(findOverflowNextButton(), findsOneWidget);
+
// Tapping the next button shows the overflowing button and the next
// button is hidden as the last page is shown.
await tester.tapAt(tester.getCenter(findOverflowNextButton()));
await tester.pumpAndSettle();
expect(find.text('Cut'), findsNothing);
expect(find.text('Copy'), findsNothing);
- expect(find.text('Paste'), findsOneWidget);
+ expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsOneWidget);
expect(findOverflowBackButton(), findsOneWidget);
expect(findOverflowNextButton(), findsNothing);
// Tapping the back button shows the first page again with the next button.
await tester.tapAt(tester.getCenter(findOverflowBackButton()));
await tester.pumpAndSettle();
+ await tester.tapAt(tester.getCenter(findOverflowBackButton()));
+ await tester.pumpAndSettle();
expect(find.text('Cut'), findsOneWidget);
expect(find.text('Copy'), findsOneWidget);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsNothing);
expect(findOverflowNextButton(), findsOneWidget);
},
@@ -340,6 +357,7 @@
expect(find.text('Copy'), findsNothing);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsNothing);
expect(findOverflowNextButton(), findsNothing);
@@ -356,6 +374,7 @@
expect(find.text('Copy'), findsNothing);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsNothing);
expect(findOverflowNextButton(), findsOneWidget);
@@ -367,22 +386,36 @@
expect(find.text('Copy'), findsOneWidget);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsOneWidget);
expect(findOverflowNextButton(), findsOneWidget);
- // Tapping the next button again shows Paste and hides the next button as
- // the last page is shown.
+ // Tapping the next button again shows Paste
await tester.tapAt(tester.getCenter(findOverflowNextButton()));
await tester.pumpAndSettle();
- expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(2));
+ expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(3));
expect(find.text('Cut'), findsNothing);
expect(find.text('Copy'), findsNothing);
expect(find.text('Paste'), findsOneWidget);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
+ expect(findOverflowBackButton(), findsOneWidget);
+ expect(findOverflowNextButton(), findsOneWidget);
+
+ // Tapping the next button again shows the last page.
+ await tester.tapAt(tester.getCenter(findOverflowNextButton()));
+ await tester.pumpAndSettle();
+ expect(find.text('Cut'), findsNothing);
+ expect(find.text('Copy'), findsNothing);
+ expect(find.text('Paste'), findsNothing);
+ expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsOneWidget);
expect(findOverflowBackButton(), findsOneWidget);
expect(findOverflowNextButton(), findsNothing);
- // Tapping the back button shows the second page again with the next button.
+ // Tapping the back button twice shows the second page again with the next button.
+ await tester.tapAt(tester.getCenter(findOverflowBackButton()));
+ await tester.pumpAndSettle();
await tester.tapAt(tester.getCenter(findOverflowBackButton()));
await tester.pumpAndSettle();
expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(3));
@@ -390,6 +423,7 @@
expect(find.text('Copy'), findsOneWidget);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsOneWidget);
expect(findOverflowNextButton(), findsOneWidget);
@@ -401,6 +435,7 @@
expect(find.text('Copy'), findsNothing);
expect(find.text('Paste'), findsNothing);
expect(find.text('Select All'), findsNothing);
+ expect(find.text('Look Up'), findsNothing);
expect(findOverflowBackButton(), findsNothing);
expect(findOverflowNextButton(), findsOneWidget);
},
@@ -485,7 +520,7 @@
expect(findOverflowBackButton(), findsOneWidget);
expect(findOverflowNextButton(), findsOneWidget);
- // Tap next to go to the third and final page.
+ // Tap twice to go to the third page.
await tester.tapAt(tester.getCenter(findOverflowNextButton()));
await tester.pumpAndSettle();
expect(find.text(_longLocalizations.cutButtonLabel), findsNothing);
@@ -493,7 +528,7 @@
expect(find.text(_longLocalizations.pasteButtonLabel), findsOneWidget);
expect(find.text(_longLocalizations.selectAllButtonLabel), findsNothing);
expect(findOverflowBackButton(), findsOneWidget);
- expect(findOverflowNextButton(), findsNothing);
+ expect(findOverflowNextButton(), findsOneWidget);
// Tap back to go to the second page again.
await tester.tapAt(tester.getCenter(findOverflowBackButton()));
diff --git a/packages/flutter/test/material/adaptive_text_selection_toolbar_test.dart b/packages/flutter/test/material/adaptive_text_selection_toolbar_test.dart
index 3d85f3e..e94c1f4 100644
--- a/packages/flutter/test/material/adaptive_text_selection_toolbar_test.dart
+++ b/packages/flutter/test/material/adaptive_text_selection_toolbar_test.dart
@@ -186,6 +186,7 @@
onPaste: () {},
onSelectAll: () {},
onLiveTextInput: () {},
+ onLookUp: () {},
),
),
),
@@ -201,18 +202,18 @@
case TargetPlatform.android:
case TargetPlatform.fuchsia:
expect(find.text('Select all'), findsOneWidget);
- expect(find.byType(TextSelectionToolbarTextButton), findsNWidgets(5));
+ expect(find.byType(TextSelectionToolbarTextButton), findsNWidgets(6));
case TargetPlatform.iOS:
expect(find.text('Select All'), findsOneWidget);
expect(findLiveTextButton(), findsOneWidget);
- expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(CupertinoTextSelectionToolbarButton), findsNWidgets(6));
case TargetPlatform.linux:
case TargetPlatform.windows:
expect(find.text('Select all'), findsOneWidget);
- expect(find.byType(DesktopTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(DesktopTextSelectionToolbarButton), findsNWidgets(6));
case TargetPlatform.macOS:
expect(find.text('Select All'), findsOneWidget);
- expect(find.byType(CupertinoDesktopTextSelectionToolbarButton), findsNWidgets(5));
+ expect(find.byType(CupertinoDesktopTextSelectionToolbarButton), findsNWidgets(6));
}
},
skip: kIsWeb, // [intended] on web the browser handles the context menu.
diff --git a/packages/flutter/test/material/localizations_test.dart b/packages/flutter/test/material/localizations_test.dart
index 67df019..6f4c02b 100644
--- a/packages/flutter/test/material/localizations_test.dart
+++ b/packages/flutter/test/material/localizations_test.dart
@@ -29,6 +29,7 @@
expect(localizations.copyButtonLabel, isNotNull);
expect(localizations.cutButtonLabel, isNotNull);
expect(localizations.scanTextButtonLabel, isNotNull);
+ expect(localizations.lookUpButtonLabel, isNotNull);
expect(localizations.okButtonLabel, isNotNull);
expect(localizations.pasteButtonLabel, isNotNull);
expect(localizations.selectAllButtonLabel, isNotNull);
diff --git a/packages/flutter/test/material/text_field_test.dart b/packages/flutter/test/material/text_field_test.dart
index 09fb36b..d0d6e01 100644
--- a/packages/flutter/test/material/text_field_test.dart
+++ b/packages/flutter/test/material/text_field_test.dart
@@ -9216,8 +9216,8 @@
const TextSelection(baseOffset: 24, extentOffset: 35),
);
- // Selected text shows 3 toolbar buttons.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ // Selected text shows 4 toolbar buttons.
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Tap the selected word to hide the toolbar and retain the selection.
await tester.tapAt(vPos);
@@ -9235,7 +9235,7 @@
controller.selection,
const TextSelection(baseOffset: 24, extentOffset: 35),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Tap past the selected word to move the cursor and hide the toolbar.
await tester.tapAt(ePos);
@@ -9290,7 +9290,7 @@
);
// Selected text shows 3 toolbar buttons.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }),
);
@@ -9859,7 +9859,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
await tester.tapAt(textfieldStart + const Offset(50.0, 9.0));
await tester.pumpAndSettle(kDoubleTapTimeout);
@@ -9883,7 +9883,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Third tap shows the toolbar and selects the paragraph.
await tester.tapAt(textfieldStart + const Offset(100.0, 9.0));
@@ -9892,7 +9892,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 36),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
await tester.tapAt(textfieldStart + const Offset(150.0, 50.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -9909,7 +9909,7 @@
controller.selection,
const TextSelection(baseOffset: 44, extentOffset: 50),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Third tap selects the paragraph and shows the toolbar.
await tester.tapAt(textfieldStart + const Offset(150.0, 50.0));
@@ -9918,7 +9918,7 @@
controller.selection,
const TextSelection(baseOffset: 36, extentOffset: 66),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }),
);
@@ -11110,6 +11110,7 @@
);
final Offset textfieldStart = tester.getTopLeft(find.byType(TextField));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.tapAt(textfieldStart + const Offset(150.0, 9.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -11123,8 +11124,8 @@
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- // Selected text shows 3 toolbar buttons.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ // Selected text shows 4 toolbar buttons on iOS, and 3 on macOS.
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3));
await gesture.up();
await tester.pump();
@@ -11134,8 +11135,9 @@
controller.selection,
const TextSelection(baseOffset: 8, extentOffset: 12),
);
+
// The toolbar is still showing.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -11253,6 +11255,7 @@
);
final Offset textfieldStart = tester.getTopLeft(find.byType(TextField));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.longPressAt(textfieldStart + const Offset(50.0, 9.0));
await tester.pumpAndSettle();
@@ -11266,7 +11269,7 @@
// Collapsed toolbar shows 3 buttons.
expect(
find.byType(CupertinoButton),
- isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3),
+ isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3)
);
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
@@ -11525,6 +11528,7 @@
);
final Offset textfieldStart = tester.getTopLeft(find.byType(TextField));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
final TestGesture gesture =
await tester.startGesture(textfieldStart + const Offset(50.0, 9.0));
@@ -11569,10 +11573,7 @@
const TextSelection(baseOffset: 0, extentOffset: 23),
);
// The toolbar now shows up.
- expect(
- find.byType(CupertinoButton),
- isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3),
- );
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -11684,6 +11685,7 @@
);
final RenderEditable renderEditable = findRenderEditable(tester);
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
List<TextSelectionPoint> lastCharEndpoint = renderEditable.getEndpointsForSelection(
const TextSelection.collapsed(offset: 66), // Last character's position.
@@ -11737,7 +11739,7 @@
const TextSelection(baseOffset: 0, extentOffset: 66, affinity: TextAffinity.upstream),
);
// The toolbar now shows up.
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3));
lastCharEndpoint = renderEditable.getEndpointsForSelection(
const TextSelection.collapsed(offset: 66), // Last character's position.
@@ -12330,7 +12332,7 @@
controller.selection,
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformMobile ? findsNWidgets(4) : findsNWidgets(3));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -12414,6 +12416,7 @@
);
final Offset textfieldStart = tester.getTopLeft(find.byType(TextField));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.tapAt(textfieldStart + const Offset(50.0, 9.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -12427,7 +12430,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
// Double tap selecting the same word somewhere else is fine.
await tester.tapAt(textfieldStart + const Offset(100.0, 9.0));
@@ -12447,7 +12450,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3));
await tester.tapAt(textfieldStart + const Offset(150.0, 9.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -12463,7 +12466,7 @@
controller.selection,
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : isTargetPlatformIOS ? findsNWidgets(4) : findsNWidgets(3));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }),
);
@@ -12890,7 +12893,7 @@
await gesture.up();
await tester.pumpAndSettle();
- expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(3));
+ expect(find.byType(CupertinoButton), isContextMenuProvidedByPlatform ? findsNothing : findsNWidgets(4));
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }));
testWidgets('tap on non-force-press-supported devices work', (WidgetTester tester) async {
diff --git a/packages/flutter/test/widgets/editable_text_test.dart b/packages/flutter/test/widgets/editable_text_test.dart
index 4cc86a0..3c8ebd8 100644
--- a/packages/flutter/test/widgets/editable_text_test.dart
+++ b/packages/flutter/test/widgets/editable_text_test.dart
@@ -154,6 +154,7 @@
onCut: null,
onPaste: null,
onSelectAll: null,
+ onLookUp: null,
onLiveTextInput: () {
invokedLiveTextInputSuccessfully = true;
},
diff --git a/packages/flutter/test/widgets/selectable_text_test.dart b/packages/flutter/test/widgets/selectable_text_test.dart
index 033d5c2..6b8f030 100644
--- a/packages/flutter/test/widgets/selectable_text_test.dart
+++ b/packages/flutter/test/widgets/selectable_text_test.dart
@@ -2930,6 +2930,7 @@
),
);
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
final Offset selectableTextStart = tester.getTopLeft(find.byType(SelectableText));
// This tap just puts the cursor somewhere different than where the double
@@ -2957,8 +2958,8 @@
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- // Selected text shows 1 toolbar buttons.
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ // Selected text shows 1 toolbar buttons on MacOS, 2 on iOS.
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -3071,6 +3072,7 @@
);
final Offset selectableTextStart = tester.getTopLeft(find.byType(SelectableText));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.tapAt(selectableTextStart + const Offset(150.0, 5.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3087,8 +3089,8 @@
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- // Selected text shows 1 toolbar buttons.
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ // Selected text shows 2 toolbar buttons for iOS, 1 for macOS.
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
await gesture.up();
await tester.pump();
@@ -3099,7 +3101,7 @@
const TextSelection(baseOffset: 8, extentOffset: 12),
);
// The toolbar is still showing.
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -3198,6 +3200,7 @@
);
final Offset selectableTextStart = tester.getTopLeft(find.byType(SelectableText));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.longPressAt(selectableTextStart + const Offset(50.0, 5.0));
await tester.pump();
@@ -3215,7 +3218,7 @@
);
// Toolbar shows one button.
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -3480,6 +3483,7 @@
await tester.startGesture(textOffsetToPosition(tester, 18));
await tester.pump(const Duration(milliseconds: 500));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
final EditableText editableTextWidget = tester.widget(find.byType(EditableText).first);
final TextEditingController controller = editableTextWidget.controller;
@@ -3550,7 +3554,7 @@
),
);
// The toolbar now shows up.
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }),
);
@@ -3778,7 +3782,7 @@
);
// Long press toolbar.
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), findsNWidgets(2));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }),
);
@@ -3841,6 +3845,7 @@
);
final Offset selectableTextStart = tester.getTopLeft(find.byType(SelectableText));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.longPressAt(selectableTextStart + const Offset(50.0, 5.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3870,7 +3875,8 @@
controller.selection,
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -3887,6 +3893,7 @@
),
);
final Offset selectableTextStart = tester.getTopLeft(find.byType(SelectableText));
+ final bool isTargetPlatformIOS = defaultTargetPlatform == TargetPlatform.iOS;
await tester.tapAt(selectableTextStart + const Offset(50.0, 5.0));
await tester.pump(const Duration(milliseconds: 50));
@@ -3904,7 +3911,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
// Double tap selecting the same word somewhere else is fine.
await tester.pumpAndSettle(kDoubleTapTimeout);
@@ -3921,7 +3928,7 @@
controller.selection,
const TextSelection(baseOffset: 0, extentOffset: 7),
);
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
// Hide the toolbar so it doesn't interfere with taps on the text.
final EditableTextState editableTextState =
@@ -3943,7 +3950,7 @@
controller.selection,
const TextSelection(baseOffset: 8, extentOffset: 12),
);
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), isTargetPlatformIOS ? findsNWidgets(2) : findsNWidgets(1));
},
variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS, TargetPlatform.macOS }),
);
@@ -4022,7 +4029,7 @@
await gesture.up();
await tester.pump();
- expect(find.byType(CupertinoButton), findsNWidgets(1));
+ expect(find.byType(CupertinoButton), findsNWidgets(2));
}, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS }));
testWidgets('tap on non-force-press-supported devices work', (WidgetTester tester) async {
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_af.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_af.arb
index 1f96f95..28d5ff7 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_af.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_af.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Oortjie $tabIndex van $tabCount",
"modalBarrierDismissLabel": "Maak toe",
"searchTextFieldPlaceholderLabel": "Soek",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_am.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_am.arb
index d3de14d..58b58d3 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_am.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_am.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "ትር $tabIndex ከ$tabCount",
"modalBarrierDismissLabel": "አሰናብት",
"searchTextFieldPlaceholderLabel": "ፍለጋ",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ar.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ar.arb
index 6f61d6b..27929f3 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ar.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ar.arb
@@ -42,5 +42,6 @@
"tabSemanticsLabel": "علامة التبويب $tabIndex من $tabCount",
"modalBarrierDismissLabel": "رفض",
"searchTextFieldPlaceholderLabel": "بحث",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_as.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_as.arb
index e40478d..8b2116a 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_as.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_as.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount টা টেবৰ $tabIndex নম্বৰটো",
"modalBarrierDismissLabel": "অগ্ৰাহ্য কৰক",
"searchTextFieldPlaceholderLabel": "সন্ধান কৰক",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_az.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_az.arb
index 36b8ebb..035b0e5 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_az.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_az.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex/$tabCount",
"modalBarrierDismissLabel": "İmtina edin",
"searchTextFieldPlaceholderLabel": "Axtarın",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_be.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_be.arb
index 2ac08c1..894fd23 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_be.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_be.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Укладка $tabIndex з $tabCount",
"modalBarrierDismissLabel": "Адхіліць",
"searchTextFieldPlaceholderLabel": "Пошук",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_bg.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_bg.arb
index 70dbfb2..edd3f90 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_bg.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_bg.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Раздел $tabIndex от $tabCount",
"modalBarrierDismissLabel": "Отхвърляне",
"searchTextFieldPlaceholderLabel": "Търсене",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_bn.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_bn.arb
index a69f8b2..982bc0a 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_bn.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_bn.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount-এর মধ্যে $tabIndex নম্বর ট্যাব",
"modalBarrierDismissLabel": "খারিজ করুন",
"searchTextFieldPlaceholderLabel": "সার্চ করুন",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_bs.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_bs.arb
index 5a0039f..c2bdc89 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_bs.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_bs.arb
@@ -27,5 +27,6 @@
"tabSemanticsLabel": "Kartica $tabIndex od $tabCount",
"modalBarrierDismissLabel": "Odbaci",
"searchTextFieldPlaceholderLabel": "Pretraživanje",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ca.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ca.arb
index 9f0fa56..75a0f14 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ca.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ca.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Pestanya $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Ignora",
"searchTextFieldPlaceholderLabel": "Cerca",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_cs.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_cs.arb
index bf8c3c0..5fd82b2 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_cs.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_cs.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Karta $tabIndex z $tabCount",
"modalBarrierDismissLabel": "Zavřít",
"searchTextFieldPlaceholderLabel": "Hledat",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_cy.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_cy.arb
index 4ca5372..de0b363 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_cy.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_cy.arb
@@ -42,5 +42,6 @@
"selectAllButtonLabel": "Dewis y Cyfan",
"searchTextFieldPlaceholderLabel": "Chwilio",
"modalBarrierDismissLabel": "Diystyru",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_da.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_da.arb
index c98e5d7..646e486 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_da.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_da.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Fane $tabIndex af $tabCount",
"modalBarrierDismissLabel": "Afvis",
"searchTextFieldPlaceholderLabel": "Søg",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_de.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_de.arb
index df870f0..e937b80 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_de.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_de.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex von $tabCount",
"modalBarrierDismissLabel": "Schließen",
"searchTextFieldPlaceholderLabel": "Suche",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_el.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_el.arb
index 8020296..0c94468 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_el.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_el.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Καρτέλα $tabIndex από $tabCount",
"modalBarrierDismissLabel": "Παράβλεψη",
"searchTextFieldPlaceholderLabel": "Αναζήτηση",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_en.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_en.arb
index 2c003f7..763baec 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_en.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_en.arb
@@ -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."
},
+ "lookUpButtonLabel": "Look Up",
+ "@lookUpButtonLabel": {
+ "description": "The label for the Look Up button and menu items on iOS."
+ },
+
"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."
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_es.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_es.arb
index fbbcdf4..07bda3a 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_es.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_es.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Pestaña $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Cerrar",
"searchTextFieldPlaceholderLabel": "Buscar",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_et.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_et.arb
index b584e67..4231deb 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_et.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_et.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabIndex. vaheleht $tabCount-st",
"modalBarrierDismissLabel": "Loobu",
"searchTextFieldPlaceholderLabel": "Otsige",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_eu.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_eu.arb
index d1882a4..b6f0cc9 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_eu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_eu.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabIndex/$tabCount fitxa",
"modalBarrierDismissLabel": "Baztertu",
"searchTextFieldPlaceholderLabel": "Bilatu",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_fa.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_fa.arb
index 63cd873..4b96281 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_fa.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_fa.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "برگه $tabIndex از $tabCount",
"modalBarrierDismissLabel": "نپذیرفتن",
"searchTextFieldPlaceholderLabel": "جستجو",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_fi.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_fi.arb
index f69aaa5..82585ae 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_fi.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_fi.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Välilehti $tabIndex kautta $tabCount",
"modalBarrierDismissLabel": "Ohita",
"searchTextFieldPlaceholderLabel": "Hae",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_fil.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_fil.arb
index 89396f8..1ca174e 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_fil.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_fil.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex ng $tabCount",
"modalBarrierDismissLabel": "I-dismiss",
"searchTextFieldPlaceholderLabel": "Hanapin",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_fr.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_fr.arb
index 069b9a1..91e00fb6 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_fr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_fr.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Onglet $tabIndex sur $tabCount",
"modalBarrierDismissLabel": "Ignorer",
"searchTextFieldPlaceholderLabel": "Rechercher",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_gl.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_gl.arb
index 4acd245..7be44a5 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_gl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_gl.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Pestana $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Ignorar",
"searchTextFieldPlaceholderLabel": "Fai unha busca",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_gsw.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_gsw.arb
index df870f0..e937b80 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_gsw.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_gsw.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex von $tabCount",
"modalBarrierDismissLabel": "Schließen",
"searchTextFieldPlaceholderLabel": "Suche",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_gu.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_gu.arb
index c2b0e8e..398b6b4 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_gu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_gu.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCountમાંથી $tabIndex ટૅબ",
"modalBarrierDismissLabel": "છોડી દો",
"searchTextFieldPlaceholderLabel": "શોધો",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_he.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_he.arb
index 7671ac1..22714b5 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_he.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_he.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "כרטיסייה $tabIndex מתוך $tabCount",
"modalBarrierDismissLabel": "סגירה",
"searchTextFieldPlaceholderLabel": "חיפוש",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_hi.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_hi.arb
index 4dafff6..c9e758d 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_hi.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_hi.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount का टैब $tabIndex",
"modalBarrierDismissLabel": "खारिज करें",
"searchTextFieldPlaceholderLabel": "खोजें",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_hr.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_hr.arb
index 3af6a49..b8f6347 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_hr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_hr.arb
@@ -27,5 +27,6 @@
"tabSemanticsLabel": "Kartica $tabIndex od $tabCount",
"modalBarrierDismissLabel": "Odbaci",
"searchTextFieldPlaceholderLabel": "Pretraživanje",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_hu.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_hu.arb
index 3f6c346..b965b95 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_hu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_hu.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount/$tabIndex. lap",
"modalBarrierDismissLabel": "Elvetés",
"searchTextFieldPlaceholderLabel": "Keresés",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_hy.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_hy.arb
index d381cd1..0c7f3cb 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_hy.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_hy.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Ներդիր $tabIndex՝ $tabCount-ից",
"modalBarrierDismissLabel": "Փակել",
"searchTextFieldPlaceholderLabel": "Որոնում",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_id.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_id.arb
index 59e1f52..1959ad1 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_id.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_id.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex dari $tabCount",
"modalBarrierDismissLabel": "Tutup",
"searchTextFieldPlaceholderLabel": "Telusuri",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_is.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_is.arb
index f9278ad..f02c102 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_is.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_is.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Flipi $tabIndex af $tabCount",
"modalBarrierDismissLabel": "Hunsa",
"searchTextFieldPlaceholderLabel": "Leit",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_it.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_it.arb
index 0e81c55..f618c2a 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_it.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_it.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Scheda $tabIndex di $tabCount",
"modalBarrierDismissLabel": "Ignora",
"searchTextFieldPlaceholderLabel": "Cerca",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ja.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ja.arb
index 4920f0f..ab3ab2b 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ja.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ja.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "タブ: $tabIndex/$tabCount",
"modalBarrierDismissLabel": "閉じる",
"searchTextFieldPlaceholderLabel": "検索",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ka.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ka.arb
index 3859335..5f902b2 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ka.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ka.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "ჩანართი $tabIndex / $tabCount-დან",
"modalBarrierDismissLabel": "დახურვა",
"searchTextFieldPlaceholderLabel": "ძიება",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_kk.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_kk.arb
index bc86ed2..174610b 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_kk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_kk.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Қойынды: $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Жабу",
"searchTextFieldPlaceholderLabel": "Іздеу",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_km.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_km.arb
index aa8dede..59ba385 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_km.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_km.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "ផ្ទាំងទី $tabIndex នៃ $tabCount",
"modalBarrierDismissLabel": "ច្រានចោល",
"searchTextFieldPlaceholderLabel": "ស្វែងរក",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_kn.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_kn.arb
index 2c1ed6b..259a5db 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_kn.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_kn.arb
@@ -22,5 +22,6 @@
"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",
"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"
+ "noSpellCheckReplacementsLabel": "\u004e\u006f\u0020\u0052\u0065\u0070\u006c\u0061\u0063\u0065\u006d\u0065\u006e\u0074\u0073\u0020\u0046\u006f\u0075\u006e\u0064",
+ "lookUpButtonLabel": "\u004c\u006f\u006f\u006b\u0020\u0055\u0070"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ko.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ko.arb
index 6263315..434934a 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ko.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ko.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "탭 $tabCount개 중 $tabIndex번째",
"modalBarrierDismissLabel": "닫기",
"searchTextFieldPlaceholderLabel": "검색",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ky.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ky.arb
index 7b04435d..c97a9d9 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ky.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ky.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount ичинен $tabIndex-өтмөк",
"modalBarrierDismissLabel": "Жабуу",
"searchTextFieldPlaceholderLabel": "Издөө",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_lo.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_lo.arb
index 811661b..79da512 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_lo.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_lo.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "ແຖບທີ $tabIndex ຈາກທັງໝົດ $tabCount",
"modalBarrierDismissLabel": "ປິດໄວ້",
"searchTextFieldPlaceholderLabel": "ຊອກຫາ",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_lt.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_lt.arb
index 99bc728..52c0f89 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_lt.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_lt.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "$tabIndex skirtukas iš $tabCount",
"modalBarrierDismissLabel": "Atsisakyti",
"searchTextFieldPlaceholderLabel": "Paieška",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_lv.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_lv.arb
index d9f5615..795e9d6 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_lv.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_lv.arb
@@ -27,5 +27,6 @@
"tabSemanticsLabel": "$tabIndex. cilne no $tabCount",
"modalBarrierDismissLabel": "Nerādīt",
"searchTextFieldPlaceholderLabel": "Meklēšana",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_mk.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_mk.arb
index 33a7378..5004899 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_mk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_mk.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Картичка $tabIndex од $tabCount",
"modalBarrierDismissLabel": "Отфрли",
"searchTextFieldPlaceholderLabel": "Пребарувајте",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ml.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ml.arb
index a261c9b..7af8882 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ml.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ml.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount ടാബിൽ $tabIndex-ാമത്തേത്",
"modalBarrierDismissLabel": "നിരസിക്കുക",
"searchTextFieldPlaceholderLabel": "തിരയുക",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_mn.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_mn.arb
index a3baf66..10ef37c 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_mn.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_mn.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount-н $tabIndex-р таб",
"modalBarrierDismissLabel": "Үл хэрэгсэх",
"searchTextFieldPlaceholderLabel": "Хайх",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_mr.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_mr.arb
index d013b9e..b7dec6c 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_mr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_mr.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount पैकी $tabIndex टॅब",
"modalBarrierDismissLabel": "डिसमिस करा",
"searchTextFieldPlaceholderLabel": "शोधा",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ms.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ms.arb
index 395f0fd..5de8467 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ms.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ms.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex daripada $tabCount",
"modalBarrierDismissLabel": "Tolak",
"searchTextFieldPlaceholderLabel": "Cari",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_my.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_my.arb
index 1c5dac3..8bd1220 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_my.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_my.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "တဘ် $tabCount ခုအနက် $tabIndex ခု",
"modalBarrierDismissLabel": "ပယ်ရန်",
"searchTextFieldPlaceholderLabel": "ရှာရန်",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_nb.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_nb.arb
index 9e22158..b0dd7eb 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_nb.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_nb.arb
@@ -22,5 +22,6 @@
"selectAllButtonLabel": "Velg alle",
"modalBarrierDismissLabel": "Avvis",
"searchTextFieldPlaceholderLabel": "Søk",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ne.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ne.arb
index 1859d47..72b3576 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ne.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ne.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount मध्ये $tabIndex ट्याब",
"modalBarrierDismissLabel": "खारेज गर्नुहोस्",
"searchTextFieldPlaceholderLabel": "खोज्नुहोस्",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_nl.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_nl.arb
index 5aff598..fb4cc48 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_nl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_nl.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tabblad $tabIndex van $tabCount",
"modalBarrierDismissLabel": "Sluiten",
"searchTextFieldPlaceholderLabel": "Zoeken",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_no.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_no.arb
index 9e22158..b0dd7eb 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_no.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_no.arb
@@ -22,5 +22,6 @@
"selectAllButtonLabel": "Velg alle",
"modalBarrierDismissLabel": "Avvis",
"searchTextFieldPlaceholderLabel": "Søk",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_or.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_or.arb
index 347043a..cfcafb7 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_or.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_or.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCountର $tabIndex ଟାବ୍",
"modalBarrierDismissLabel": "ଖାରଜ କରନ୍ତୁ",
"searchTextFieldPlaceholderLabel": "ସନ୍ଧାନ କରନ୍ତୁ",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_pa.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_pa.arb
index c742ff5..6283b09 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_pa.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_pa.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount ਵਿੱਚੋਂ $tabIndex ਟੈਬ",
"modalBarrierDismissLabel": "ਖਾਰਜ ਕਰੋ",
"searchTextFieldPlaceholderLabel": "ਖੋਜੋ",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_pl.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_pl.arb
index 19aa5b8..ad18181 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_pl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_pl.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Karta $tabIndex z $tabCount",
"modalBarrierDismissLabel": "Zamknij",
"searchTextFieldPlaceholderLabel": "Szukaj",
- "noSpellCheckReplacementsLabel": "Nie znaleziono zastąpień"
+ "noSpellCheckReplacementsLabel": "Nie znaleziono zastąpień",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_pt.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_pt.arb
index 23bf41f..3cf3d07 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_pt.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_pt.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Guia $tabIndex de $tabCount",
"modalBarrierDismissLabel": "Dispensar",
"searchTextFieldPlaceholderLabel": "Pesquisar",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ro.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ro.arb
index 3086731..e2fe95f 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ro.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ro.arb
@@ -27,5 +27,6 @@
"tabSemanticsLabel": "Fila $tabIndex din $tabCount",
"modalBarrierDismissLabel": "Închideți",
"searchTextFieldPlaceholderLabel": "Căutați",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ru.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ru.arb
index 31db898..4d4f17f 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ru.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ru.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Вкладка $tabIndex из $tabCount",
"modalBarrierDismissLabel": "Закрыть",
"searchTextFieldPlaceholderLabel": "Поиск",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_si.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_si.arb
index be2d85f..17884e4 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_si.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_si.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "ටැබ $tabCount න් $tabIndex",
"modalBarrierDismissLabel": "ඉවත ලන්න",
"searchTextFieldPlaceholderLabel": "සෙවීම",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_sk.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_sk.arb
index a65dc24..413e132 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_sk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_sk.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Karta $tabIndex z $tabCount",
"modalBarrierDismissLabel": "Odmietnuť",
"searchTextFieldPlaceholderLabel": "Hľadať",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_sl.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_sl.arb
index 48ddd51..91bd074 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_sl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_sl.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Zavihek $tabIndex od $tabCount",
"modalBarrierDismissLabel": "Opusti",
"searchTextFieldPlaceholderLabel": "Iskanje",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_sq.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_sq.arb
index c5f6f60..f9189bd 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_sq.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_sq.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Skeda $tabIndex nga $tabCount",
"modalBarrierDismissLabel": "Hiq",
"searchTextFieldPlaceholderLabel": "Kërko",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_sr.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_sr.arb
index 1883096..f7a560c 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_sr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_sr.arb
@@ -27,5 +27,6 @@
"tabSemanticsLabel": "$tabIndex. картица од $tabCount",
"modalBarrierDismissLabel": "Одбаци",
"searchTextFieldPlaceholderLabel": "Претражите",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_sv.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_sv.arb
index 8b6aa26..576e347 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_sv.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_sv.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Flik $tabIndex av $tabCount",
"modalBarrierDismissLabel": "Stäng",
"searchTextFieldPlaceholderLabel": "Sök",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_sw.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_sw.arb
index 76e7eae..fe37c66 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_sw.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_sw.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Kichupo cha $tabIndex kati ya $tabCount",
"modalBarrierDismissLabel": "Ondoa",
"searchTextFieldPlaceholderLabel": "Tafuta",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ta.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ta.arb
index a1d7a1d..50e965f 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ta.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ta.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "தாவல் $tabIndex / $tabCount",
"modalBarrierDismissLabel": "நிராகரிக்கும்",
"searchTextFieldPlaceholderLabel": "தேடுக",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_te.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_te.arb
index 80ce703..fc47b2f 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_te.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_te.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCountలో $tabIndexవ ట్యాబ్",
"modalBarrierDismissLabel": "విస్మరించు",
"searchTextFieldPlaceholderLabel": "సెర్చ్ చేయి",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_th.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_th.arb
index f69e1a3..31184fd 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_th.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_th.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "แท็บที่ $tabIndex จาก $tabCount",
"modalBarrierDismissLabel": "ปิด",
"searchTextFieldPlaceholderLabel": "ค้นหา",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_tl.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_tl.arb
index 89396f8..1ca174e 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_tl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_tl.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Tab $tabIndex ng $tabCount",
"modalBarrierDismissLabel": "I-dismiss",
"searchTextFieldPlaceholderLabel": "Hanapin",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_tr.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_tr.arb
index 0bad769..cbcdb89 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_tr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_tr.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Sekme $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Kapat",
"searchTextFieldPlaceholderLabel": "Ara",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_uk.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_uk.arb
index c10dfff..4082c5c 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_uk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_uk.arb
@@ -32,5 +32,6 @@
"tabSemanticsLabel": "Вкладка $tabIndex з $tabCount",
"modalBarrierDismissLabel": "Закрити",
"searchTextFieldPlaceholderLabel": "Шукайте",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_ur.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_ur.arb
index 99561db..221880b 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_ur.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_ur.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount میں سے $tabIndex ٹیب",
"modalBarrierDismissLabel": "برخاست کریں",
"searchTextFieldPlaceholderLabel": "تلاش کریں",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_uz.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_uz.arb
index 438689b..62290d5 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_uz.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_uz.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "$tabCount varaqdan $tabIndex",
"modalBarrierDismissLabel": "Yopish",
"searchTextFieldPlaceholderLabel": "Qidiruv",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_vi.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_vi.arb
index 0f7714a..9e93f24 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_vi.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_vi.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Thẻ $tabIndex/$tabCount",
"modalBarrierDismissLabel": "Bỏ qua",
"searchTextFieldPlaceholderLabel": "Tìm kiếm",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_zh.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_zh.arb
index e904334..4c61f65 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_zh.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_zh.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "第 $tabIndex 个标签,共 $tabCount 个",
"modalBarrierDismissLabel": "关闭",
"searchTextFieldPlaceholderLabel": "搜索",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/cupertino_zu.arb b/packages/flutter_localizations/lib/src/l10n/cupertino_zu.arb
index 57dbb14..6639689 100644
--- a/packages/flutter_localizations/lib/src/l10n/cupertino_zu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/cupertino_zu.arb
@@ -22,5 +22,6 @@
"tabSemanticsLabel": "Ithebhu $tabIndex kwangu-$tabCount",
"modalBarrierDismissLabel": "Cashisa",
"searchTextFieldPlaceholderLabel": "Sesha",
- "noSpellCheckReplacementsLabel": "No Replacements Found"
+ "noSpellCheckReplacementsLabel": "No Replacements Found",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/generated_cupertino_localizations.dart b/packages/flutter_localizations/lib/src/l10n/generated_cupertino_localizations.dart
index bb53ac3..77e54a1 100644
--- a/packages/flutter_localizations/lib/src/l10n/generated_cupertino_localizations.dart
+++ b/packages/flutter_localizations/lib/src/l10n/generated_cupertino_localizations.dart
@@ -92,6 +92,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Maak toe';
@override
@@ -242,6 +245,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'አሰናብት';
@override
@@ -392,6 +398,9 @@
String? get datePickerMinuteSemanticsLabelZero => r'$minute دقيقة';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'رفض';
@override
@@ -542,6 +551,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'অগ্ৰাহ্য কৰক';
@override
@@ -692,6 +704,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'İmtina edin';
@override
@@ -842,6 +857,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Адхіліць';
@override
@@ -992,6 +1010,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Отхвърляне';
@override
@@ -1142,6 +1163,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'খারিজ করুন';
@override
@@ -1292,6 +1316,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Odbaci';
@override
@@ -1442,6 +1469,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Ignora';
@override
@@ -1592,6 +1622,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Zavřít';
@override
@@ -1742,6 +1775,9 @@
String? get datePickerMinuteSemanticsLabelZero => r'$minute munud';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Diystyru';
@override
@@ -1892,6 +1928,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Afvis';
@override
@@ -2042,6 +2081,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Schließen';
@override
@@ -2213,6 +2255,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Παράβλεψη';
@override
@@ -2363,6 +2408,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Dismiss';
@override
@@ -2705,6 +2753,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Cerrar';
@override
@@ -3515,6 +3566,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Loobu';
@override
@@ -3665,6 +3719,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Baztertu';
@override
@@ -3815,6 +3872,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'نپذیرفتن';
@override
@@ -3965,6 +4025,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Ohita';
@override
@@ -4115,6 +4178,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'I-dismiss';
@override
@@ -4265,6 +4331,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Ignorer';
@override
@@ -4457,6 +4526,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Ignorar';
@override
@@ -4607,6 +4679,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Schließen';
@override
@@ -4757,6 +4832,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'છોડી દો';
@override
@@ -4907,6 +4985,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'סגירה';
@override
@@ -5057,6 +5138,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'खारिज करें';
@override
@@ -5207,6 +5291,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Odbaci';
@override
@@ -5357,6 +5444,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Elvetés';
@override
@@ -5507,6 +5597,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Փակել';
@override
@@ -5657,6 +5750,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Tutup';
@override
@@ -5807,6 +5903,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Hunsa';
@override
@@ -5957,6 +6056,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Ignora';
@override
@@ -6107,6 +6209,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => '閉じる';
@override
@@ -6257,6 +6362,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'დახურვა';
@override
@@ -6407,6 +6515,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Жабу';
@override
@@ -6557,6 +6668,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ច្រានចោល';
@override
@@ -6707,6 +6821,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => '\u{cb5}\u{c9c}\u{cbe}\u{c97}\u{cca}\u{cb3}\u{cbf}\u{cb8}\u{cbf}';
@override
@@ -6857,6 +6974,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => '닫기';
@override
@@ -7007,6 +7127,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Жабуу';
@override
@@ -7157,6 +7280,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ປິດໄວ້';
@override
@@ -7307,6 +7433,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Atsisakyti';
@override
@@ -7457,6 +7586,9 @@
String? get datePickerMinuteSemanticsLabelZero => r'$minute minūtes';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Nerādīt';
@override
@@ -7607,6 +7739,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Отфрли';
@override
@@ -7757,6 +7892,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'നിരസിക്കുക';
@override
@@ -7907,6 +8045,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Үл хэрэгсэх';
@override
@@ -8057,6 +8198,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'डिसमिस करा';
@override
@@ -8207,6 +8351,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Tolak';
@override
@@ -8357,6 +8504,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ပယ်ရန်';
@override
@@ -8507,6 +8657,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Avvis';
@override
@@ -8657,6 +8810,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'खारेज गर्नुहोस्';
@override
@@ -8807,6 +8963,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Sluiten';
@override
@@ -8957,6 +9116,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Avvis';
@override
@@ -9107,6 +9269,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ଖାରଜ କରନ୍ତୁ';
@override
@@ -9257,6 +9422,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ਖਾਰਜ ਕਰੋ';
@override
@@ -9407,6 +9575,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Zamknij';
@override
@@ -9557,6 +9728,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Dispensar';
@override
@@ -9743,6 +9917,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Închideți';
@override
@@ -9893,6 +10070,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Закрыть';
@override
@@ -10043,6 +10223,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ඉවත ලන්න';
@override
@@ -10193,6 +10376,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Odmietnuť';
@override
@@ -10343,6 +10529,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Opusti';
@override
@@ -10493,6 +10682,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Hiq';
@override
@@ -10643,6 +10835,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Одбаци';
@override
@@ -10907,6 +11102,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Stäng';
@override
@@ -11057,6 +11255,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Ondoa';
@override
@@ -11207,6 +11408,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'நிராகரிக்கும்';
@override
@@ -11357,6 +11561,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'విస్మరించు';
@override
@@ -11507,6 +11714,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'ปิด';
@override
@@ -11657,6 +11867,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'I-dismiss';
@override
@@ -11807,6 +12020,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Kapat';
@override
@@ -11957,6 +12173,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Закрити';
@override
@@ -12107,6 +12326,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'برخاست کریں';
@override
@@ -12257,6 +12479,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Yopish';
@override
@@ -12407,6 +12632,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Bỏ qua';
@override
@@ -12557,6 +12785,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => '关闭';
@override
@@ -12854,6 +13085,9 @@
String? get datePickerMinuteSemanticsLabelZero => null;
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get modalBarrierDismissLabel => 'Cashisa';
@override
diff --git a/packages/flutter_localizations/lib/src/l10n/generated_material_localizations.dart b/packages/flutter_localizations/lib/src/l10n/generated_material_localizations.dart
index 7d5d7e6..47bee61 100644
--- a/packages/flutter_localizations/lib/src/l10n/generated_material_localizations.dart
+++ b/packages/flutter_localizations/lib/src/l10n/generated_material_localizations.dart
@@ -330,6 +330,9 @@
String get licensesPageTitle => 'Lisensies';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Kieslysbalkkieslys';
@override
@@ -808,6 +811,9 @@
String get licensesPageTitle => 'ፈቃዶች';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'የምናሌ አሞሌ ምናሌ';
@override
@@ -1286,6 +1292,9 @@
String get licensesPageTitle => 'التراخيص';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'قائمة شريط القوائم';
@override
@@ -1764,6 +1773,9 @@
String get licensesPageTitle => 'অনুজ্ঞাপত্ৰসমূহ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'মেনু বাৰ মেনু';
@override
@@ -2242,6 +2254,9 @@
String get licensesPageTitle => 'Lisenziyalar';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menyu paneli menyusu';
@override
@@ -2720,6 +2735,9 @@
String get licensesPageTitle => 'Ліцэнзіі';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Меню "Панэль меню"';
@override
@@ -3198,6 +3216,9 @@
String get licensesPageTitle => 'Лицензи';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Меню на лентата с менюта';
@override
@@ -3676,6 +3697,9 @@
String get licensesPageTitle => 'লাইসেন্স';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'মেনু বার মেনু';
@override
@@ -4154,6 +4178,9 @@
String get licensesPageTitle => 'Licence';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Meni trake menija';
@override
@@ -4632,6 +4659,9 @@
String get licensesPageTitle => 'Llicències';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menú de la barra de menú';
@override
@@ -5110,6 +5140,9 @@
String get licensesPageTitle => 'Licence';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Nabídka na liště s nabídkou';
@override
@@ -5588,6 +5621,9 @@
String get licensesPageTitle => 'Trwyddedau';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Dewislen bar dewislen';
@override
@@ -6066,6 +6102,9 @@
String get licensesPageTitle => 'Licenser';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menuen for menulinjen';
@override
@@ -6544,6 +6583,9 @@
String get licensesPageTitle => 'Lizenzen';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menü in der Menüleiste';
@override
@@ -7086,6 +7128,9 @@
String get licensesPageTitle => 'Άδειες';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Μενού γραμμής μενού';
@override
@@ -7564,6 +7609,9 @@
String get licensesPageTitle => 'Licenses';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu bar menu';
@override
@@ -8776,6 +8824,9 @@
String get licensesPageTitle => 'Licencias';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menú de la barra de menú';
@override
@@ -12637,6 +12688,9 @@
String get licensesPageTitle => 'Litsentsid';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menüüriba menüü';
@override
@@ -13115,6 +13169,9 @@
String get licensesPageTitle => 'Lizentziak';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu-barraren menua';
@override
@@ -13593,6 +13650,9 @@
String get licensesPageTitle => 'مجوزها';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'منوی نوار منو';
@override
@@ -14071,6 +14131,9 @@
String get licensesPageTitle => 'Lisenssit';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Valikkopalkki';
@override
@@ -14549,6 +14612,9 @@
String get licensesPageTitle => 'Mga Lisensya';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu sa menu bar';
@override
@@ -15027,6 +15093,9 @@
String get licensesPageTitle => 'Licences';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu de la barre de menu';
@override
@@ -15647,6 +15716,9 @@
String get licensesPageTitle => 'Licenzas';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menú da barra de menú';
@override
@@ -16125,6 +16197,9 @@
String get licensesPageTitle => 'Lizenzen';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menü in der Menüleiste';
@override
@@ -16603,6 +16678,9 @@
String get licensesPageTitle => 'લાઇસન્સ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'મેનૂ બાર મેનૂ';
@override
@@ -17081,6 +17159,9 @@
String get licensesPageTitle => 'רישיונות';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'תפריט בסרגל התפריטים';
@override
@@ -17559,6 +17640,9 @@
String get licensesPageTitle => 'लाइसेंस';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'मेन्यू बार का मेन्यू';
@override
@@ -18037,6 +18121,9 @@
String get licensesPageTitle => 'Licence';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Izbornik trake izbornika';
@override
@@ -18515,6 +18602,9 @@
String get licensesPageTitle => 'Licencek';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menüsor menüje';
@override
@@ -18993,6 +19083,9 @@
String get licensesPageTitle => 'Արտոնագրեր';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Ընտրացանկի գոտու ընտրացանկ';
@override
@@ -19471,6 +19564,9 @@
String get licensesPageTitle => 'Lisensi';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu panel menu';
@override
@@ -19949,6 +20045,9 @@
String get licensesPageTitle => 'Leyfi';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Valmyndarstika';
@override
@@ -20427,6 +20526,9 @@
String get licensesPageTitle => 'Licenze';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu barra dei menu';
@override
@@ -20905,6 +21007,9 @@
String get licensesPageTitle => 'ライセンス';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'メニューバーのメニュー';
@override
@@ -21383,6 +21488,9 @@
String get licensesPageTitle => 'ლიცენზიები';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'მენიუს ზოლის მენიუ';
@override
@@ -21861,6 +21969,9 @@
String get licensesPageTitle => 'Лицензиялар';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Мәзір жолағының мәзірі';
@override
@@ -22339,6 +22450,9 @@
String get licensesPageTitle => 'អាជ្ញាបណ្ណ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'ម៉ឺនុយរបារម៉ឺនុយ';
@override
@@ -22817,6 +22931,9 @@
String get licensesPageTitle => '\u{caa}\u{cb0}\u{cb5}\u{cbe}\u{ca8}\u{c97}\u{cbf}\u{c97}\u{cb3}\u{cc1}';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => '\u{cae}\u{cc6}\u{ca8}\u{cc1}\u{20}\u{cac}\u{cbe}\u{cb0}\u{ccd}\u{200c}\u{20}\u{cae}\u{cc6}\u{ca8}\u{cc1}';
@override
@@ -23295,6 +23412,9 @@
String get licensesPageTitle => '라이선스';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => '메뉴 바 메뉴';
@override
@@ -23773,6 +23893,9 @@
String get licensesPageTitle => 'Уруксаттамалар';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Меню тилкеси менюсу';
@override
@@ -24251,6 +24374,9 @@
String get licensesPageTitle => 'ໃບອະນຸຍາດ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'ເມນູແຖບເມນູ';
@override
@@ -24729,6 +24855,9 @@
String get licensesPageTitle => 'Licencijos';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Meniu juostos meniu';
@override
@@ -25207,6 +25336,9 @@
String get licensesPageTitle => 'Licences';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Izvēļņu joslas izvēlne';
@override
@@ -25685,6 +25817,9 @@
String get licensesPageTitle => 'Лиценци';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Мени на лентата со мени';
@override
@@ -26163,6 +26298,9 @@
String get licensesPageTitle => 'ലൈസൻസുകൾ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'മെനു ബാർ മെനു';
@override
@@ -26641,6 +26779,9 @@
String get licensesPageTitle => 'Лиценз';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Цэсний талбарын цэс';
@override
@@ -27119,6 +27260,9 @@
String get licensesPageTitle => 'परवाने';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'मेनू बार मेनू';
@override
@@ -27597,6 +27741,9 @@
String get licensesPageTitle => 'Lesen';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu bar menu';
@override
@@ -28075,6 +28222,9 @@
String get licensesPageTitle => 'လိုင်စင်များ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'မီနူးဘား မီနူး';
@override
@@ -28553,6 +28703,9 @@
String get licensesPageTitle => 'Lisenser';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Meny med menylinje';
@override
@@ -29031,6 +29184,9 @@
String get licensesPageTitle => 'इजाजतपत्रहरू';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => '"मेनु बार" मेनु';
@override
@@ -29509,6 +29665,9 @@
String get licensesPageTitle => 'Licenties';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu van menubalk';
@override
@@ -29987,6 +30146,9 @@
String get licensesPageTitle => 'Lisenser';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Meny med menylinje';
@override
@@ -30465,6 +30627,9 @@
String get licensesPageTitle => 'ଲାଇସେନ୍ସଗୁଡ଼କ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'ମେନୁ ବାର ମେନୁ';
@override
@@ -30943,6 +31108,9 @@
String get licensesPageTitle => 'ਲਾਇਸੰਸ';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'ਮੀਨੂ ਬਾਰ ਮੀਨੂ';
@override
@@ -31421,6 +31589,9 @@
String get licensesPageTitle => 'Licencje';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Pasek menu';
@override
@@ -31899,6 +32070,9 @@
String get licensesPageTitle => 'جوازونه';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu bar menu';
@override
@@ -32377,6 +32551,9 @@
String get licensesPageTitle => 'Licenças';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu da barra de menus';
@override
@@ -33006,6 +33183,9 @@
String get licensesPageTitle => 'Licențe';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Bară de meniu';
@override
@@ -33484,6 +33664,9 @@
String get licensesPageTitle => 'Лицензии';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Строка меню';
@override
@@ -33962,6 +34145,9 @@
String get licensesPageTitle => 'බලපත්ර';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'මෙනු තීරු මෙනුව';
@override
@@ -34440,6 +34626,9 @@
String get licensesPageTitle => 'Licencie';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Ponuka panela s ponukami';
@override
@@ -34918,6 +35107,9 @@
String get licensesPageTitle => 'Licence';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Meni menijske vrstice';
@override
@@ -35396,6 +35588,9 @@
String get licensesPageTitle => 'Licencat';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menyja e shiritit të menysë';
@override
@@ -35874,6 +36069,9 @@
String get licensesPageTitle => 'Лиценце';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Мени трака менија';
@override
@@ -36666,6 +36864,9 @@
String get licensesPageTitle => 'Licenser';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menyrad';
@override
@@ -37144,6 +37345,9 @@
String get licensesPageTitle => 'Leseni';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menyu ya upau wa menyu';
@override
@@ -37622,6 +37826,9 @@
String get licensesPageTitle => 'உரிமங்கள்';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'மெனு பட்டியின் மெனு';
@override
@@ -38100,6 +38307,9 @@
String get licensesPageTitle => 'లైసెన్స్లు';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'మెనూ బార్ మెనూ';
@override
@@ -38578,6 +38788,9 @@
String get licensesPageTitle => 'ใบอนุญาต';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'เมนูในแถบเมนู';
@override
@@ -39056,6 +39269,9 @@
String get licensesPageTitle => 'Mga Lisensya';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menu sa menu bar';
@override
@@ -39534,6 +39750,9 @@
String get licensesPageTitle => 'Lisanslar';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menü çubuğu menüsü';
@override
@@ -40012,6 +40231,9 @@
String get licensesPageTitle => 'Ліцензії';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Панель меню';
@override
@@ -40490,6 +40712,9 @@
String get licensesPageTitle => 'لائسنسز';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'مینیو بار کا مینیو';
@override
@@ -40968,6 +41193,9 @@
String get licensesPageTitle => 'Litsenziyalar';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Menyu paneli';
@override
@@ -41446,6 +41674,9 @@
String get licensesPageTitle => 'Giấy phép';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Trình đơn của thanh trình đơn';
@override
@@ -41924,6 +42155,9 @@
String get licensesPageTitle => '许可';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => '菜单栏的菜单';
@override
@@ -42895,6 +43129,9 @@
String get licensesPageTitle => 'Amalayisense';
@override
+ String get lookUpButtonLabel => 'Look Up';
+
+ @override
String get menuBarMenuLabel => 'Imenyu yebha yemenyu';
@override
diff --git a/packages/flutter_localizations/lib/src/l10n/material_af.arb b/packages/flutter_localizations/lib/src/l10n/material_af.arb
index c593ac8..841001e 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_af.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_af.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_am.arb b/packages/flutter_localizations/lib/src/l10n/material_am.arb
index 3538c87..1c34b12 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_am.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_am.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ar.arb b/packages/flutter_localizations/lib/src/l10n/material_ar.arb
index 73f9d2b..0673370 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ar.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ar.arb
@@ -151,5 +151,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_as.arb b/packages/flutter_localizations/lib/src/l10n/material_as.arb
index f358a74..c676e06 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_as.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_as.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_az.arb b/packages/flutter_localizations/lib/src/l10n/material_az.arb
index ea0736f..16bd66d 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_az.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_az.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_be.arb b/packages/flutter_localizations/lib/src/l10n/material_be.arb
index d58cb14..6cf0790 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_be.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_be.arb
@@ -146,5 +146,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_bg.arb b/packages/flutter_localizations/lib/src/l10n/material_bg.arb
index fb6074c..ab5eb21 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_bg.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_bg.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_bn.arb b/packages/flutter_localizations/lib/src/l10n/material_bn.arb
index 03587bc..ebae56f 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_bn.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_bn.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_bs.arb b/packages/flutter_localizations/lib/src/l10n/material_bs.arb
index bbe68a1..53f10db 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_bs.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_bs.arb
@@ -144,5 +144,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ca.arb b/packages/flutter_localizations/lib/src/l10n/material_ca.arb
index aecdb08..1e8d141 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ca.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ca.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_cs.arb b/packages/flutter_localizations/lib/src/l10n/material_cs.arb
index 1e17c2e..5ff838c 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_cs.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_cs.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_cy.arb b/packages/flutter_localizations/lib/src/l10n/material_cy.arb
index 1cf88af..1a7bae9 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_cy.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_cy.arb
@@ -151,5 +151,6 @@
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
"collapsedHint": "Expanded",
- "scanTextButtonLabel": "Scan text"
+ "scanTextButtonLabel": "Scan text",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_da.arb b/packages/flutter_localizations/lib/src/l10n/material_da.arb
index a2dc088..2b8f339 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_da.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_da.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_de.arb b/packages/flutter_localizations/lib/src/l10n/material_de.arb
index 9a5fbef..8f1a48f 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_de.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_de.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_el.arb b/packages/flutter_localizations/lib/src/l10n/material_el.arb
index e9f3408..6268c50 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_el.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_el.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_en.arb b/packages/flutter_localizations/lib/src/l10n/material_en.arb
index dd9746d..0c48758 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_en.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_en.arb
@@ -197,6 +197,11 @@
"description": "The label for scan text buttons and menu items for starting the insertion of text via OCR."
},
+ "lookUpButtonLabel": "Look Up",
+ "@lookUpButtonLabel": {
+ "description": "The label for the Look Up button and menu items on iOS."
+ },
+
"okButtonLabel": "OK",
"@okButtonLabel": {
"description": "The label for OK buttons and menu items."
diff --git a/packages/flutter_localizations/lib/src/l10n/material_es.arb b/packages/flutter_localizations/lib/src/l10n/material_es.arb
index 59eed0c..0b41076 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_es.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_es.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_et.arb b/packages/flutter_localizations/lib/src/l10n/material_et.arb
index 97fb40a..25c1fbd 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_et.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_et.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_eu.arb b/packages/flutter_localizations/lib/src/l10n/material_eu.arb
index 8e29921..2650732 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_eu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_eu.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_fa.arb b/packages/flutter_localizations/lib/src/l10n/material_fa.arb
index 20c7fbc..3446a22 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_fa.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_fa.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_fi.arb b/packages/flutter_localizations/lib/src/l10n/material_fi.arb
index ce9d501..6db7ead 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_fi.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_fi.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_fil.arb b/packages/flutter_localizations/lib/src/l10n/material_fil.arb
index fbf38a1..344edb7 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_fil.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_fil.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_fr.arb b/packages/flutter_localizations/lib/src/l10n/material_fr.arb
index accbb33..8daadff 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_fr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_fr.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_gl.arb b/packages/flutter_localizations/lib/src/l10n/material_gl.arb
index 2557795..0cf4792 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_gl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_gl.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_gsw.arb b/packages/flutter_localizations/lib/src/l10n/material_gsw.arb
index 1d803e7..af4e80c 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_gsw.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_gsw.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_gu.arb b/packages/flutter_localizations/lib/src/l10n/material_gu.arb
index 371690c..0f5bc61 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_gu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_gu.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_he.arb b/packages/flutter_localizations/lib/src/l10n/material_he.arb
index c1f33f5..4b50cdd 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_he.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_he.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_hi.arb b/packages/flutter_localizations/lib/src/l10n/material_hi.arb
index 78fe9a1..6038c92 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_hi.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_hi.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_hr.arb b/packages/flutter_localizations/lib/src/l10n/material_hr.arb
index 7535eb9..3b7b171 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_hr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_hr.arb
@@ -144,5 +144,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_hu.arb b/packages/flutter_localizations/lib/src/l10n/material_hu.arb
index 88c57ae..1c9174f 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_hu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_hu.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_hy.arb b/packages/flutter_localizations/lib/src/l10n/material_hy.arb
index 02d1ab8..cea5246 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_hy.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_hy.arb
@@ -146,5 +146,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_id.arb b/packages/flutter_localizations/lib/src/l10n/material_id.arb
index 131bfac..976803a 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_id.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_id.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_is.arb b/packages/flutter_localizations/lib/src/l10n/material_is.arb
index 30078d7..da9b82d 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_is.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_is.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_it.arb b/packages/flutter_localizations/lib/src/l10n/material_it.arb
index 1f35104..7c18a06 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_it.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_it.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ja.arb b/packages/flutter_localizations/lib/src/l10n/material_ja.arb
index 58e3c81..ca804c9 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ja.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ja.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ka.arb b/packages/flutter_localizations/lib/src/l10n/material_ka.arb
index b221c94..7819352 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ka.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ka.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_kk.arb b/packages/flutter_localizations/lib/src/l10n/material_kk.arb
index a318f00..4a74160 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_kk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_kk.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_km.arb b/packages/flutter_localizations/lib/src/l10n/material_km.arb
index 9c2a624..631d6ef 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_km.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_km.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_kn.arb b/packages/flutter_localizations/lib/src/l10n/material_kn.arb
index 624941d..1a2828a 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_kn.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_kn.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "\u0043\u006f\u006c\u006c\u0061\u0070\u0073\u0065",
"expansionTileCollapsedTapHint": "\u0045\u0078\u0070\u0061\u006e\u0064\u0020\u0066\u006f\u0072\u0020\u006d\u006f\u0072\u0065\u0020\u0064\u0065\u0074\u0061\u0069\u006c\u0073",
"expandedHint": "\u0043\u006f\u006c\u006c\u0061\u0070\u0073\u0065\u0064",
- "collapsedHint": "\u0045\u0078\u0070\u0061\u006e\u0064\u0065\u0064"
+ "collapsedHint": "\u0045\u0078\u0070\u0061\u006e\u0064\u0065\u0064",
+ "lookUpButtonLabel": "\u004c\u006f\u006f\u006b\u0020\u0055\u0070"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ko.arb b/packages/flutter_localizations/lib/src/l10n/material_ko.arb
index 4b2eeee..476e2e5 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ko.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ko.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ky.arb b/packages/flutter_localizations/lib/src/l10n/material_ky.arb
index 568e08e..0c161f9 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ky.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ky.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_lo.arb b/packages/flutter_localizations/lib/src/l10n/material_lo.arb
index 2b02046..0e9511d 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_lo.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_lo.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_lt.arb b/packages/flutter_localizations/lib/src/l10n/material_lt.arb
index 62d77cb..a59c015 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_lt.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_lt.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_lv.arb b/packages/flutter_localizations/lib/src/l10n/material_lv.arb
index 3c84e58..08faec6 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_lv.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_lv.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_mk.arb b/packages/flutter_localizations/lib/src/l10n/material_mk.arb
index 99586cb..042d4d3 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_mk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_mk.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ml.arb b/packages/flutter_localizations/lib/src/l10n/material_ml.arb
index 2889635..58e8737 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ml.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ml.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_mn.arb b/packages/flutter_localizations/lib/src/l10n/material_mn.arb
index a960b7b..73fec1d 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_mn.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_mn.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_mr.arb b/packages/flutter_localizations/lib/src/l10n/material_mr.arb
index ccc1ab9..f79e873 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_mr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_mr.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ms.arb b/packages/flutter_localizations/lib/src/l10n/material_ms.arb
index 2efd94a..cd42e3e 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ms.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ms.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_my.arb b/packages/flutter_localizations/lib/src/l10n/material_my.arb
index 06cde12..f8949ae 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_my.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_my.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_nb.arb b/packages/flutter_localizations/lib/src/l10n/material_nb.arb
index 0a48105..5cdbfad 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_nb.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_nb.arb
@@ -139,5 +139,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ne.arb b/packages/flutter_localizations/lib/src/l10n/material_ne.arb
index 7c53636..f6e5d47 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ne.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ne.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_nl.arb b/packages/flutter_localizations/lib/src/l10n/material_nl.arb
index 16d0bce..93b71ff 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_nl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_nl.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_no.arb b/packages/flutter_localizations/lib/src/l10n/material_no.arb
index a311a70..6c13fd4 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_no.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_no.arb
@@ -139,5 +139,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_or.arb b/packages/flutter_localizations/lib/src/l10n/material_or.arb
index 299d57c..940df8c 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_or.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_or.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_pa.arb b/packages/flutter_localizations/lib/src/l10n/material_pa.arb
index d48c461..403de9a 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_pa.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_pa.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_pl.arb b/packages/flutter_localizations/lib/src/l10n/material_pl.arb
index 47695b1..6db6474 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_pl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_pl.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ps.arb b/packages/flutter_localizations/lib/src/l10n/material_ps.arb
index 042b805..49a9102 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ps.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ps.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_pt.arb b/packages/flutter_localizations/lib/src/l10n/material_pt.arb
index c671af7..fb81907 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_pt.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_pt.arb
@@ -143,5 +143,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ro.arb b/packages/flutter_localizations/lib/src/l10n/material_ro.arb
index fcd7130..60fce2a 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ro.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ro.arb
@@ -145,5 +145,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ru.arb b/packages/flutter_localizations/lib/src/l10n/material_ru.arb
index 9b81a9c..4d79182 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ru.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ru.arb
@@ -148,5 +148,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_si.arb b/packages/flutter_localizations/lib/src/l10n/material_si.arb
index 4ac3ecf..2c8b493 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_si.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_si.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_sk.arb b/packages/flutter_localizations/lib/src/l10n/material_sk.arb
index a85cfaf..d76cb79 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_sk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_sk.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_sl.arb b/packages/flutter_localizations/lib/src/l10n/material_sl.arb
index 7fe2795..d419c9a 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_sl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_sl.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_sq.arb b/packages/flutter_localizations/lib/src/l10n/material_sq.arb
index 9db947b..906b728 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_sq.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_sq.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_sr.arb b/packages/flutter_localizations/lib/src/l10n/material_sr.arb
index 0586517..a184b04 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_sr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_sr.arb
@@ -144,5 +144,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_sv.arb b/packages/flutter_localizations/lib/src/l10n/material_sv.arb
index 5e45738..4f1e9b2 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_sv.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_sv.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_sw.arb b/packages/flutter_localizations/lib/src/l10n/material_sw.arb
index b31a119..ecfa463 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_sw.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_sw.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ta.arb b/packages/flutter_localizations/lib/src/l10n/material_ta.arb
index f6fd8c3..bac6faa 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ta.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ta.arb
@@ -142,5 +142,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_te.arb b/packages/flutter_localizations/lib/src/l10n/material_te.arb
index 4220e89..0ae3950 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_te.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_te.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_th.arb b/packages/flutter_localizations/lib/src/l10n/material_th.arb
index a0180b3..63dd915 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_th.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_th.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_tl.arb b/packages/flutter_localizations/lib/src/l10n/material_tl.arb
index fbf38a1..344edb7 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_tl.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_tl.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_tr.arb b/packages/flutter_localizations/lib/src/l10n/material_tr.arb
index b91d74d..46a5e22 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_tr.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_tr.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_uk.arb b/packages/flutter_localizations/lib/src/l10n/material_uk.arb
index fe9dcdd..db47667 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_uk.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_uk.arb
@@ -147,5 +147,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_ur.arb b/packages/flutter_localizations/lib/src/l10n/material_ur.arb
index c11abd3..eb66d68 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_ur.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_ur.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_uz.arb b/packages/flutter_localizations/lib/src/l10n/material_uz.arb
index f773009..22b9f2a 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_uz.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_uz.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_vi.arb b/packages/flutter_localizations/lib/src/l10n/material_vi.arb
index 8f57237..3eac1b0 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_vi.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_vi.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_zh.arb b/packages/flutter_localizations/lib/src/l10n/material_zh.arb
index 66a28a6..211683c 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_zh.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_zh.arb
@@ -141,5 +141,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}
diff --git a/packages/flutter_localizations/lib/src/l10n/material_zu.arb b/packages/flutter_localizations/lib/src/l10n/material_zu.arb
index aae990b..6bffc9e 100644
--- a/packages/flutter_localizations/lib/src/l10n/material_zu.arb
+++ b/packages/flutter_localizations/lib/src/l10n/material_zu.arb
@@ -140,5 +140,6 @@
"expansionTileExpandedTapHint": "Collapse",
"expansionTileCollapsedTapHint": "Expand for more details",
"expandedHint": "Collapsed",
- "collapsedHint": "Expanded"
+ "collapsedHint": "Expanded",
+ "lookUpButtonLabel": "Look Up"
}