Merge pull request #51724 from nextcloud/fix/tasktypes-translations

Fix: task type translations
pull/51744/head
Andy Scherzinger 2025-03-26 22:15:16 +07:00 committed by GitHub
commit 8729597354
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
17 changed files with 17 additions and 17 deletions

@ -34,7 +34,7 @@ class AudioToText implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -31,7 +31,7 @@ class ContextAgentInteraction implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}
/**

@ -34,7 +34,7 @@ class ContextWrite implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class GenerateEmoji implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToImage implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToText implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -31,7 +31,7 @@ class TextToTextChangeTone implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}
/**

@ -34,7 +34,7 @@ class TextToTextChat implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -31,7 +31,7 @@ class TextToTextChatWithTools implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}
/**

@ -34,7 +34,7 @@ class TextToTextFormalization implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToTextHeadline implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -33,7 +33,7 @@ class TextToTextProofread implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToTextReformulation implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToTextSimplification implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -33,7 +33,7 @@ class TextToTextSummary implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToTextTopics implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

@ -34,7 +34,7 @@ class TextToTextTranslate implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}