blob: 9e817b8f6a419c72a5fbecf30654fb6b16d9cea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { $gettext } from '../lib/gettext.js';
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')
}
});
});
|