Skip to content
New issue

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

XWIKI-22484: The alternative for the home link on the logo does not mean anything #3510

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
#end
#end
<div id="companylogo">
<a href="$!xwiki.getURL($services.wiki.currentWikiDescriptor.mainPageReference)" title="Home" rel="home" #if(!$displayPageHeader)class="navbar-brand"#end>
<img src="$!logourl" alt="Wiki Logo"/>
<a href="$!xwiki.getURL($services.wiki.currentWikiDescriptor.mainPageReference)" rel="home" #if(!$displayPageHeader)class="navbar-brand"#end>
<span class="sr-only">$services.localization.render('core.document.header.companylogo.anchor.text')</span>
<img src="$!logourl" alt="$escapetool.xml($services.localization.render('core.document.header.companylogo.logo.text'))"/>
</a>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,9 @@ core.footer.modification=Last modified by {0} on {1}
## This label is only visible by AT users to help with understanding the meaning of the top section containing
## the page title and the info about the last modification of the page.
core.document.header.info.label=Page header
## These two text alternatives are only visible by AT users.
core.document.header.companylogo.anchor.text=Wiki home
core.document.header.companylogo.logo.text=Logo of the wiki
## This label is only visible by AT users to help with understanding the meaning of the top section containing
## the action buttons: 'Edit', 'Create' and 'More Actions'.
core.document.header.menu.nav.label=Page actions
Expand Down