From a6e43cc64c4948d17f3b01211d4402a63e05ca27 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Fri, 5 Sep 2014 20:34:00 -0700 Subject: [PATCH] style(ngLocale): change es-us lcoale currency format change es-us locale currency format, before: $1.234,56 - after: $1,234.56 closes #8931 --- src/ngLocale/angular-locale_es-us.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ngLocale/angular-locale_es-us.js b/src/ngLocale/angular-locale_es-us.js index 44efb6859e05..7e19eced430f 100644 --- a/src/ngLocale/angular-locale_es-us.js +++ b/src/ngLocale/angular-locale_es-us.js @@ -64,8 +64,8 @@ $provide.value("$locale", { }, "NUMBER_FORMATS": { "CURRENCY_SYM": "\u20ac", - "DECIMAL_SEP": ",", - "GROUP_SEP": ".", + "DECIMAL_SEP": ".", + "GROUP_SEP": ",", "PATTERNS": [ { "gSize": 3,