UNPKG

box-ui-elements

Version:
28 lines (25 loc) 1.07 kB
// @flow import { defineMessages } from 'react-intl'; const messages = defineMessages({ startMention: { defaultMessage: 'Mention someone to notify them', description: 'Message to display when a user triggers a mention', id: 'boxui.draftjs.mentionSelector.startMention', }, noUsersFound: { defaultMessage: 'No users found', description: 'Message for screenReader users when trying to tag a user but there are no matches', id: 'boxui.draftjs.mentionSelector.noUsersFound', }, usersFound: { defaultMessage: '{usersCount, plural, one {one user found} other {{usersCount} users found}}', description: 'Message for screenReader users when a certain number of users is being tagged', id: 'boxui.draftjs.mentionSelector.usersFound', }, commentTimestampLabel: { defaultMessage: 'Comment Timestamp', description: 'Label for comment timestamp in the comment form', id: 'boxui.draftjs.mentionSelector.commentTimestampLabel', }, }); export default messages;