update shared components

This commit is contained in:
Luke Pulverenti 2016-09-04 12:45:32 -04:00
parent 3842bf80e6
commit 53c56dceb4
2 changed files with 9 additions and 4 deletions

View file

@ -14,12 +14,12 @@
}, },
"devDependencies": {}, "devDependencies": {},
"ignore": [], "ignore": [],
"version": "1.4.211", "version": "1.4.212",
"_release": "1.4.211", "_release": "1.4.212",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "1.4.211", "tag": "1.4.212",
"commit": "4bf945b7b673c846bcef7420c15e95a88adf941f" "commit": "45cf1768cae1cc5bf3761a7154c429dffbd78378"
}, },
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.1", "_target": "^1.2.1",

View file

@ -81,6 +81,11 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana
return 'ca'; return 'ca';
} }
// normalize Swedish
if (lower == 'sv-se') {
return 'sv';
}
return lower; return lower;
} }