1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import $ from 'jquery';
|
| function setLocale(locale){
| var fd = new FormData();
| fd.append('language', locale);
|
| $.ajax({
| url: `/i18n/setlang/`,
| contentType: false,
| processData: false,
| data: fd,
| type: 'POST'
| }).done(function(){
| location.reload(true);
| }).fail(function(e){
| console.error("Cannot set locale", e);
| });
| }
|
| export { setLocale };
|
|