summaryrefslogtreecommitdiff
path: root/src/static/js/l10n.js
blob: 7556b74046873ad448b76ee9e36e65ed26beacf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(function(document) {
  // Set language for l10n
  var language = document.cookie.match(/language=(\w{2,3})(-w+)?/);
  if(language) language = language[1];
  
  html10n.bind('indexed', function() {
    html10n.localize([language, navigator.language, navigator.userLanguage, 'en'])
  })
  
  html10n.bind('localized', function() {
    document.documentElement.lang = html10n.getLanguage()
  })
})(document)