From a90a920598302c155efa5b1f32e19edc2bade9b7 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sun, 5 May 2019 11:08:19 +0200 Subject: [PATCH] wizard: translate typehint as well --- src/www/wizard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/www/wizard.php b/src/www/wizard.php index a0d52465c..f7b6fb77b 100644 --- a/src/www/wizard.php +++ b/src/www/wizard.php @@ -875,7 +875,7 @@ include("head.inc"); echo " />\n"; if ($field['typehint'] != '') { - echo $field['typehint']; + echo gettext($field['typehint']); } if ($field['description'] != '') { @@ -886,7 +886,7 @@ include("head.inc"); } if ($field['type'] != 'checkbox' && $field['typehint'] != '') { - echo $field['typehint']; + echo gettext($field['typehint']); } if (!$field['combinefieldsbegin']) {