mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-15 21:16:17 +02:00
fix casing on some translation strings
This commit is contained in:
@@ -122,9 +122,12 @@ const TrackListRoute = () => {
|
||||
|
||||
const artist = searchParams.get('artistName');
|
||||
const title = artist
|
||||
? t('page.trackList.artistTracks', { artist })
|
||||
? t('page.trackList.artistTracks', { artist, postProcess: 'sentenceCase' })
|
||||
: genreId
|
||||
? t('page.trackList.genreTracks', { genre: titleCase(genreTitle) })
|
||||
? t('page.trackList.genreTracks', {
|
||||
genre: titleCase(genreTitle),
|
||||
postProcess: 'sentenceCase',
|
||||
})
|
||||
: undefined;
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user