2017-09-13 11:01:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director;
|
|
|
|
|
2017-10-09 15:23:27 +02:00
|
|
|
use dipl\Translation\TranslationHelper;
|
2017-09-13 11:01:45 +02:00
|
|
|
|
|
|
|
class TranslationDummy
|
|
|
|
{
|
|
|
|
use TranslationHelper;
|
|
|
|
|
|
|
|
protected function dummyForTranslation()
|
|
|
|
{
|
|
|
|
$this->translate('Host');
|
|
|
|
$this->translate('Service');
|
|
|
|
$this->translate('Zone');
|
|
|
|
$this->translate('Command');
|
|
|
|
$this->translate('User');
|
|
|
|
$this->translate('Notification');
|
|
|
|
}
|
|
|
|
}
|