From e6957967f9afacadedab033d401ad5e4424e9528 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 23 Feb 2015 17:33:23 +0100 Subject: [PATCH] Wizard: Add proper titles to the button-like links on the last page refs #8458 --- .../views/scripts/index/parts/finish.phtml | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/modules/setup/application/views/scripts/index/parts/finish.phtml b/modules/setup/application/views/scripts/index/parts/finish.phtml index e695d72ce..0018d0d43 100644 --- a/modules/setup/application/views/scripts/index/parts/finish.phtml +++ b/modules/setup/application/views/scripts/index/parts/finish.phtml @@ -18,9 +18,25 @@
- + qlink( + $this->translate('Login to Icinga Web 2'), + 'authentication/login', + null, + array( + 'class' => 'button-like login', + 'title' => $this->translate('Show the login page of Icinga Web 2') + ) + ); ?> - translate('Back'); ?> + qlink( + $this->translate('Back'), + null, + null, + array( + 'class' => 'button-like', + 'title' => $this->translate('Show previous wizard-page') + ) + ); ?>
\ No newline at end of file