blob: 937cc0b2b204cf1be92a779584de8eb399d2c36e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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');
}
}
|