@@ -169,13 +169,15 @@ export default class DoorkeyListPage extends ExtensionPage {
169169 < nav className = "DoorkeyListPage-gridPagination" >
170170 < Button
171171 disabled = { this . pageNumber === 0 }
172+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.pagination.first_page_button' ) }
172173 title = { app . translator . trans ( 'fof-doorman.admin.list.pagination.first_page_button' ) }
173174 onclick = { this . goToPage . bind ( this , 1 ) }
174175 icon = "fas fa-step-backward"
175176 className = "Button Button--icon DoorkeyListPage-firstPageBtn"
176177 />
177178 < Button
178179 disabled = { this . pageNumber === 0 }
180+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.pagination.back_button' ) }
179181 title = { app . translator . trans ( 'fof-doorman.admin.list.pagination.back_button' ) }
180182 onclick = { this . previousPage . bind ( this ) }
181183 icon = "fas fa-chevron-left"
@@ -222,13 +224,15 @@ export default class DoorkeyListPage extends ExtensionPage {
222224 </ span >
223225 < Button
224226 disabled = { ! this . moreData }
227+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.pagination.next_button' ) }
225228 title = { app . translator . trans ( 'fof-doorman.admin.list.pagination.next_button' ) }
226229 onclick = { this . nextPage . bind ( this ) }
227230 icon = "fas fa-chevron-right"
228231 className = "Button Button--icon DoorkeyListPage-nextBtn"
229232 />
230233 < Button
231234 disabled = { ! this . moreData }
235+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.pagination.last_page_button' ) }
232236 title = { app . translator . trans ( 'fof-doorman.admin.list.pagination.last_page_button' ) }
233237 onclick = { this . goToPage . bind ( this , this . getTotalPageCount ( ) ) }
234238 icon = "fas fa-step-forward"
@@ -364,19 +368,19 @@ export default class DoorkeyListPage extends ExtensionPage {
364368 content : ( doorkey : Doorkey ) => (
365369 < >
366370 < Button
367- aria-label = { app . translator . trans ( 'fof-doorman.admin.page.doorkey.heading .notify' ) }
371+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.actions .notify' ) }
368372 className = "Button Button--icon Doorkey-button"
369373 icon = "fa fa-envelope fa-fw"
370374 onclick = { ( ) => app . modal . show ( ( ) => import ( './InviteCodeModal' ) , { doorkey : doorkey } ) }
371375 />
372376 < Button
373- aria-label = { app . translator . trans ( 'fof-doorman.admin.page.doorkey.heading .edit' ) }
377+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.actions .edit' ) }
374378 className = "Button Button--icon Doorkey-button"
375379 icon = "fas fa-pencil-alt"
376380 onclick = { ( ) => app . modal . show ( ( ) => import ( './EditDoorkeyModal' ) , { doorkey } ) }
377381 />
378382 < Button
379- aria-label = { app . translator . trans ( 'fof-doorman.admin.page.doorkey.heading .delete' ) }
383+ aria-label = { app . translator . trans ( 'fof-doorman.admin.list.actions .delete' ) }
380384 className = "Button Button--danger Button--icon"
381385 icon = { `fas ${ this . loadingDelete [ doorkey . id ( ) || '' ] ? 'fa-circle-notch fa-spin' : 'fa-times' } fa-fw` }
382386 onclick = { ( ) => this . deleteDoorkey ( doorkey ) }
0 commit comments