multiple-select-vanilla
Version:
This lib allows you to select multiple elements with checkboxes
33 lines (29 loc) • 702 B
text/typescript
/**
* Multiple Select de-DE translation
* Author: Bugi Goertz
*/
import type { MultipleSelectLocale } from '../models/locale.interface.js';
export const German: MultipleSelectLocale = {
formatSelectAll() {
return '[Alles auswählen]';
},
formatAllSelected() {
return 'Alles ausgewählt';
},
formatCountSelected(count: number, total: number) {
return `${count} von ${total} ausgewählt`;
},
formatNoMatchesFound() {
return 'Keine Ergebnisse';
},
formatOkButton() {
return 'Schließen';
},
formatLazyLoading() {
return 'Jetzt wird geladen...';
},
formatLazyFailed() {
return 'Daten konnten nicht geladen werden';
},
};
export default German;