Unverified Commit a570fd25 authored by harperl-lgtm's avatar harperl-lgtm Committed by GitHub

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
parent ef6ead44
...@@ -188,8 +188,10 @@ class _CalendarDatePickerState extends State<CalendarDatePicker> { ...@@ -188,8 +188,10 @@ class _CalendarDatePickerState extends State<CalendarDatePicker> {
_textDirection = Directionality.of(context); _textDirection = Directionality.of(context);
if (!_announcedInitialDate) { if (!_announcedInitialDate) {
_announcedInitialDate = true; _announcedInitialDate = true;
final bool isToday = DateUtils.isSameDay(widget.currentDate, _selectedDate);
final String semanticLabelSuffix = isToday ? ', ${_localizations.currentDateLabel}' : '';
SemanticsService.announce( SemanticsService.announce(
_localizations.formatFullDate(_selectedDate), '${_localizations.formatFullDate(_selectedDate)}$semanticLabelSuffix',
_textDirection, _textDirection,
); );
} }
...@@ -968,6 +970,7 @@ class _DayPickerState extends State<_DayPicker> { ...@@ -968,6 +970,7 @@ class _DayPickerState extends State<_DayPicker> {
(widget.selectableDayPredicate != null && !widget.selectableDayPredicate!(dayToBuild)); (widget.selectableDayPredicate != null && !widget.selectableDayPredicate!(dayToBuild));
final bool isSelectedDay = DateUtils.isSameDay(widget.selectedDate, dayToBuild); final bool isSelectedDay = DateUtils.isSameDay(widget.selectedDate, dayToBuild);
final bool isToday = DateUtils.isSameDay(widget.currentDate, dayToBuild); final bool isToday = DateUtils.isSameDay(widget.currentDate, dayToBuild);
final String semanticLabelSuffix = isToday ? ', ${localizations.currentDateLabel}' : '';
BoxDecoration? decoration; BoxDecoration? decoration;
Color dayColor = enabledDayColor; Color dayColor = enabledDayColor;
...@@ -1019,7 +1022,7 @@ class _DayPickerState extends State<_DayPicker> { ...@@ -1019,7 +1022,7 @@ class _DayPickerState extends State<_DayPicker> {
// day of month before the rest of the date, as they are looking // 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 // for the day of month. To do that we prepend day of month to the
// formatted full date. // formatted full date.
label: '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}', label: '${localizations.formatDecimal(day)}, ${localizations.formatFullDate(dayToBuild)}$semanticLabelSuffix',
selected: isSelectedDay, selected: isSelectedDay,
excludeSemantics: true, excludeSemantics: true,
child: dayWidget, child: dayWidget,
......
...@@ -2348,7 +2348,8 @@ class _MonthItemState extends State<_MonthItem> { ...@@ -2348,7 +2348,8 @@ class _MonthItemState extends State<_MonthItem> {
// day of month before the rest of the date, as they are looking // 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 // for the day of month. To do that we prepend day of month to the
// formatted full date. // 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) { if (isSelectedDayStart) {
semanticLabel = localizations.dateRangeStartDateSemanticLabel(semanticLabel); semanticLabel = localizations.dateRangeStartDateSemanticLabel(semanticLabel);
} else if (isSelectedDayEnd) { } else if (isSelectedDayEnd) {
......
...@@ -160,6 +160,9 @@ abstract class MaterialLocalizations { ...@@ -160,6 +160,9 @@ abstract class MaterialLocalizations {
/// as a hint text in the text field. /// as a hint text in the text field.
String get searchFieldLabel; 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 format used to lay out the time picker.
/// ///
/// The documentation for [TimeOfDayFormat] enum values provides details on /// The documentation for [TimeOfDayFormat] enum values provides details on
...@@ -1015,6 +1018,9 @@ class DefaultMaterialLocalizations implements MaterialLocalizations { ...@@ -1015,6 +1018,9 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
@override @override
String get searchFieldLabel => 'Search'; String get searchFieldLabel => 'Search';
@override
String get currentDateLabel => 'Today';
@override @override
String aboutListTileTitle(String applicationName) => 'About $applicationName'; String aboutListTileTitle(String applicationName) => 'About $applicationName';
......
...@@ -697,7 +697,7 @@ void main() { ...@@ -697,7 +697,7 @@ void main() {
isFocusable: true, isFocusable: true,
)); ));
expect(tester.getSemantics(find.text('3')), matchesSemantics( expect(tester.getSemantics(find.text('3')), matchesSemantics(
label: '3, Sunday, January 3, 2016', label: '3, Sunday, January 3, 2016, Today',
hasTapAction: true, hasTapAction: true,
isFocusable: true, isFocusable: true,
)); ));
......
...@@ -822,6 +822,12 @@ void main() { ...@@ -822,6 +822,12 @@ void main() {
label: 'SELECT DATE\nFri, Jan 15', 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 // Input mode toggle button
expect(tester.getSemantics(switchToInputIcon), matchesSemantics( expect(tester.getSemantics(switchToInputIcon), matchesSemantics(
tooltip: 'Switch to input', tooltip: 'Switch to input',
......
...@@ -1085,6 +1085,24 @@ void main() { ...@@ -1085,6 +1085,24 @@ void main() {
expect(tester.getBottomRight(find.byType(DateRangePickerDialog)), const Offset(390.0, 600.0)); 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 { class _RestorableDateRangePickerDialogTestWidget extends StatefulWidget {
......
...@@ -121,6 +121,7 @@ void main() { ...@@ -121,6 +121,7 @@ void main() {
expect(localizations.keyboardKeyScrollLock, isNotNull); expect(localizations.keyboardKeyScrollLock, isNotNull);
expect(localizations.keyboardKeySelect, isNotNull); expect(localizations.keyboardKeySelect, isNotNull);
expect(localizations.keyboardKeySpace, isNotNull); expect(localizations.keyboardKeySpace, isNotNull);
expect(localizations.currentDateLabel, isNotNull);
expect(localizations.aboutListTileTitle('FOO'), isNotNull); expect(localizations.aboutListTileTitle('FOO'), isNotNull);
expect(localizations.aboutListTileTitle('FOO'), contains('FOO')); expect(localizations.aboutListTileTitle('FOO'), contains('FOO'));
......
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Spasie", "keyboardKeySpace": "Spasie",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Kieslysbalkkieslys" "menuBarMenuLabel": "Kieslysbalkkieslys",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "ክፍተት", "keyboardKeySpace": "ክፍተት",
"keyboardKeyMetaMacOs": "ትዕዛዝ", "keyboardKeyMetaMacOs": "ትዕዛዝ",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "የምናሌ አሞሌ ምናሌ" "menuBarMenuLabel": "የምናሌ አሞሌ ምናሌ",
"currentDateLabel": "Date of today"
} }
...@@ -139,5 +139,6 @@ ...@@ -139,5 +139,6 @@
"keyboardKeySpace": "مفتاح المسافة", "keyboardKeySpace": "مفتاح المسافة",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "قائمة شريط القوائم" "menuBarMenuLabel": "قائمة شريط القوائم",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "স্পেচ", "keyboardKeySpace": "স্পেচ",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "মেনু বাৰ মেনু" "menuBarMenuLabel": "মেনু বাৰ মেনু",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Boşluq", "keyboardKeySpace": "Boşluq",
"keyboardKeyMetaMacOs": "Əmr", "keyboardKeyMetaMacOs": "Əmr",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menyu paneli menyusu" "menuBarMenuLabel": "Menyu paneli menyusu",
"currentDateLabel": "Date of today"
} }
...@@ -134,5 +134,6 @@ ...@@ -134,5 +134,6 @@
"keyboardKeySpace": "Прабел", "keyboardKeySpace": "Прабел",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Меню \"Панэль меню\"" "menuBarMenuLabel": "Меню \"Панэль меню\"",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Меню на лентата с менюта" "menuBarMenuLabel": "Меню на лентата с менюта",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "মেনু বার মেনু" "menuBarMenuLabel": "মেনু বার মেনু",
"currentDateLabel": "Date of today"
} }
...@@ -132,5 +132,6 @@ ...@@ -132,5 +132,6 @@
"keyboardKeySpace": "tipka za razmak", "keyboardKeySpace": "tipka za razmak",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Meni trake menija" "menuBarMenuLabel": "Meni trake menija",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Espai", "keyboardKeySpace": "Espai",
"keyboardKeyMetaMacOs": "Ordre", "keyboardKeyMetaMacOs": "Ordre",
"keyboardKeyMetaWindows": "Windows", "keyboardKeyMetaWindows": "Windows",
"menuBarMenuLabel": "Menú de la barra de menú" "menuBarMenuLabel": "Menú de la barra de menú",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "Mezera", "keyboardKeySpace": "Mezera",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "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 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Mellemrumstasten", "keyboardKeySpace": "Mellemrumstasten",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menuen for menulinjen" "menuBarMenuLabel": "Menuen for menulinjen",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Leertaste", "keyboardKeySpace": "Leertaste",
"keyboardKeyMetaMacOs": "Befehl", "keyboardKeyMetaMacOs": "Befehl",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menü in der Menüleiste" "menuBarMenuLabel": "Menü in der Menüleiste",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Διάστημα", "keyboardKeySpace": "Διάστημα",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Μενού γραμμής μενού" "menuBarMenuLabel": "Μενού γραμμής μενού",
"currentDateLabel": "Date of today"
} }
...@@ -393,6 +393,11 @@ ...@@ -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." "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": "Move to the start",
"@reorderItemToStart": { "@reorderItemToStart": {
"description": "The audio announcement to move an item in a Reorderable List to the start of the list." "description": "The audio announcement to move an item in a Reorderable List to the start of the list."
......
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Espacio", "keyboardKeySpace": "Espacio",
"keyboardKeyMetaMacOs": "Comando", "keyboardKeyMetaMacOs": "Comando",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menú de la barra de menú" "menuBarMenuLabel": "Menú de la barra de menú",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Tühik", "keyboardKeySpace": "Tühik",
"keyboardKeyMetaMacOs": "Käsk", "keyboardKeyMetaMacOs": "Käsk",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menüüriba menüü" "menuBarMenuLabel": "Menüüriba menüü",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Zuriune-barra", "keyboardKeySpace": "Zuriune-barra",
"keyboardKeyMetaMacOs": "Komandoa", "keyboardKeyMetaMacOs": "Komandoa",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu-barraren menua" "menuBarMenuLabel": "Menu-barraren menua",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "فاصله", "keyboardKeySpace": "فاصله",
"keyboardKeyMetaMacOs": "فرمان", "keyboardKeyMetaMacOs": "فرمان",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "منوی نوار منو" "menuBarMenuLabel": "منوی نوار منو",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Välilyönti", "keyboardKeySpace": "Välilyönti",
"keyboardKeyMetaMacOs": "Komento", "keyboardKeyMetaMacOs": "Komento",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Valikkopalkki" "menuBarMenuLabel": "Valikkopalkki",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Puwang", "keyboardKeySpace": "Puwang",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu sa menu bar" "menuBarMenuLabel": "Menu sa menu bar",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Espace", "keyboardKeySpace": "Espace",
"keyboardKeyMetaMacOs": "Commande", "keyboardKeyMetaMacOs": "Commande",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu de la barre de menu" "menuBarMenuLabel": "Menu de la barre de menu",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Espazo", "keyboardKeySpace": "Espazo",
"keyboardKeyMetaMacOs": "Comando", "keyboardKeyMetaMacOs": "Comando",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menú da barra de menú" "menuBarMenuLabel": "Menú da barra de menú",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Leertaste", "keyboardKeySpace": "Leertaste",
"keyboardKeyMetaMacOs": "Befehl", "keyboardKeyMetaMacOs": "Befehl",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menü in der Menüleiste" "menuBarMenuLabel": "Menü in der Menüleiste",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "મેનૂ બાર મેનૂ" "menuBarMenuLabel": "મેનૂ બાર મેનૂ",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "רווח", "keyboardKeySpace": "רווח",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "תפריט בסרגל התפריטים" "menuBarMenuLabel": "תפריט בסרגל התפריטים",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "मेन्यू बार का मेन्यू" "menuBarMenuLabel": "मेन्यू बार का मेन्यू",
"currentDateLabel": "Date of today"
} }
...@@ -132,5 +132,6 @@ ...@@ -132,5 +132,6 @@
"keyboardKeySpace": "Razmaknica", "keyboardKeySpace": "Razmaknica",
"keyboardKeyMetaMacOs": "Naredba", "keyboardKeyMetaMacOs": "Naredba",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Izbornik trake izbornika" "menuBarMenuLabel": "Izbornik trake izbornika",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Szóköz", "keyboardKeySpace": "Szóköz",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menüsor menüje" "menuBarMenuLabel": "Menüsor menüje",
"currentDateLabel": "Date of today"
} }
...@@ -134,5 +134,6 @@ ...@@ -134,5 +134,6 @@
"keyboardKeySpace": "Բացատ", "keyboardKeySpace": "Բացատ",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Ընտրացանկի գոտու ընտրացանկ" "menuBarMenuLabel": "Ընտրացանկի գոտու ընտրացանկ",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu panel menu" "menuBarMenuLabel": "Menu panel menu",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Bil", "keyboardKeySpace": "Bil",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Valmyndarstika" "menuBarMenuLabel": "Valmyndarstika",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Barra spaziatrice", "keyboardKeySpace": "Barra spaziatrice",
"keyboardKeyMetaMacOs": "Comando", "keyboardKeyMetaMacOs": "Comando",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu barra dei menu" "menuBarMenuLabel": "Menu barra dei menu",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "メニューバーのメニュー" "menuBarMenuLabel": "メニューバーのメニュー",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "მენიუს ზოლის მენიუ" "menuBarMenuLabel": "მენიუს ზოლის მენიუ",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Бос орын", "keyboardKeySpace": "Бос орын",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Мәзір жолағының мәзірі" "menuBarMenuLabel": "Мәзір жолағының мәзірі",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "ម៉ឺនុយរបារម៉ឺនុយ" "menuBarMenuLabel": "ម៉ឺនុយរបារម៉ឺនុយ",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "\u0053\u0070\u0061\u0063\u0065", "keyboardKeySpace": "\u0053\u0070\u0061\u0063\u0065",
"keyboardKeyMetaMacOs": "\u0043\u006f\u006d\u006d\u0061\u006e\u0064", "keyboardKeyMetaMacOs": "\u0043\u006f\u006d\u006d\u0061\u006e\u0064",
"keyboardKeyMetaWindows": "\u0057\u0069\u006e", "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 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "스페이스", "keyboardKeySpace": "스페이스",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "메뉴 바 메뉴" "menuBarMenuLabel": "메뉴 바 메뉴",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Боштук", "keyboardKeySpace": "Боштук",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Меню тилкеси менюсу" "menuBarMenuLabel": "Меню тилкеси менюсу",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "ເມນູແຖບເມນູ" "menuBarMenuLabel": "ເມນູແຖບເມນູ",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "Tarpas", "keyboardKeySpace": "Tarpas",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Meniu juostos meniu" "menuBarMenuLabel": "Meniu juostos meniu",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Atstarpes taustiņš", "keyboardKeySpace": "Atstarpes taustiņš",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Windows", "keyboardKeyMetaWindows": "Windows",
"menuBarMenuLabel": "Izvēļņu joslas izvēlne" "menuBarMenuLabel": "Izvēļņu joslas izvēlne",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Мени на лентата со мени" "menuBarMenuLabel": "Мени на лентата со мени",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "മെനു ബാർ മെനു" "menuBarMenuLabel": "മെനു ബാർ മെനു",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Тушаал", "keyboardKeyMetaMacOs": "Тушаал",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Цэсний талбарын цэс" "menuBarMenuLabel": "Цэсний талбарын цэс",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "स्पेस", "keyboardKeySpace": "स्पेस",
"keyboardKeyMetaMacOs": "कमांड", "keyboardKeyMetaMacOs": "कमांड",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "मेनू बार मेनू" "menuBarMenuLabel": "मेनू बार मेनू",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Ruang", "keyboardKeySpace": "Ruang",
"keyboardKeyMetaMacOs": "Perintah", "keyboardKeyMetaMacOs": "Perintah",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu bar menu" "menuBarMenuLabel": "Menu bar menu",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "နေရာခြားခလုတ်", "keyboardKeySpace": "နေရာခြားခလုတ်",
"keyboardKeyMetaMacOs": "ကွန်မန်း", "keyboardKeyMetaMacOs": "ကွန်မန်း",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "မီနူးဘား မီနူး" "menuBarMenuLabel": "မီနူးဘား မီနူး",
"currentDateLabel": "Date of today"
} }
...@@ -127,5 +127,6 @@ ...@@ -127,5 +127,6 @@
"keyboardKeySpace": "Mellomrom", "keyboardKeySpace": "Mellomrom",
"keyboardKeyMetaMacOs": "Kommando", "keyboardKeyMetaMacOs": "Kommando",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Meny med menylinje" "menuBarMenuLabel": "Meny med menylinje",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "\"मेनु बार\" मेनु" "menuBarMenuLabel": "\"मेनु बार\" मेनु",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Spatie", "keyboardKeySpace": "Spatie",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu van menubalk" "menuBarMenuLabel": "Menu van menubalk",
"currentDateLabel": "Date of today"
} }
...@@ -127,5 +127,6 @@ ...@@ -127,5 +127,6 @@
"keyboardKeySpace": "Mellomrom", "keyboardKeySpace": "Mellomrom",
"keyboardKeyMetaMacOs": "Kommando", "keyboardKeyMetaMacOs": "Kommando",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Meny med menylinje" "menuBarMenuLabel": "Meny med menylinje",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "ମେନୁ ବାର ମେନୁ" "menuBarMenuLabel": "ମେନୁ ବାର ମେନୁ",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "ਮੀਨੂ ਬਾਰ ਮੀਨੂ" "menuBarMenuLabel": "ਮੀਨੂ ਬਾਰ ਮੀਨੂ",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "Spacja", "keyboardKeySpace": "Spacja",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Pasek menu" "menuBarMenuLabel": "Pasek menu",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu bar menu" "menuBarMenuLabel": "Menu bar menu",
"currentDateLabel": "Date of today"
} }
...@@ -131,5 +131,6 @@ ...@@ -131,5 +131,6 @@
"keyboardKeySpace": "Espaço", "keyboardKeySpace": "Espaço",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu da barra de menus" "menuBarMenuLabel": "Menu da barra de menus",
"currentDateLabel": "Date of today"
} }
...@@ -133,5 +133,6 @@ ...@@ -133,5 +133,6 @@
"keyboardKeySpace": "Spațiu", "keyboardKeySpace": "Spațiu",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Bară de meniu" "menuBarMenuLabel": "Bară de meniu",
"currentDateLabel": "Date of today"
} }
...@@ -136,5 +136,6 @@ ...@@ -136,5 +136,6 @@
"keyboardKeySpace": "Пробел", "keyboardKeySpace": "Пробел",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Строка меню" "menuBarMenuLabel": "Строка меню",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "මෙනු තීරු මෙනුව" "menuBarMenuLabel": "මෙනු තීරු මෙනුව",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "Medzerník", "keyboardKeySpace": "Medzerník",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Ponuka panela s ponukami" "menuBarMenuLabel": "Ponuka panela s ponukami",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "Preslednica", "keyboardKeySpace": "Preslednica",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Meni menijske vrstice" "menuBarMenuLabel": "Meni menijske vrstice",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menyja e shiritit të menysë" "menuBarMenuLabel": "Menyja e shiritit të menysë",
"currentDateLabel": "Date of today"
} }
...@@ -132,5 +132,6 @@ ...@@ -132,5 +132,6 @@
"keyboardKeySpace": "Тастер за размак", "keyboardKeySpace": "Тастер за размак",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Мени трака менија" "menuBarMenuLabel": "Мени трака менија",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Blanksteg", "keyboardKeySpace": "Blanksteg",
"keyboardKeyMetaMacOs": "Kommando", "keyboardKeyMetaMacOs": "Kommando",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menyrad" "menuBarMenuLabel": "Menyrad",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menyu ya upau wa menyu" "menuBarMenuLabel": "Menyu ya upau wa menyu",
"currentDateLabel": "Date of today"
} }
...@@ -130,5 +130,6 @@ ...@@ -130,5 +130,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "மெனு பட்டியின் மெனு" "menuBarMenuLabel": "மெனு பட்டியின் மெனு",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "మెనూ బార్ మెనూ" "menuBarMenuLabel": "మెనూ బార్ మెనూ",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "เมนูในแถบเมนู" "menuBarMenuLabel": "เมนูในแถบเมนู",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Puwang", "keyboardKeySpace": "Puwang",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menu sa menu bar" "menuBarMenuLabel": "Menu sa menu bar",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Boşluk", "keyboardKeySpace": "Boşluk",
"keyboardKeyMetaMacOs": "Komut", "keyboardKeyMetaMacOs": "Komut",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menü çubuğu menüsü" "menuBarMenuLabel": "Menü çubuğu menüsü",
"currentDateLabel": "Date of today"
} }
...@@ -135,5 +135,6 @@ ...@@ -135,5 +135,6 @@
"keyboardKeySpace": "Пробіл", "keyboardKeySpace": "Пробіл",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Панель меню" "menuBarMenuLabel": "Панель меню",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "مینو بار کا مینو" "menuBarMenuLabel": "مینو بار کا مینو",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Boʻsh joy", "keyboardKeySpace": "Boʻsh joy",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Menyu paneli" "menuBarMenuLabel": "Menyu paneli",
"currentDateLabel": "Date of today"
} }
...@@ -129,5 +129,6 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "Phím cách", "keyboardKeySpace": "Phím cách",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "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 @@ ...@@ -129,5 +129,6 @@
"keyboardKeySpace": "空格键", "keyboardKeySpace": "空格键",
"keyboardKeyMetaMacOs": "⌘", "keyboardKeyMetaMacOs": "⌘",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "菜单栏的菜单" "menuBarMenuLabel": "菜单栏的菜单",
"currentDateLabel": "Date of today"
} }
...@@ -128,5 +128,6 @@ ...@@ -128,5 +128,6 @@
"keyboardKeySpace": "Space", "keyboardKeySpace": "Space",
"keyboardKeyMetaMacOs": "Command", "keyboardKeyMetaMacOs": "Command",
"keyboardKeyMetaWindows": "Win", "keyboardKeyMetaWindows": "Win",
"menuBarMenuLabel": "Imenyu yebha yemenyu" "menuBarMenuLabel": "Imenyu yebha yemenyu",
"currentDateLabel": "Date of today"
} }
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