summaryrefslogtreecommitdiffstats
path: root/library/Director/TranslationDummy.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/TranslationDummy.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/library/Director/TranslationDummy.php b/library/Director/TranslationDummy.php
new file mode 100644
index 0000000..937cc0b
--- /dev/null
+++ b/library/Director/TranslationDummy.php
@@ -0,0 +1,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');
+ }
+}