mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-17 20:42:25 +03:00
Extract disc subtitle strings for translation
This commit is contained in:
parent
e369cbf493
commit
1e5c879fc6
@ -6,6 +6,7 @@ import {
|
||||
ListToolbar,
|
||||
TextField,
|
||||
useListController,
|
||||
useTranslate,
|
||||
DatagridLoading,
|
||||
DatagridBody,
|
||||
DatagridRow,
|
||||
@ -71,6 +72,7 @@ const trackName = (r) => {
|
||||
const AlbumSongs = (props) => {
|
||||
const classes = useStyles(props)
|
||||
const classesToolbar = useStylesListToolbar(props)
|
||||
const translate = useTranslate()
|
||||
const dispatch = useDispatch()
|
||||
const isXsmall = useMediaQuery((theme) => theme.breakpoints.down('xs'))
|
||||
const isDesktop = useMediaQuery((theme) => theme.breakpoints.up('md'))
|
||||
@ -100,8 +102,13 @@ const AlbumSongs = (props) => {
|
||||
<TableCell colSpan={children.length + 1}>
|
||||
<Typography variant="h6">
|
||||
{record.discSubtitle
|
||||
? `${record.discSubtitle} (disc ${record.discNumber})`
|
||||
: `Disc ${record.discNumber}`}
|
||||
? translate('message.discSubtitle', {
|
||||
subtitle: record.discSubtitle,
|
||||
number: record.discNumber,
|
||||
})
|
||||
: translate('message.discWithoutSubtitle', {
|
||||
number: record.discNumber,
|
||||
})}
|
||||
</Typography>
|
||||
</TableCell>
|
||||
)}
|
||||
|
@ -17,7 +17,8 @@
|
||||
"year": "Year",
|
||||
"size": "File size",
|
||||
"bitRate": "Bit rate",
|
||||
"updatedAt": "Uploaded at"
|
||||
"updatedAt": "Uploaded at",
|
||||
"discSubtitle": "Disc Subtitle"
|
||||
},
|
||||
"actions": {
|
||||
"addToQueue": "Play Later",
|
||||
@ -218,7 +219,9 @@
|
||||
"message": {
|
||||
"note": "NOTE",
|
||||
"transcodingDisabled": "Changing the transcoding configuration through the web interface is disabled for security reasons. If you would like to change (edit or add) transcoding options, restart the server with the %{config} configuration option.",
|
||||
"transcodingEnabled": "Navidrome is currently running with %{config}, making it possible to run system commands from the transcoding settings using the web interface. We recommend to disable it for security reasons and only enable it when configuring Transcoding options."
|
||||
"transcodingEnabled": "Navidrome is currently running with %{config}, making it possible to run system commands from the transcoding settings using the web interface. We recommend to disable it for security reasons and only enable it when configuring Transcoding options.",
|
||||
"discSubtitle": "%{subtitle} (disc %{number})",
|
||||
"discWithoutSubtitle": "Disc %{number}"
|
||||
},
|
||||
"menu": {
|
||||
"library": "Library",
|
||||
|
Loading…
x
Reference in New Issue
Block a user