botbuilder
Advanced tools
Comparing version 3.4.3 to 3.4.4
@@ -67,2 +67,3 @@ "use strict"; | ||
var fbLocale = this.getFallback(locale); | ||
ns = ns ? ns.toLocaleLowerCase() : null; | ||
var key = this.createKey(ns, msgid); | ||
@@ -169,3 +170,3 @@ var text = this.getEntry(locale, key); | ||
.then(function (data) { | ||
var ns = path.parse(filename).name; | ||
var ns = path.parse(filename).name.toLocaleLowerCase(); | ||
if (ns == 'index') { | ||
@@ -201,3 +202,3 @@ ns = null; | ||
DefaultLocalizer.prototype.escapeKey = function (key) { | ||
return key.replace(/:/g, "--"); | ||
return key.replace(/:/g, "--").toLowerCase(); | ||
}; | ||
@@ -204,0 +205,0 @@ DefaultLocalizer.prototype.getEntry = function (locale, key) { |
@@ -5,3 +5,3 @@ { | ||
"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.", | ||
"version": "3.4.3", | ||
"version": "3.4.4", | ||
"license": "MIT", | ||
@@ -8,0 +8,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
332927
7295