i18n & accessibility
Localise the table chrome via the language option (try German/French). DataTables also adds ARIA roles, sortable-column labels and live-region announcements automatically.
| ID | Name | Position | Office | Age | Start date | Salary | Status |
|---|
Accessibility: DataTables sets role/aria-sort on headers and uses an ARIA live region for paging/search announcements. Keep a meaningful <caption> or aria-label on the table for screen-reader context.
lang = signal('Deutsch');
options = computed<Config>(() => ({
language: {
search: 'Suche:',
lengthMenu: '_MENU_ Einträge pro Seite',
info: '_START_ bis _END_ von _TOTAL_ Einträgen',
paginate: { next: 'Nächste', previous: 'Vorherige' },
},
}));