icingaweb2-module-director/library/Director/TranslationDummy.php
2026-03-30 11:33:11 +02:00

20 lines
393 B
PHP

<?php
namespace Icinga\Module\Director;
use ipl\I18n\Translation;
class TranslationDummy
{
use Translation;
protected function dummyForTranslation()
{
$this->translate('Host');
$this->translate('Service');
$this->translate('Zone');
$this->translate('Command');
$this->translate('User');
$this->translate('Notification');
}
}