Skip to content

Commit

Permalink
Install: add missing translation (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcoder87 authored Sep 29, 2023
1 parent ea09c9f commit 65a875f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/modules/install/layouts/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@
<?php if ($this->getRequest()->getActionName() === 'finish') : ?>
<div class="pull-right">
<a target="_blank" href="<?=$this->getUrl() ?>" class="btn btn-success">
Frontend
<?=$this->getTrans('frontend') ?>
</a>
<a target="_blank" href="<?=$this->getUrl() . '/admin' ?>" class="btn btn-primary">
Administration
<?=$this->getTrans('administration') ?>
</a>
</div>
<?php endif; ?>
Expand Down
2 changes: 2 additions & 0 deletions application/modules/install/translations/de.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,6 @@
'private' => 'Private Seite',
'clan' => 'Clan Seite',
'dependencyMessage' => 'Es wurden weitere Module ausgewählt, um Abhängigkeiten zu erfüllen.',
'frontend' => 'Frontend',
'administration' => 'Administration',
];
2 changes: 2 additions & 0 deletions application/modules/install/translations/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,6 @@
'private' => 'private site',
'clan' => 'clan site',
'dependencyMessage' => 'Other modules were selected to fullfill dependencies.',
'frontend' => 'Frontend',
'administration' => 'Administration',
];

0 comments on commit 65a875f

Please sign in to comment.