press-plus
Version:
21 lines (17 loc) • 649 B
text/typescript
import { t } from '../locale';
export const MIDDLE_BUTTON_STATUS_MAP = {
manage: 'MANAGE',
watch: 'WATCH',
play: 'PLAY',
review: 'REVIEW',
order: 'ORDER',
hasOrdered: 'HAVE_ORDERED',
} as const;
export const MIDDLE_BUTTON_TITLE_MAP = {
[]: t('scheduleList.manage'),
[]: t('scheduleList.spectate'),
[]: t('scheduleList.toPlay'),
[]: t('scheduleList.reCap'),
[]: t('scheduleList.subscribe'),
[]: t('scheduleList.subscribed'),
} as const;