Extract disc subtitle strings for translation

This commit is contained in:
Deluan 2020-05-12 14:13:34 -04:00
parent e369cbf493
commit 1e5c879fc6
2 changed files with 14 additions and 4 deletions

View File

@ -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>
)}

View File

@ -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",