mirror of
https://github.com/austinried/subtracks.git
synced 2026-02-11 23:32:42 +01:00
fix plurals falling back to en when no count
This commit is contained in:
@@ -17,8 +17,6 @@ const LibraryTopTabNavigator = withSuspense(() => {
|
||||
const { t } = useTranslation()
|
||||
const marginTop = useSafeAreaInsets().top
|
||||
|
||||
console.log('Albums:', t('resources.album.name', { count: 2 }))
|
||||
|
||||
return (
|
||||
<Tab.Navigator
|
||||
tabBarOptions={{
|
||||
|
||||
@@ -21,7 +21,7 @@ const NowPlayingNavigator = withSuspense(() => {
|
||||
name="queue"
|
||||
component={NowPlayingQueue}
|
||||
options={{
|
||||
title: t('resources.queue.name'),
|
||||
title: t('resources.queue.name', { count: 1 }),
|
||||
headerStyle: {
|
||||
backgroundColor: colors.gradient.high,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user