2019-09-11 23:02:39 +02:00

21 lines
414 B
PHP

<?php
namespace Icinga\Module\Director;
use gipfl\Translation\TranslationHelper;
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');
}
}