mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-22 02:16:39 +02:00
Use proper casing for i18n locales (#1998)
This commit is contained in:
@@ -17,19 +17,19 @@ import { Play } from '/@/shared/types/types';
|
||||
|
||||
export const PLAY_TYPES = [
|
||||
{
|
||||
label: i18n.t('player.play', { postProcess: 'sentenceCase' }),
|
||||
label: i18n.t('player.play'),
|
||||
play: Play.NOW,
|
||||
},
|
||||
{
|
||||
label: i18n.t('player.shuffle', { postProcess: 'sentenceCase' }),
|
||||
label: i18n.t('player.shuffle'),
|
||||
play: Play.SHUFFLE,
|
||||
},
|
||||
{
|
||||
label: i18n.t('player.addLast', { postProcess: 'sentenceCase' }),
|
||||
label: i18n.t('player.addLast'),
|
||||
play: Play.LAST,
|
||||
},
|
||||
{
|
||||
label: i18n.t('player.addNext', { postProcess: 'sentenceCase' }),
|
||||
label: i18n.t('player.addNext'),
|
||||
play: Play.NEXT,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user