diff --git a/module/VuFind/src/VuFind/Form/Form.php b/module/VuFind/src/VuFind/Form/Form.php index 019db07043c2d48be199b789f1940fe0be6da43c..7da118a665772730fbd2ee36b2936df1a96aea24 100644 --- a/module/VuFind/src/VuFind/Form/Form.php +++ b/module/VuFind/src/VuFind/Form/Form.php @@ -284,7 +284,11 @@ class Form extends \Zend\Form\Form implements $elements[] = $element; } - $elements[] = ['type' => 'submit', 'name' => 'submit', 'label' => 'Send']; + $elements[]= [ + 'type' => 'submit', + 'name' => 'submit', + 'label' => $this->translate('Send') + ]; return $elements; }