mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-23 23:44:53 +00:00
Add aria-label
to Notifications page “Recent activity” filter widget
Adding `aria-label` to the filter widget, with `listbox` role assigned to allow screen readers parse read the content. Bug: T244543 Change-Id: I72a4045abe9a7c391ee3fe471ed944d96259b79e
This commit is contained in:
parent
9ea6251a51
commit
b49fdb88c3
|
@ -404,7 +404,8 @@
|
|||
"echo-mark-all-as-read",
|
||||
"echo-learn-more",
|
||||
"mypreferences",
|
||||
"echo-specialpage-section-markread"
|
||||
"echo-specialpage-section-markread",
|
||||
"echo-specialpage-pagefilterwidget-aria-label"
|
||||
],
|
||||
"targets": [
|
||||
"desktop",
|
||||
|
|
|
@ -109,6 +109,7 @@
|
|||
"echo-specialpage-section-markread": "Mark group as read",
|
||||
"echo-specialpage-markasread": "Notification: Mark as read",
|
||||
"echo-specialpage-markasread-invalid-id": "Invalid event ID",
|
||||
"echo-specialpage-pagefilterwidget-aria-label": "Filter by wiki and page title",
|
||||
"echo-specialpage-pagination-numnotifications": "$1 {{PLURAL:$1|notification|notifications}}",
|
||||
"echo-specialpage-pagination-range": "$1 - $2",
|
||||
"echo-specialpage-pagefilters-title": "Recent activity",
|
||||
|
|
|
@ -111,6 +111,7 @@
|
|||
"echo-specialpage-section-markread": "Label for the button to mark notifications in the given section as read in [[Special:Notifications]]",
|
||||
"echo-specialpage-markasread": "Special page title for Special:NotificationsMarkRead for marking specific notification as read.",
|
||||
"echo-specialpage-markasread-invalid-id": "Error message shown to users who try to mark a notification as read with an invalid event ID.",
|
||||
"echo-specialpage-pagefilterwidget-aria-label": "Screen readers use this name to identify the recent activities (pages with unread notifications) wiki and pages grouped lists.",
|
||||
"echo-specialpage-pagination-numnotifications": "Label noting the number of notifications displayed in the page. This only appears if there is a single page of results.\n\nParameters:\n* $1 - Number of notifications in the page.\n{{Identical|Notification}}",
|
||||
"echo-specialpage-pagination-range": "Label noting the range of the notifications displayed in the page. This only appears if there are multiple pages of results available.\n\nParameters:\n* $1 - Number of the first item.\n* $2 - Number of the last item.",
|
||||
"echo-specialpage-pagefilters-title": "Title of the page filter box in Special:Notifications page.",
|
||||
|
|
|
@ -43,7 +43,8 @@
|
|||
// Initialization
|
||||
this.populateDataFromModel();
|
||||
this.$element
|
||||
.addClass( 'mw-echo-ui-pageFilterWidget' );
|
||||
.addClass( 'mw-echo-ui-pageFilterWidget' )
|
||||
.attr( 'aria-label', mw.message( 'echo-specialpage-pagefilterwidget-aria-label' ).text() );
|
||||
};
|
||||
|
||||
/* Initialization */
|
||||
|
|
Loading…
Reference in a new issue