Created
March 7, 2019 02:54
-
-
Save cvega93/5abde67ae492d9b8be8e6be50099a5a5 to your computer and use it in GitHub Desktop.
Translate Leadpages countdown to any language
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
//Paste this in After Body | |
//Search labels | |
const labels = document.querySelectorAll('.time-name'); | |
//Setup labels translated | |
let translation = ['Días', 'Horas','Minutos','Segundos']; | |
labels.forEach(function (label, index) { | |
//Replace each label | |
label.innerHTML = translation[index]; | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment