From 666c401a4064cf4c36a5f1e83946fcf9bcac6b42 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 23 Jul 2015 16:18:35 +0200 Subject: [PATCH] BackendConfigForm: Translate exceptions shown to the user --- .../application/forms/Config/BackendConfigForm.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/monitoring/application/forms/Config/BackendConfigForm.php b/modules/monitoring/application/forms/Config/BackendConfigForm.php index 504ec9a59..d2fe4e938 100644 --- a/modules/monitoring/application/forms/Config/BackendConfigForm.php +++ b/modules/monitoring/application/forms/Config/BackendConfigForm.php @@ -109,7 +109,10 @@ class BackendConfigForm extends ConfigForm $backendName = $data['name']; if ($this->config->hasSection($backendName)) { - throw new IcingaException('A monitoring backend with the name "%s" does already exist', $backendName); + throw new IcingaException( + $this->translate('A monitoring backend with the name "%s" does already exist'), + $backendName + ); } unset($data['name']);