Skip to content

Commit 9ea1cc4

Browse files
elzodybackportbot[bot]
authored andcommitted
fix: translation format specifier
Signed-off-by: Elizabeth Danzberger <[email protected]>
1 parent 5676ac6 commit 9ea1cc4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/Conversion/ConversionProvider.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,10 @@ public function convertFile(File $file, string $targetMimeType): mixed {
148148
private function getMimeProvidersFor(array $inputMimeTypes, string $outputMimeType): array {
149149
$outputMimeInfo = $this->getMimeInfoFor($outputMimeType);
150150
if ($outputMimeInfo === null) {
151-
$this->logger->error($this->l10n->t('Unable to fetch information on $s', [$outputMimeType]));
151+
$this->logger->error(
152+
$this->l10n->t('Unable to fetch information on %1$s',
153+
[$outputMimeType]
154+
));
152155
throw new \Exception();
153156
}
154157

0 commit comments

Comments
 (0)