We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New language relevant PR in upstream repo: joomla/joomla-cms#43600 Here are the upstream changes:
diff --git a/administrator/language/en-GB/plg_content_pagenavigation.ini b/administrator/language/en-GB/plg_content_pagenavigation.ini index ae698f5398d5b..5b7f4f6ff3f2a 100644 --- a/administrator/language/en-GB/plg_content_pagenavigation.ini +++ b/administrator/language/en-GB/plg_content_pagenavigation.ini @@ -4,6 +4,7 @@ ; Note : All ini files need to be saved as UTF-8 PLG_CONTENT_PAGENAVIGATION="Content - Page Navigation" +PLG_PAGENAVIGATION_ARIA_LABEL="Page Navigation" PLG_PAGENAVIGATION_FIELD_DISPLAY_LABEL="Link Text" PLG_PAGENAVIGATION_FIELD_POSITION_LABEL="Position" PLG_PAGENAVIGATION_FIELD_RELATIVE_LABEL="Relative To" diff --git a/plugins/content/pagenavigation/tmpl/default.php b/plugins/content/pagenavigation/tmpl/default.php index 1245c39e3d4ac..d9b8bcc5d7a50 100644 --- a/plugins/content/pagenavigation/tmpl/default.php +++ b/plugins/content/pagenavigation/tmpl/default.php @@ -13,10 +13,12 @@ use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; +$this->loadLanguage(); + $lang = $this->getLanguage(); ?> -<nav class="pagenavigation"> +<nav class="pagenavigation" aria-label="<?php echo Text::_('PLG_PAGENAVIGATION_ARIA_LABEL'); ?>"> <span class="pagination ms-0"> <?php if ($row->prev) : $direction = $lang->isRtl() ? 'right' : 'left'; ?>
The text was updated successfully, but these errors were encountered:
[a11y] Fix missing aria-label in pagenavigation joomlagerman#3202
0089bb7
PR #3203
Sorry, something went wrong.
Merge pull request #3203 from zero-24/3202
4785d3b
[a11y] Fix missing aria-label in pagenavigation #3202
tecpromotion
Successfully merging a pull request may close this issue.
New language relevant PR in upstream repo: joomla/joomla-cms#43600 Here are the upstream changes:
Click to expand the diff!
The text was updated successfully, but these errors were encountered: