I use Grav and Gantry Helium.
I have a function
// Handle a click on the hint button
hintButton.addEventListener('click', function () {
if (score >= 3) {
score -= 3;
scoreElement.textContent = score;
hintImage.style.display = 'block';
setTimeout(() => {
hintImage.style.display = 'none';
}, 12000);
} else {
showNotification('Text Text Text Text', 'error');
}
});
How to showNotification 'Text Text Text Text' in different languages?
In user/languages/ I have de.yaml en.yaml.
Me and claude.ai haven't found a solution yet(.