From f1686932cb600bba3f2246183e609ce2220b27c6 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Wed, 7 May 2014 18:42:18 -0700 Subject: [PATCH] Change ultra-fallback to en_US For PR #169 --- src/js/intl/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/intl/index.js b/src/js/intl/index.js index 42ae86b0..31e5d490 100644 --- a/src/js/intl/index.js +++ b/src/js/intl/index.js @@ -50,7 +50,7 @@ var str = exports.str = function(key, params) { if (!strings[key][locale]) { // try falling back to another locale if in the map - locale = fallbackMap[locale] || locale; + locale = fallbackMap[locale] || getDefaultLocale(); } if (!strings[key][locale]) {