Hey Marius,
thanks for Following Up. You are right, those strings are set within CSS and therefore aren’t translatable via the backend.
Instead you can add the Following Code to the “Custom CSS” Field within the Coming Soon Admin Panel and just adjust the content part of each declartion with your translations:
.flip-clock-divider .flip-clock-label {
text-indent: -10000px;
}
.flip-clock-divider .flip-clock-label:before {
float:left;
text-indent:0;
}
.flip-clock-divider.days .flip-clock-label:before {
content:'Days'
}
.flip-clock-divider.hours .flip-clock-label:before {
content:'Hours'
}
.flip-clock-divider.minutes .flip-clock-label:before {
content:'Minutes'
}
.flip-clock-divider.seconds .flip-clock-label:before {
content:'Seconds'
}
So for example, if you would like to translate “Minutes” to “Minuta” just replace that word within the CSS:
.flip-clock-divider.minutes .flip-clock-label:before {
content:'Minuta'
}