Date picker special labeling for currentDate with localization and te… (#116433)
* Date picker special labeling for currentDate with localization and tests. * Updated CalendarDatePicker semantics test * removed recursive import * changed labeling for current date to be less verbose
This commit is contained in:
parent
ef6ead4401
commit
a570fd25d8
@ -188,8 +188,10 @@ class _CalendarDatePickerState extends State<CalendarDatePicker> {
|
||||
_textDirection = Directionality.of(context);
|
||||
if (!_announcedInitialDate) {
|
||||
_announcedInitialDate = true;
|
||||
final bool isToday = DateUtils.isSameDay(widget.currentDate, _selectedDate);
|
||||
final String semanticLabelSuffix = isToday ? ', ${_localizations.currentDateLabel}' : '';
|
||||
SemanticsService.announce(
|
||||
_localizations.formatFullDate(_selectedDate),
|
||||
'${_localizations.formatFullDate(_selectedDate)}$semanticLabelSuffix',
|
||||
_textDirection,
|
||||
);
|
||||
}
|
||||
@ -968,6 +970,7 @@ class _DayPickerState extends State<_DayPicker> {
|
||||
(widget.selectableDayPredicate != null && !widget.selectableDayPredicate!(dayToBuild));
|
||||
final bool isSelectedDay = DateUtils.isSameDay(widget.selectedDate, dayToBuild);
|
||||
final bool isToday = DateUtils.isSameDay(widget.currentDate, dayToBuild);
|
||||
final String semanticLabelSuffix = isToday ? ', ${localizations.currentDateLabel}' : '';
|
||||
|
||||
BoxDecoration? decoration;
|
||||
Color dayColor = enabledDayColor;
|
||||
@ -1019,7 +1022,7 @@ class _DayPickerState extends State<_DayPicker> {
|
||||
// day of month before the rest of the date, as they are looking
|
||||
// for the day of month. To do that we prepend day of month to the
|
||||
// formatted full date.
|
||||
label: '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}',
|
||||
label: '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}$semanticLabelSuffix',
|
||||
selected: isSelectedDay,
|
||||
excludeSemantics: true,
|
||||
child: dayWidget,
|
||||
|
@ -2348,7 +2348,8 @@ class _MonthItemState extends State<_MonthItem> {
|
||||
// day of month before the rest of the date, as they are looking
|
||||
// for the day of month. To do that we prepend day of month to the
|
||||
// formatted full date.
|
||||
String semanticLabel = '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}';
|
||||
final String semanticLabelSuffix = DateUtils.isSameDay(widget.currentDate, dayToBuild) ? ', ${localizations.currentDateLabel}' : '';
|
||||
String semanticLabel = '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}$semanticLabelSuffix';
|
||||
if (isSelectedDayStart) {
|
||||
semanticLabel = localizations.dateRangeStartDateSemanticLabel(semanticLabel);
|
||||
} else if (isSelectedDayEnd) {
|
||||
|
@ -160,6 +160,9 @@ abstract class MaterialLocalizations {
|
||||
/// as a hint text in the text field.
|
||||
String get searchFieldLabel;
|
||||
|
||||
/// Label indicating that a given date is the current date.
|
||||
String get currentDateLabel;
|
||||
|
||||
/// The format used to lay out the time picker.
|
||||
///
|
||||
/// The documentation for [TimeOfDayFormat] enum values provides details on
|
||||
@ -1015,6 +1018,9 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
|
||||
@override
|
||||
String get searchFieldLabel => 'Search';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Today';
|
||||
|
||||
@override
|
||||
String aboutListTileTitle(String applicationName) => 'About $applicationName';
|
||||
|
||||
|
@ -697,7 +697,7 @@ void main() {
|
||||
isFocusable: true,
|
||||
));
|
||||
expect(tester.getSemantics(find.text('3')), matchesSemantics(
|
||||
label: '3, Sunday, January 3, 2016',
|
||||
label: '3, Sunday, January 3, 2016, Today',
|
||||
hasTapAction: true,
|
||||
isFocusable: true,
|
||||
));
|
||||
|
@ -822,6 +822,12 @@ void main() {
|
||||
label: 'SELECT DATE\nFri, Jan 15',
|
||||
));
|
||||
|
||||
expect(tester.getSemantics(find.text('3')), matchesSemantics(
|
||||
label: '3, Sunday, January 3, 2016, Today',
|
||||
hasTapAction: true,
|
||||
isFocusable: true,
|
||||
));
|
||||
|
||||
// Input mode toggle button
|
||||
expect(tester.getSemantics(switchToInputIcon), matchesSemantics(
|
||||
tooltip: 'Switch to input',
|
||||
|
@ -1085,6 +1085,24 @@ void main() {
|
||||
expect(tester.getBottomRight(find.byType(DateRangePickerDialog)), const Offset(390.0, 600.0));
|
||||
});
|
||||
});
|
||||
|
||||
group('Semantics', () {
|
||||
testWidgets('calendar mode', (WidgetTester tester) async {
|
||||
final SemanticsHandle semantics = tester.ensureSemantics();
|
||||
currentDate = DateTime(2016, DateTime.january, 30);
|
||||
addTearDown(semantics.dispose);
|
||||
await preparePicker(tester, (Future<DateTimeRange?> range) async {
|
||||
expect(
|
||||
tester.getSemantics(find.text('30')),
|
||||
matchesSemantics(
|
||||
label: '30, Saturday, January 30, 2016, Today',
|
||||
hasTapAction: true,
|
||||
isFocusable: true,
|
||||
),
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
class _RestorableDateRangePickerDialogTestWidget extends StatefulWidget {
|
||||
|
@ -121,6 +121,7 @@ void main() {
|
||||
expect(localizations.keyboardKeyScrollLock, isNotNull);
|
||||
expect(localizations.keyboardKeySelect, isNotNull);
|
||||
expect(localizations.keyboardKeySpace, isNotNull);
|
||||
expect(localizations.currentDateLabel, isNotNull);
|
||||
|
||||
expect(localizations.aboutListTileTitle('FOO'), isNotNull);
|
||||
expect(localizations.aboutListTileTitle('FOO'), contains('FOO'));
|
||||
|
@ -71,6 +71,9 @@ class MaterialLocalizationAf extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopieer';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Knip';
|
||||
|
||||
@ -513,6 +516,9 @@ class MaterialLocalizationAm extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'ቅዳ';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'ቁረጥ';
|
||||
|
||||
@ -955,6 +961,9 @@ class MaterialLocalizationAr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'نسخ';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'قص';
|
||||
|
||||
@ -1397,6 +1406,9 @@ class MaterialLocalizationAs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'প্ৰতিলিপি কৰক';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'কাট কৰক';
|
||||
|
||||
@ -1839,6 +1851,9 @@ class MaterialLocalizationAz extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopyalayın';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Kəsin';
|
||||
|
||||
@ -2281,6 +2296,9 @@ class MaterialLocalizationBe extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Капіраваць';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Выразаць';
|
||||
|
||||
@ -2723,6 +2741,9 @@ class MaterialLocalizationBg extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Копиране';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Изрязване';
|
||||
|
||||
@ -3165,6 +3186,9 @@ class MaterialLocalizationBn extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'কপি করুন';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'কাট করুন';
|
||||
|
||||
@ -3607,6 +3631,9 @@ class MaterialLocalizationBs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiraj';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Izreži';
|
||||
|
||||
@ -4049,6 +4076,9 @@ class MaterialLocalizationCa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copia';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Retalla';
|
||||
|
||||
@ -4491,6 +4521,9 @@ class MaterialLocalizationCs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopírovat';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Vyjmout';
|
||||
|
||||
@ -4933,6 +4966,9 @@ class MaterialLocalizationDa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiér';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Klip';
|
||||
|
||||
@ -5375,6 +5411,9 @@ class MaterialLocalizationDe extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopieren';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Ausschneiden';
|
||||
|
||||
@ -5854,6 +5893,9 @@ class MaterialLocalizationEl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Αντιγραφή';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Αποκοπή';
|
||||
|
||||
@ -6296,6 +6338,9 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copy';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Cut';
|
||||
|
||||
@ -7595,6 +7640,9 @@ class MaterialLocalizationEs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copiar';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Cortar';
|
||||
|
||||
@ -11240,6 +11288,9 @@ class MaterialLocalizationEt extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopeeri';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Lõika';
|
||||
|
||||
@ -11682,6 +11733,9 @@ class MaterialLocalizationEu extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiatu';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Ebaki';
|
||||
|
||||
@ -12124,6 +12178,9 @@ class MaterialLocalizationFa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'کپی';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'برش';
|
||||
|
||||
@ -12566,6 +12623,9 @@ class MaterialLocalizationFi extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopioi';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Leikkaa';
|
||||
|
||||
@ -13008,6 +13068,9 @@ class MaterialLocalizationFil extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopyahin';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'I-cut';
|
||||
|
||||
@ -13450,6 +13513,9 @@ class MaterialLocalizationFr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copier';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Couper';
|
||||
|
||||
@ -14028,6 +14094,9 @@ class MaterialLocalizationGl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copiar';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Cortar';
|
||||
|
||||
@ -14470,6 +14539,9 @@ class MaterialLocalizationGsw extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopieren';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Ausschneiden';
|
||||
|
||||
@ -14912,6 +14984,9 @@ class MaterialLocalizationGu extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'કૉપિ કરો';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'કાપો';
|
||||
|
||||
@ -15354,6 +15429,9 @@ class MaterialLocalizationHe extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'העתקה';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'גזירה';
|
||||
|
||||
@ -15796,6 +15874,9 @@ class MaterialLocalizationHi extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'कॉपी करें';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'काटें';
|
||||
|
||||
@ -16238,6 +16319,9 @@ class MaterialLocalizationHr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiraj';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Izreži';
|
||||
|
||||
@ -16680,6 +16764,9 @@ class MaterialLocalizationHu extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Másolás';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Kivágás';
|
||||
|
||||
@ -17122,6 +17209,9 @@ class MaterialLocalizationHy extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Պատճենել';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Կտրել';
|
||||
|
||||
@ -17564,6 +17654,9 @@ class MaterialLocalizationId extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Salin';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Potong';
|
||||
|
||||
@ -18006,6 +18099,9 @@ class MaterialLocalizationIs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Afrita';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Klippa';
|
||||
|
||||
@ -18448,6 +18544,9 @@ class MaterialLocalizationIt extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copia';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Taglia';
|
||||
|
||||
@ -18890,6 +18989,9 @@ class MaterialLocalizationJa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'コピー';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => '切り取り';
|
||||
|
||||
@ -19332,6 +19434,9 @@ class MaterialLocalizationKa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'კოპირება';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'ამოჭრა';
|
||||
|
||||
@ -19774,6 +19879,9 @@ class MaterialLocalizationKk extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Көшіру';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Қию';
|
||||
|
||||
@ -20216,6 +20324,9 @@ class MaterialLocalizationKm extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'ចម្លង';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'កាត់';
|
||||
|
||||
@ -20658,6 +20769,9 @@ class MaterialLocalizationKn extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => '\u{ca8}\u{c95}\u{cb2}\u{cbf}\u{cb8}\u{cbf}';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => '\u{c95}\u{ca4}\u{ccd}\u{ca4}\u{cb0}\u{cbf}\u{cb8}\u{cbf}';
|
||||
|
||||
@ -21100,6 +21214,9 @@ class MaterialLocalizationKo extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => '복사';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => '잘라냄';
|
||||
|
||||
@ -21542,6 +21659,9 @@ class MaterialLocalizationKy extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Көчүрүү';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Кесүү';
|
||||
|
||||
@ -21984,6 +22104,9 @@ class MaterialLocalizationLo extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'ສຳເນົາ';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'ຕັດ';
|
||||
|
||||
@ -22426,6 +22549,9 @@ class MaterialLocalizationLt extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopijuoti';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Iškirpti';
|
||||
|
||||
@ -22868,6 +22994,9 @@ class MaterialLocalizationLv extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopēt';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Izgriezt';
|
||||
|
||||
@ -23310,6 +23439,9 @@ class MaterialLocalizationMk extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Копирај';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Исечи';
|
||||
|
||||
@ -23752,6 +23884,9 @@ class MaterialLocalizationMl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'പകർത്തുക';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'മുറിക്കുക';
|
||||
|
||||
@ -24194,6 +24329,9 @@ class MaterialLocalizationMn extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Хуулах';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Таслах';
|
||||
|
||||
@ -24636,6 +24774,9 @@ class MaterialLocalizationMr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'कॉपी करा';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'कट करा';
|
||||
|
||||
@ -25078,6 +25219,9 @@ class MaterialLocalizationMs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Salin';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Potong';
|
||||
|
||||
@ -25520,6 +25664,9 @@ class MaterialLocalizationMy extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'မိတ္တူကူးရန်';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'ဖြတ်ယူရန်';
|
||||
|
||||
@ -25962,6 +26109,9 @@ class MaterialLocalizationNb extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiér';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Klipp ut';
|
||||
|
||||
@ -26404,6 +26554,9 @@ class MaterialLocalizationNe extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'प्रतिलिपि गर्नुहोस्';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'काट्नुहोस्';
|
||||
|
||||
@ -26846,6 +26999,9 @@ class MaterialLocalizationNl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiëren';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Knippen';
|
||||
|
||||
@ -27288,6 +27444,9 @@ class MaterialLocalizationNo extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiér';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Klipp ut';
|
||||
|
||||
@ -27730,6 +27889,9 @@ class MaterialLocalizationOr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'କପି କରନ୍ତୁ';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'କଟ୍ କରନ୍ତୁ';
|
||||
|
||||
@ -28172,6 +28334,9 @@ class MaterialLocalizationPa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'ਕਾਪੀ ਕਰੋ';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'ਕੱਟ ਕਰੋ';
|
||||
|
||||
@ -28614,6 +28779,9 @@ class MaterialLocalizationPl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiuj';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Wytnij';
|
||||
|
||||
@ -29056,6 +29224,9 @@ class MaterialLocalizationPs extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'کاپی';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'کم کړئ';
|
||||
|
||||
@ -29498,6 +29669,9 @@ class MaterialLocalizationPt extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copiar';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Cortar';
|
||||
|
||||
@ -30079,6 +30253,9 @@ class MaterialLocalizationRo extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Copiați';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Decupați';
|
||||
|
||||
@ -30521,6 +30698,9 @@ class MaterialLocalizationRu extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Копировать';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Вырезать';
|
||||
|
||||
@ -30963,6 +31143,9 @@ class MaterialLocalizationSi extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'පිටපත් කරන්න';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'කපන්න';
|
||||
|
||||
@ -31405,6 +31588,9 @@ class MaterialLocalizationSk extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopírovať';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Vystrihnúť';
|
||||
|
||||
@ -31847,6 +32033,9 @@ class MaterialLocalizationSl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiraj';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Izreži';
|
||||
|
||||
@ -32289,6 +32478,9 @@ class MaterialLocalizationSq extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopjo';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Prit';
|
||||
|
||||
@ -32731,6 +32923,9 @@ class MaterialLocalizationSr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Копирај';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Исеци';
|
||||
|
||||
@ -33475,6 +33670,9 @@ class MaterialLocalizationSv extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopiera';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Klipp ut';
|
||||
|
||||
@ -33917,6 +34115,9 @@ class MaterialLocalizationSw extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Nakili';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Kata';
|
||||
|
||||
@ -34359,6 +34560,9 @@ class MaterialLocalizationTa extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'நகலெடு';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'வெட்டு';
|
||||
|
||||
@ -34801,6 +35005,9 @@ class MaterialLocalizationTe extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'కాపీ చేయి';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'కత్తిరించు';
|
||||
|
||||
@ -35243,6 +35450,9 @@ class MaterialLocalizationTh extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'คัดลอก';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'ตัด';
|
||||
|
||||
@ -35685,6 +35895,9 @@ class MaterialLocalizationTl extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopyahin';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'I-cut';
|
||||
|
||||
@ -36127,6 +36340,9 @@ class MaterialLocalizationTr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopyala';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Kes';
|
||||
|
||||
@ -36569,6 +36785,9 @@ class MaterialLocalizationUk extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Копіювати';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Вирізати';
|
||||
|
||||
@ -37011,6 +37230,9 @@ class MaterialLocalizationUr extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'کاپی کریں';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'کٹ کریں';
|
||||
|
||||
@ -37453,6 +37675,9 @@ class MaterialLocalizationUz extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Nusxa olish';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Kesib olish';
|
||||
|
||||
@ -37895,6 +38120,9 @@ class MaterialLocalizationVi extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Sao chép';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Cắt';
|
||||
|
||||
@ -38337,6 +38565,9 @@ class MaterialLocalizationZh extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => '复制';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => '剪切';
|
||||
|
||||
@ -39242,6 +39473,9 @@ class MaterialLocalizationZu extends GlobalMaterialLocalizations {
|
||||
@override
|
||||
String get copyButtonLabel => 'Kopisha';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Date of today';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Sika';
|
||||
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Spasie",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Kieslysbalkkieslys"
|
||||
"menuBarMenuLabel": "Kieslysbalkkieslys",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "ክፍተት",
|
||||
"keyboardKeyMetaMacOs": "ትዕዛዝ",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "የምናሌ አሞሌ ምናሌ"
|
||||
"menuBarMenuLabel": "የምናሌ አሞሌ ምናሌ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -139,5 +139,6 @@
|
||||
"keyboardKeySpace": "مفتاح المسافة",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "قائمة شريط القوائم"
|
||||
"menuBarMenuLabel": "قائمة شريط القوائم",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "স্পেচ",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "মেনু বাৰ মেনু"
|
||||
"menuBarMenuLabel": "মেনু বাৰ মেনু",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Boşluq",
|
||||
"keyboardKeyMetaMacOs": "Əmr",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menyu paneli menyusu"
|
||||
"menuBarMenuLabel": "Menyu paneli menyusu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -134,5 +134,6 @@
|
||||
"keyboardKeySpace": "Прабел",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Меню \"Панэль меню\""
|
||||
"menuBarMenuLabel": "Меню \"Панэль меню\"",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Меню на лентата с менюта"
|
||||
"menuBarMenuLabel": "Меню на лентата с менюта",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "মেনু বার মেনু"
|
||||
"menuBarMenuLabel": "মেনু বার মেনু",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -132,5 +132,6 @@
|
||||
"keyboardKeySpace": "tipka za razmak",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Meni trake menija"
|
||||
"menuBarMenuLabel": "Meni trake menija",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Espai",
|
||||
"keyboardKeyMetaMacOs": "Ordre",
|
||||
"keyboardKeyMetaWindows": "Windows",
|
||||
"menuBarMenuLabel": "Menú de la barra de menú"
|
||||
"menuBarMenuLabel": "Menú de la barra de menú",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "Mezera",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Nabídka na liště s nabídkou"
|
||||
"menuBarMenuLabel": "Nabídka na liště s nabídkou",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Mellemrumstasten",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menuen for menulinjen"
|
||||
"menuBarMenuLabel": "Menuen for menulinjen",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Leertaste",
|
||||
"keyboardKeyMetaMacOs": "Befehl",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menü in der Menüleiste"
|
||||
"menuBarMenuLabel": "Menü in der Menüleiste",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Διάστημα",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Μενού γραμμής μενού"
|
||||
"menuBarMenuLabel": "Μενού γραμμής μενού",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -393,6 +393,11 @@
|
||||
"description": "Label indicating that a text field is a search field. This will be used as a hint text in the text field."
|
||||
},
|
||||
|
||||
"currentDateLabel": "Today",
|
||||
"@currentDateLabel": {
|
||||
"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."
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Espacio",
|
||||
"keyboardKeyMetaMacOs": "Comando",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menú de la barra de menú"
|
||||
"menuBarMenuLabel": "Menú de la barra de menú",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Tühik",
|
||||
"keyboardKeyMetaMacOs": "Käsk",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menüüriba menüü"
|
||||
"menuBarMenuLabel": "Menüüriba menüü",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Zuriune-barra",
|
||||
"keyboardKeyMetaMacOs": "Komandoa",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu-barraren menua"
|
||||
"menuBarMenuLabel": "Menu-barraren menua",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "فاصله",
|
||||
"keyboardKeyMetaMacOs": "فرمان",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "منوی نوار منو"
|
||||
"menuBarMenuLabel": "منوی نوار منو",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Välilyönti",
|
||||
"keyboardKeyMetaMacOs": "Komento",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Valikkopalkki"
|
||||
"menuBarMenuLabel": "Valikkopalkki",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Puwang",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu sa menu bar"
|
||||
"menuBarMenuLabel": "Menu sa menu bar",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Espace",
|
||||
"keyboardKeyMetaMacOs": "Commande",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu de la barre de menu"
|
||||
"menuBarMenuLabel": "Menu de la barre de menu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Espazo",
|
||||
"keyboardKeyMetaMacOs": "Comando",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menú da barra de menú"
|
||||
"menuBarMenuLabel": "Menú da barra de menú",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Leertaste",
|
||||
"keyboardKeyMetaMacOs": "Befehl",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menü in der Menüleiste"
|
||||
"menuBarMenuLabel": "Menü in der Menüleiste",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "મેનૂ બાર મેનૂ"
|
||||
"menuBarMenuLabel": "મેનૂ બાર મેનૂ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "רווח",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "תפריט בסרגל התפריטים"
|
||||
"menuBarMenuLabel": "תפריט בסרגל התפריטים",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "मेन्यू बार का मेन्यू"
|
||||
"menuBarMenuLabel": "मेन्यू बार का मेन्यू",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -132,5 +132,6 @@
|
||||
"keyboardKeySpace": "Razmaknica",
|
||||
"keyboardKeyMetaMacOs": "Naredba",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Izbornik trake izbornika"
|
||||
"menuBarMenuLabel": "Izbornik trake izbornika",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Szóköz",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menüsor menüje"
|
||||
"menuBarMenuLabel": "Menüsor menüje",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -134,5 +134,6 @@
|
||||
"keyboardKeySpace": "Բացատ",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Ընտրացանկի գոտու ընտրացանկ"
|
||||
"menuBarMenuLabel": "Ընտրացանկի գոտու ընտրացանկ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu panel menu"
|
||||
"menuBarMenuLabel": "Menu panel menu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Bil",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Valmyndarstika"
|
||||
"menuBarMenuLabel": "Valmyndarstika",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Barra spaziatrice",
|
||||
"keyboardKeyMetaMacOs": "Comando",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu barra dei menu"
|
||||
"menuBarMenuLabel": "Menu barra dei menu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "メニューバーのメニュー"
|
||||
"menuBarMenuLabel": "メニューバーのメニュー",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "მენიუს ზოლის მენიუ"
|
||||
"menuBarMenuLabel": "მენიუს ზოლის მენიუ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Бос орын",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Мәзір жолағының мәзірі"
|
||||
"menuBarMenuLabel": "Мәзір жолағының мәзірі",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "ម៉ឺនុយរបារម៉ឺនុយ"
|
||||
"menuBarMenuLabel": "ម៉ឺនុយរបារម៉ឺនុយ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "\u0053\u0070\u0061\u0063\u0065",
|
||||
"keyboardKeyMetaMacOs": "\u0043\u006f\u006d\u006d\u0061\u006e\u0064",
|
||||
"keyboardKeyMetaWindows": "\u0057\u0069\u006e",
|
||||
"menuBarMenuLabel": "\u0cae\u0cc6\u0ca8\u0cc1\u0020\u0cac\u0cbe\u0cb0\u0ccd\u200c\u0020\u0cae\u0cc6\u0ca8\u0cc1"
|
||||
"menuBarMenuLabel": "\u0cae\u0cc6\u0ca8\u0cc1\u0020\u0cac\u0cbe\u0cb0\u0ccd\u200c\u0020\u0cae\u0cc6\u0ca8\u0cc1",
|
||||
"currentDateLabel": "\u0044\u0061\u0074\u0065\u0020\u006f\u0066\u0020\u0074\u006f\u0064\u0061\u0079"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "스페이스",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "메뉴 바 메뉴"
|
||||
"menuBarMenuLabel": "메뉴 바 메뉴",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Боштук",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Меню тилкеси менюсу"
|
||||
"menuBarMenuLabel": "Меню тилкеси менюсу",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "ເມນູແຖບເມນູ"
|
||||
"menuBarMenuLabel": "ເມນູແຖບເມນູ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "Tarpas",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Meniu juostos meniu"
|
||||
"menuBarMenuLabel": "Meniu juostos meniu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Atstarpes taustiņš",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Windows",
|
||||
"menuBarMenuLabel": "Izvēļņu joslas izvēlne"
|
||||
"menuBarMenuLabel": "Izvēļņu joslas izvēlne",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Мени на лентата со мени"
|
||||
"menuBarMenuLabel": "Мени на лентата со мени",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "മെനു ബാർ മെനു"
|
||||
"menuBarMenuLabel": "മെനു ബാർ മെനു",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Тушаал",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Цэсний талбарын цэс"
|
||||
"menuBarMenuLabel": "Цэсний талбарын цэс",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "स्पेस",
|
||||
"keyboardKeyMetaMacOs": "कमांड",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "मेनू बार मेनू"
|
||||
"menuBarMenuLabel": "मेनू बार मेनू",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Ruang",
|
||||
"keyboardKeyMetaMacOs": "Perintah",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu bar menu"
|
||||
"menuBarMenuLabel": "Menu bar menu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "နေရာခြားခလုတ်",
|
||||
"keyboardKeyMetaMacOs": "ကွန်မန်း",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "မီနူးဘား မီနူး"
|
||||
"menuBarMenuLabel": "မီနူးဘား မီနူး",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -127,5 +127,6 @@
|
||||
"keyboardKeySpace": "Mellomrom",
|
||||
"keyboardKeyMetaMacOs": "Kommando",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Meny med menylinje"
|
||||
"menuBarMenuLabel": "Meny med menylinje",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "\"मेनु बार\" मेनु"
|
||||
"menuBarMenuLabel": "\"मेनु बार\" मेनु",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Spatie",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu van menubalk"
|
||||
"menuBarMenuLabel": "Menu van menubalk",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -127,5 +127,6 @@
|
||||
"keyboardKeySpace": "Mellomrom",
|
||||
"keyboardKeyMetaMacOs": "Kommando",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Meny med menylinje"
|
||||
"menuBarMenuLabel": "Meny med menylinje",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "ମେନୁ ବାର ମେନୁ"
|
||||
"menuBarMenuLabel": "ମେନୁ ବାର ମେନୁ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "ਮੀਨੂ ਬਾਰ ਮੀਨੂ"
|
||||
"menuBarMenuLabel": "ਮੀਨੂ ਬਾਰ ਮੀਨੂ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "Spacja",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Pasek menu"
|
||||
"menuBarMenuLabel": "Pasek menu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu bar menu"
|
||||
"menuBarMenuLabel": "Menu bar menu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -131,5 +131,6 @@
|
||||
"keyboardKeySpace": "Espaço",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu da barra de menus"
|
||||
"menuBarMenuLabel": "Menu da barra de menus",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -133,5 +133,6 @@
|
||||
"keyboardKeySpace": "Spațiu",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Bară de meniu"
|
||||
"menuBarMenuLabel": "Bară de meniu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -136,5 +136,6 @@
|
||||
"keyboardKeySpace": "Пробел",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Строка меню"
|
||||
"menuBarMenuLabel": "Строка меню",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "මෙනු තීරු මෙනුව"
|
||||
"menuBarMenuLabel": "මෙනු තීරු මෙනුව",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "Medzerník",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Ponuka panela s ponukami"
|
||||
"menuBarMenuLabel": "Ponuka panela s ponukami",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "Preslednica",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Meni menijske vrstice"
|
||||
"menuBarMenuLabel": "Meni menijske vrstice",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menyja e shiritit të menysë"
|
||||
"menuBarMenuLabel": "Menyja e shiritit të menysë",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -132,5 +132,6 @@
|
||||
"keyboardKeySpace": "Тастер за размак",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Мени трака менија"
|
||||
"menuBarMenuLabel": "Мени трака менија",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Blanksteg",
|
||||
"keyboardKeyMetaMacOs": "Kommando",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menyrad"
|
||||
"menuBarMenuLabel": "Menyrad",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menyu ya upau wa menyu"
|
||||
"menuBarMenuLabel": "Menyu ya upau wa menyu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -130,5 +130,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "மெனு பட்டியின் மெனு"
|
||||
"menuBarMenuLabel": "மெனு பட்டியின் மெனு",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "మెనూ బార్ మెనూ"
|
||||
"menuBarMenuLabel": "మెనూ బార్ మెనూ",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "เมนูในแถบเมนู"
|
||||
"menuBarMenuLabel": "เมนูในแถบเมนู",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Puwang",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menu sa menu bar"
|
||||
"menuBarMenuLabel": "Menu sa menu bar",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Boşluk",
|
||||
"keyboardKeyMetaMacOs": "Komut",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menü çubuğu menüsü"
|
||||
"menuBarMenuLabel": "Menü çubuğu menüsü",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -135,5 +135,6 @@
|
||||
"keyboardKeySpace": "Пробіл",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Панель меню"
|
||||
"menuBarMenuLabel": "Панель меню",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "مینو بار کا مینو"
|
||||
"menuBarMenuLabel": "مینو بار کا مینو",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Boʻsh joy",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Menyu paneli"
|
||||
"menuBarMenuLabel": "Menyu paneli",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "Phím cách",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Trình đơn của thanh trình đơn"
|
||||
"menuBarMenuLabel": "Trình đơn của thanh trình đơn",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -129,5 +129,6 @@
|
||||
"keyboardKeySpace": "空格键",
|
||||
"keyboardKeyMetaMacOs": "⌘",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "菜单栏的菜单"
|
||||
"menuBarMenuLabel": "菜单栏的菜单",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
@ -128,5 +128,6 @@
|
||||
"keyboardKeySpace": "Space",
|
||||
"keyboardKeyMetaMacOs": "Command",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"menuBarMenuLabel": "Imenyu yebha yemenyu"
|
||||
"menuBarMenuLabel": "Imenyu yebha yemenyu",
|
||||
"currentDateLabel": "Date of today"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user