@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
29 lines (28 loc) • 1.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.messages = void 0;
var _reactIntl = require("react-intl");
var messages = exports.messages = (0, _reactIntl.defineMessages)({
editText: {
id: 'fabric.editor.editDateText',
defaultMessage: 'Edit Date',
description: 'Title for the input that changes the date'
},
invalidDateError: {
id: 'fabric.editor.invalidDateError',
defaultMessage: 'Enter a valid date',
description: 'Error message when the date typed in is invalid, requesting they inputs a new date'
},
onKeyUpDownText: {
id: 'fabric.editor.upDown',
defaultMessage: 'On the use of up and down arrow keys into the following input field, the date will update below',
description: 'The text for the date input informs the user that using the arrow keys (up and down) will update the date picker below'
},
datePickerOpenedAlert: {
id: 'fabric.editor.datePickerOpenedAlert',
defaultMessage: 'Date editor popup opened, press Tab to access popup',
description: 'Screen reader alert when the date picker is opened, letting the user know they can press the Tab button to access the date picker'
}
});