You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2016/07/15 07:19:00 UTC

[17/53] [partial] struts git commit: WW-4316 Moves archetypes into its own repo

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki-ke.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki-ke.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki-ke.js
deleted file mode 100644
index b049763..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki-ke.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "Kiroko",
-      "Hwa\u0129-in\u0129"
-    ],
-    "DAY": [
-      "Kiumia",
-      "Njumatat\u0169",
-      "Njumaine",
-      "Njumatana",
-      "Aramithi",
-      "Njumaa",
-      "Njumamothi"
-    ],
-    "ERANAMES": [
-      "Mbere ya Kristo",
-      "Thutha wa Kristo"
-    ],
-    "ERAS": [
-      "MK",
-      "TK"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "Njenuar\u0129",
-      "Mwere wa ker\u0129",
-      "Mwere wa gatat\u0169",
-      "Mwere wa kana",
-      "Mwere wa gatano",
-      "Mwere wa gatandat\u0169",
-      "Mwere wa m\u0169gwanja",
-      "Mwere wa kanana",
-      "Mwere wa kenda",
-      "Mwere wa ik\u0169mi",
-      "Mwere wa ik\u0169mi na \u0169mwe",
-      "Ndithemba"
-    ],
-    "SHORTDAY": [
-      "KMA",
-      "NTT",
-      "NMN",
-      "NMT",
-      "ART",
-      "NMA",
-      "NMM"
-    ],
-    "SHORTMONTH": [
-      "JEN",
-      "WKR",
-      "WGT",
-      "WKN",
-      "WTN",
-      "WTD",
-      "WMJ",
-      "WNN",
-      "WKD",
-      "WIK",
-      "WMW",
-      "DIT"
-    ],
-    "STANDALONEMONTH": [
-      "Njenuar\u0129",
-      "Mwere wa ker\u0129",
-      "Mwere wa gatat\u0169",
-      "Mwere wa kana",
-      "Mwere wa gatano",
-      "Mwere wa gatandat\u0169",
-      "Mwere wa m\u0169gwanja",
-      "Mwere wa kanana",
-      "Mwere wa kenda",
-      "Mwere wa ik\u0169mi",
-      "Mwere wa ik\u0169mi na \u0169mwe",
-      "Ndithemba"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y h:mm:ss a",
-    "mediumDate": "d MMM y",
-    "mediumTime": "h:mm:ss a",
-    "short": "dd/MM/y h:mm a",
-    "shortDate": "dd/MM/y",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "Ksh",
-    "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": "ki-ke",
-  "localeID": "ki_KE",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki.js
deleted file mode 100644
index f79a457..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ki.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "Kiroko",
-      "Hwa\u0129-in\u0129"
-    ],
-    "DAY": [
-      "Kiumia",
-      "Njumatat\u0169",
-      "Njumaine",
-      "Njumatana",
-      "Aramithi",
-      "Njumaa",
-      "Njumamothi"
-    ],
-    "ERANAMES": [
-      "Mbere ya Kristo",
-      "Thutha wa Kristo"
-    ],
-    "ERAS": [
-      "MK",
-      "TK"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "Njenuar\u0129",
-      "Mwere wa ker\u0129",
-      "Mwere wa gatat\u0169",
-      "Mwere wa kana",
-      "Mwere wa gatano",
-      "Mwere wa gatandat\u0169",
-      "Mwere wa m\u0169gwanja",
-      "Mwere wa kanana",
-      "Mwere wa kenda",
-      "Mwere wa ik\u0169mi",
-      "Mwere wa ik\u0169mi na \u0169mwe",
-      "Ndithemba"
-    ],
-    "SHORTDAY": [
-      "KMA",
-      "NTT",
-      "NMN",
-      "NMT",
-      "ART",
-      "NMA",
-      "NMM"
-    ],
-    "SHORTMONTH": [
-      "JEN",
-      "WKR",
-      "WGT",
-      "WKN",
-      "WTN",
-      "WTD",
-      "WMJ",
-      "WNN",
-      "WKD",
-      "WIK",
-      "WMW",
-      "DIT"
-    ],
-    "STANDALONEMONTH": [
-      "Njenuar\u0129",
-      "Mwere wa ker\u0129",
-      "Mwere wa gatat\u0169",
-      "Mwere wa kana",
-      "Mwere wa gatano",
-      "Mwere wa gatandat\u0169",
-      "Mwere wa m\u0169gwanja",
-      "Mwere wa kanana",
-      "Mwere wa kenda",
-      "Mwere wa ik\u0169mi",
-      "Mwere wa ik\u0169mi na \u0169mwe",
-      "Ndithemba"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y h:mm:ss a",
-    "mediumDate": "d MMM y",
-    "mediumTime": "h:mm:ss a",
-    "short": "dd/MM/y h:mm a",
-    "shortDate": "dd/MM/y",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "Ksh",
-    "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": "ki",
-  "localeID": "ki",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl-kz.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl-kz.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl-kz.js
deleted file mode 100644
index 20738da..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl-kz.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u0442\u0430\u04a3\u0435\u0440\u0442\u0435\u04a3\u0433\u0456",
-      "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d\u0433\u0456"
-    ],
-    "DAY": [
-      "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
-      "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456",
-      "\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0436\u04b1\u043c\u0430",
-      "\u0441\u0435\u043d\u0431\u0456"
-    ],
-    "ERANAMES": [
-      "\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437\u0493\u0430 \u0434\u0435\u0439\u0456\u043d",
-      "\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437"
-    ],
-    "ERAS": [
-      "\u0431.\u0437.\u0434.",
-      "\u0431.\u0437."
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "\u049b\u0430\u04a3\u0442\u0430\u0440",
-      "\u0430\u049b\u043f\u0430\u043d",
-      "\u043d\u0430\u0443\u0440\u044b\u0437",
-      "\u0441\u04d9\u0443\u0456\u0440",
-      "\u043c\u0430\u043c\u044b\u0440",
-      "\u043c\u0430\u0443\u0441\u044b\u043c",
-      "\u0448\u0456\u043b\u0434\u0435",
-      "\u0442\u0430\u043c\u044b\u0437",
-      "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
-      "\u049b\u0430\u0437\u0430\u043d",
-      "\u049b\u0430\u0440\u0430\u0448\u0430",
-      "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
-    ],
-    "SHORTDAY": [
-      "\u0436\u0435\u043a",
-      "\u0434\u04af\u0439",
-      "\u0441\u0435\u0439",
-      "\u0441\u04d9\u0440",
-      "\u0431\u0435\u0439",
-      "\u0436\u04b1\u043c\u0430",
-      "\u0441\u0435\u043d"
-    ],
-    "SHORTMONTH": [
-      "\u049b\u0430\u04a3.",
-      "\u0430\u049b\u043f.",
-      "\u043d\u0430\u0443.",
-      "\u0441\u04d9\u0443.",
-      "\u043c\u0430\u043c.",
-      "\u043c\u0430\u0443.",
-      "\u0448\u0456\u043b.",
-      "\u0442\u0430\u043c.",
-      "\u049b\u044b\u0440.",
-      "\u049b\u0430\u0437.",
-      "\u049b\u0430\u0440.",
-      "\u0436\u0435\u043b\u0442."
-    ],
-    "STANDALONEMONTH": [
-      "\u049b\u0430\u04a3\u0442\u0430\u0440",
-      "\u0430\u049b\u043f\u0430\u043d",
-      "\u043d\u0430\u0443\u0440\u044b\u0437",
-      "\u0441\u04d9\u0443\u0456\u0440",
-      "\u043c\u0430\u043c\u044b\u0440",
-      "\u043c\u0430\u0443\u0441\u044b\u043c",
-      "\u0448\u0456\u043b\u0434\u0435",
-      "\u0442\u0430\u043c\u044b\u0437",
-      "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
-      "\u049b\u0430\u0437\u0430\u043d",
-      "\u049b\u0430\u0440\u0430\u0448\u0430",
-      "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "y, dd-MMM HH:mm:ss",
-    "mediumDate": "y, dd-MMM",
-    "mediumTime": "HH:mm:ss",
-    "short": "dd/MM/yy HH:mm",
-    "shortDate": "dd/MM/yy",
-    "shortTime": "HH:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b8",
-    "DECIMAL_SEP": ",",
-    "GROUP_SEP": "\u00a0",
-    "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": "-",
-        "negSuf": "\u00a0\u00a4",
-        "posPre": "",
-        "posSuf": "\u00a0\u00a4"
-      }
-    ]
-  },
-  "id": "kk-cyrl-kz",
-  "localeID": "kk_Cyrl_KZ",
-  "pluralCat": function(n, opt_precision) {  if (n == 1) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl.js
deleted file mode 100644
index f716820..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk-cyrl.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u0442\u0430\u04a3\u0435\u0440\u0442\u0435\u04a3\u0433\u0456",
-      "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d\u0433\u0456"
-    ],
-    "DAY": [
-      "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
-      "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456",
-      "\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0436\u04b1\u043c\u0430",
-      "\u0441\u0435\u043d\u0431\u0456"
-    ],
-    "ERANAMES": [
-      "\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437\u0493\u0430 \u0434\u0435\u0439\u0456\u043d",
-      "\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437"
-    ],
-    "ERAS": [
-      "\u0431.\u0437.\u0434.",
-      "\u0431.\u0437."
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "\u049b\u0430\u04a3\u0442\u0430\u0440",
-      "\u0430\u049b\u043f\u0430\u043d",
-      "\u043d\u0430\u0443\u0440\u044b\u0437",
-      "\u0441\u04d9\u0443\u0456\u0440",
-      "\u043c\u0430\u043c\u044b\u0440",
-      "\u043c\u0430\u0443\u0441\u044b\u043c",
-      "\u0448\u0456\u043b\u0434\u0435",
-      "\u0442\u0430\u043c\u044b\u0437",
-      "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
-      "\u049b\u0430\u0437\u0430\u043d",
-      "\u049b\u0430\u0440\u0430\u0448\u0430",
-      "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
-    ],
-    "SHORTDAY": [
-      "\u0436\u0435\u043a",
-      "\u0434\u04af\u0439",
-      "\u0441\u0435\u0439",
-      "\u0441\u04d9\u0440",
-      "\u0431\u0435\u0439",
-      "\u0436\u04b1\u043c\u0430",
-      "\u0441\u0435\u043d"
-    ],
-    "SHORTMONTH": [
-      "\u049b\u0430\u04a3.",
-      "\u0430\u049b\u043f.",
-      "\u043d\u0430\u0443.",
-      "\u0441\u04d9\u0443.",
-      "\u043c\u0430\u043c.",
-      "\u043c\u0430\u0443.",
-      "\u0448\u0456\u043b.",
-      "\u0442\u0430\u043c.",
-      "\u049b\u044b\u0440.",
-      "\u049b\u0430\u0437.",
-      "\u049b\u0430\u0440.",
-      "\u0436\u0435\u043b\u0442."
-    ],
-    "STANDALONEMONTH": [
-      "\u049b\u0430\u04a3\u0442\u0430\u0440",
-      "\u0430\u049b\u043f\u0430\u043d",
-      "\u043d\u0430\u0443\u0440\u044b\u0437",
-      "\u0441\u04d9\u0443\u0456\u0440",
-      "\u043c\u0430\u043c\u044b\u0440",
-      "\u043c\u0430\u0443\u0441\u044b\u043c",
-      "\u0448\u0456\u043b\u0434\u0435",
-      "\u0442\u0430\u043c\u044b\u0437",
-      "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
-      "\u049b\u0430\u0437\u0430\u043d",
-      "\u049b\u0430\u0440\u0430\u0448\u0430",
-      "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "y, dd-MMM HH:mm:ss",
-    "mediumDate": "y, dd-MMM",
-    "mediumTime": "HH:mm:ss",
-    "short": "dd/MM/yy HH:mm",
-    "shortDate": "dd/MM/yy",
-    "shortTime": "HH:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b8",
-    "DECIMAL_SEP": ",",
-    "GROUP_SEP": "\u00a0",
-    "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": "-",
-        "negSuf": "\u00a0\u00a4",
-        "posPre": "",
-        "posSuf": "\u00a0\u00a4"
-      }
-    ]
-  },
-  "id": "kk-cyrl",
-  "localeID": "kk_Cyrl",
-  "pluralCat": function(n, opt_precision) {  if (n == 1) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk.js
deleted file mode 100644
index 976d500..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kk.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u0442\u0430\u04a3\u0435\u0440\u0442\u0435\u04a3\u0433\u0456",
-      "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d\u0433\u0456"
-    ],
-    "DAY": [
-      "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
-      "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456",
-      "\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456",
-      "\u0436\u04b1\u043c\u0430",
-      "\u0441\u0435\u043d\u0431\u0456"
-    ],
-    "ERANAMES": [
-      "\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437\u0493\u0430 \u0434\u0435\u0439\u0456\u043d",
-      "\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437"
-    ],
-    "ERAS": [
-      "\u0431.\u0437.\u0434.",
-      "\u0431.\u0437."
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "\u049b\u0430\u04a3\u0442\u0430\u0440",
-      "\u0430\u049b\u043f\u0430\u043d",
-      "\u043d\u0430\u0443\u0440\u044b\u0437",
-      "\u0441\u04d9\u0443\u0456\u0440",
-      "\u043c\u0430\u043c\u044b\u0440",
-      "\u043c\u0430\u0443\u0441\u044b\u043c",
-      "\u0448\u0456\u043b\u0434\u0435",
-      "\u0442\u0430\u043c\u044b\u0437",
-      "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
-      "\u049b\u0430\u0437\u0430\u043d",
-      "\u049b\u0430\u0440\u0430\u0448\u0430",
-      "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
-    ],
-    "SHORTDAY": [
-      "\u0436\u0435\u043a",
-      "\u0434\u04af\u0439",
-      "\u0441\u0435\u0439",
-      "\u0441\u04d9\u0440",
-      "\u0431\u0435\u0439",
-      "\u0436\u04b1\u043c\u0430",
-      "\u0441\u0435\u043d"
-    ],
-    "SHORTMONTH": [
-      "\u049b\u0430\u04a3.",
-      "\u0430\u049b\u043f.",
-      "\u043d\u0430\u0443.",
-      "\u0441\u04d9\u0443.",
-      "\u043c\u0430\u043c.",
-      "\u043c\u0430\u0443.",
-      "\u0448\u0456\u043b.",
-      "\u0442\u0430\u043c.",
-      "\u049b\u044b\u0440.",
-      "\u049b\u0430\u0437.",
-      "\u049b\u0430\u0440.",
-      "\u0436\u0435\u043b\u0442."
-    ],
-    "STANDALONEMONTH": [
-      "\u049b\u0430\u04a3\u0442\u0430\u0440",
-      "\u0430\u049b\u043f\u0430\u043d",
-      "\u043d\u0430\u0443\u0440\u044b\u0437",
-      "\u0441\u04d9\u0443\u0456\u0440",
-      "\u043c\u0430\u043c\u044b\u0440",
-      "\u043c\u0430\u0443\u0441\u044b\u043c",
-      "\u0448\u0456\u043b\u0434\u0435",
-      "\u0442\u0430\u043c\u044b\u0437",
-      "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
-      "\u049b\u0430\u0437\u0430\u043d",
-      "\u049b\u0430\u0440\u0430\u0448\u0430",
-      "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "y, dd-MMM HH:mm:ss",
-    "mediumDate": "y, dd-MMM",
-    "mediumTime": "HH:mm:ss",
-    "short": "dd/MM/yy HH:mm",
-    "shortDate": "dd/MM/yy",
-    "shortTime": "HH:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b8",
-    "DECIMAL_SEP": ",",
-    "GROUP_SEP": "\u00a0",
-    "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": "-",
-        "negSuf": "\u00a0\u00a4",
-        "posPre": "",
-        "posSuf": "\u00a0\u00a4"
-      }
-    ]
-  },
-  "id": "kk",
-  "localeID": "kk",
-  "pluralCat": function(n, opt_precision) {  if (n == 1) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj-cm.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj-cm.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj-cm.js
deleted file mode 100644
index 9247110..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj-cm.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "AM",
-      "PM"
-    ],
-    "DAY": [
-      "s\u0254ndi",
-      "lundi",
-      "mardi",
-      "m\u025brk\u025br\u025bdi",
-      "yedi",
-      "va\u014bd\u025br\u025bdi",
-      "m\u0254n\u0254 s\u0254ndi"
-    ],
-    "ERANAMES": [
-      "BCE",
-      "CE"
-    ],
-    "ERAS": [
-      "BCE",
-      "CE"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "pamba",
-      "wanja",
-      "mbiy\u0254 m\u025bndo\u014bg\u0254",
-      "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
-      "M\u0254n\u0254 \u014bgbanja",
-      "Nya\u014bgw\u025b \u014bgbanja",
-      "ku\u014bgw\u025b",
-      "f\u025b",
-      "njapi",
-      "nyukul",
-      "11",
-      "\u0253ul\u0253us\u025b"
-    ],
-    "SHORTDAY": [
-      "s\u0254ndi",
-      "lundi",
-      "mardi",
-      "m\u025brk\u025br\u025bdi",
-      "yedi",
-      "va\u014bd\u025br\u025bdi",
-      "m\u0254n\u0254 s\u0254ndi"
-    ],
-    "SHORTMONTH": [
-      "pamba",
-      "wanja",
-      "mbiy\u0254 m\u025bndo\u014bg\u0254",
-      "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
-      "M\u0254n\u0254 \u014bgbanja",
-      "Nya\u014bgw\u025b \u014bgbanja",
-      "ku\u014bgw\u025b",
-      "f\u025b",
-      "njapi",
-      "nyukul",
-      "11",
-      "\u0253ul\u0253us\u025b"
-    ],
-    "STANDALONEMONTH": [
-      "pamba",
-      "wanja",
-      "mbiy\u0254 m\u025bndo\u014bg\u0254",
-      "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
-      "M\u0254n\u0254 \u014bgbanja",
-      "Nya\u014bgw\u025b \u014bgbanja",
-      "ku\u014bgw\u025b",
-      "f\u025b",
-      "njapi",
-      "nyukul",
-      "11",
-      "\u0253ul\u0253us\u025b"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE dd MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y HH:mm:ss",
-    "mediumDate": "d MMM y",
-    "mediumTime": "HH:mm:ss",
-    "short": "dd/MM y HH:mm",
-    "shortDate": "dd/MM y",
-    "shortTime": "HH:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "FCFA",
-    "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\u00a0",
-        "negSuf": "",
-        "posPre": "\u00a4\u00a0",
-        "posSuf": ""
-      }
-    ]
-  },
-  "id": "kkj-cm",
-  "localeID": "kkj_CM",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj.js
deleted file mode 100644
index 247c7aa..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kkj.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "AM",
-      "PM"
-    ],
-    "DAY": [
-      "s\u0254ndi",
-      "lundi",
-      "mardi",
-      "m\u025brk\u025br\u025bdi",
-      "yedi",
-      "va\u014bd\u025br\u025bdi",
-      "m\u0254n\u0254 s\u0254ndi"
-    ],
-    "ERANAMES": [
-      "BCE",
-      "CE"
-    ],
-    "ERAS": [
-      "BCE",
-      "CE"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "pamba",
-      "wanja",
-      "mbiy\u0254 m\u025bndo\u014bg\u0254",
-      "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
-      "M\u0254n\u0254 \u014bgbanja",
-      "Nya\u014bgw\u025b \u014bgbanja",
-      "ku\u014bgw\u025b",
-      "f\u025b",
-      "njapi",
-      "nyukul",
-      "11",
-      "\u0253ul\u0253us\u025b"
-    ],
-    "SHORTDAY": [
-      "s\u0254ndi",
-      "lundi",
-      "mardi",
-      "m\u025brk\u025br\u025bdi",
-      "yedi",
-      "va\u014bd\u025br\u025bdi",
-      "m\u0254n\u0254 s\u0254ndi"
-    ],
-    "SHORTMONTH": [
-      "pamba",
-      "wanja",
-      "mbiy\u0254 m\u025bndo\u014bg\u0254",
-      "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
-      "M\u0254n\u0254 \u014bgbanja",
-      "Nya\u014bgw\u025b \u014bgbanja",
-      "ku\u014bgw\u025b",
-      "f\u025b",
-      "njapi",
-      "nyukul",
-      "11",
-      "\u0253ul\u0253us\u025b"
-    ],
-    "STANDALONEMONTH": [
-      "pamba",
-      "wanja",
-      "mbiy\u0254 m\u025bndo\u014bg\u0254",
-      "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
-      "M\u0254n\u0254 \u014bgbanja",
-      "Nya\u014bgw\u025b \u014bgbanja",
-      "ku\u014bgw\u025b",
-      "f\u025b",
-      "njapi",
-      "nyukul",
-      "11",
-      "\u0253ul\u0253us\u025b"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE dd MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y HH:mm:ss",
-    "mediumDate": "d MMM y",
-    "mediumTime": "HH:mm:ss",
-    "short": "dd/MM y HH:mm",
-    "shortDate": "dd/MM y",
-    "shortTime": "HH:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "FCFA",
-    "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\u00a0",
-        "negSuf": "",
-        "posPre": "\u00a4\u00a0",
-        "posSuf": ""
-      }
-    ]
-  },
-  "id": "kkj",
-  "localeID": "kkj",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl-gl.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl-gl.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl-gl.js
deleted file mode 100644
index bf1c87e..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl-gl.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "ulloqeqqata-tungaa",
-      "ulloqeqqata-kingorna"
-    ],
-    "DAY": [
-      "sabaat",
-      "ataasinngorneq",
-      "marlunngorneq",
-      "pingasunngorneq",
-      "sisamanngorneq",
-      "tallimanngorneq",
-      "arfininngorneq"
-    ],
-    "ERANAMES": [
-      "Kristusip inunngornerata siornagut",
-      "Kristusip inunngornerata kingornagut"
-    ],
-    "ERAS": [
-      "Kr.in.si.",
-      "Kr.in.king."
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "januari",
-      "februari",
-      "martsi",
-      "aprili",
-      "maji",
-      "juni",
-      "juli",
-      "augustusi",
-      "septemberi",
-      "oktoberi",
-      "novemberi",
-      "decemberi"
-    ],
-    "SHORTDAY": [
-      "sab",
-      "ata",
-      "mar",
-      "pin",
-      "sis",
-      "tal",
-      "arf"
-    ],
-    "SHORTMONTH": [
-      "jan",
-      "feb",
-      "mar",
-      "apr",
-      "maj",
-      "jun",
-      "jul",
-      "aug",
-      "sep",
-      "okt",
-      "nov",
-      "dec"
-    ],
-    "STANDALONEMONTH": [
-      "januari",
-      "februari",
-      "martsi",
-      "aprili",
-      "maji",
-      "juni",
-      "juli",
-      "augustusi",
-      "septemberi",
-      "oktoberi",
-      "novemberi",
-      "decemberi"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE dd MMMM y",
-    "longDate": "dd MMMM y",
-    "medium": "MMM dd, y h:mm:ss a",
-    "mediumDate": "MMM dd, y",
-    "mediumTime": "h:mm:ss a",
-    "short": "y-MM-dd h:mm a",
-    "shortDate": "y-MM-dd",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "kr",
-    "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": "kl-gl",
-  "localeID": "kl_GL",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl.js
deleted file mode 100644
index 96d1285..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kl.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "ulloqeqqata-tungaa",
-      "ulloqeqqata-kingorna"
-    ],
-    "DAY": [
-      "sabaat",
-      "ataasinngorneq",
-      "marlunngorneq",
-      "pingasunngorneq",
-      "sisamanngorneq",
-      "tallimanngorneq",
-      "arfininngorneq"
-    ],
-    "ERANAMES": [
-      "Kristusip inunngornerata siornagut",
-      "Kristusip inunngornerata kingornagut"
-    ],
-    "ERAS": [
-      "Kr.in.si.",
-      "Kr.in.king."
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "januari",
-      "februari",
-      "martsi",
-      "aprili",
-      "maji",
-      "juni",
-      "juli",
-      "augustusi",
-      "septemberi",
-      "oktoberi",
-      "novemberi",
-      "decemberi"
-    ],
-    "SHORTDAY": [
-      "sab",
-      "ata",
-      "mar",
-      "pin",
-      "sis",
-      "tal",
-      "arf"
-    ],
-    "SHORTMONTH": [
-      "jan",
-      "feb",
-      "mar",
-      "apr",
-      "maj",
-      "jun",
-      "jul",
-      "aug",
-      "sep",
-      "okt",
-      "nov",
-      "dec"
-    ],
-    "STANDALONEMONTH": [
-      "januari",
-      "februari",
-      "martsi",
-      "aprili",
-      "maji",
-      "juni",
-      "juli",
-      "augustusi",
-      "septemberi",
-      "oktoberi",
-      "novemberi",
-      "decemberi"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE dd MMMM y",
-    "longDate": "dd MMMM y",
-    "medium": "MMM dd, y h:mm:ss a",
-    "mediumDate": "MMM dd, y",
-    "mediumTime": "h:mm:ss a",
-    "short": "y-MM-dd h:mm a",
-    "shortDate": "y-MM-dd",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "kr",
-    "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": "kl",
-  "localeID": "kl",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln-ke.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln-ke.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln-ke.js
deleted file mode 100644
index 69f6179..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln-ke.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "karoon",
-      "kooskoliny"
-    ],
-    "DAY": [
-      "Kotisap",
-      "Kotaai",
-      "Koaeng\u2019",
-      "Kosomok",
-      "Koang\u2019wan",
-      "Komuut",
-      "Kolo"
-    ],
-    "ERANAMES": [
-      "Amait kesich Jesu",
-      "Kokakesich Jesu"
-    ],
-    "ERAS": [
-      "AM",
-      "KO"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "Mulgul",
-      "Ng\u2019atyaato",
-      "Kiptaamo",
-      "Iwootkuut",
-      "Mamuut",
-      "Paagi",
-      "Ng\u2019eiyeet",
-      "Rooptui",
-      "Bureet",
-      "Epeeso",
-      "Kipsuunde ne taai",
-      "Kipsuunde nebo aeng\u2019"
-    ],
-    "SHORTDAY": [
-      "Kts",
-      "Kot",
-      "Koo",
-      "Kos",
-      "Koa",
-      "Kom",
-      "Kol"
-    ],
-    "SHORTMONTH": [
-      "Mul",
-      "Ngat",
-      "Taa",
-      "Iwo",
-      "Mam",
-      "Paa",
-      "Nge",
-      "Roo",
-      "Bur",
-      "Epe",
-      "Kpt",
-      "Kpa"
-    ],
-    "STANDALONEMONTH": [
-      "Mulgul",
-      "Ng\u2019atyaato",
-      "Kiptaamo",
-      "Iwootkuut",
-      "Mamuut",
-      "Paagi",
-      "Ng\u2019eiyeet",
-      "Rooptui",
-      "Bureet",
-      "Epeeso",
-      "Kipsuunde ne taai",
-      "Kipsuunde nebo aeng\u2019"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y h:mm:ss a",
-    "mediumDate": "d MMM y",
-    "mediumTime": "h:mm:ss a",
-    "short": "dd/MM/y h:mm a",
-    "shortDate": "dd/MM/y",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "Ksh",
-    "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": "kln-ke",
-  "localeID": "kln_KE",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln.js
deleted file mode 100644
index 5362331..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kln.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "karoon",
-      "kooskoliny"
-    ],
-    "DAY": [
-      "Kotisap",
-      "Kotaai",
-      "Koaeng\u2019",
-      "Kosomok",
-      "Koang\u2019wan",
-      "Komuut",
-      "Kolo"
-    ],
-    "ERANAMES": [
-      "Amait kesich Jesu",
-      "Kokakesich Jesu"
-    ],
-    "ERAS": [
-      "AM",
-      "KO"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "Mulgul",
-      "Ng\u2019atyaato",
-      "Kiptaamo",
-      "Iwootkuut",
-      "Mamuut",
-      "Paagi",
-      "Ng\u2019eiyeet",
-      "Rooptui",
-      "Bureet",
-      "Epeeso",
-      "Kipsuunde ne taai",
-      "Kipsuunde nebo aeng\u2019"
-    ],
-    "SHORTDAY": [
-      "Kts",
-      "Kot",
-      "Koo",
-      "Kos",
-      "Koa",
-      "Kom",
-      "Kol"
-    ],
-    "SHORTMONTH": [
-      "Mul",
-      "Ngat",
-      "Taa",
-      "Iwo",
-      "Mam",
-      "Paa",
-      "Nge",
-      "Roo",
-      "Bur",
-      "Epe",
-      "Kpt",
-      "Kpa"
-    ],
-    "STANDALONEMONTH": [
-      "Mulgul",
-      "Ng\u2019atyaato",
-      "Kiptaamo",
-      "Iwootkuut",
-      "Mamuut",
-      "Paagi",
-      "Ng\u2019eiyeet",
-      "Rooptui",
-      "Bureet",
-      "Epeeso",
-      "Kipsuunde ne taai",
-      "Kipsuunde nebo aeng\u2019"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE, d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y h:mm:ss a",
-    "mediumDate": "d MMM y",
-    "mediumTime": "h:mm:ss a",
-    "short": "dd/MM/y h:mm a",
-    "shortDate": "dd/MM/y",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "Ksh",
-    "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": "kln",
-  "localeID": "kln",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km-kh.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km-kh.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km-kh.js
deleted file mode 100644
index 185486b..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km-kh.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u1796\u17d2\u179a\u17b9\u1780",
-      "\u179b\u17d2\u1784\u17b6\u1785"
-    ],
-    "DAY": [
-      "\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799",
-      "\u1785\u1793\u17d2\u1791",
-      "\u17a2\u1784\u17d2\u1782\u17b6\u179a",
-      "\u1796\u17bb\u1792",
-      "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd",
-      "\u179f\u17bb\u1780\u17d2\u179a",
-      "\u179f\u17c5\u179a\u17cd"
-    ],
-    "ERANAMES": [
-      "\u1798\u17bb\u1793\u200b\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787",
-      "\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787"
-    ],
-    "ERAS": [
-      "\u1798\u17bb\u1793 \u1782.\u179f.",
-      "\u1782.\u179f."
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "\u1798\u1780\u179a\u17b6",
-      "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
-      "\u1798\u17b8\u1793\u17b6",
-      "\u1798\u17c1\u179f\u17b6",
-      "\u17a7\u179f\u1797\u17b6",
-      "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
-      "\u1780\u1780\u17d2\u1780\u178a\u17b6",
-      "\u179f\u17b8\u17a0\u17b6",
-      "\u1780\u1789\u17d2\u1789\u17b6",
-      "\u178f\u17bb\u179b\u17b6",
-      "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
-      "\u1792\u17d2\u1793\u17bc"
-    ],
-    "SHORTDAY": [
-      "\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799",
-      "\u1785\u1793\u17d2\u1791",
-      "\u17a2\u1784\u17d2\u1782\u17b6\u179a",
-      "\u1796\u17bb\u1792",
-      "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd",
-      "\u179f\u17bb\u1780\u17d2\u179a",
-      "\u179f\u17c5\u179a\u17cd"
-    ],
-    "SHORTMONTH": [
-      "\u1798\u1780\u179a\u17b6",
-      "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
-      "\u1798\u17b8\u1793\u17b6",
-      "\u1798\u17c1\u179f\u17b6",
-      "\u17a7\u179f\u1797\u17b6",
-      "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
-      "\u1780\u1780\u17d2\u1780\u178a\u17b6",
-      "\u179f\u17b8\u17a0\u17b6",
-      "\u1780\u1789\u17d2\u1789\u17b6",
-      "\u178f\u17bb\u179b\u17b6",
-      "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
-      "\u1792\u17d2\u1793\u17bc"
-    ],
-    "STANDALONEMONTH": [
-      "\u1798\u1780\u179a\u17b6",
-      "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
-      "\u1798\u17b8\u1793\u17b6",
-      "\u1798\u17c1\u179f\u17b6",
-      "\u17a7\u179f\u1797\u17b6",
-      "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
-      "\u1780\u1780\u17d2\u1780\u178a\u17b6",
-      "\u179f\u17b8\u17a0\u17b6",
-      "\u1780\u1789\u17d2\u1789\u17b6",
-      "\u178f\u17bb\u179b\u17b6",
-      "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
-      "\u1792\u17d2\u1793\u17bc"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y h:mm:ss a",
-    "mediumDate": "d MMM y",
-    "mediumTime": "h:mm:ss a",
-    "short": "d/M/yy h:mm a",
-    "shortDate": "d/M/yy",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "Riel",
-    "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": "km-kh",
-  "localeID": "km_KH",
-  "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km.js
deleted file mode 100644
index 4291454..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_km.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u1796\u17d2\u179a\u17b9\u1780",
-      "\u179b\u17d2\u1784\u17b6\u1785"
-    ],
-    "DAY": [
-      "\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799",
-      "\u1785\u1793\u17d2\u1791",
-      "\u17a2\u1784\u17d2\u1782\u17b6\u179a",
-      "\u1796\u17bb\u1792",
-      "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd",
-      "\u179f\u17bb\u1780\u17d2\u179a",
-      "\u179f\u17c5\u179a\u17cd"
-    ],
-    "ERANAMES": [
-      "\u1798\u17bb\u1793\u200b\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787",
-      "\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787"
-    ],
-    "ERAS": [
-      "\u1798\u17bb\u1793 \u1782.\u179f.",
-      "\u1782.\u179f."
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "\u1798\u1780\u179a\u17b6",
-      "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
-      "\u1798\u17b8\u1793\u17b6",
-      "\u1798\u17c1\u179f\u17b6",
-      "\u17a7\u179f\u1797\u17b6",
-      "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
-      "\u1780\u1780\u17d2\u1780\u178a\u17b6",
-      "\u179f\u17b8\u17a0\u17b6",
-      "\u1780\u1789\u17d2\u1789\u17b6",
-      "\u178f\u17bb\u179b\u17b6",
-      "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
-      "\u1792\u17d2\u1793\u17bc"
-    ],
-    "SHORTDAY": [
-      "\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799",
-      "\u1785\u1793\u17d2\u1791",
-      "\u17a2\u1784\u17d2\u1782\u17b6\u179a",
-      "\u1796\u17bb\u1792",
-      "\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd",
-      "\u179f\u17bb\u1780\u17d2\u179a",
-      "\u179f\u17c5\u179a\u17cd"
-    ],
-    "SHORTMONTH": [
-      "\u1798\u1780\u179a\u17b6",
-      "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
-      "\u1798\u17b8\u1793\u17b6",
-      "\u1798\u17c1\u179f\u17b6",
-      "\u17a7\u179f\u1797\u17b6",
-      "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
-      "\u1780\u1780\u17d2\u1780\u178a\u17b6",
-      "\u179f\u17b8\u17a0\u17b6",
-      "\u1780\u1789\u17d2\u1789\u17b6",
-      "\u178f\u17bb\u179b\u17b6",
-      "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
-      "\u1792\u17d2\u1793\u17bc"
-    ],
-    "STANDALONEMONTH": [
-      "\u1798\u1780\u179a\u17b6",
-      "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
-      "\u1798\u17b8\u1793\u17b6",
-      "\u1798\u17c1\u179f\u17b6",
-      "\u17a7\u179f\u1797\u17b6",
-      "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
-      "\u1780\u1780\u17d2\u1780\u178a\u17b6",
-      "\u179f\u17b8\u17a0\u17b6",
-      "\u1780\u1789\u17d2\u1789\u17b6",
-      "\u178f\u17bb\u179b\u17b6",
-      "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
-      "\u1792\u17d2\u1793\u17bc"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "EEEE d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "d MMM y h:mm:ss a",
-    "mediumDate": "d MMM y",
-    "mediumTime": "h:mm:ss a",
-    "short": "d/M/yy h:mm a",
-    "shortDate": "d/M/yy",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "Riel",
-    "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": "km",
-  "localeID": "km",
-  "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn-in.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn-in.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn-in.js
deleted file mode 100644
index 372dd63..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn-in.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8",
-      "\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"
-    ],
-    "DAY": [
-      "\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0",
-      "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
-      "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
-      "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
-      "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
-      "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
-      "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
-    ],
-    "ERANAMES": [
-      "\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0caa\u0cc2\u0cb0\u0ccd\u0cb5",
-      "\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0cb6\u0c95"
-    ],
-    "ERAS": [
-      "\u0c95\u0ccd\u0cb0\u0cbf.\u0caa\u0cc2",
-      "\u0c95\u0ccd\u0cb0\u0cbf.\u0cb6"
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf",
-      "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf",
-      "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
-      "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
-      "\u0cae\u0cc7",
-      "\u0c9c\u0cc2\u0ca8\u0ccd",
-      "\u0c9c\u0cc1\u0cb2\u0cc8",
-      "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
-      "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
-      "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
-    ],
-    "SHORTDAY": [
-      "\u0cad\u0cbe\u0ca8\u0cc1",
-      "\u0cb8\u0ccb\u0cae",
-      "\u0cae\u0c82\u0c97\u0cb3",
-      "\u0cac\u0cc1\u0ca7",
-      "\u0c97\u0cc1\u0cb0\u0cc1",
-      "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0",
-      "\u0cb6\u0ca8\u0cbf"
-    ],
-    "SHORTMONTH": [
-      "\u0c9c\u0ca8",
-      "\u0cab\u0cc6\u0cac\u0ccd\u0cb0",
-      "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
-      "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf",
-      "\u0cae\u0cc7",
-      "\u0c9c\u0cc2\u0ca8\u0ccd",
-      "\u0c9c\u0cc1\u0cb2\u0cc8",
-      "\u0c86\u0c97",
-      "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82",
-      "\u0c85\u0c95\u0ccd\u0c9f\u0ccb",
-      "\u0ca8\u0cb5\u0cc6\u0c82",
-      "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"
-    ],
-    "STANDALONEMONTH": [
-      "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf",
-      "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf",
-      "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
-      "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
-      "\u0cae\u0cc7",
-      "\u0c9c\u0cc2\u0ca8\u0ccd",
-      "\u0c9c\u0cc1\u0cb2\u0cc8",
-      "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
-      "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
-      "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
-    ],
-    "WEEKENDRANGE": [
-      6,
-      6
-    ],
-    "fullDate": "EEEE, MMMM d, y",
-    "longDate": "MMMM d, y",
-    "medium": "MMM d, y hh:mm:ss a",
-    "mediumDate": "MMM d, y",
-    "mediumTime": "hh:mm:ss a",
-    "short": "M/d/yy hh:mm a",
-    "shortDate": "M/d/yy",
-    "shortTime": "hh:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b9",
-    "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": "kn-in",
-  "localeID": "kn_IN",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  if (i == 0 || n == 1) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn.js
deleted file mode 100644
index 2667956..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kn.js
+++ /dev/null
@@ -1,125 +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": [
-      "\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8",
-      "\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"
-    ],
-    "DAY": [
-      "\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0",
-      "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
-      "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
-      "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
-      "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
-      "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
-      "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
-    ],
-    "ERANAMES": [
-      "\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0caa\u0cc2\u0cb0\u0ccd\u0cb5",
-      "\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0cb6\u0c95"
-    ],
-    "ERAS": [
-      "\u0c95\u0ccd\u0cb0\u0cbf.\u0caa\u0cc2",
-      "\u0c95\u0ccd\u0cb0\u0cbf.\u0cb6"
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf",
-      "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf",
-      "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
-      "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
-      "\u0cae\u0cc7",
-      "\u0c9c\u0cc2\u0ca8\u0ccd",
-      "\u0c9c\u0cc1\u0cb2\u0cc8",
-      "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
-      "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
-      "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
-    ],
-    "SHORTDAY": [
-      "\u0cad\u0cbe\u0ca8\u0cc1",
-      "\u0cb8\u0ccb\u0cae",
-      "\u0cae\u0c82\u0c97\u0cb3",
-      "\u0cac\u0cc1\u0ca7",
-      "\u0c97\u0cc1\u0cb0\u0cc1",
-      "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0",
-      "\u0cb6\u0ca8\u0cbf"
-    ],
-    "SHORTMONTH": [
-      "\u0c9c\u0ca8",
-      "\u0cab\u0cc6\u0cac\u0ccd\u0cb0",
-      "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
-      "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf",
-      "\u0cae\u0cc7",
-      "\u0c9c\u0cc2\u0ca8\u0ccd",
-      "\u0c9c\u0cc1\u0cb2\u0cc8",
-      "\u0c86\u0c97",
-      "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82",
-      "\u0c85\u0c95\u0ccd\u0c9f\u0ccb",
-      "\u0ca8\u0cb5\u0cc6\u0c82",
-      "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"
-    ],
-    "STANDALONEMONTH": [
-      "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf",
-      "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf",
-      "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
-      "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
-      "\u0cae\u0cc7",
-      "\u0c9c\u0cc2\u0ca8\u0ccd",
-      "\u0c9c\u0cc1\u0cb2\u0cc8",
-      "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
-      "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
-      "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
-      "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
-    ],
-    "WEEKENDRANGE": [
-      6,
-      6
-    ],
-    "fullDate": "EEEE, MMMM d, y",
-    "longDate": "MMMM d, y",
-    "medium": "MMM d, y hh:mm:ss a",
-    "mediumDate": "MMM d, y",
-    "mediumTime": "hh:mm:ss a",
-    "short": "M/d/yy hh:mm a",
-    "shortDate": "M/d/yy",
-    "shortTime": "hh:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b9",
-    "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": "kn",
-  "localeID": "kn",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  if (i == 0 || n == 1) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kp.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kp.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kp.js
deleted file mode 100644
index 2763f7b..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kp.js
+++ /dev/null
@@ -1,125 +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": [
-      "\uc624\uc804",
-      "\uc624\ud6c4"
-    ],
-    "DAY": [
-      "\uc77c\uc694\uc77c",
-      "\uc6d4\uc694\uc77c",
-      "\ud654\uc694\uc77c",
-      "\uc218\uc694\uc77c",
-      "\ubaa9\uc694\uc77c",
-      "\uae08\uc694\uc77c",
-      "\ud1a0\uc694\uc77c"
-    ],
-    "ERANAMES": [
-      "\uae30\uc6d0\uc804",
-      "\uc11c\uae30"
-    ],
-    "ERAS": [
-      "\uae30\uc6d0\uc804",
-      "\uc11c\uae30"
-    ],
-    "FIRSTDAYOFWEEK": 0,
-    "MONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "SHORTDAY": [
-      "\uc77c",
-      "\uc6d4",
-      "\ud654",
-      "\uc218",
-      "\ubaa9",
-      "\uae08",
-      "\ud1a0"
-    ],
-    "SHORTMONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "STANDALONEMONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
-    "longDate": "y\ub144 M\uc6d4 d\uc77c",
-    "medium": "y. M. d. a h:mm:ss",
-    "mediumDate": "y. M. d.",
-    "mediumTime": "a h:mm:ss",
-    "short": "yy. M. d. a h:mm",
-    "shortDate": "yy. M. d.",
-    "shortTime": "a h:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20a9KP",
-    "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": "ko-kp",
-  "localeID": "ko_KP",
-  "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kr.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kr.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kr.js
deleted file mode 100644
index 016c523..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko-kr.js
+++ /dev/null
@@ -1,125 +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": [
-      "\uc624\uc804",
-      "\uc624\ud6c4"
-    ],
-    "DAY": [
-      "\uc77c\uc694\uc77c",
-      "\uc6d4\uc694\uc77c",
-      "\ud654\uc694\uc77c",
-      "\uc218\uc694\uc77c",
-      "\ubaa9\uc694\uc77c",
-      "\uae08\uc694\uc77c",
-      "\ud1a0\uc694\uc77c"
-    ],
-    "ERANAMES": [
-      "\uae30\uc6d0\uc804",
-      "\uc11c\uae30"
-    ],
-    "ERAS": [
-      "\uae30\uc6d0\uc804",
-      "\uc11c\uae30"
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "SHORTDAY": [
-      "\uc77c",
-      "\uc6d4",
-      "\ud654",
-      "\uc218",
-      "\ubaa9",
-      "\uae08",
-      "\ud1a0"
-    ],
-    "SHORTMONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "STANDALONEMONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
-    "longDate": "y\ub144 M\uc6d4 d\uc77c",
-    "medium": "y. M. d. a h:mm:ss",
-    "mediumDate": "y. M. d.",
-    "mediumTime": "a h:mm:ss",
-    "short": "yy. M. d. a h:mm",
-    "shortDate": "yy. M. d.",
-    "shortTime": "a h:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20a9",
-    "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": "ko-kr",
-  "localeID": "ko_KR",
-  "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko.js
deleted file mode 100644
index d3ff9ee..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_ko.js
+++ /dev/null
@@ -1,125 +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": [
-      "\uc624\uc804",
-      "\uc624\ud6c4"
-    ],
-    "DAY": [
-      "\uc77c\uc694\uc77c",
-      "\uc6d4\uc694\uc77c",
-      "\ud654\uc694\uc77c",
-      "\uc218\uc694\uc77c",
-      "\ubaa9\uc694\uc77c",
-      "\uae08\uc694\uc77c",
-      "\ud1a0\uc694\uc77c"
-    ],
-    "ERANAMES": [
-      "\uae30\uc6d0\uc804",
-      "\uc11c\uae30"
-    ],
-    "ERAS": [
-      "\uae30\uc6d0\uc804",
-      "\uc11c\uae30"
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "SHORTDAY": [
-      "\uc77c",
-      "\uc6d4",
-      "\ud654",
-      "\uc218",
-      "\ubaa9",
-      "\uae08",
-      "\ud1a0"
-    ],
-    "SHORTMONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "STANDALONEMONTH": [
-      "1\uc6d4",
-      "2\uc6d4",
-      "3\uc6d4",
-      "4\uc6d4",
-      "5\uc6d4",
-      "6\uc6d4",
-      "7\uc6d4",
-      "8\uc6d4",
-      "9\uc6d4",
-      "10\uc6d4",
-      "11\uc6d4",
-      "12\uc6d4"
-    ],
-    "WEEKENDRANGE": [
-      5,
-      6
-    ],
-    "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
-    "longDate": "y\ub144 M\uc6d4 d\uc77c",
-    "medium": "y. M. d. a h:mm:ss",
-    "mediumDate": "y. M. d.",
-    "mediumTime": "a h:mm:ss",
-    "short": "yy. M. d. a h:mm",
-    "shortDate": "yy. M. d.",
-    "shortTime": "a h:mm"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20a9",
-    "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": "ko",
-  "localeID": "ko",
-  "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok-in.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok-in.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok-in.js
deleted file mode 100644
index abfcd60..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok-in.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "\u092e.\u092a\u0942.",
-      "\u092e.\u0928\u0902."
-    ],
-    "DAY": [
-      "\u0906\u0926\u093f\u0924\u094d\u092f\u0935\u093e\u0930",
-      "\u0938\u094b\u092e\u0935\u093e\u0930",
-      "\u092e\u0902\u0917\u0933\u093e\u0930",
-      "\u092c\u0941\u0927\u0935\u093e\u0930",
-      "\u0917\u0941\u0930\u0941\u0935\u093e\u0930",
-      "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
-      "\u0936\u0928\u093f\u0935\u093e\u0930"
-    ],
-    "ERANAMES": [
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u092a\u0942\u0930\u094d\u0935",
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u0936\u0916\u093e"
-    ],
-    "ERAS": [
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u092a\u0942\u0930\u094d\u0935",
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u0936\u0916\u093e"
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
-      "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
-      "\u092e\u093e\u0930\u094d\u091a",
-      "\u090f\u092a\u094d\u0930\u093f\u0932",
-      "\u092e\u0947",
-      "\u091c\u0942\u0928",
-      "\u091c\u0941\u0932\u0948",
-      "\u0913\u0917\u0938\u094d\u091f",
-      "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
-      "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
-      "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
-      "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
-    ],
-    "SHORTDAY": [
-      "\u0930\u0935\u093f",
-      "\u0938\u094b\u092e",
-      "\u092e\u0902\u0917\u0933",
-      "\u092c\u0941\u0927",
-      "\u0917\u0941\u0930\u0941",
-      "\u0936\u0941\u0915\u094d\u0930",
-      "\u0936\u0928\u093f"
-    ],
-    "SHORTMONTH": [
-      "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
-      "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
-      "\u092e\u093e\u0930\u094d\u091a",
-      "\u090f\u092a\u094d\u0930\u093f\u0932",
-      "\u092e\u0947",
-      "\u091c\u0942\u0928",
-      "\u091c\u0941\u0932\u0948",
-      "\u0913\u0917\u0938\u094d\u091f",
-      "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
-      "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
-      "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
-      "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
-    ],
-    "STANDALONEMONTH": [
-      "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
-      "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
-      "\u092e\u093e\u0930\u094d\u091a",
-      "\u090f\u092a\u094d\u0930\u093f\u0932",
-      "\u092e\u0947",
-      "\u091c\u0942\u0928",
-      "\u091c\u0941\u0932\u0948",
-      "\u0913\u0917\u0938\u094d\u091f",
-      "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
-      "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
-      "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
-      "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
-    ],
-    "WEEKENDRANGE": [
-      6,
-      6
-    ],
-    "fullDate": "EEEE d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "dd-MM-y h:mm:ss a",
-    "mediumDate": "dd-MM-y",
-    "mediumTime": "h:mm:ss a",
-    "short": "d-M-yy h:mm a",
-    "shortDate": "d-M-yy",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b9",
-    "DECIMAL_SEP": ".",
-    "GROUP_SEP": ",",
-    "PATTERNS": [
-      {
-        "gSize": 2,
-        "lgSize": 3,
-        "maxFrac": 3,
-        "minFrac": 0,
-        "minInt": 1,
-        "negPre": "-",
-        "negSuf": "",
-        "posPre": "",
-        "posSuf": ""
-      },
-      {
-        "gSize": 2,
-        "lgSize": 3,
-        "maxFrac": 2,
-        "minFrac": 2,
-        "minInt": 1,
-        "negPre": "-\u00a4\u00a0",
-        "negSuf": "",
-        "posPre": "\u00a4\u00a0",
-        "posSuf": ""
-      }
-    ]
-  },
-  "id": "kok-in",
-  "localeID": "kok_IN",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);

http://git-wip-us.apache.org/repos/asf/struts/blob/7a350b02/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok.js
----------------------------------------------------------------------
diff --git a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok.js b/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok.js
deleted file mode 100644
index 4a59d03..0000000
--- a/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/src/main/webapp/js/lib/angular/i18n/angular-locale_kok.js
+++ /dev/null
@@ -1,143 +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"};
-function getDecimals(n) {
-  n = n + '';
-  var i = n.indexOf('.');
-  return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
-  var v = opt_precision;
-
-  if (undefined === v) {
-    v = Math.min(getDecimals(n), 3);
-  }
-
-  var base = Math.pow(10, v);
-  var f = ((n * base) | 0) % base;
-  return {v: v, f: f};
-}
-
-$provide.value("$locale", {
-  "DATETIME_FORMATS": {
-    "AMPMS": [
-      "\u092e.\u092a\u0942.",
-      "\u092e.\u0928\u0902."
-    ],
-    "DAY": [
-      "\u0906\u0926\u093f\u0924\u094d\u092f\u0935\u093e\u0930",
-      "\u0938\u094b\u092e\u0935\u093e\u0930",
-      "\u092e\u0902\u0917\u0933\u093e\u0930",
-      "\u092c\u0941\u0927\u0935\u093e\u0930",
-      "\u0917\u0941\u0930\u0941\u0935\u093e\u0930",
-      "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
-      "\u0936\u0928\u093f\u0935\u093e\u0930"
-    ],
-    "ERANAMES": [
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u092a\u0942\u0930\u094d\u0935",
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u0936\u0916\u093e"
-    ],
-    "ERAS": [
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u092a\u0942\u0930\u094d\u0935",
-      "\u0915\u094d\u0930\u093f\u0938\u094d\u0924\u0936\u0916\u093e"
-    ],
-    "FIRSTDAYOFWEEK": 6,
-    "MONTH": [
-      "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
-      "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
-      "\u092e\u093e\u0930\u094d\u091a",
-      "\u090f\u092a\u094d\u0930\u093f\u0932",
-      "\u092e\u0947",
-      "\u091c\u0942\u0928",
-      "\u091c\u0941\u0932\u0948",
-      "\u0913\u0917\u0938\u094d\u091f",
-      "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
-      "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
-      "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
-      "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
-    ],
-    "SHORTDAY": [
-      "\u0930\u0935\u093f",
-      "\u0938\u094b\u092e",
-      "\u092e\u0902\u0917\u0933",
-      "\u092c\u0941\u0927",
-      "\u0917\u0941\u0930\u0941",
-      "\u0936\u0941\u0915\u094d\u0930",
-      "\u0936\u0928\u093f"
-    ],
-    "SHORTMONTH": [
-      "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
-      "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
-      "\u092e\u093e\u0930\u094d\u091a",
-      "\u090f\u092a\u094d\u0930\u093f\u0932",
-      "\u092e\u0947",
-      "\u091c\u0942\u0928",
-      "\u091c\u0941\u0932\u0948",
-      "\u0913\u0917\u0938\u094d\u091f",
-      "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
-      "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
-      "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
-      "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
-    ],
-    "STANDALONEMONTH": [
-      "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
-      "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
-      "\u092e\u093e\u0930\u094d\u091a",
-      "\u090f\u092a\u094d\u0930\u093f\u0932",
-      "\u092e\u0947",
-      "\u091c\u0942\u0928",
-      "\u091c\u0941\u0932\u0948",
-      "\u0913\u0917\u0938\u094d\u091f",
-      "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
-      "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
-      "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
-      "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
-    ],
-    "WEEKENDRANGE": [
-      6,
-      6
-    ],
-    "fullDate": "EEEE d MMMM y",
-    "longDate": "d MMMM y",
-    "medium": "dd-MM-y h:mm:ss a",
-    "mediumDate": "dd-MM-y",
-    "mediumTime": "h:mm:ss a",
-    "short": "d-M-yy h:mm a",
-    "shortDate": "d-M-yy",
-    "shortTime": "h:mm a"
-  },
-  "NUMBER_FORMATS": {
-    "CURRENCY_SYM": "\u20b9",
-    "DECIMAL_SEP": ".",
-    "GROUP_SEP": ",",
-    "PATTERNS": [
-      {
-        "gSize": 2,
-        "lgSize": 3,
-        "maxFrac": 3,
-        "minFrac": 0,
-        "minInt": 1,
-        "negPre": "-",
-        "negSuf": "",
-        "posPre": "",
-        "posSuf": ""
-      },
-      {
-        "gSize": 2,
-        "lgSize": 3,
-        "maxFrac": 2,
-        "minFrac": 2,
-        "minInt": 1,
-        "negPre": "-\u00a4\u00a0",
-        "negSuf": "",
-        "posPre": "\u00a4\u00a0",
-        "posSuf": ""
-      }
-    ]
-  },
-  "id": "kok",
-  "localeID": "kok",
-  "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
-});
-}]);