Last active
December 13, 2017 19:54
-
-
Save DonnchaC/3d6af98f2b9b72af0a9c941165352bcc to your computer and use it in GitHub Desktop.
Show a translated page using only CSS and without leaking the language choice to the webserver
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
/* Hide the original text when a non-default language is selected */ | |
#french:target ~ [data-i18n-fr], | |
#french:target ~ * [data-i18n-fr], | |
#french:target ~ * * [data-i18n-fr], | |
#french:target ~ * * * [data-i18n-fr] { | |
display: block;text-indent: -9999px; | |
line-height:0; | |
} | |
/* Replace text with the translated string from the attribute */ | |
#french:target ~ [data-i18n-fr]:after, | |
#french:target ~ * [data-i18n-fr]:after, | |
#french:target ~ * * [data-i18n-fr]:after, | |
#french:target ~ * * * [data-i18n-fr]:after { | |
content: attr(data-i18n-fr); | |
display: block; | |
line-height: initial; | |
text-indent:0; | |
} | |
</style> | |
</head> | |
<body> | |
<span>Select language:</span> | |
<a id="english" href="#english">English</a> | |
<a id="french" href="#french">French</a> | |
<h2><span data-i18n-fr="French title">English title</span></h2> | |
<p><span data-i18n-fr="French lorem ipsum dolor sit amet">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras eget faucibus lorem, nec ornare</span></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment