Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/js/free-jqgrid.js

17 lines
585 B

import 'free-jqgrid';
import 'free-jqgrid/css/ui.jqgrid.bootstrap4.css';
let locale = document.querySelector('html').lang;
const langs = [
'ar', 'bg', 'bs', 'ca', 'cn', 'cs', 'da', 'de', 'el', 'en', 'es', 'fa', 'fi', 'fr', 'gl', 'he', 'hr', 'hu', 'id',
'is', 'it', 'ja', 'kr', 'lt', 'me', 'nl', 'no', 'pl', 'pt-br', 'pt', 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'th', 'tr',
'tw', 'ua', 'vi',
];
locale = langs.indexOf(locale) !== -1 ? locale : 'en';
import(
/* webpackChunkName: "../public/build/free-jqgrid/i18n/" */
'free-jqgrid/js/i18n/grid.locale-' + locale
);