From 33b98663e9678c7ae11dcdfb56017115b23978f6 Mon Sep 17 00:00:00 2001 From: Lukas Schaefer Date: Mon, 22 Jun 2026 09:00:38 -0400 Subject: [PATCH] Improve context for i18n for AudioToAudioTranslateTaskType Signed-off-by: Lukas Schaefer --- lib/TaskProcessing/AudioToAudioTranslateTaskType.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/TaskProcessing/AudioToAudioTranslateTaskType.php b/lib/TaskProcessing/AudioToAudioTranslateTaskType.php index fa7e4c19..35f9be90 100644 --- a/lib/TaskProcessing/AudioToAudioTranslateTaskType.php +++ b/lib/TaskProcessing/AudioToAudioTranslateTaskType.php @@ -34,6 +34,7 @@ public function getName(): string { * @inheritDoc */ public function getDescription(): string { + // TRANSLATORS This translates an input file into an output return $this->l->t('Translate the input voice'); } @@ -51,6 +52,7 @@ public function getInputShape(): array { return [ 'input' => new ShapeDescriptor( $this->l->t('Input audio'), + // TRANSLATORS This is a file input $this->l->t('The audio to translate'), EShapeType::Audio, ),