blob: 5996bd7001e653d33952b23d0f460b95245dc3ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { $gettext } from '../lib/gettext';
import eventBus from "../lib/event-bus.ts";
eventBus.on('studip:set-locale', () => {
$.extend($.ui.multiselect, {
locale: {
addAll: $gettext('Alle hinzufügen'),
removeAll: $gettext('Alle entfernen'),
itemsCount: $gettext('ausgewählt')
}
});
});
|