This commit is contained in:
Leo Lee (DEVDIV) 2015-02-03 11:42:50 -08:00
Родитель 45a68094ef
Коммит a7ed325ea9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -45,7 +45,7 @@ module TacoUtility {
public static bestLanguageMatchOrDefault(language: string, resourcesDir: string): string {
if (!language) {
return this.defaultLanguage;
return this.DefaultLanguage;
}
var supportedLanguages: string[] = [];
@ -68,7 +68,7 @@ module TacoUtility {
return primaryLang;
}
return this.defaultLanguage;
return this.DefaultLanguage;
}
public static loadLanguage(language: string, resourcesDir: string): any {