Update translate.js to use createAjaxRequest

pull/2558/head
Qstick 3 years ago
parent 0abb49cdeb
commit e6a4711be5

@ -1,22 +1,18 @@
import $ from 'jquery'; import createAjaxRequest from 'Utilities/createAjaxRequest';
function getTranslations() { function getTranslations() {
let localization = null; let localization = null;
const ajaxOptions = { const ajaxOptions = {
async: false, async: false,
type: 'GET',
global: false,
dataType: 'json', dataType: 'json',
url: `${window.Lidarr.apiRoot}/localization`, url: '/localization',
success: function(data) { success: function(data) {
localization = data.Strings; localization = data.Strings;
} }
}; };
ajaxOptions.headers = ajaxOptions.headers || {}; createAjaxRequest(ajaxOptions);
ajaxOptions.headers['X-Api-Key'] = window.Lidarr.apiKey;
$.ajax(ajaxOptions);
return localization; return localization;
} }

Loading…
Cancel
Save