Merge pull request #1653 from tdonohue/fix_rss_accessibility

Fix RSS accessibility issue: link has no discernible text
This commit is contained in:
Tim Donohue
2022-05-13 17:34:18 -05:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
<ng-container *ngIf="(isEnabled$ | async) && (hasRoute('home') || hasRoute('collections') || hasRoute('communities'))">
<div *ngIf="route$ | async as route" class="d-inline-block float-right margin-right">
<a [href]="route" class="btn btn-secondary"><i class="fas fa-rss-square"></i></a>
<a [href]="route" class="btn btn-secondary" [title]="'feed.description' | translate" [attr.aria-label]="'feed.description' | translate"><i class="fas fa-rss-square"></i></a>
</div>
</ng-container>

View File

@@ -1401,6 +1401,9 @@
"error.validation.groupExists": "This group already exists",
"feed.description": "Syndication feed",
"file-section.error.header": "Error obtaining files for this item",