Prevent translation of hardcoded value in user facing text
This commit is contained in:
@@ -207,7 +207,7 @@
|
|||||||
},
|
},
|
||||||
"conversion": {
|
"conversion": {
|
||||||
"compression_level": "Compression level",
|
"compression_level": "Compression level",
|
||||||
"description": "In case no MIME-Type is defined, the \"default\" one will be used for the conversion.\nSet \"none\" as the target type to disable conversion for a MIME-Type",
|
"description": "In case no MIME-Type is defined, the \"default\" one will be used for the conversion.\nSet \"{{value}}\" as the target type to disable conversion for a MIME-Type",
|
||||||
"mime_type": "MIME-Type",
|
"mime_type": "MIME-Type",
|
||||||
"target": "MIME-Type target",
|
"target": "MIME-Type target",
|
||||||
"title": "Download conversion"
|
"title": "Download conversion"
|
||||||
|
|||||||
@@ -280,7 +280,7 @@ export const DownloadConversionSetting = ({
|
|||||||
<DialogTitle>{t('download.settings.conversion.title')}</DialogTitle>
|
<DialogTitle>{t('download.settings.conversion.title')}</DialogTitle>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<DialogContentText sx={{ mb: 2, whiteSpace: 'pre-line' }}>
|
<DialogContentText sx={{ mb: 2, whiteSpace: 'pre-line' }}>
|
||||||
{t('download.settings.conversion.description')}
|
{t('download.settings.conversion.description', { value: 'none' })}
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
<Stack sx={{ flexDirection: 'column', gap: 3 }}>
|
<Stack sx={{ flexDirection: 'column', gap: 3 }}>
|
||||||
{tmpConversions.map((conversion, index) => {
|
{tmpConversions.map((conversion, index) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user