icingaweb2-module-director/library/Director/TranslationDummy.php

21 lines
413 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director;
2017-10-09 15:23:27 +02:00
use dipl\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');
}
}