mattermost-mobile/app/screens/post_priority_picker/utils.ts
Harshil Sharma 8bb0bac49e
Update app/screens/post_priority_picker/utils.ts
Co-authored-by: Daniel Espino García <larkox@gmail.com>
2023-06-19 15:37:56 +05:30

45 lines
1.4 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {t} from '@i18n';
export const labels = {
standard: {
label: {
id: t('post_priority.picker.label.standard'),
defaultMessage: 'Standard',
},
},
urgent: {
label: {
id: t('post_priority.picker.label.urgent'),
defaultMessage: 'Urgent',
},
},
important: {
label: {
id: t('post_priority.picker.label.important'),
defaultMessage: 'Important',
},
},
requestAck: {
label: {
id: t('post_priority.picker.label.request_ack'),
defaultMessage: 'Request acknowledgement',
},
description: {
id: t('post_priority.picker.label.request_ack.description'),
defaultMessage: 'An acknowledgement button will appear with your message',
},
},
persistentNotifications: {
label: {
id: t('post_priority.picker.label.persistent_notifications'),
defaultMessage: 'Send persistent notifications',
},
description: {
id: t('post_priority.picker.label.persistent_notifications.description'),
defaultMessage: 'Recipients are notified every {interval, plural, one {minute} other {{interval} minutes}} until they acknowledge or reply.',
},
},
};