mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
21 lines
414 B
PHP
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');
|
|
}
|
|
}
|