Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions administrator/language/en-GB/tpl_atum.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ TPL_ATUM_IMAGE_SETTINGS_LABEL="Image Settings"
TPL_ATUM_LOGIN_LOGO_LABEL="Login Logo"
TPL_ATUM_LOGIN_SIDEBAR_VIEW_WEBSITE="view website"
TPL_ATUM_LOGIN_SITE_TITLE="%s - Administrator Login"
TPL_ATUM_MORE_ELEMENTS="More Elements"
TPL_ATUM_SITE_LOGO_LABEL="Brand Large"
TPL_ATUM_SITE_LOGO_SMALL_LABEL="Brand Small"
TPL_ATUM_SITENAME_LABEL="Site Name"
Expand Down
2 changes: 2 additions & 0 deletions administrator/templates/atum/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
HTMLHelper::getServiceRegistry()->register('atum', 'JHtmlAtum');
HTMLHelper::_('atum.rootcolors', $this->params);

Text::script('TPL_ATUM_MORE_ELEMENTS');

?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"<?php echo $a11y_font ? ' class="a11y_font"' : ''; ?>>
Expand Down
2 changes: 1 addition & 1 deletion build/media_source/templates/atum/js/template.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
const headerMoreBtn = document.createElement('button');
headerMoreBtn.className = 'header-more-btn d-flex flex-column align-items-stretch';
headerMoreBtn.setAttribute('type', 'button');
headerMoreBtn.setAttribute('title', 'More Elements');
headerMoreBtn.setAttribute('title', Joomla.Text._('TPL_ATUM_MORE_ELEMENTS'));
const spanFa = document.createElement('span');
spanFa.className = 'fas fa-ellipsis-h';
spanFa.setAttribute('aria-hidden', 'true');
Expand Down