We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems like the newtheme script only replaces one occurence per line resulting in the script being broken.
newtheme
Project name "test_project" results in code like this (the second clause after || is broken):
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]; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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):
The text was updated successfully, but these errors were encountered: