aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/bootstrap/multi_select.js
blob: 6e033af6c1b217dcb1f4d938b7f392ae381ba46e (plain)
1
2
3
4
5
6
7
8
9
10
11
import { $gettext } from '../lib/gettext.js';

STUDIP.domReady(() => {
    $.extend($.ui.multiselect, {
        locale: {
            addAll: $gettext('Alle hinzufügen'),
            removeAll: $gettext('Alle entfernen'),
            itemsCount: $gettext('ausgewählt')
        }
    });
});