Unverified Commit e749db6f authored by Xilai Zhang's avatar Xilai Zhang Committed by GitHub

Revert "Refactor reorderable list semantics" (#124368)

Revert "Refactor reorderable list semantics"
parent 692a7efa
...@@ -422,6 +422,30 @@ abstract class MaterialLocalizations { ...@@ -422,6 +422,30 @@ abstract class MaterialLocalizations {
/// shows the list of accounts. /// shows the list of accounts.
String get showAccountsLabel; String get showAccountsLabel;
/// The semantics label used for [ReorderableListView] to reorder an item in the
/// list to the start of the list.
String get reorderItemToStart;
/// The semantics label used for [ReorderableListView] to reorder an item in the
/// list to the end of the list.
String get reorderItemToEnd;
/// The semantics label used for [ReorderableListView] to reorder an item in the
/// list one space up the list.
String get reorderItemUp;
/// The semantics label used for [ReorderableListView] to reorder an item in the
/// list one space down the list.
String get reorderItemDown;
/// The semantics label used for [ReorderableListView] to reorder an item in the
/// list one space left in the list.
String get reorderItemLeft;
/// The semantics label used for [ReorderableListView] to reorder an item in the
/// list one space right in the list.
String get reorderItemRight;
/// The semantics hint to describe the tap action on an expanded [ExpandIcon]. /// The semantics hint to describe the tap action on an expanded [ExpandIcon].
String get expandedIconTapHint => 'Collapse'; String get expandedIconTapHint => 'Collapse';
...@@ -1128,6 +1152,24 @@ class DefaultMaterialLocalizations implements MaterialLocalizations { ...@@ -1128,6 +1152,24 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
@override @override
String get showAccountsLabel => 'Show accounts'; String get showAccountsLabel => 'Show accounts';
@override
String get reorderItemUp => 'Move up';
@override
String get reorderItemDown => 'Move down';
@override
String get reorderItemLeft => 'Move left';
@override
String get reorderItemRight => 'Move right';
@override
String get reorderItemToEnd => 'Move to the end';
@override
String get reorderItemToStart => 'Move to the start';
@override @override
String get expandedIconTapHint => 'Collapse'; String get expandedIconTapHint => 'Collapse';
......
...@@ -5,11 +5,13 @@ ...@@ -5,11 +5,13 @@
import 'dart:ui' show lerpDouble; import 'dart:ui' show lerpDouble;
import 'package:flutter/gestures.dart'; import 'package:flutter/gestures.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'debug.dart'; import 'debug.dart';
import 'icons.dart'; import 'icons.dart';
import 'material.dart'; import 'material.dart';
import 'material_localizations.dart';
import 'theme.dart'; import 'theme.dart';
/// A list whose items the user can interactively reorder by dragging. /// A list whose items the user can interactively reorder by dragging.
...@@ -264,6 +266,64 @@ class ReorderableListView extends StatefulWidget { ...@@ -264,6 +266,64 @@ class ReorderableListView extends StatefulWidget {
} }
class _ReorderableListViewState extends State<ReorderableListView> { class _ReorderableListViewState extends State<ReorderableListView> {
Widget _wrapWithSemantics(Widget child, int index) {
void reorder(int startIndex, int endIndex) {
if (startIndex != endIndex) {
widget.onReorder(startIndex, endIndex);
}
}
// First, determine which semantics actions apply.
final Map<CustomSemanticsAction, VoidCallback> semanticsActions = <CustomSemanticsAction, VoidCallback>{};
// Create the appropriate semantics actions.
void moveToStart() => reorder(index, 0);
void moveToEnd() => reorder(index, widget.itemCount);
void moveBefore() => reorder(index, index - 1);
// To move after, we go to index+2 because we are moving it to the space
// before index+2, which is after the space at index+1.
void moveAfter() => reorder(index, index + 2);
final MaterialLocalizations localizations = MaterialLocalizations.of(context);
// If the item can move to before its current position in the list.
if (index > 0) {
semanticsActions[CustomSemanticsAction(label: localizations.reorderItemToStart)] = moveToStart;
String reorderItemBefore = localizations.reorderItemUp;
if (widget.scrollDirection == Axis.horizontal) {
reorderItemBefore = Directionality.of(context) == TextDirection.ltr
? localizations.reorderItemLeft
: localizations.reorderItemRight;
}
semanticsActions[CustomSemanticsAction(label: reorderItemBefore)] = moveBefore;
}
// If the item can move to after its current position in the list.
if (index < widget.itemCount - 1) {
String reorderItemAfter = localizations.reorderItemDown;
if (widget.scrollDirection == Axis.horizontal) {
reorderItemAfter = Directionality.of(context) == TextDirection.ltr
? localizations.reorderItemRight
: localizations.reorderItemLeft;
}
semanticsActions[CustomSemanticsAction(label: reorderItemAfter)] = moveAfter;
semanticsActions[CustomSemanticsAction(label: localizations.reorderItemToEnd)] = moveToEnd;
}
// We pass toWrap with a GlobalKey into the item so that when it
// gets dragged, the accessibility framework can preserve the selected
// state of the dragging item.
//
// We also apply the relevant custom accessibility actions for moving the item
// up, down, to the start, and to the end of the list.
return MergeSemantics(
child: Semantics(
customSemanticsActions: semanticsActions,
child: child,
),
);
}
Widget _itemBuilder(BuildContext context, int index) { Widget _itemBuilder(BuildContext context, int index) {
final Widget item = widget.itemBuilder(context, index); final Widget item = widget.itemBuilder(context, index);
assert(() { assert(() {
...@@ -275,6 +335,9 @@ class _ReorderableListViewState extends State<ReorderableListView> { ...@@ -275,6 +335,9 @@ class _ReorderableListViewState extends State<ReorderableListView> {
return true; return true;
}()); }());
// TODO(goderbauer): The semantics stuff should probably happen inside
// _ReorderableItem so the widget versions can have them as well.
final Widget itemWithSemantics = _wrapWithSemantics(item, index);
final Key itemGlobalKey = _ReorderableListViewChildGlobalKey(item.key!, this); final Key itemGlobalKey = _ReorderableListViewChildGlobalKey(item.key!, this);
if (widget.buildDefaultDragHandles) { if (widget.buildDefaultDragHandles) {
...@@ -287,7 +350,7 @@ class _ReorderableListViewState extends State<ReorderableListView> { ...@@ -287,7 +350,7 @@ class _ReorderableListViewState extends State<ReorderableListView> {
return Stack( return Stack(
key: itemGlobalKey, key: itemGlobalKey,
children: <Widget>[ children: <Widget>[
item, itemWithSemantics,
Positioned.directional( Positioned.directional(
textDirection: Directionality.of(context), textDirection: Directionality.of(context),
start: 0, start: 0,
...@@ -307,7 +370,7 @@ class _ReorderableListViewState extends State<ReorderableListView> { ...@@ -307,7 +370,7 @@ class _ReorderableListViewState extends State<ReorderableListView> {
return Stack( return Stack(
key: itemGlobalKey, key: itemGlobalKey,
children: <Widget>[ children: <Widget>[
item, itemWithSemantics,
Positioned.directional( Positioned.directional(
textDirection: Directionality.of(context), textDirection: Directionality.of(context),
top: 0, top: 0,
...@@ -331,14 +394,14 @@ class _ReorderableListViewState extends State<ReorderableListView> { ...@@ -331,14 +394,14 @@ class _ReorderableListViewState extends State<ReorderableListView> {
return ReorderableDelayedDragStartListener( return ReorderableDelayedDragStartListener(
key: itemGlobalKey, key: itemGlobalKey,
index: index, index: index,
child: item, child: itemWithSemantics,
); );
} }
} }
return KeyedSubtree( return KeyedSubtree(
key: itemGlobalKey, key: itemGlobalKey,
child: item, child: itemWithSemantics,
); );
} }
......
...@@ -10,7 +10,6 @@ import 'basic.dart'; ...@@ -10,7 +10,6 @@ import 'basic.dart';
import 'debug.dart'; import 'debug.dart';
import 'framework.dart'; import 'framework.dart';
import 'inherited_theme.dart'; import 'inherited_theme.dart';
import 'localizations.dart';
import 'media_query.dart'; import 'media_query.dart';
import 'overlay.dart'; import 'overlay.dart';
import 'scroll_controller.dart'; import 'scroll_controller.dart';
...@@ -929,63 +928,6 @@ class SliverReorderableListState extends State<SliverReorderableList> with Ticke ...@@ -929,63 +928,6 @@ class SliverReorderableListState extends State<SliverReorderableList> with Ticke
key: _ReorderableItemGlobalKey(child.key!, index, this), key: _ReorderableItemGlobalKey(child.key!, index, this),
index: index, index: index,
capturedThemes: InheritedTheme.capture(from: context, to: overlay.context), capturedThemes: InheritedTheme.capture(from: context, to: overlay.context),
child: _wrapWithSemantics(child, index),
);
}
Widget _wrapWithSemantics(Widget child, int index) {
void reorder(int startIndex, int endIndex) {
if (startIndex != endIndex) {
widget.onReorder(startIndex, endIndex);
}
}
// First, determine which semantics actions apply.
final Map<CustomSemanticsAction, VoidCallback> semanticsActions = <CustomSemanticsAction, VoidCallback>{};
// Create the appropriate semantics actions.
void moveToStart() => reorder(index, 0);
void moveToEnd() => reorder(index, widget.itemCount);
void moveBefore() => reorder(index, index - 1);
// To move after, go to index+2 because it is moved to the space
// before index+2, which is after the space at index+1.
void moveAfter() => reorder(index, index + 2);
final WidgetsLocalizations localizations = WidgetsLocalizations.of(context);
final bool isHorizontal = _scrollDirection == Axis.horizontal;
// If the item can move to before its current position in the list.
if (index > 0) {
semanticsActions[CustomSemanticsAction(label: localizations.reorderItemToStart)] = moveToStart;
String reorderItemBefore = localizations.reorderItemUp;
if (isHorizontal) {
reorderItemBefore = Directionality.of(context) == TextDirection.ltr
? localizations.reorderItemLeft
: localizations.reorderItemRight;
}
semanticsActions[CustomSemanticsAction(label: reorderItemBefore)] = moveBefore;
}
// If the item can move to after its current position in the list.
if (index < widget.itemCount - 1) {
String reorderItemAfter = localizations.reorderItemDown;
if (isHorizontal) {
reorderItemAfter = Directionality.of(context) == TextDirection.ltr
? localizations.reorderItemRight
: localizations.reorderItemLeft;
}
semanticsActions[CustomSemanticsAction(label: reorderItemAfter)] = moveAfter;
semanticsActions[CustomSemanticsAction(label: localizations.reorderItemToEnd)] = moveToEnd;
}
// Pass toWrap with a GlobalKey into the item so that when it
// gets dragged, the accessibility framework can preserve the selected
// state of the dragging item.
//
// Also apply the relevant custom accessibility actions for moving the item
// up, down, to the start, and to the end of the list.
return Semantics(
container: true,
customSemanticsActions: semanticsActions,
child: child, child: child,
); );
} }
......
...@@ -673,23 +673,8 @@ void main() { ...@@ -673,23 +673,8 @@ void main() {
// Get the switch tile's semantics: // Get the switch tile's semantics:
final SemanticsNode semanticsNode = tester.getSemantics(find.byKey(const Key('Switch tile'))); final SemanticsNode semanticsNode = tester.getSemantics(find.byKey(const Key('Switch tile')));
// Check for ReorderableListView custom semantics actions. // Check for properties of both SwitchTile semantics and the ReorderableListView custom semantics actions.
expect(semanticsNode, matchesSemantics( expect(semanticsNode, matchesSemantics(
customActions: const <CustomSemanticsAction>[
CustomSemanticsAction(label: 'Move up'),
CustomSemanticsAction(label: 'Move down'),
CustomSemanticsAction(label: 'Move to the end'),
CustomSemanticsAction(label: 'Move to the start'),
],
));
// Check for properties of SwitchTile semantics.
late SemanticsNode child;
semanticsNode.visitChildren((SemanticsNode node) {
child = node;
return false;
});
expect(child, matchesSemantics(
hasToggledState: true, hasToggledState: true,
isToggled: true, isToggled: true,
isEnabled: true, isEnabled: true,
...@@ -697,6 +682,12 @@ void main() { ...@@ -697,6 +682,12 @@ void main() {
hasEnabledState: true, hasEnabledState: true,
label: 'Switch tile', label: 'Switch tile',
hasTapAction: true, hasTapAction: true,
customActions: const <CustomSemanticsAction>[
CustomSemanticsAction(label: 'Move up'),
CustomSemanticsAction(label: 'Move down'),
CustomSemanticsAction(label: 'Move to the end'),
CustomSemanticsAction(label: 'Move to the start'),
],
)); ));
handle.dispose(); handle.dispose();
}); });
...@@ -1653,7 +1644,7 @@ void main() { ...@@ -1653,7 +1644,7 @@ void main() {
DefaultMaterialLocalizations.delegate, DefaultMaterialLocalizations.delegate,
DefaultWidgetsLocalizations.delegate, DefaultWidgetsLocalizations.delegate,
], ],
child: SizedBox( child:SizedBox(
width: 100.0, width: 100.0,
height: 100.0, height: 100.0,
child: Directionality( child: Directionality(
......
...@@ -4,11 +4,8 @@ ...@@ -4,11 +4,8 @@
import 'package:flutter/gestures.dart'; import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'semantics_tester.dart';
void main() { void main() {
testWidgets('SliverReorderableList works well when having gestureSettings', (WidgetTester tester) async { testWidgets('SliverReorderableList works well when having gestureSettings', (WidgetTester tester) async {
// Regression test for https://github.com/flutter/flutter/issues/103404 // Regression test for https://github.com/flutter/flutter/issues/103404
...@@ -67,103 +64,6 @@ void main() { ...@@ -67,103 +64,6 @@ void main() {
expect(items, orderedEquals(<int>[1, 0, 2, 3, 4])); expect(items, orderedEquals(<int>[1, 0, 2, 3, 4]));
}); });
testWidgets('SliverReorderableList item has correct semantics', (WidgetTester tester) async {
final SemanticsTester semantics = SemanticsTester(tester);
const int itemCount = 5;
int onReorderCallCount = 0;
final List<int> items = List<int>.generate(itemCount, (int index) => index);
void handleReorder(int fromIndex, int toIndex) {
onReorderCallCount += 1;
if (toIndex > fromIndex) {
toIndex -= 1;
}
items.insert(toIndex, items.removeAt(fromIndex));
}
// The list has five elements of height 100
await tester.pumpWidget(
MaterialApp(
home: MediaQuery(
data: const MediaQueryData(gestureSettings: DeviceGestureSettings(touchSlop: 8.0)),
child: CustomScrollView(
slivers: <Widget>[
SliverReorderableList(
itemCount: itemCount,
itemBuilder: (BuildContext context, int index) {
return SizedBox(
key: ValueKey<int>(items[index]),
height: 100,
child: ReorderableDragStartListener(
index: index,
child: Text('item ${items[index]}'),
),
);
},
onReorder: handleReorder,
)
],
),
),
),
);
expect(
semantics,
includesNodeWith(
label: 'item 0',
actions: <SemanticsAction>[SemanticsAction.customAction],
),
);
final SemanticsNode node = tester.getSemantics(find.text('item 0'));
// perform custom action 'move down'.
tester.binding.pipelineOwner.semanticsOwner!.performAction(node.id, SemanticsAction.customAction, 0);
await tester.pumpAndSettle();
expect(onReorderCallCount, 1);
expect(items, orderedEquals(<int>[1, 0, 2, 3, 4]));
semantics.dispose();
});
testWidgets('SliverReorderableList custom semantics action has correct label', (WidgetTester tester) async {
const int itemCount = 5;
final List<int> items = List<int>.generate(itemCount, (int index) => index);
// The list has five elements of height 100
await tester.pumpWidget(
MaterialApp(
home: MediaQuery(
data: const MediaQueryData(gestureSettings: DeviceGestureSettings(touchSlop: 8.0)),
child: CustomScrollView(
slivers: <Widget>[
SliverReorderableList(
itemCount: itemCount,
itemBuilder: (BuildContext context, int index) {
return SizedBox(
key: ValueKey<int>(items[index]),
height: 100,
child: ReorderableDragStartListener(
index: index,
child: Text('item ${items[index]}'),
),
);
},
onReorder: (int _, int __) { },
)
],
),
),
),
);
final SemanticsNode node = tester.getSemantics(find.text('item 0'));
final SemanticsData data = node.getSemanticsData();
expect(data.customSemanticsActionIds!.length, 2);
final CustomSemanticsAction action1 = CustomSemanticsAction.getAction(data.customSemanticsActionIds![0])!;
expect(action1.label, 'Move down');
final CustomSemanticsAction action2 = CustomSemanticsAction.getAction(data.customSemanticsActionIds![1])!;
expect(action2.label, 'Move to the end');
});
// Regression test for https://github.com/flutter/flutter/issues/100451 // Regression test for https://github.com/flutter/flutter/issues/100451
testWidgets('SliverReorderableList.builder respects findChildIndexCallback', (WidgetTester tester) async { testWidgets('SliverReorderableList.builder respects findChildIndexCallback', (WidgetTester tester) async {
bool finderCalled = false; bool finderCalled = false;
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialoog", "dialogLabel": "Dialoog",
"alertDialogLabel": "Opletberig", "alertDialogLabel": "Opletberig",
"searchFieldLabel": "Soek", "searchFieldLabel": "Soek",
"reorderItemToStart": "Skuif na die begin",
"reorderItemToEnd": "Skuif na die einde",
"reorderItemUp": "Skuif op",
"reorderItemDown": "Skuif af",
"reorderItemLeft": "Skuif na links",
"reorderItemRight": "Skuif na regs",
"expandedIconTapHint": "Vou in", "expandedIconTapHint": "Vou in",
"collapsedIconTapHint": "Vou uit", "collapsedIconTapHint": "Vou uit",
"remainingTextFieldCharacterCountOne": "1 karakter oor", "remainingTextFieldCharacterCountOne": "1 karakter oor",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "መገናኛ", "dialogLabel": "መገናኛ",
"alertDialogLabel": "ማንቂያ", "alertDialogLabel": "ማንቂያ",
"searchFieldLabel": "ይፈልጉ", "searchFieldLabel": "ይፈልጉ",
"reorderItemToStart": "ወደ መጀመሪያ ውሰድ",
"reorderItemToEnd": "ወደ መጨረሻ ውሰድ",
"reorderItemUp": "ወደ ላይ ውሰድ",
"reorderItemDown": "ወደ ታች ውሰድ",
"reorderItemLeft": "ወደ ግራ ውሰድ",
"reorderItemRight": "ወደ ቀኝ ውሰድ",
"expandedIconTapHint": "ሰብስብ", "expandedIconTapHint": "ሰብስብ",
"collapsedIconTapHint": "ዘርጋ", "collapsedIconTapHint": "ዘርጋ",
"remainingTextFieldCharacterCountOne": "1 ቁምፊ ይቀራል", "remainingTextFieldCharacterCountOne": "1 ቁምፊ ይቀራል",
......
...@@ -52,6 +52,12 @@ ...@@ -52,6 +52,12 @@
"dialogLabel": "مربع حوار", "dialogLabel": "مربع حوار",
"alertDialogLabel": "تنبيه", "alertDialogLabel": "تنبيه",
"searchFieldLabel": "بحث", "searchFieldLabel": "بحث",
"reorderItemToStart": "نقل إلى بداية القائمة",
"reorderItemToEnd": "نقل إلى نهاية القائمة",
"reorderItemUp": "نقل لأعلى",
"reorderItemDown": "نقل لأسفل",
"reorderItemLeft": "نقل لليمين",
"reorderItemRight": "نقل لليسار",
"expandedIconTapHint": "تصغير", "expandedIconTapHint": "تصغير",
"collapsedIconTapHint": "توسيع", "collapsedIconTapHint": "توسيع",
"remainingTextFieldCharacterCountZero": "لا أحرف متبقية", "remainingTextFieldCharacterCountZero": "لا أحرف متبقية",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ডায়ল'গ", "dialogLabel": "ডায়ল'গ",
"alertDialogLabel": "সতৰ্কবাৰ্তা", "alertDialogLabel": "সতৰ্কবাৰ্তা",
"searchFieldLabel": "সন্ধান কৰক", "searchFieldLabel": "সন্ধান কৰক",
"reorderItemToStart": "আৰম্ভণিলৈ স্থানান্তৰ কৰক",
"reorderItemToEnd": "শেষলৈ স্থানান্তৰ কৰক",
"reorderItemUp": "ওপৰলৈ নিয়ক",
"reorderItemDown": "তললৈ স্থানান্তৰ কৰক",
"reorderItemLeft": "বাওঁফাললৈ স্থানান্তৰ কৰক",
"reorderItemRight": "সোঁফাললৈ স্থানান্তৰ কৰক",
"expandedIconTapHint": "সংকোচন কৰক", "expandedIconTapHint": "সংকোচন কৰক",
"collapsedIconTapHint": "বিস্তাৰ কৰক", "collapsedIconTapHint": "বিস্তাৰ কৰক",
"remainingTextFieldCharacterCountOne": "১টা বর্ণ বাকী আছে", "remainingTextFieldCharacterCountOne": "১টা বর্ণ বাকী আছে",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialoq", "dialogLabel": "Dialoq",
"alertDialogLabel": "Bildiriş", "alertDialogLabel": "Bildiriş",
"searchFieldLabel": "Axtarın", "searchFieldLabel": "Axtarın",
"reorderItemToStart": "Əvvələ köçürün",
"reorderItemToEnd": "Sona köçürün",
"reorderItemUp": "Yuxarı köçürün",
"reorderItemDown": "Aşağı köçürün",
"reorderItemLeft": "Sola köçürün",
"reorderItemRight": "Sağa köçürün",
"expandedIconTapHint": "Yığcamlaşdırın", "expandedIconTapHint": "Yığcamlaşdırın",
"collapsedIconTapHint": "Genişləndirin", "collapsedIconTapHint": "Genişləndirin",
"remainingTextFieldCharacterCountOne": "1 simvol qalır", "remainingTextFieldCharacterCountOne": "1 simvol qalır",
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
"dialogLabel": "Дыялогавае акно", "dialogLabel": "Дыялогавае акно",
"alertDialogLabel": "Абвестка", "alertDialogLabel": "Абвестка",
"searchFieldLabel": "Пошук", "searchFieldLabel": "Пошук",
"reorderItemToStart": "Перамясціць у пачатак",
"reorderItemToEnd": "Перамясціць у канец",
"reorderItemUp": "Перамясціць уверх",
"reorderItemDown": "Перамясціць уніз",
"reorderItemLeft": "Перамясціць улева",
"reorderItemRight": "Перамясціць управа",
"expandedIconTapHint": "Згарнуць", "expandedIconTapHint": "Згарнуць",
"collapsedIconTapHint": "Разгарнуць", "collapsedIconTapHint": "Разгарнуць",
"remainingTextFieldCharacterCountOne": "Застаўся 1 сімвал", "remainingTextFieldCharacterCountOne": "Застаўся 1 сімвал",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Диалогов прозорец", "dialogLabel": "Диалогов прозорец",
"alertDialogLabel": "Сигнал", "alertDialogLabel": "Сигнал",
"searchFieldLabel": "Търсене", "searchFieldLabel": "Търсене",
"reorderItemToStart": "Преместване в началото",
"reorderItemToEnd": "Преместване в края",
"reorderItemUp": "Преместване нагоре",
"reorderItemDown": "Преместване надолу",
"reorderItemLeft": "Преместване наляво",
"reorderItemRight": "Преместване надясно",
"expandedIconTapHint": "Свиване", "expandedIconTapHint": "Свиване",
"collapsedIconTapHint": "Разгъване", "collapsedIconTapHint": "Разгъване",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ডায়ালগ", "dialogLabel": "ডায়ালগ",
"alertDialogLabel": "সতর্কতা", "alertDialogLabel": "সতর্কতা",
"searchFieldLabel": "খুঁজুন", "searchFieldLabel": "খুঁজুন",
"reorderItemToStart": "চালু করতে সরান",
"reorderItemToEnd": "একদম শেষের দিকে যান",
"reorderItemUp": "উপরের দিকে সরান",
"reorderItemDown": "নিচের দিকে সরান",
"reorderItemLeft": "বাঁদিকে সরান",
"reorderItemRight": "ডানদিকে সরান",
"expandedIconTapHint": "আড়াল করুন", "expandedIconTapHint": "আড়াল করুন",
"collapsedIconTapHint": "বড় করুন", "collapsedIconTapHint": "বড় করুন",
"remainingTextFieldCharacterCountOne": "আর ১টি অক্ষর লেখা যাবে", "remainingTextFieldCharacterCountOne": "আর ১টি অক্ষর লেখা যাবে",
......
...@@ -45,6 +45,12 @@ ...@@ -45,6 +45,12 @@
"dialogLabel": "Dijaloški okvir", "dialogLabel": "Dijaloški okvir",
"alertDialogLabel": "Upozorenje", "alertDialogLabel": "Upozorenje",
"searchFieldLabel": "Pretražite", "searchFieldLabel": "Pretražite",
"reorderItemToStart": "Pomjerite na početak",
"reorderItemToEnd": "Pomjerite na kraj",
"reorderItemUp": "Pomjeri nagore",
"reorderItemDown": "Pomjeri nadolje",
"reorderItemLeft": "Pomjeri lijevo",
"reorderItemRight": "Pomjeri desno",
"expandedIconTapHint": "Suzi", "expandedIconTapHint": "Suzi",
"collapsedIconTapHint": "Proširi", "collapsedIconTapHint": "Proširi",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Diàleg", "dialogLabel": "Diàleg",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Cerca", "searchFieldLabel": "Cerca",
"reorderItemToStart": "Mou al principi",
"reorderItemToEnd": "Mou al final",
"reorderItemUp": "Mou amunt",
"reorderItemDown": "Mou avall",
"reorderItemLeft": "Mou cap a l'esquerra",
"reorderItemRight": "Mou cap a la dreta",
"expandedIconTapHint": "Replega", "expandedIconTapHint": "Replega",
"collapsedIconTapHint": "Desplega", "collapsedIconTapHint": "Desplega",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
"dialogLabel": "Dialogové okno", "dialogLabel": "Dialogové okno",
"alertDialogLabel": "Upozornění", "alertDialogLabel": "Upozornění",
"searchFieldLabel": "Hledat", "searchFieldLabel": "Hledat",
"reorderItemToStart": "Přesunout na začátek",
"reorderItemToEnd": "Přesunout na konec",
"reorderItemUp": "Přesunout nahoru",
"reorderItemDown": "Přesunout dolů",
"reorderItemLeft": "Přesunout doleva",
"reorderItemRight": "Přesunout doprava",
"expandedIconTapHint": "Sbalit", "expandedIconTapHint": "Sbalit",
"collapsedIconTapHint": "Rozbalit", "collapsedIconTapHint": "Rozbalit",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -86,6 +86,12 @@ ...@@ -86,6 +86,12 @@
"alertDialogLabel": "Rhybudd", "alertDialogLabel": "Rhybudd",
"searchFieldLabel": "Chwilio", "searchFieldLabel": "Chwilio",
"currentDateLabel": "Heddiw", "currentDateLabel": "Heddiw",
"reorderItemToStart": "Symud i'r dechrau",
"reorderItemToEnd": "Symud i'r diwedd",
"reorderItemUp": "Symud i fyny",
"reorderItemDown": "Symud i lawr",
"reorderItemLeft": "Symud i'r chwith",
"reorderItemRight": "Symud i'r dde",
"expandedIconTapHint": "Crebachu", "expandedIconTapHint": "Crebachu",
"collapsedIconTapHint": "Ehangu", "collapsedIconTapHint": "Ehangu",
"remainingTextFieldCharacterCountZero": "Dim nodau ar ôl", "remainingTextFieldCharacterCountZero": "Dim nodau ar ôl",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialogboks", "dialogLabel": "Dialogboks",
"alertDialogLabel": "Underretning", "alertDialogLabel": "Underretning",
"searchFieldLabel": "Søg", "searchFieldLabel": "Søg",
"reorderItemToStart": "Flyt til først på listen",
"reorderItemToEnd": "Flyt til sidst på listen",
"reorderItemUp": "Flyt op",
"reorderItemDown": "Flyt ned",
"reorderItemLeft": "Flyt til venstre",
"reorderItemRight": "Flyt til højre",
"expandedIconTapHint": "Skjul", "expandedIconTapHint": "Skjul",
"collapsedIconTapHint": "Udvid", "collapsedIconTapHint": "Udvid",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Dialogfeld", "dialogLabel": "Dialogfeld",
"alertDialogLabel": "Benachrichtigung", "alertDialogLabel": "Benachrichtigung",
"searchFieldLabel": "Suchen", "searchFieldLabel": "Suchen",
"reorderItemToStart": "An den Anfang verschieben",
"reorderItemToEnd": "An das Ende verschieben",
"reorderItemUp": "Nach oben verschieben",
"reorderItemDown": "Nach unten verschieben",
"reorderItemLeft": "Nach links verschieben",
"reorderItemRight": "Nach rechts verschieben",
"expandedIconTapHint": "Minimieren", "expandedIconTapHint": "Minimieren",
"collapsedIconTapHint": "Maximieren", "collapsedIconTapHint": "Maximieren",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -70,6 +70,12 @@ ...@@ -70,6 +70,12 @@
"dialogLabel": "Dialogfeld", "dialogLabel": "Dialogfeld",
"alertDialogLabel": "Benachrichtigung", "alertDialogLabel": "Benachrichtigung",
"searchFieldLabel": "Suchen", "searchFieldLabel": "Suchen",
"reorderItemToStart": "An den Anfang verschieben",
"reorderItemToEnd": "An das Ende verschieben",
"reorderItemUp": "Nach oben verschieben",
"reorderItemDown": "Nach unten verschieben",
"reorderItemLeft": "Nach links verschieben",
"reorderItemRight": "Nach rechts verschieben",
"expandedIconTapHint": "Minimieren", "expandedIconTapHint": "Minimieren",
"collapsedIconTapHint": "Maximieren", "collapsedIconTapHint": "Maximieren",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Παράθυρο διαλόγου", "dialogLabel": "Παράθυρο διαλόγου",
"alertDialogLabel": "Ειδοποίηση", "alertDialogLabel": "Ειδοποίηση",
"searchFieldLabel": "Αναζήτηση", "searchFieldLabel": "Αναζήτηση",
"reorderItemToStart": "Μετακίνηση στην αρχή",
"reorderItemToEnd": "Μετακίνηση στο τέλος",
"reorderItemUp": "Μετακίνηση προς τα πάνω",
"reorderItemDown": "Μετακίνηση προς τα κάτω",
"reorderItemLeft": "Μετακίνηση αριστερά",
"reorderItemRight": "Μετακίνηση δεξιά",
"expandedIconTapHint": "Σύμπτυξη", "expandedIconTapHint": "Σύμπτυξη",
"collapsedIconTapHint": "Ανάπτυξη", "collapsedIconTapHint": "Ανάπτυξη",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -414,6 +414,36 @@ ...@@ -414,6 +414,36 @@
"description": "Label indicating that the focused date is the current date." "description": "Label indicating that the focused date is the current date."
}, },
"reorderItemToStart": "Move to the start",
"@reorderItemToStart": {
"description": "The audio announcement to move an item in a Reorderable List to the start of the list."
},
"reorderItemToEnd": "Move to the end",
"@reorderItemToEnd": {
"description": "The audio announcement to move an item in a Reorderable List to the end of the list."
},
"reorderItemUp": "Move up",
"@reorderItemUp": {
"description": "The audio announcement to move an item in a Reorderable List up in the list when it is oriented vertically."
},
"reorderItemDown": "Move down",
"@reorderItemDown": {
"description": "The audio announcement to move an item in a Reorderable List down in the list when it is oriented vertically."
},
"reorderItemLeft": "Move left",
"@reorderItemLeft": {
"description": "The audio announcement to move an item in a Reorderable List left in the list when it is oriented horizontally."
},
"reorderItemRight": "Move right",
"@reorderItemRight": {
"description": "The audio announcement to move an item in a Reorderable List right in the list when it is oriented horizontally."
},
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"@expandedIconTapHint": { "@expandedIconTapHint": {
"description": "The verb which describes what happens when an expanded ExpandIcon toggle button is pressed. This is used by TalkBack on Android to replace the default hint on the accessibility action. The verb will be concatenated with a prefix string which describes how to perform the action, which by default is 'double tap to activate'. In the case of US english, this would be 'double tap to collapse.' The exact phrasing of the hint will vary based on locale" "description": "The verb which describes what happens when an expanded ExpandIcon toggle button is pressed. This is used by TalkBack on Android to replace the default hint on the accessibility action. The verb will be concatenated with a prefix string which describes how to perform the action, which by default is 'double tap to activate'. In the case of US english, this would be 'double tap to collapse.' The exact phrasing of the hint will vary based on locale"
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -118,6 +118,12 @@ ...@@ -118,6 +118,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountOne": "1 character remaining", "remainingTextFieldCharacterCountOne": "1 character remaining",
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -123,6 +123,12 @@ ...@@ -123,6 +123,12 @@
"dialogLabel": "Dialogue", "dialogLabel": "Dialogue",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Search", "searchFieldLabel": "Search",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move to the left",
"reorderItemRight": "Move to the right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Cuadro de diálogo", "dialogLabel": "Cuadro de diálogo",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Buscar", "searchFieldLabel": "Buscar",
"reorderItemToStart": "Mover al principio",
"reorderItemToEnd": "Mover al final",
"reorderItemUp": "Mover hacia arriba",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemRight": "Mover hacia la derecha",
"expandedIconTapHint": "Ocultar", "expandedIconTapHint": "Ocultar",
"collapsedIconTapHint": "Mostrar", "collapsedIconTapHint": "Mostrar",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -122,6 +122,12 @@ ...@@ -122,6 +122,12 @@
"dialogLabel": "Diálogo", "dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Buscar", "searchFieldLabel": "Buscar",
"reorderItemToStart": "Mover al inicio",
"reorderItemToEnd": "Mover al final",
"reorderItemUp": "Mover hacia arriba",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemRight": "Mover hacia la derecha",
"expandedIconTapHint": "Contraer", "expandedIconTapHint": "Contraer",
"collapsedIconTapHint": "Expandir", "collapsedIconTapHint": "Expandir",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -122,6 +122,12 @@ ...@@ -122,6 +122,12 @@
"dialogLabel": "Diálogo", "dialogLabel": "Diálogo",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Buscar", "searchFieldLabel": "Buscar",
"reorderItemToStart": "Mover al inicio",
"reorderItemToEnd": "Mover al final",
"reorderItemUp": "Mover hacia arriba",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemRight": "Mover hacia la derecha",
"expandedIconTapHint": "Contraer", "expandedIconTapHint": "Contraer",
"collapsedIconTapHint": "Expandir", "collapsedIconTapHint": "Expandir",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -79,6 +79,12 @@ ...@@ -79,6 +79,12 @@
"selectYearSemanticsLabel": "Seleccionar año", "selectYearSemanticsLabel": "Seleccionar año",
"dateHelpText": "dd/mm/aaaa", "dateHelpText": "dd/mm/aaaa",
"moreButtonTooltip": "Más", "moreButtonTooltip": "Más",
"reorderItemDown": "Mover hacia abajo",
"reorderItemLeft": "Mover hacia la izquierda",
"reorderItemToEnd": "Mover al final",
"reorderItemRight": "Mover hacia la derecha",
"reorderItemUp": "Mover hacia arriba",
"reorderItemToStart": "Mover al inicio",
"tabLabel": "Pestaña $tabIndex de $tabCount", "tabLabel": "Pestaña $tabIndex de $tabCount",
"showAccountsLabel": "Mostrar cuentas", "showAccountsLabel": "Mostrar cuentas",
"modalBarrierDismissLabel": "Descartar", "modalBarrierDismissLabel": "Descartar",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialoog", "dialogLabel": "Dialoog",
"alertDialogLabel": "Märguanne", "alertDialogLabel": "Märguanne",
"searchFieldLabel": "Otsing", "searchFieldLabel": "Otsing",
"reorderItemToStart": "Teisalda algusesse",
"reorderItemToEnd": "Teisalda lõppu",
"reorderItemUp": "Teisalda üles",
"reorderItemDown": "Teisalda alla",
"reorderItemLeft": "Teisalda vasakule",
"reorderItemRight": "Teisalda paremale",
"expandedIconTapHint": "Ahenda", "expandedIconTapHint": "Ahenda",
"collapsedIconTapHint": "Laienda", "collapsedIconTapHint": "Laienda",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Leihoa", "dialogLabel": "Leihoa",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Bilatu", "searchFieldLabel": "Bilatu",
"reorderItemToStart": "Eraman hasierara",
"reorderItemToEnd": "Eraman amaierara",
"reorderItemUp": "Eraman gora",
"reorderItemDown": "Eraman behera",
"reorderItemLeft": "Eraman ezkerrera",
"reorderItemRight": "Eraman eskuinera",
"expandedIconTapHint": "Tolestu", "expandedIconTapHint": "Tolestu",
"collapsedIconTapHint": "Zabaldu", "collapsedIconTapHint": "Zabaldu",
"remainingTextFieldCharacterCountOne": "1 karaktere geratzen da", "remainingTextFieldCharacterCountOne": "1 karaktere geratzen da",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "کادر گفتگو", "dialogLabel": "کادر گفتگو",
"alertDialogLabel": "هشدار", "alertDialogLabel": "هشدار",
"searchFieldLabel": "جستجو", "searchFieldLabel": "جستجو",
"reorderItemToStart": "انتقال به ابتدا",
"reorderItemToEnd": "انتقال به انتها",
"reorderItemUp": "انتقال به بالا",
"reorderItemDown": "انتقال به پایین",
"reorderItemLeft": "انتقال به راست",
"reorderItemRight": "انتقال به چپ",
"expandedIconTapHint": "کوچک کردن", "expandedIconTapHint": "کوچک کردن",
"collapsedIconTapHint": "بزرگ کردن", "collapsedIconTapHint": "بزرگ کردن",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Valintaikkuna", "dialogLabel": "Valintaikkuna",
"alertDialogLabel": "Ilmoitus", "alertDialogLabel": "Ilmoitus",
"searchFieldLabel": "Haku", "searchFieldLabel": "Haku",
"reorderItemToStart": "Siirrä alkuun",
"reorderItemToEnd": "Siirrä loppuun",
"reorderItemUp": "Siirrä ylös",
"reorderItemDown": "Siirrä alas",
"reorderItemLeft": "Siirrä vasemmalle",
"reorderItemRight": "Siirrä oikealle",
"expandedIconTapHint": "Tiivistä", "expandedIconTapHint": "Tiivistä",
"collapsedIconTapHint": "Laajenna", "collapsedIconTapHint": "Laajenna",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialog", "dialogLabel": "Dialog",
"alertDialogLabel": "Alerto", "alertDialogLabel": "Alerto",
"searchFieldLabel": "Maghanap", "searchFieldLabel": "Maghanap",
"reorderItemToStart": "Ilipat sa simula",
"reorderItemToEnd": "Ilipat sa dulo",
"reorderItemUp": "Ilipat pataas",
"reorderItemDown": "Ilipat pababa",
"reorderItemLeft": "Ilipat pakaliwa",
"reorderItemRight": "Ilipat pakanan",
"expandedIconTapHint": "I-collapse", "expandedIconTapHint": "I-collapse",
"collapsedIconTapHint": "I-expand", "collapsedIconTapHint": "I-expand",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Boîte de dialogue", "dialogLabel": "Boîte de dialogue",
"alertDialogLabel": "Alerte", "alertDialogLabel": "Alerte",
"searchFieldLabel": "Rechercher", "searchFieldLabel": "Rechercher",
"reorderItemToStart": "Déplacer vers le début",
"reorderItemToEnd": "Déplacer vers la fin",
"reorderItemUp": "Déplacer vers le haut",
"reorderItemDown": "Déplacer vers le bas",
"reorderItemLeft": "Déplacer vers la gauche",
"reorderItemRight": "Déplacer vers la droite",
"expandedIconTapHint": "Réduire", "expandedIconTapHint": "Réduire",
"collapsedIconTapHint": "Développer", "collapsedIconTapHint": "Développer",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -122,6 +122,12 @@ ...@@ -122,6 +122,12 @@
"dialogLabel": "Boîte de dialogue", "dialogLabel": "Boîte de dialogue",
"alertDialogLabel": "Alerte", "alertDialogLabel": "Alerte",
"searchFieldLabel": "Rechercher", "searchFieldLabel": "Rechercher",
"reorderItemToStart": "Déplacer au début",
"reorderItemToEnd": "Déplacer à la fin",
"reorderItemUp": "Déplacer vers le haut",
"reorderItemDown": "Déplacer vers le bas",
"reorderItemLeft": "Déplacer vers la gauche",
"reorderItemRight": "Déplacer vers la droite",
"expandedIconTapHint": "Réduire", "expandedIconTapHint": "Réduire",
"collapsedIconTapHint": "Développer", "collapsedIconTapHint": "Développer",
"signedInLabel": "Connecté", "signedInLabel": "Connecté",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Cadro de diálogo", "dialogLabel": "Cadro de diálogo",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Buscar", "searchFieldLabel": "Buscar",
"reorderItemToStart": "Mover ao inicio",
"reorderItemToEnd": "Mover ao final",
"reorderItemUp": "Mover cara arriba",
"reorderItemDown": "Mover cara abaixo",
"reorderItemLeft": "Mover cara á esquerda",
"reorderItemRight": "Mover cara á dereita",
"expandedIconTapHint": "Contraer", "expandedIconTapHint": "Contraer",
"collapsedIconTapHint": "Despregar", "collapsedIconTapHint": "Despregar",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialogfeld", "dialogLabel": "Dialogfeld",
"alertDialogLabel": "Benachrichtigung", "alertDialogLabel": "Benachrichtigung",
"searchFieldLabel": "Suchen", "searchFieldLabel": "Suchen",
"reorderItemToStart": "An den Anfang verschieben",
"reorderItemToEnd": "An das Ende verschieben",
"reorderItemUp": "Nach oben verschieben",
"reorderItemDown": "Nach unten verschieben",
"reorderItemLeft": "Nach links verschieben",
"reorderItemRight": "Nach rechts verschieben",
"expandedIconTapHint": "Minimieren", "expandedIconTapHint": "Minimieren",
"collapsedIconTapHint": "Maximieren", "collapsedIconTapHint": "Maximieren",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "સંવાદ", "dialogLabel": "સંવાદ",
"alertDialogLabel": "અલર્ટ", "alertDialogLabel": "અલર્ટ",
"searchFieldLabel": "શોધો", "searchFieldLabel": "શોધો",
"reorderItemToStart": "પ્રારંભમાં ખસેડો",
"reorderItemToEnd": "અંતમાં ખસેડો",
"reorderItemUp": "ઉપર ખસેડો",
"reorderItemDown": "નીચે ખસેડો",
"reorderItemLeft": "ડાબે ખસેડો",
"reorderItemRight": "જમણે ખસેડો",
"expandedIconTapHint": "સંકુચિત કરો", "expandedIconTapHint": "સંકુચિત કરો",
"collapsedIconTapHint": "વિસ્તૃત કરો", "collapsedIconTapHint": "વિસ્તૃત કરો",
"remainingTextFieldCharacterCountOne": "1 અક્ષર બાકી", "remainingTextFieldCharacterCountOne": "1 અક્ષર બાકી",
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
"dialogLabel": "תיבת דו-שיח", "dialogLabel": "תיבת דו-שיח",
"alertDialogLabel": "התראה", "alertDialogLabel": "התראה",
"searchFieldLabel": "חיפוש", "searchFieldLabel": "חיפוש",
"reorderItemToStart": "העברה להתחלה",
"reorderItemToEnd": "העברה לסוף",
"reorderItemUp": "העברה למעלה",
"reorderItemDown": "העברה למטה",
"reorderItemLeft": "העברה שמאלה",
"reorderItemRight": "העברה ימינה",
"expandedIconTapHint": "כיווץ", "expandedIconTapHint": "כיווץ",
"collapsedIconTapHint": "הרחבה", "collapsedIconTapHint": "הרחבה",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "डायलॉग", "dialogLabel": "डायलॉग",
"alertDialogLabel": "अलर्ट", "alertDialogLabel": "अलर्ट",
"searchFieldLabel": "खोजें", "searchFieldLabel": "खोजें",
"reorderItemToStart": "शुरुआत पर ले जाएं",
"reorderItemToEnd": "आखिर में ले जाएं",
"reorderItemUp": "ऊपर ले जाएं",
"reorderItemDown": "नीचे ले जाएं",
"reorderItemLeft": "बाएं ले जाएं",
"reorderItemRight": "दाएं ले जाएं",
"expandedIconTapHint": "छोटा करें", "expandedIconTapHint": "छोटा करें",
"collapsedIconTapHint": "बड़ा करें", "collapsedIconTapHint": "बड़ा करें",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -45,6 +45,12 @@ ...@@ -45,6 +45,12 @@
"dialogLabel": "Dijalog", "dialogLabel": "Dijalog",
"alertDialogLabel": "Upozorenje", "alertDialogLabel": "Upozorenje",
"searchFieldLabel": "Pretražite", "searchFieldLabel": "Pretražite",
"reorderItemToStart": "Premjesti na početak",
"reorderItemToEnd": "Premjesti na kraj",
"reorderItemUp": "Pomakni prema gore",
"reorderItemDown": "Pomakni prema dolje",
"reorderItemLeft": "Pomakni ulijevo",
"reorderItemRight": "Pomakni udesno",
"expandedIconTapHint": "Sažmi", "expandedIconTapHint": "Sažmi",
"collapsedIconTapHint": "Proširi", "collapsedIconTapHint": "Proširi",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Párbeszédablak", "dialogLabel": "Párbeszédablak",
"alertDialogLabel": "Értesítés", "alertDialogLabel": "Értesítés",
"searchFieldLabel": "Keresés", "searchFieldLabel": "Keresés",
"reorderItemToStart": "Áthelyezés az elejére",
"reorderItemToEnd": "Áthelyezés a végére",
"reorderItemUp": "Áthelyezés felfelé",
"reorderItemDown": "Áthelyezés lefelé",
"reorderItemLeft": "Áthelyezés balra",
"reorderItemRight": "Áthelyezés jobbra",
"expandedIconTapHint": "Összecsukás", "expandedIconTapHint": "Összecsukás",
"collapsedIconTapHint": "Kibontás", "collapsedIconTapHint": "Kibontás",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -47,6 +47,12 @@ ...@@ -47,6 +47,12 @@
"dialogLabel": "Երկխոսության պատուհան", "dialogLabel": "Երկխոսության պատուհան",
"alertDialogLabel": "Ծանուցում", "alertDialogLabel": "Ծանուցում",
"searchFieldLabel": "Որոնել", "searchFieldLabel": "Որոնել",
"reorderItemToStart": "Տեղափոխել սկիզբ",
"reorderItemToEnd": "Տեղափոխել վերջ",
"reorderItemUp": "Տեղափոխել վերև",
"reorderItemDown": "Տեղափոխել ներքև",
"reorderItemLeft": "Տեղափոխել ձախ",
"reorderItemRight": "Տեղափոխել աջ",
"expandedIconTapHint": "Ծալել", "expandedIconTapHint": "Ծալել",
"collapsedIconTapHint": "Ծավալել", "collapsedIconTapHint": "Ծավալել",
"remainingTextFieldCharacterCountZero": "Նիշի հնարավորություն չկա", "remainingTextFieldCharacterCountZero": "Նիշի հնարավորություն չկա",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialog", "dialogLabel": "Dialog",
"alertDialogLabel": "Notifikasi", "alertDialogLabel": "Notifikasi",
"searchFieldLabel": "Telusuri", "searchFieldLabel": "Telusuri",
"reorderItemToStart": "Pindahkan ke awal",
"reorderItemToEnd": "Pindahkan ke akhir",
"reorderItemUp": "Naikkan",
"reorderItemDown": "Turunkan",
"reorderItemLeft": "Pindahkan ke kiri",
"reorderItemRight": "Pindahkan ke kanan",
"expandedIconTapHint": "Ciutkan", "expandedIconTapHint": "Ciutkan",
"collapsedIconTapHint": "Luaskan", "collapsedIconTapHint": "Luaskan",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Gluggi", "dialogLabel": "Gluggi",
"alertDialogLabel": "Tilkynning", "alertDialogLabel": "Tilkynning",
"searchFieldLabel": "Leit", "searchFieldLabel": "Leit",
"reorderItemToStart": "Færa fremst",
"reorderItemToEnd": "Færa aftast",
"reorderItemUp": "Færa upp",
"reorderItemDown": "Færa niður",
"reorderItemLeft": "Færa til vinstri",
"reorderItemRight": "Færa til hægri",
"expandedIconTapHint": "Draga saman", "expandedIconTapHint": "Draga saman",
"collapsedIconTapHint": "Stækka", "collapsedIconTapHint": "Stækka",
"remainingTextFieldCharacterCountOne": "1 stafur eftir", "remainingTextFieldCharacterCountOne": "1 stafur eftir",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Finestra di dialogo", "dialogLabel": "Finestra di dialogo",
"alertDialogLabel": "Avviso", "alertDialogLabel": "Avviso",
"searchFieldLabel": "Cerca", "searchFieldLabel": "Cerca",
"reorderItemToStart": "Sposta all'inizio",
"reorderItemToEnd": "Sposta alla fine",
"reorderItemUp": "Sposta su",
"reorderItemDown": "Sposta giù",
"reorderItemLeft": "Sposta a sinistra",
"reorderItemRight": "Sposta a destra",
"expandedIconTapHint": "Comprimi", "expandedIconTapHint": "Comprimi",
"collapsedIconTapHint": "Espandi", "collapsedIconTapHint": "Espandi",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ダイアログ", "dialogLabel": "ダイアログ",
"alertDialogLabel": "通知", "alertDialogLabel": "通知",
"searchFieldLabel": "検索", "searchFieldLabel": "検索",
"reorderItemToStart": "先頭に移動",
"reorderItemToEnd": "最後に移動",
"reorderItemUp": "上に移動",
"reorderItemDown": "下に移動",
"reorderItemLeft": "左に移動",
"reorderItemRight": "右に移動",
"expandedIconTapHint": "折りたたむ", "expandedIconTapHint": "折りたたむ",
"collapsedIconTapHint": "展開", "collapsedIconTapHint": "展開",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "დიალოგი", "dialogLabel": "დიალოგი",
"alertDialogLabel": "გაფრთხილება", "alertDialogLabel": "გაფრთხილება",
"searchFieldLabel": "ძიება", "searchFieldLabel": "ძიება",
"reorderItemToStart": "დასაწყისში გადატანა",
"reorderItemToEnd": "ბოლოში გადატანა",
"reorderItemUp": "ზემოთ გადატანა",
"reorderItemDown": "ქვემოთ გადატანა",
"reorderItemLeft": "მარცხნივ გადატანა",
"reorderItemRight": "მარჯვნივ გადატანა",
"expandedIconTapHint": "ჩაკეცვა", "expandedIconTapHint": "ჩაკეცვა",
"collapsedIconTapHint": "გაშლა", "collapsedIconTapHint": "გაშლა",
"remainingTextFieldCharacterCountOne": "დარჩა 1 სიმბოლო", "remainingTextFieldCharacterCountOne": "დარჩა 1 სიმბოლო",
......
...@@ -44,6 +44,12 @@ ...@@ -44,6 +44,12 @@
"dialogLabel": "Диалогтық терезе", "dialogLabel": "Диалогтық терезе",
"alertDialogLabel": "Дабыл", "alertDialogLabel": "Дабыл",
"searchFieldLabel": "Іздеу", "searchFieldLabel": "Іздеу",
"reorderItemToStart": "Басына өту",
"reorderItemToEnd": "Соңына өту",
"reorderItemUp": "Жоғарыға жылжыту",
"reorderItemDown": "Төменге жылжыту",
"reorderItemLeft": "Солға жылжыту",
"reorderItemRight": "Оңға жылжыту",
"expandedIconTapHint": "Жию", "expandedIconTapHint": "Жию",
"collapsedIconTapHint": "Жаю", "collapsedIconTapHint": "Жаю",
"remainingTextFieldCharacterCountZero": "Таңбалар қалмады", "remainingTextFieldCharacterCountZero": "Таңбалар қалмады",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ប្រអប់", "dialogLabel": "ប្រអប់",
"alertDialogLabel": "ជូនដំណឹង", "alertDialogLabel": "ជូនដំណឹង",
"searchFieldLabel": "ស្វែងរក", "searchFieldLabel": "ស្វែងរក",
"reorderItemToStart": "ផ្លាស់ទីទៅ​ចំណុច​ចាប់ផ្ដើម",
"reorderItemToEnd": "ផ្លាស់ទីទៅ​ចំណុចបញ្ចប់",
"reorderItemUp": "ផ្លាស់ទី​ឡើង​លើ",
"reorderItemDown": "ផ្លាស់ទី​ចុះ​ក្រោម",
"reorderItemLeft": "ផ្លាស់ទី​ទៅ​ឆ្វេង",
"reorderItemRight": "ផ្លាស់ទីទៅ​ស្តាំ",
"expandedIconTapHint": "បង្រួម", "expandedIconTapHint": "បង្រួម",
"collapsedIconTapHint": "ពង្រីក", "collapsedIconTapHint": "ពង្រីក",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "\u0ca1\u0cc8\u0cb2\u0cbe\u0c97\u0ccd", "dialogLabel": "\u0ca1\u0cc8\u0cb2\u0cbe\u0c97\u0ccd",
"alertDialogLabel": "\u0c8e\u0c9a\u0ccd\u0c9a\u0cb0\u0cbf\u0c95\u0cc6", "alertDialogLabel": "\u0c8e\u0c9a\u0ccd\u0c9a\u0cb0\u0cbf\u0c95\u0cc6",
"searchFieldLabel": "\u0cb9\u0cc1\u0ca1\u0cc1\u0c95\u0cbf", "searchFieldLabel": "\u0cb9\u0cc1\u0ca1\u0cc1\u0c95\u0cbf",
"reorderItemToStart": "\u0caa\u0ccd\u0cb0\u0cbe\u0cb0\u0c82\u0cad\u0c95\u0ccd\u0c95\u0cc6\u0020\u0cb8\u0cb0\u0cbf\u0cb8\u0cbf",
"reorderItemToEnd": "\u0c95\u0cca\u0ca8\u0cc6\u0c97\u0cc6\u0020\u0cb8\u0cb0\u0cbf\u0cb8\u0cbf",
"reorderItemUp": "\u0cae\u0cc7\u0cb2\u0cc6\u0020\u0cb8\u0cb0\u0cbf\u0cb8\u0cbf",
"reorderItemDown": "\u0c95\u0cc6\u0cb3\u0c97\u0cc6\u0020\u0cb8\u0cb0\u0cbf\u0cb8\u0cbf",
"reorderItemLeft": "\u0c8e\u0ca1\u0c95\u0ccd\u0c95\u0cc6\u0020\u0cb8\u0cb0\u0cbf\u0cb8\u0cbf",
"reorderItemRight": "\u0cac\u0cb2\u0c95\u0ccd\u0c95\u0cc6\u0020\u0cb8\u0cb0\u0cbf\u0cb8\u0cbf",
"expandedIconTapHint": "\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cbf", "expandedIconTapHint": "\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cbf",
"collapsedIconTapHint": "\u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf", "collapsedIconTapHint": "\u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf",
"remainingTextFieldCharacterCountOne": "\u0031\u0020\u0c85\u0c95\u0ccd\u0cb7\u0cb0\u0020\u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0ca6\u0cc6", "remainingTextFieldCharacterCountOne": "\u0031\u0020\u0c85\u0c95\u0ccd\u0cb7\u0cb0\u0020\u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0ca6\u0cc6",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "대화상자", "dialogLabel": "대화상자",
"alertDialogLabel": "알림", "alertDialogLabel": "알림",
"searchFieldLabel": "검색", "searchFieldLabel": "검색",
"reorderItemToStart": "시작으로 이동",
"reorderItemToEnd": "끝으로 이동",
"reorderItemUp": "위로 이동",
"reorderItemDown": "아래로 이동",
"reorderItemLeft": "왼쪽으로 이동",
"reorderItemRight": "오른쪽으로 이동",
"expandedIconTapHint": "접기", "expandedIconTapHint": "접기",
"collapsedIconTapHint": "펼치기", "collapsedIconTapHint": "펼치기",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Диалог", "dialogLabel": "Диалог",
"alertDialogLabel": "Эскертүү", "alertDialogLabel": "Эскертүү",
"searchFieldLabel": "Издөө", "searchFieldLabel": "Издөө",
"reorderItemToStart": "Башына жылдыруу",
"reorderItemToEnd": "Аягына жылдыруу",
"reorderItemUp": "Жогору жылдыруу",
"reorderItemDown": "Төмөн жылдыруу",
"reorderItemLeft": "Солго жылдыруу",
"reorderItemRight": "Оңго жылдыруу",
"expandedIconTapHint": "Жыйыштыруу", "expandedIconTapHint": "Жыйыштыруу",
"collapsedIconTapHint": "Жайып көрсөтүү", "collapsedIconTapHint": "Жайып көрсөтүү",
"remainingTextFieldCharacterCountOne": "1 белги калды", "remainingTextFieldCharacterCountOne": "1 белги калды",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ຂໍ້ຄວາມ", "dialogLabel": "ຂໍ້ຄວາມ",
"alertDialogLabel": "ການເຕືອນ", "alertDialogLabel": "ການເຕືອນ",
"searchFieldLabel": "ຊອກຫາ", "searchFieldLabel": "ຊອກຫາ",
"reorderItemToStart": "ຍ້າຍໄປເລີ່ມຕົ້ນ",
"reorderItemToEnd": "ຍ້າຍໄປສິ້ນສຸດ",
"reorderItemUp": "ຍ້າຍຂຶ້ນ",
"reorderItemDown": "ຍ້າຍລົງ",
"reorderItemLeft": "ຍ້າຍໄປຊ້າຍ",
"reorderItemRight": "ຍ້າຍໄປຂວາ",
"expandedIconTapHint": "ຫຍໍ້ເຂົ້າ", "expandedIconTapHint": "ຫຍໍ້ເຂົ້າ",
"collapsedIconTapHint": "ຂະຫຍາຍ", "collapsedIconTapHint": "ຂະຫຍາຍ",
"remainingTextFieldCharacterCountOne": "ຍັງອີກ 1 ຕົວອັກສອນ", "remainingTextFieldCharacterCountOne": "ຍັງອີກ 1 ຕົວອັກສອນ",
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
"dialogLabel": "Dialogo langas", "dialogLabel": "Dialogo langas",
"alertDialogLabel": "Įspėjimas", "alertDialogLabel": "Įspėjimas",
"searchFieldLabel": "Paieška", "searchFieldLabel": "Paieška",
"reorderItemToStart": "Perkelti į pradžią",
"reorderItemToEnd": "Perkelti į pabaigą",
"reorderItemUp": "Perkelti aukštyn",
"reorderItemDown": "Perkelti žemyn",
"reorderItemLeft": "Perkelti kairėn",
"reorderItemRight": "Perkelti dešinėn",
"expandedIconTapHint": "Sutraukti", "expandedIconTapHint": "Sutraukti",
"collapsedIconTapHint": "Išskleisti", "collapsedIconTapHint": "Išskleisti",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Dialoglodziņš", "dialogLabel": "Dialoglodziņš",
"alertDialogLabel": "Brīdinājums", "alertDialogLabel": "Brīdinājums",
"searchFieldLabel": "Meklēt", "searchFieldLabel": "Meklēt",
"reorderItemToStart": "Pārvietot uz sākumu",
"reorderItemToEnd": "Pārvietot uz beigām",
"reorderItemUp": "Pārvietot uz augšu",
"reorderItemDown": "Pārvietot uz leju",
"reorderItemLeft": "Pārvietot pa kreisi",
"reorderItemRight": "Pārvietot pa labi",
"expandedIconTapHint": "Sakļaut", "expandedIconTapHint": "Sakļaut",
"collapsedIconTapHint": "Izvērst", "collapsedIconTapHint": "Izvērst",
"remainingTextFieldCharacterCountZero": "Nav atlikusi neviena rakstzīme.", "remainingTextFieldCharacterCountZero": "Nav atlikusi neviena rakstzīme.",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Дијалог", "dialogLabel": "Дијалог",
"alertDialogLabel": "Предупредување", "alertDialogLabel": "Предупредување",
"searchFieldLabel": "Пребарувајте", "searchFieldLabel": "Пребарувајте",
"reorderItemToStart": "Преместете на почеток",
"reorderItemToEnd": "Преместете на крајот",
"reorderItemUp": "Преместете нагоре",
"reorderItemDown": "Преместете надолу",
"reorderItemLeft": "Преместете налево",
"reorderItemRight": "Преместете надесно",
"expandedIconTapHint": "Собери", "expandedIconTapHint": "Собери",
"collapsedIconTapHint": "Прошири", "collapsedIconTapHint": "Прошири",
"remainingTextFieldCharacterCountOne": "Преостанува уште 1 знак", "remainingTextFieldCharacterCountOne": "Преостанува уште 1 знак",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ഡയലോഗ്", "dialogLabel": "ഡയലോഗ്",
"alertDialogLabel": "മുന്നറിയിപ്പ്", "alertDialogLabel": "മുന്നറിയിപ്പ്",
"searchFieldLabel": "തിരയുക", "searchFieldLabel": "തിരയുക",
"reorderItemToStart": "തുടക്കത്തിലേക്ക് പോവുക",
"reorderItemToEnd": "അവസാന ഭാഗത്തേക്ക് പോവുക",
"reorderItemUp": "മുകളിലോട്ട് നീക്കുക",
"reorderItemDown": "താഴോട്ട് നീക്കുക",
"reorderItemLeft": "ഇടത്തോട്ട് നീക്കുക",
"reorderItemRight": "വലത്തോട്ട് നീക്കുക",
"expandedIconTapHint": "ചുരുക്കുക", "expandedIconTapHint": "ചുരുക്കുക",
"collapsedIconTapHint": "വികസിപ്പിക്കുക", "collapsedIconTapHint": "വികസിപ്പിക്കുക",
"remainingTextFieldCharacterCountOne": "ഒരു പ്രതീകം ശേഷിക്കുന്നു", "remainingTextFieldCharacterCountOne": "ഒരു പ്രതീകം ശേഷിക്കുന്നു",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Харилцах цонх", "dialogLabel": "Харилцах цонх",
"alertDialogLabel": "Сэрэмжлүүлэг", "alertDialogLabel": "Сэрэмжлүүлэг",
"searchFieldLabel": "Хайх", "searchFieldLabel": "Хайх",
"reorderItemToStart": "Эхлэл рүү зөөх",
"reorderItemToEnd": "Төгсгөл рүү зөөх",
"reorderItemUp": "Дээш зөөх",
"reorderItemDown": "Доош зөөх",
"reorderItemLeft": "Зүүн тийш зөөх",
"reorderItemRight": "Баруун тийш зөөх",
"expandedIconTapHint": "Буулгах", "expandedIconTapHint": "Буулгах",
"collapsedIconTapHint": "Дэлгэх", "collapsedIconTapHint": "Дэлгэх",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "डायलॉग", "dialogLabel": "डायलॉग",
"alertDialogLabel": "सूचना", "alertDialogLabel": "सूचना",
"searchFieldLabel": "शोध", "searchFieldLabel": "शोध",
"reorderItemToStart": "सुरुवातीला हलवा",
"reorderItemToEnd": "शेवटाकडे हलवा",
"reorderItemUp": "वर हलवा",
"reorderItemDown": "खाली हलवा",
"reorderItemLeft": "डावीकडे हलवा",
"reorderItemRight": "उजवीकडे हलवा",
"expandedIconTapHint": "कोलॅप्स करा", "expandedIconTapHint": "कोलॅप्स करा",
"collapsedIconTapHint": "विस्तार करा", "collapsedIconTapHint": "विस्तार करा",
"remainingTextFieldCharacterCountZero": "कोणतेही वर्ण शिल्लक नाहीत", "remainingTextFieldCharacterCountZero": "कोणतेही वर्ण शिल्लक नाहीत",
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
"dialogLabel": "Dialog", "dialogLabel": "Dialog",
"alertDialogLabel": "Makluman", "alertDialogLabel": "Makluman",
"searchFieldLabel": "Cari", "searchFieldLabel": "Cari",
"reorderItemToStart": "Alih ke permulaan",
"reorderItemToEnd": "Alih ke penghujung",
"reorderItemUp": "Alih ke atas",
"reorderItemDown": "Alih ke bawah",
"reorderItemLeft": "Alih ke kiri",
"reorderItemRight": "Alih ke kanan",
"expandedIconTapHint": "Runtuhkan", "expandedIconTapHint": "Runtuhkan",
"collapsedIconTapHint": "Kembangkan", "collapsedIconTapHint": "Kembangkan",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ဒိုင်ယာလော့", "dialogLabel": "ဒိုင်ယာလော့",
"alertDialogLabel": "သတိပေးချက်", "alertDialogLabel": "သတိပေးချက်",
"searchFieldLabel": "ရှာဖွေရန်", "searchFieldLabel": "ရှာဖွေရန်",
"reorderItemToStart": "အစသို့ ရွှေ့ရန်",
"reorderItemToEnd": "အဆုံးသို့ ‌ရွှေ့ရန်",
"reorderItemUp": "အပေါ်သို့ ရွှေ့ရန်",
"reorderItemDown": "အောက်သို့ရွှေ့ရန်",
"reorderItemLeft": "ဘယ်ဘက်သို့ရွှေ့ရန်",
"reorderItemRight": "ညာဘက်သို့ရွှေ့ရန်",
"expandedIconTapHint": "လျှော့ပြရန်", "expandedIconTapHint": "လျှော့ပြရန်",
"collapsedIconTapHint": "ချဲ့ရန်", "collapsedIconTapHint": "ချဲ့ရန်",
"remainingTextFieldCharacterCountOne": "အက္ခရာ ၁ လုံးကျန်သည်", "remainingTextFieldCharacterCountOne": "အက္ခရာ ၁ လုံးကျန်သည်",
......
...@@ -70,6 +70,12 @@ ...@@ -70,6 +70,12 @@
"dialogLabel": "Dialogboks", "dialogLabel": "Dialogboks",
"alertDialogLabel": "Varsel", "alertDialogLabel": "Varsel",
"searchFieldLabel": "Søk", "searchFieldLabel": "Søk",
"reorderItemToStart": "Flytt til starten",
"reorderItemToEnd": "Flytt til slutten",
"reorderItemUp": "Flytt opp",
"reorderItemDown": "Flytt ned",
"reorderItemLeft": "Flytt til venstre",
"reorderItemRight": "Flytt til høyre",
"expandedIconTapHint": "Skjul", "expandedIconTapHint": "Skjul",
"collapsedIconTapHint": "Vis", "collapsedIconTapHint": "Vis",
"remainingTextFieldCharacterCountOne": "1 tegn gjenstår", "remainingTextFieldCharacterCountOne": "1 tegn gjenstår",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "संवाद", "dialogLabel": "संवाद",
"alertDialogLabel": "अलर्ट", "alertDialogLabel": "अलर्ट",
"searchFieldLabel": "खोज्नुहोस्", "searchFieldLabel": "खोज्नुहोस्",
"reorderItemToStart": "सुरुमा सार्नुहोस्",
"reorderItemToEnd": "अन्त्यमा जानुहोस्",
"reorderItemUp": "माथि सार्नुहोस्",
"reorderItemDown": "तल सार्नुहोस्",
"reorderItemLeft": "बायाँ सार्नुहोस्",
"reorderItemRight": "दायाँ सार्नुहोस्",
"expandedIconTapHint": "संक्षिप्त गर्नुहोस्", "expandedIconTapHint": "संक्षिप्त गर्नुहोस्",
"collapsedIconTapHint": "विस्तार गर्नुहोस्", "collapsedIconTapHint": "विस्तार गर्नुहोस्",
"remainingTextFieldCharacterCountOne": "१ वर्ण बाँकी", "remainingTextFieldCharacterCountOne": "१ वर्ण बाँकी",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "Dialoogvenster", "dialogLabel": "Dialoogvenster",
"alertDialogLabel": "Melding", "alertDialogLabel": "Melding",
"searchFieldLabel": "Zoeken", "searchFieldLabel": "Zoeken",
"reorderItemToStart": "Naar het begin verplaatsen",
"reorderItemToEnd": "Naar het einde verplaatsen",
"reorderItemUp": "Omhoog verplaatsen",
"reorderItemDown": "Omlaag verplaatsen",
"reorderItemLeft": "Naar links verplaatsen",
"reorderItemRight": "Naar rechts verplaatsen",
"expandedIconTapHint": "Samenvouwen", "expandedIconTapHint": "Samenvouwen",
"collapsedIconTapHint": "Uitvouwen", "collapsedIconTapHint": "Uitvouwen",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -70,6 +70,12 @@ ...@@ -70,6 +70,12 @@
"dialogLabel": "Dialogboks", "dialogLabel": "Dialogboks",
"alertDialogLabel": "Varsel", "alertDialogLabel": "Varsel",
"searchFieldLabel": "Søk", "searchFieldLabel": "Søk",
"reorderItemToStart": "Flytt til starten",
"reorderItemToEnd": "Flytt til slutten",
"reorderItemUp": "Flytt opp",
"reorderItemDown": "Flytt ned",
"reorderItemLeft": "Flytt til venstre",
"reorderItemRight": "Flytt til høyre",
"expandedIconTapHint": "Skjul", "expandedIconTapHint": "Skjul",
"collapsedIconTapHint": "Vis", "collapsedIconTapHint": "Vis",
"remainingTextFieldCharacterCountOne": "1 tegn gjenstår", "remainingTextFieldCharacterCountOne": "1 tegn gjenstår",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ଡାୟଲଗ୍", "dialogLabel": "ଡାୟଲଗ୍",
"alertDialogLabel": "ଆଲର୍ଟ", "alertDialogLabel": "ଆଲର୍ଟ",
"searchFieldLabel": "ସନ୍ଧାନ କରନ୍ତୁ", "searchFieldLabel": "ସନ୍ଧାନ କରନ୍ତୁ",
"reorderItemToStart": "ଆରମ୍ଭକୁ ଯାଆନ୍ତୁ",
"reorderItemToEnd": "ଶେଷକୁ ଯାଆନ୍ତୁ",
"reorderItemUp": "ଉପରକୁ ନିଅନ୍ତୁ",
"reorderItemDown": "ତଳକୁ ଯାଆନ୍ତୁ",
"reorderItemLeft": "ବାମକୁ ଯାଆନ୍ତୁ",
"reorderItemRight": "ଡାହାଣକୁ ଯାଆନ୍ତୁ",
"expandedIconTapHint": "ସଙ୍କୁଚିତ କରନ୍ତୁ", "expandedIconTapHint": "ସଙ୍କୁଚିତ କରନ୍ତୁ",
"collapsedIconTapHint": "ପ୍ରସାରିତ କରନ୍ତୁ", "collapsedIconTapHint": "ପ୍ରସାରିତ କରନ୍ତୁ",
"remainingTextFieldCharacterCountOne": "1ଟି ଅକ୍ଷର ବାକି ଅଛି", "remainingTextFieldCharacterCountOne": "1ଟି ଅକ୍ଷର ବାକି ଅଛି",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "ਵਿੰਡੋ", "dialogLabel": "ਵਿੰਡੋ",
"alertDialogLabel": "ਸੁਚੇਤਨਾ", "alertDialogLabel": "ਸੁਚੇਤਨਾ",
"searchFieldLabel": "ਖੋਜੋ", "searchFieldLabel": "ਖੋਜੋ",
"reorderItemToStart": "ਸ਼ੁਰੂ ਵਿੱਚ ਲਿਜਾਓ",
"reorderItemToEnd": "ਅੰਤ ਵਿੱਚ ਲਿਜਾਓ",
"reorderItemUp": "ਉੱਪਰ ਲਿਜਾਓ",
"reorderItemDown": "ਹੇਠਾਂ ਲਿਜਾਓ",
"reorderItemLeft": "ਖੱਬੇ ਲਿਜਾਓ",
"reorderItemRight": "ਸੱਜੇ ਲਿਜਾਓ",
"expandedIconTapHint": "ਸਮੇਟੋ", "expandedIconTapHint": "ਸਮੇਟੋ",
"collapsedIconTapHint": "ਵਿਸਤਾਰ ਕਰੋ", "collapsedIconTapHint": "ਵਿਸਤਾਰ ਕਰੋ",
"remainingTextFieldCharacterCountOne": "1 ਅੱਖਰ-ਚਿੰਨ੍ਹ ਬਾਕੀ", "remainingTextFieldCharacterCountOne": "1 ਅੱਖਰ-ਚਿੰਨ੍ਹ ਬਾਕੀ",
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
"dialogLabel": "Okno dialogowe", "dialogLabel": "Okno dialogowe",
"alertDialogLabel": "Alert", "alertDialogLabel": "Alert",
"searchFieldLabel": "Szukaj", "searchFieldLabel": "Szukaj",
"reorderItemToStart": "Przenieś na początek",
"reorderItemToEnd": "Przenieś na koniec",
"reorderItemUp": "Przenieś w górę",
"reorderItemDown": "Przenieś w dół",
"reorderItemLeft": "Przenieś w lewo",
"reorderItemRight": "Przenieś w prawo",
"expandedIconTapHint": "Zwiń", "expandedIconTapHint": "Zwiń",
"collapsedIconTapHint": "Rozwiń", "collapsedIconTapHint": "Rozwiń",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -44,6 +44,12 @@ ...@@ -44,6 +44,12 @@
"alertDialogLabel": "خبرتیا", "alertDialogLabel": "خبرتیا",
"searchFieldLabel": "لټون", "searchFieldLabel": "لټون",
"moreButtonTooltip": "More", "moreButtonTooltip": "More",
"reorderItemToStart": "Move to the start",
"reorderItemToEnd": "Move to the end",
"reorderItemUp": "Move up",
"reorderItemDown": "Move down",
"reorderItemLeft": "Move left",
"reorderItemRight": "Move right",
"expandedIconTapHint": "Collapse", "expandedIconTapHint": "Collapse",
"collapsedIconTapHint": "Expand", "collapsedIconTapHint": "Expand",
"remainingTextFieldCharacterCountZero": "No characters remaining", "remainingTextFieldCharacterCountZero": "No characters remaining",
......
...@@ -44,6 +44,12 @@ ...@@ -44,6 +44,12 @@
"dialogLabel": "Caixa de diálogo", "dialogLabel": "Caixa de diálogo",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Pesquisa", "searchFieldLabel": "Pesquisa",
"reorderItemToStart": "Mover para o início",
"reorderItemToEnd": "Mover para o final",
"reorderItemUp": "Mover para cima",
"reorderItemDown": "Mover para baixo",
"reorderItemLeft": "Mover para a esquerda",
"reorderItemRight": "Mover para a direita",
"expandedIconTapHint": "Recolher", "expandedIconTapHint": "Recolher",
"collapsedIconTapHint": "Abrir", "collapsedIconTapHint": "Abrir",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -122,6 +122,12 @@ ...@@ -122,6 +122,12 @@
"dialogLabel": "Caixa de diálogo", "dialogLabel": "Caixa de diálogo",
"alertDialogLabel": "Alerta", "alertDialogLabel": "Alerta",
"searchFieldLabel": "Pesquisar", "searchFieldLabel": "Pesquisar",
"reorderItemToStart": "Mover para o início",
"reorderItemToEnd": "Mover para o fim",
"reorderItemUp": "Mover para cima",
"reorderItemDown": "Mover para baixo",
"reorderItemLeft": "Mover para a esquerda",
"reorderItemRight": "Mover para a direita",
"expandedIconTapHint": "Reduzir", "expandedIconTapHint": "Reduzir",
"collapsedIconTapHint": "Expandir", "collapsedIconTapHint": "Expandir",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -46,6 +46,12 @@ ...@@ -46,6 +46,12 @@
"dialogLabel": "Casetă de dialog", "dialogLabel": "Casetă de dialog",
"alertDialogLabel": "Alertă", "alertDialogLabel": "Alertă",
"searchFieldLabel": "Căutați", "searchFieldLabel": "Căutați",
"reorderItemToStart": "Mutați la început",
"reorderItemToEnd": "Mutați la sfârșit",
"reorderItemUp": "Mutați în sus",
"reorderItemDown": "Mutați în jos",
"reorderItemLeft": "Mutați la stânga",
"reorderItemRight": "Mutați la dreapta",
"expandedIconTapHint": "Restrângeți", "expandedIconTapHint": "Restrângeți",
"collapsedIconTapHint": "Extindeți", "collapsedIconTapHint": "Extindeți",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -49,6 +49,12 @@ ...@@ -49,6 +49,12 @@
"dialogLabel": "Диалоговое окно", "dialogLabel": "Диалоговое окно",
"alertDialogLabel": "Оповещение", "alertDialogLabel": "Оповещение",
"searchFieldLabel": "Поиск", "searchFieldLabel": "Поиск",
"reorderItemToStart": "Переместить в начало",
"reorderItemToEnd": "Переместить в конец",
"reorderItemUp": "Переместить вверх",
"reorderItemDown": "Переместить вниз",
"reorderItemLeft": "Переместить влево",
"reorderItemRight": "Переместить вправо",
"expandedIconTapHint": "Свернуть", "expandedIconTapHint": "Свернуть",
"collapsedIconTapHint": "Развернуть", "collapsedIconTapHint": "Развернуть",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"dialogLabel": "සංවාදය", "dialogLabel": "සංවාදය",
"alertDialogLabel": "ඇඟවීම", "alertDialogLabel": "ඇඟවීම",
"searchFieldLabel": "සෙවීම", "searchFieldLabel": "සෙවීම",
"reorderItemToStart": "ආරම්භය වෙත යන්න",
"reorderItemToEnd": "අවසානයට යන්න",
"reorderItemUp": "ඉහළට ගෙන යන්න",
"reorderItemDown": "පහළට ගෙන යන්න",
"reorderItemLeft": "වමට ගෙන යන්න",
"reorderItemRight": "දකුණට ගෙන යන්න",
"expandedIconTapHint": "හකුළන්න", "expandedIconTapHint": "හකුළන්න",
"collapsedIconTapHint": "දිග හරින්න", "collapsedIconTapHint": "දිග හරින්න",
"remainingTextFieldCharacterCountOne": "අනුලකුණු 1ක් ඉතිරිය", "remainingTextFieldCharacterCountOne": "අනුලකුණු 1ක් ඉතිරිය",
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
"dialogLabel": "Dialógové okno", "dialogLabel": "Dialógové okno",
"alertDialogLabel": "Upozornenie", "alertDialogLabel": "Upozornenie",
"searchFieldLabel": "Hľadať", "searchFieldLabel": "Hľadať",
"reorderItemToStart": "Presunúť na začiatok",
"reorderItemToEnd": "Presunúť na koniec",
"reorderItemUp": "Presunúť nahor",
"reorderItemDown": "Presunúť nadol",
"reorderItemLeft": "Presunúť doľava",
"reorderItemRight": "Presunúť doprava",
"expandedIconTapHint": "Zbaliť", "expandedIconTapHint": "Zbaliť",
"collapsedIconTapHint": "Rozbaliť", "collapsedIconTapHint": "Rozbaliť",
"remainingTextFieldCharacterCountZero": "TBD", "remainingTextFieldCharacterCountZero": "TBD",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment