diff --git a/modules/setup/application/views/scripts/form/setup-modules.phtml b/modules/setup/application/views/scripts/form/setup-modules.phtml
index a352803d7..304aad9b8 100644
--- a/modules/setup/application/views/scripts/form/setup-modules.phtml
+++ b/modules/setup/application/views/scripts/form/setup-modules.phtml
@@ -4,8 +4,8 @@ use Icinga\Web\Wizard;
?>
diff --git a/modules/setup/application/views/scripts/form/setup-requirements.phtml b/modules/setup/application/views/scripts/form/setup-requirements.phtml
index ca2556b95..09d337a02 100644
--- a/modules/setup/application/views/scripts/form/setup-requirements.phtml
+++ b/modules/setup/application/views/scripts/form/setup-requirements.phtml
@@ -22,7 +22,7 @@ $requirements = $form->getRequirements();
|
|
diff --git a/modules/setup/application/views/scripts/form/setup-summary.phtml b/modules/setup/application/views/scripts/form/setup-summary.phtml
index 714416833..fa354feb5 100644
--- a/modules/setup/application/views/scripts/form/setup-summary.phtml
+++ b/modules/setup/application/views/scripts/form/setup-summary.phtml
@@ -4,8 +4,7 @@ use Icinga\Web\Wizard;
?>
= sprintf(
- mt(
- 'setup',
+ $this->translate(
'The wizard is now complete. You can review the changes supposed to be made before setting up %1$s.'
. ' Make sure that everything is correct (Feel free to navigate back to make any corrections!) so'
. ' that you can start using %1$s right after it has successfully been set up.'
diff --git a/modules/setup/application/views/scripts/form/setup-welcome.phtml b/modules/setup/application/views/scripts/form/setup-welcome.phtml
index 8d3ba67c5..aa51ffba6 100644
--- a/modules/setup/application/views/scripts/form/setup-welcome.phtml
+++ b/modules/setup/application/views/scripts/form/setup-welcome.phtml
@@ -11,16 +11,14 @@ $cliPath = realpath(Icinga::app()->getApplicationDir() . '/../bin/icingacli');
?>
-
= mt('setup', 'Welcome to the configuration of Icinga Web 2!') ?>
+
= $this->translate('Welcome to the configuration of Icinga Web 2!') ?>
-
= mt(
- 'setup',
+
= $this->translate(
'You\'ve already completed the configuration of Icinga Web 2. Note that most of your configuration'
. ' files will be overwritten in case you\'ll re-configure Icinga Web 2 using this wizard!'
); ?>
-
= mt(
- 'setup',
+
= $this->translate(
'This wizard will guide you through the configuration of Icinga Web 2. Once completed and successfully'
. ' finished you are able to log in and to explore all the new and stunning features!'
); ?>
@@ -39,23 +37,22 @@ $cliPath = realpath(Icinga::app()->getApplicationDir() . '/../bin/icingacli');
=
- mt(
- 'setup',
+ $this->translate(
'To run this wizard a user needs to authenticate using a token which is usually'
. ' provided to him by an administrator who\'d followed the instructions below.'
); ?>
-
= mt('setup', 'If you\'ve got the IcingaCLI installed you can do the following:'); ?>
+
= $this->translate('If you\'ve got the IcingaCLI installed you can do the following:'); ?>
= $cliPath ? $cliPath : 'icingacli'; ?> setup config directory --group = ($user = Platform::getPhpUser()) !== null ? $user : 'your_webserver_group'; ?>= $configDir !== '/etc/icingaweb2' ? ' --config ' . $configDir : ''; ?>;
= $cliPath ? $cliPath : 'icingacli'; ?> setup token create;
-
= mt('setup', 'In case the IcingaCLI is missing you can create the token manually:'); ?>
+
= $this->translate('In case the IcingaCLI is missing you can create the token manually:'); ?>
su = ($user = Platform::getPhpUser()) !== null ? $user : 'your_webserver_user'; ?> -c "mkdir -m 2770 = dirname($setupTokenPath); ?>; head -c 12 /dev/urandom | base64 | tee = $setupTokenPath; ?>; chmod 0660 = $setupTokenPath; ?>;";
= sprintf(
- mt('setup', 'Please see the %s for an extensive description on how to access and use this wizard.'),
- '' . mt('setup', 'Icinga Web 2 documentation') . '' // TODO: Add link to iw2 docs which points to the installation topic
+ $this->translate('Please see the %s for an extensive description on how to access and use this wizard.'),
+ '' . $this->translate('Icinga Web 2 documentation') . '' // TODO: Add link to iw2 docs which points to the installation topic
); ?>
diff --git a/modules/setup/application/views/scripts/index/index.phtml b/modules/setup/application/views/scripts/index/index.phtml
index 1c614a0a6..d12343d5b 100644
--- a/modules/setup/application/views/scripts/index/index.phtml
+++ b/modules/setup/application/views/scripts/index/index.phtml
@@ -30,7 +30,7 @@ if ($notifications->hasMessages()) {
= $this->img('img/logo_icinga_big.png'); ?>
-
= mt('setup', 'Welcome', 'setup.progress'); ?>
+ = $this->translate('Welcome', 'setup.progress'); ?>
0 ? 'complete' : (
$maxProgress > 0 ? 'visited' : 'active'
); ?>
@@ -54,7 +54,7 @@ if ($notifications->hasMessages()) {
-
= mt('setup', 'Requirements', 'setup.progress'); ?>
+ = $this->translate('Requirements', 'setup.progress'); ?>
2 ? ' complete' : (
$maxProgress > 2 ? ' visited' : (
$currentPos === 2 ? ' active' : ''
@@ -67,7 +67,7 @@ if ($notifications->hasMessages()) {
-
= mt('setup', 'Configuration', 'setup.progress'); ?>
+
= $this->translate('Configuration', 'setup.progress'); ?>
-
= mt('setup', 'Finish', 'setup.progress'); ?>
+
= $this->translate('Finish', 'setup.progress'); ?>
|
diff --git a/modules/setup/application/views/scripts/index/parts/finish.phtml b/modules/setup/application/views/scripts/index/parts/finish.phtml
index 94217017d..e695d72ce 100644
--- a/modules/setup/application/views/scripts/index/parts/finish.phtml
+++ b/modules/setup/application/views/scripts/index/parts/finish.phtml
@@ -11,16 +11,16 @@
- = mt('setup', 'Congratulations! Icinga Web 2 has been successfully set up.'); ?>
+ = $this->translate('Congratulations! Icinga Web 2 has been successfully set up.'); ?>
- = mt('setup', 'Sorry! Failed to set up Icinga Web 2 successfully.'); ?>
+ = $this->translate('Sorry! Failed to set up Icinga Web 2 successfully.'); ?>
\ No newline at end of file