Unverified Commit 50612db8 authored by rami-a's avatar rami-a Committed by GitHub

Localized new strings added in the redesigned Material Time Picker (#60096)

parent 02f8e028
...@@ -421,6 +421,32 @@ abstract class MaterialLocalizations { ...@@ -421,6 +421,32 @@ abstract class MaterialLocalizations {
/// Tooltip used for the text input mode button of the date pickers. /// Tooltip used for the text input mode button of the date pickers.
String get inputDateModeButtonLabel; String get inputDateModeButtonLabel;
/// Label used in the header of the time picker dialog created with
/// [showTimePicker] when in [TimePickerEntryMode.dial].
String get timePickerDialHelpText;
/// Label used in the header of the time picker dialog created with
/// [showTimePicker] when in [TimePickerEntryMode.input].
String get timePickerInputHelpText;
/// Label used below the hour text field of the time picker dialog created
/// with [showTimePicker] when in [TimePickerEntryMode.input].
String get timePickerHourLabel;
/// Label used below the minute text field of the time picker dialog created
/// with [showTimePicker] when in [TimePickerEntryMode.input].
String get timePickerMinuteLabel;
/// Error message for the time picker dialog created with [showTimePicker]
/// when in [TimePickerEntryMode.input].
String get invalidTimeLabel;
/// Tooltip used to put the time picker into [TimePickerEntryMode.dial].
String get dialModeButtonLabel;
/// Tooltip used to put the time picker into [TimePickerEntryMode.input].
String get inputTimeModeButtonLabel;
/// The semantics label used to indicate which account is signed in in the /// The semantics label used to indicate which account is signed in in the
/// [UserAccountsDrawerHeader] widget. /// [UserAccountsDrawerHeader] widget.
String get signedInLabel; String get signedInLabel;
...@@ -756,6 +782,27 @@ class DefaultMaterialLocalizations implements MaterialLocalizations { ...@@ -756,6 +782,27 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
@override @override
String get inputDateModeButtonLabel => 'Switch to input'; String get inputDateModeButtonLabel => 'Switch to input';
@override
String get timePickerDialHelpText => 'SELECT TIME';
@override
String get timePickerInputHelpText => 'ENTER TIME';
@override
String get timePickerHourLabel => 'Hour';
@override
String get timePickerMinuteLabel => 'Minute';
@override
String get invalidTimeLabel => 'Enter a valid time';
@override
String get dialModeButtonLabel => 'Switch to dial picker mode';
@override
String get inputTimeModeButtonLabel => 'Switch to text input mode';
String _formatDayPeriod(TimeOfDay timeOfDay) { String _formatDayPeriod(TimeOfDay timeOfDay) {
switch (timeOfDay.period) { switch (timeOfDay.period) {
case DayPeriod.am: case DayPeriod.am:
......
...@@ -224,8 +224,7 @@ class _TimePickerHeader extends StatelessWidget { ...@@ -224,8 +224,7 @@ class _TimePickerHeader extends StatelessWidget {
children: <Widget>[ children: <Widget>[
const SizedBox(height: 16.0), const SizedBox(height: 16.0),
Text( Text(
// TODO(rami-a): localize 'SELECT TIME.' helpText ?? MaterialLocalizations.of(context).timePickerDialHelpText,
helpText ?? 'SELECT TIME',
style: TimePickerTheme.of(context).helpTextStyle ?? themeData.textTheme.overline, style: TimePickerTheme.of(context).helpTextStyle ?? themeData.textTheme.overline,
), ),
controls, controls,
...@@ -1387,8 +1386,7 @@ class _TimePickerInputState extends State<_TimePickerInput> { ...@@ -1387,8 +1386,7 @@ class _TimePickerInputState extends State<_TimePickerInput> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
Text( Text(
// TODO(rami-a): localize 'ENTER TIME' widget.helpText ?? MaterialLocalizations.of(context).timePickerInputHelpText,
widget.helpText ?? 'ENTER TIME',
style: TimePickerTheme.of(context).helpTextStyle ?? theme.textTheme.overline, style: TimePickerTheme.of(context).helpTextStyle ?? theme.textTheme.overline,
), ),
const SizedBox(height: 16.0), const SizedBox(height: 16.0),
...@@ -1418,8 +1416,12 @@ class _TimePickerInputState extends State<_TimePickerInput> { ...@@ -1418,8 +1416,12 @@ class _TimePickerInputState extends State<_TimePickerInput> {
const SizedBox(height: 8.0), const SizedBox(height: 8.0),
if (!hourHasError && !minuteHasError) if (!hourHasError && !minuteHasError)
ExcludeSemantics( ExcludeSemantics(
// TODO(rami-a): localize 'Hour' child: Text(
child: Text('Hour', style: theme.textTheme.caption, maxLines: 1, overflow: TextOverflow.ellipsis), MaterialLocalizations.of(context).timePickerHourLabel,
style: theme.textTheme.caption,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
), ),
], ],
)), )),
...@@ -1441,8 +1443,12 @@ class _TimePickerInputState extends State<_TimePickerInput> { ...@@ -1441,8 +1443,12 @@ class _TimePickerInputState extends State<_TimePickerInput> {
const SizedBox(height: 8.0), const SizedBox(height: 8.0),
if (!hourHasError && !minuteHasError) if (!hourHasError && !minuteHasError)
ExcludeSemantics( ExcludeSemantics(
// TODO(rami-a): localize 'Minute' child: Text(
child: Text('Minute', style: theme.textTheme.caption, maxLines: 1, overflow: TextOverflow.ellipsis), MaterialLocalizations.of(context).timePickerMinuteLabel,
style: theme.textTheme.caption,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
), ),
], ],
)), )),
...@@ -1458,8 +1464,7 @@ class _TimePickerInputState extends State<_TimePickerInput> { ...@@ -1458,8 +1464,7 @@ class _TimePickerInputState extends State<_TimePickerInput> {
), ),
if (hourHasError || minuteHasError) if (hourHasError || minuteHasError)
Text( Text(
// TODO(rami-a): localize 'Enter a valid time' MaterialLocalizations.of(context).invalidTimeLabel,
'Enter a valid time',
style: theme.textTheme.bodyText2.copyWith(color: theme.colorScheme.error), style: theme.textTheme.bodyText2.copyWith(color: theme.colorScheme.error),
) )
else else
...@@ -1811,10 +1816,9 @@ class _TimePickerDialogState extends State<_TimePickerDialog> { ...@@ -1811,10 +1816,9 @@ class _TimePickerDialogState extends State<_TimePickerDialog> {
), ),
onPressed: _handleEntryModeToggle, onPressed: _handleEntryModeToggle,
icon: Icon(_entryMode == TimePickerEntryMode.dial ? Icons.keyboard : Icons.access_time), icon: Icon(_entryMode == TimePickerEntryMode.dial ? Icons.keyboard : Icons.access_time),
// TODO(rami-a): Localize these strings.
tooltip: _entryMode == TimePickerEntryMode.dial tooltip: _entryMode == TimePickerEntryMode.dial
? 'Switch to text input mode' ? MaterialLocalizations.of(context).inputTimeModeButtonLabel
: 'Switch to dial picker mode', : MaterialLocalizations.of(context).dialModeButtonLabel,
), ),
Expanded( Expanded(
// TODO(rami-a): Move away from ButtonBar to avoid https://github.com/flutter/flutter/issues/53378. // TODO(rami-a): Move away from ButtonBar to avoid https://github.com/flutter/flutter/issues/53378.
......
...@@ -58,6 +58,13 @@ void main() { ...@@ -58,6 +58,13 @@ void main() {
expect(localizations.dateRangePickerHelpText, isNotNull); expect(localizations.dateRangePickerHelpText, isNotNull);
expect(localizations.calendarModeButtonLabel, isNotNull); expect(localizations.calendarModeButtonLabel, isNotNull);
expect(localizations.inputDateModeButtonLabel, isNotNull); expect(localizations.inputDateModeButtonLabel, isNotNull);
expect(localizations.timePickerDialHelpText, isNotNull);
expect(localizations.timePickerInputHelpText, isNotNull);
expect(localizations.timePickerHourLabel, isNotNull);
expect(localizations.timePickerMinuteLabel, isNotNull);
expect(localizations.invalidTimeLabel, isNotNull);
expect(localizations.dialModeButtonLabel, isNotNull);
expect(localizations.inputTimeModeButtonLabel, isNotNull);
expect(localizations.signedInLabel, isNotNull); expect(localizations.signedInLabel, isNotNull);
expect(localizations.hideAccountsLabel, isNotNull); expect(localizations.hideAccountsLabel, isNotNull);
expect(localizations.showAccountsLabel, isNotNull); expect(localizations.showAccountsLabel, isNotNull);
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -79,5 +79,12 @@ ...@@ -79,5 +79,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -75,5 +75,12 @@ ...@@ -75,5 +75,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -74,5 +74,12 @@ ...@@ -74,5 +74,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -272,6 +272,41 @@ ...@@ -272,6 +272,41 @@
"description": "Tooltip used for the text input mode button of the date pickers." "description": "Tooltip used for the text input mode button of the date pickers."
}, },
"timePickerDialHelpText": "SELECT TIME",
"@timePickerDialHelpText": {
"description": "Label used in the header of the time picker dialog when using the clock dial to select a time."
},
"timePickerInputHelpText": "ENTER TIME",
"@timePickerInputHelpText": {
"description": "Label used in the header of the time picker dialog when using the text input to enter a time."
},
"timePickerHourLabel": "Hour",
"@timePickerHourLabel": {
"description": "Label indicating the text field for inputting an hour when entering a time."
},
"timePickerMinuteLabel": "Minute",
"@timePickerMinuteLabel": {
"description": "Label indicating the text field for inputting a minute when entering a time."
},
"invalidTimeLabel": "Enter a valid time",
"@invalidTimeLabel": {
"description": "Error message displayed to the user when they have entered an invalid time."
},
"dialModeButtonLabel": "Switch to dial picker mode",
"@dialModeButtonLabel": {
"description": "Tooltip used for the clock dial mode button of the time picker."
},
"inputTimeModeButtonLabel": "Switch to text input mode",
"@inputTimeModeButtonLabel": {
"description": "Tooltip used for the text input mode button of the time picker."
},
"signedInLabel": "Signed in", "signedInLabel": "Signed in",
"@signedInLabel": { "@signedInLabel": {
"description": "The accessibility label used to indicate which account is signed in, in a UserAccountsDrawerHeader, when the accessibility user navigates the UI. This phrase serves as an adjective with respect to the user. The phrase indicates that the user is currently signed in." "description": "The accessibility label used to indicate which account is signed in, in a UserAccountsDrawerHeader, when the accessibility user navigates the UI. This phrase serves as an adjective with respect to the user. The phrase indicates that the user is currently signed in."
......
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -74,5 +74,12 @@ ...@@ -74,5 +74,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -77,5 +77,12 @@ ...@@ -77,5 +77,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "\u0053\u0077\u0069\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0063\u0061\u006c\u0065\u006e\u0064\u0061\u0072", "calendarModeButtonLabel": "\u0053\u0077\u0069\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0063\u0061\u006c\u0065\u006e\u0064\u0061\u0072",
"inputDateModeButtonLabel": "\u0053\u0077\u0069\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0069\u006e\u0070\u0075\u0074", "inputDateModeButtonLabel": "\u0053\u0077\u0069\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0069\u006e\u0070\u0075\u0074",
"licensesPackageDetailTextOne": "\u0031\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065", "licensesPackageDetailTextOne": "\u0031\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065",
"licensesPackageDetailTextOther": "\u0024\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0043\u006f\u0075\u006e\u0074\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0073" "licensesPackageDetailTextOther": "\u0024\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0043\u006f\u0075\u006e\u0074\u0020\u006c\u0069\u0063\u0065\u006e\u0073\u0065\u0073",
"timePickerDialHelpText": "\u0053\u0045\u004c\u0045\u0043\u0054\u0020\u0054\u0049\u004d\u0045",
"timePickerInputHelpText": "\u0045\u004e\u0054\u0045\u0052\u0020\u0054\u0049\u004d\u0045",
"timePickerHourLabel": "\u0048\u006f\u0075\u0072",
"timePickerMinuteLabel": "\u004d\u0069\u006e\u0075\u0074\u0065",
"invalidTimeLabel": "\u0045\u006e\u0074\u0065\u0072\u0020\u0061\u0020\u0076\u0061\u006c\u0069\u0064\u0020\u0074\u0069\u006d\u0065",
"dialModeButtonLabel": "\u0053\u0077\u0069\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0064\u0069\u0061\u006c\u0020\u0070\u0069\u0063\u006b\u0065\u0072\u0020\u006d\u006f\u0064\u0065",
"inputTimeModeButtonLabel": "\u0053\u0077\u0069\u0074\u0063\u0068\u0020\u0074\u006f\u0020\u0074\u0065\u0078\u0074\u0020\u0069\u006e\u0070\u0075\u0074\u0020\u006d\u006f\u0064\u0065"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -74,5 +74,12 @@ ...@@ -74,5 +74,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -75,5 +75,12 @@ ...@@ -75,5 +75,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -77,5 +77,12 @@ ...@@ -77,5 +77,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -74,5 +74,12 @@ ...@@ -74,5 +74,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -73,5 +73,12 @@ ...@@ -73,5 +73,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -76,5 +76,12 @@ ...@@ -76,5 +76,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -72,5 +72,12 @@ ...@@ -72,5 +72,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
...@@ -71,5 +71,12 @@ ...@@ -71,5 +71,12 @@
"calendarModeButtonLabel": "Switch to calendar", "calendarModeButtonLabel": "Switch to calendar",
"inputDateModeButtonLabel": "Switch to input", "inputDateModeButtonLabel": "Switch to input",
"licensesPackageDetailTextOne": "1 license", "licensesPackageDetailTextOne": "1 license",
"licensesPackageDetailTextOther": "$licenseCount licenses" "licensesPackageDetailTextOther": "$licenseCount licenses",
"timePickerDialHelpText": "SELECT TIME",
"timePickerInputHelpText": "ENTER TIME",
"timePickerHourLabel": "Hour",
"timePickerMinuteLabel": "Minute",
"invalidTimeLabel": "Enter a valid time",
"dialModeButtonLabel": "Switch to dial picker mode",
"inputTimeModeButtonLabel": "Switch to text input mode"
} }
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