mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-06 10:39:58 +02:00
Use proper casing for i18n locales (#1998)
This commit is contained in:
@@ -82,9 +82,7 @@ export const MobilePlayerbar = () => {
|
||||
transition={{ duration: 0.2, ease: 'easeIn' }}
|
||||
>
|
||||
<Tooltip
|
||||
label={t('player.toggleFullscreenPlayer', {
|
||||
postProcess: 'sentenceCase',
|
||||
})}
|
||||
label={t('player.toggleFullscreenPlayer')}
|
||||
openDelay={0}
|
||||
>
|
||||
<ItemImage
|
||||
@@ -208,7 +206,7 @@ export const MobilePlayerbar = () => {
|
||||
mediaPrevious();
|
||||
}}
|
||||
tooltip={{
|
||||
label: t('player.previous', { postProcess: 'sentenceCase' }),
|
||||
label: t('player.previous'),
|
||||
openDelay: 0,
|
||||
}}
|
||||
variant="tertiary"
|
||||
@@ -228,7 +226,7 @@ export const MobilePlayerbar = () => {
|
||||
mediaNext();
|
||||
}}
|
||||
tooltip={{
|
||||
label: t('player.next', { postProcess: 'sentenceCase' }),
|
||||
label: t('player.next'),
|
||||
openDelay: 0,
|
||||
}}
|
||||
variant="tertiary"
|
||||
|
||||
Reference in New Issue
Block a user