Use proper casing for i18n locales (#1998)

This commit is contained in:
Jeff
2026-05-11 19:42:07 -07:00
committed by GitHub
parent e49e488b4c
commit e2a1d813a9
224 changed files with 17323 additions and 18474 deletions
@@ -70,7 +70,7 @@ export const LyricsActions = ({
uppercase
variant="subtle"
>
{t('form.lyricsExport.export', { postProcess: 'sentenceCase ' })}
{t('form.lyricsExport.export')}
</Button>
</Center>
)}
@@ -89,7 +89,7 @@ export const LyricsActions = ({
uppercase
variant="subtle"
>
{t('common.search', { postProcess: 'titleCase' })}
{t('common.search')}
</Button>
) : null}
<ActionIcon
@@ -97,15 +97,12 @@ export const LyricsActions = ({
icon="minus"
onClick={() => handleLyricOffset(offsetMs - 50)}
tooltip={{
label: t('common.slower', { postProcess: 'sentenceCase' }),
label: t('common.slower'),
openDelay: 0,
}}
variant="subtle"
/>
<Tooltip
label={t('setting.lyricOffset', { postProcess: 'sentenceCase' })}
openDelay={0}
>
<Tooltip label={t('setting.lyricOffset')} openDelay={0}>
<NumberInput
aria-label="Lyric offset"
onChange={handleLyricOffset}
@@ -119,7 +116,7 @@ export const LyricsActions = ({
icon="plus"
onClick={() => handleLyricOffset(offsetMs + 50)}
tooltip={{
label: t('common.faster', { postProcess: 'sentenceCase' }),
label: t('common.faster'),
openDelay: 0,
}}
variant="subtle"
@@ -131,9 +128,7 @@ export const LyricsActions = ({
uppercase
variant="subtle"
>
{hasLyrics
? t('common.clear', { postProcess: 'sentenceCase' })
: t('common.refresh', { postProcess: 'sentenceCase' })}
{hasLyrics ? t('common.clear') : t('common.refresh')}
</Button>
) : null}
</Group>
@@ -146,7 +141,7 @@ export const LyricsActions = ({
uppercase
variant="subtle"
>
{t('common.translation', { postProcess: 'sentenceCase' })}
{t('common.translation')}
</Button>
) : null}
</div>