Fixes #1498: Two-part locale specs in lang cookie wouldn't be read correctly

This commit is contained in:
Marcel Klehr 2013-02-17 21:35:46 +01:00
parent 93d58b93be
commit 9ca2275432
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
(function(document) {
// Set language for l10n
var language = document.cookie.match(/language=((\w{2,3})(-w+)?)/);
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'])
})