force get translations from admin

This commit is contained in:
Daniel Seifert 2021-10-31 23:16:03 +01:00 committed by Daniel Seifert
parent 74edceafc8
commit bd90f18a87
Signed by: DanielS
GPG Key ID: 8A7C4C6ED1915C6F
3 changed files with 5 additions and 1 deletions

View File

@ -29,6 +29,7 @@ abstract class ActionBase implements QueryBase
protected $formElements = []; protected $formElements = [];
/** /**
* Ensure that the translations are equally available in the frontend and the backend
* @return string * @return string
*/ */
public function getDescription() : string public function getDescription() : string

View File

@ -36,6 +36,7 @@ abstract class ExportBase implements QueryBase
protected $formElements = []; protected $formElements = [];
/** /**
* Ensure that the translations are equally available in the frontend and the backend
* @return string * @return string
*/ */
public function getDescription() : string public function getDescription() : string
@ -185,7 +186,7 @@ abstract class ExportBase implements QueryBase
throw oxNew( throw oxNew(
Exceptions\TaskException::class, Exceptions\TaskException::class,
$this, $this,
Registry::getLang()->translateString( 'D3_DATAWIZARD_ERR_NOEXPORTCONTENT' ) Registry::getLang()->translateString( 'D3_DATAWIZARD_ERR_NOEXPORTCONTENT', null, true )
); );
} }

View File

@ -22,11 +22,13 @@ interface QueryBase
public function run(); public function run();
/** /**
* Ensure that the translations are equally available in the frontend and the backend
* @return string * @return string
*/ */
public function getTitle() : string; public function getTitle() : string;
/** /**
* Ensure that the translations are equally available in the frontend and the backend
* @return string * @return string
*/ */
public function getDescription() : string; public function getDescription() : string;