mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-08-22 02:08:09 +02:00
21 lines
393 B
PHP
21 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');
|
|
}
|
|
}
|