Seems like the `newtheme` script only replaces one occurence per line resulting in the script being broken. Project name "test_project" results in code like this (the second clause after || is broken): ```js export default function getLocalization(stringKey) { if (typeof window.test_project_screenReaderText === 'undefined' || typeof window.air_light_screenReaderText[stringKey] === 'undefined') { // eslint-disable-next-line no-console console.error(`Missing translation for ${stringKey}`); return ''; } return window.test_project_screenReaderText[stringKey]; } ```