From d698af153772ca4351ad3b23fbb987fc749890af Mon Sep 17 00:00:00 2001 From: zhangab Date: Wed, 18 Apr 2018 09:11:56 +0800 Subject: Fix Security/Vulnerability problems Change-Id: Ie0f2c9e0794941d9b9a7f00a6c3d349269d98ed1 Issue-ID: USECASEUI-104 Signed-off-by: zhangab --- .../angular-1.4.8/i18n/angular-locale_pt-br.js | 110 --------------------- 1 file changed, 110 deletions(-) delete mode 100644 usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_pt-br.js (limited to 'usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_pt-br.js') diff --git a/usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_pt-br.js b/usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_pt-br.js deleted file mode 100644 index 146aad33..00000000 --- a/usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_pt-br.js +++ /dev/null @@ -1,110 +0,0 @@ -'use strict'; -angular.module("ngLocale", [], ["$provide", function($provide) { -var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; -$provide.value("$locale", { - "DATETIME_FORMATS": { - "AMPMS": [ - "AM", - "PM" - ], - "DAY": [ - "domingo", - "segunda-feira", - "ter\u00e7a-feira", - "quarta-feira", - "quinta-feira", - "sexta-feira", - "s\u00e1bado" - ], - "ERANAMES": [ - "Antes de Cristo", - "Ano do Senhor" - ], - "ERAS": [ - "a.C.", - "d.C." - ], - "FIRSTDAYOFWEEK": 6, - "MONTH": [ - "janeiro", - "fevereiro", - "mar\u00e7o", - "abril", - "maio", - "junho", - "julho", - "agosto", - "setembro", - "outubro", - "novembro", - "dezembro" - ], - "SHORTDAY": [ - "dom", - "seg", - "ter", - "qua", - "qui", - "sex", - "s\u00e1b" - ], - "SHORTMONTH": [ - "jan", - "fev", - "mar", - "abr", - "mai", - "jun", - "jul", - "ago", - "set", - "out", - "nov", - "dez" - ], - "WEEKENDRANGE": [ - 5, - 6 - ], - "fullDate": "EEEE, d 'de' MMMM 'de' y", - "longDate": "d 'de' MMMM 'de' y", - "medium": "d 'de' MMM 'de' y HH:mm:ss", - "mediumDate": "d 'de' MMM 'de' y", - "mediumTime": "HH:mm:ss", - "short": "dd/MM/yy HH:mm", - "shortDate": "dd/MM/yy", - "shortTime": "HH:mm" - }, - "NUMBER_FORMATS": { - "CURRENCY_SYM": "R$", - "DECIMAL_SEP": ",", - "GROUP_SEP": ".", - "PATTERNS": [ - { - "gSize": 3, - "lgSize": 3, - "maxFrac": 3, - "minFrac": 0, - "minInt": 1, - "negPre": "-", - "negSuf": "", - "posPre": "", - "posSuf": "" - }, - { - "gSize": 3, - "lgSize": 3, - "maxFrac": 2, - "minFrac": 2, - "minInt": 1, - "negPre": "-\u00a4", - "negSuf": "", - "posPre": "\u00a4", - "posSuf": "" - } - ] - }, - "id": "pt-br", - "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} -}); -}]); -- cgit 1.2.3-korg