export default function getLocalization(stringKey) { if (typeof window.air_light_screenReaderText === 'undefined' || typeof window.air_light_screenReaderText[stringKey] === 'undefined') { // eslint-disable-next-line no-console console.error(`Missing translation for ${stringKey}`); return ''; } return window.air_light_screenReaderText[stringKey]; }