Prevent translation of hardcoded value in user facing text

This commit is contained in:
schroda
2025-08-02 13:05:29 +02:00
parent 4d6e1bef74
commit 4f5754399b
2 changed files with 2 additions and 2 deletions

View File

@@ -207,7 +207,7 @@
},
"conversion": {
"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",
"target": "MIME-Type target",
"title": "Download conversion"

View File

@@ -280,7 +280,7 @@ export const DownloadConversionSetting = ({
<DialogTitle>{t('download.settings.conversion.title')}</DialogTitle>
<DialogContent>
<DialogContentText sx={{ mb: 2, whiteSpace: 'pre-line' }}>
{t('download.settings.conversion.description')}
{t('download.settings.conversion.description', { value: 'none' })}
</DialogContentText>
<Stack sx={{ flexDirection: 'column', gap: 3 }}>
{tmpConversions.map((conversion, index) => {