Skip to content

Instantly share code, notes, and snippets.

@hugohil
Created June 26, 2015 13:25
Show Gist options
  • Save hugohil/c8efc847dfc41867363e to your computer and use it in GitHub Desktop.
Save hugohil/c8efc847dfc41867363e to your computer and use it in GitHub Desktop.
internationalize
// You'll need to download i18n as well as jquery
// http://i18next.com/
// https://jquery.com/download/
$(document).ready(function(){
i18n.init({ lng: 'en-EN', load: 'current', fallbackLng: false }, function(t) {
$('[data-i18n]').i18n();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment