http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs-AF.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs-AF.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs-AF.js
deleted file mode 100644
index b50d211..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs-AF.js
+++ /dev/null
@@ -1,174 +0,0 @@
-/*
- * Globalize Culture prs-AF
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "prs-AF", "default", {
-       name: "prs-AF",
-       englishName: "Dari (Afghanistan)",
-       nativeName: "درى (افغانستان)",
-       language: "prs",
-       isRTL: true,
-       numberFormat: {
-               pattern: ["n-"],
-               ",": ".",
-               ".": ",",
-               "NaN": "غ ع",
-               negativeInfinity: "-∞",
-               positiveInfinity: "∞",
-               percent: {
-                       pattern: ["%n-","%n"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["$n-","$n"],
-                       symbol: "؋"
-               }
-       },
-       calendars: {
-               standard: {
-                       name: "Hijri",
-                       firstDay: 5,
-                       days: {
-                               names: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesAbbr: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesShort: ["ح","ن","ث","ر","خ","ج","س"]
-                       },
-                       months: {
-                               names: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""],
-                               namesAbbr: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"بعد 
الهجرة","start":null,"offset":0}],
-                       twoDigitYearMax: 1451,
-                       patterns: {
-                               d: "dd/MM/yy",
-                               D: "dd/MM/yyyy",
-                               f: "dd/MM/yyyy h:mm tt",
-                               F: "dd/MM/yyyy h:mm:ss tt",
-                               M: "dd MMMM"
-                       },
-                       convert: {
-                    // Adapted to Script from 
System.Globalization.HijriCalendar
-                    ticks1970: 62135596800000,
-                    // number of days leading up to each month
-                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 
295, 325, 355],
-                    minDate: -42521673600000,
-                    maxDate: 253402300799999,
-                    // The number of days to add or subtract from the calendar 
to accommodate the variances
-                    // in the start and the end of Ramadan and to accommodate 
the date difference between
-                    // countries/regions. May be dynamically adjusted based on 
user preference, but should
-                    // remain in the range of -2 to 2, inclusive.
-                    hijriAdjustment: 0,
-                    toGregorian: function(hyear, hmonth, hday) {
-                        var daysSinceJan0101 = this.daysToYear(hyear) + 
this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;
-                        // 86400000 = ticks per day
-                        var gdate = new Date(daysSinceJan0101 * 86400000 - 
this.ticks1970);
-                        // adjust for timezone, because we are interested in 
the gregorian date for the same timezone
-                        // but ticks in javascript is always from GMT, unlike 
the server were ticks counts from the base
-                        // date in the current timezone.
-                        gdate.setMinutes(gdate.getMinutes() + 
gdate.getTimezoneOffset());
-                        return gdate;
-                    },
-                    fromGregorian: function(gdate) {
-                        if ((gdate < this.minDate) || (gdate > this.maxDate)) 
return null;
-                        var ticks = this.ticks1970 + (gdate-0) - 
gdate.getTimezoneOffset() * 60000,
-                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 
1 + this.hijriAdjustment;
-                        // very particular formula determined by someone 
smart, adapted from the server-side implementation.
-                        // it approximates the hijri year.
-                        var hday, hmonth, hyear = 
Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,
-                            absDays = this.daysToYear(hyear),
-                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;
-                        // hyear is just approximate, it may need adjustment 
up or down by 1.
-                        if (daysSinceJan0101 < absDays) {
-                            hyear--;
-                            absDays -= daysInYear;
-                        }
-                        else if (daysSinceJan0101 === absDays) {
-                            hyear--;
-                            absDays = this.daysToYear(hyear);
-                        }
-                        else {
-                            if (daysSinceJan0101 > (absDays + daysInYear)) {
-                                absDays += daysInYear;
-                                hyear++;
-                            }
-                        }
-                        // determine month by looking at how many days into 
the hyear we are
-                        // monthDays contains the number of days up to each 
month.
-                        hmonth = 0;
-                        var daysIntoYear = daysSinceJan0101 - absDays;
-                        while (hmonth <= 11 && daysIntoYear > 
this.monthDays[hmonth]) {
-                            hmonth++;
-                        }
-                        hmonth--;
-                        hday = daysIntoYear - this.monthDays[hmonth];
-                        return [hyear, hmonth, hday];
-                    },
-                    daysToYear: function(year) {
-                        // calculates how many days since Jan 1, 0001
-                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,
-                            yearsInto30 = year - yearsToYear30 - 1,
-                            days = Math.floor((yearsToYear30 * 10631) / 30) + 
227013;
-                        while (yearsInto30 > 0) {
-                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);
-                            yearsInto30--;
-                        }
-                        return days;
-                    },
-                    isLeapYear: function(year) {
-                        return ((((year * 11) + 14) % 30) < 11);
-                    }
-                       }
-               },
-               Gregorian_Localized: {
-                       firstDay: 5,
-                       days: {
-                               names: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چهارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesAbbr: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چهارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesShort: ["ی","د","س","چ","پ","ج","ش"]
-                       },
-                       months: {
-                               names: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګاښ","زم
رى","وږى","تله","لړم","ليندۍ","مرغومى",""],
-                               namesAbbr: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګاښ","زم
رى","وږى","تله","لړم","ليندۍ","مرغومى",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"ل.ه","start":null,"offset":0}],
-                       patterns: {
-                               d: "yyyy/M/d",
-                               D: "yyyy, dd, MMMM, dddd",
-                               f: "yyyy, dd, MMMM, dddd h:mm tt",
-                               F: "yyyy, dd, MMMM, dddd h:mm:ss tt",
-                               M: "d MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs.js
deleted file mode 100644
index aaf297b..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.prs.js
+++ /dev/null
@@ -1,174 +0,0 @@
-/*
- * Globalize Culture prs
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "prs", "default", {
-       name: "prs",
-       englishName: "Dari",
-       nativeName: "درى",
-       language: "prs",
-       isRTL: true,
-       numberFormat: {
-               pattern: ["n-"],
-               ",": ".",
-               ".": ",",
-               "NaN": "غ ع",
-               negativeInfinity: "-∞",
-               positiveInfinity: "∞",
-               percent: {
-                       pattern: ["%n-","%n"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["$n-","$n"],
-                       symbol: "؋"
-               }
-       },
-       calendars: {
-               standard: {
-                       name: "Hijri",
-                       firstDay: 5,
-                       days: {
-                               names: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesAbbr: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesShort: ["ح","ن","ث","ر","خ","ج","س"]
-                       },
-                       months: {
-                               names: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""],
-                               namesAbbr: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"بعد 
الهجرة","start":null,"offset":0}],
-                       twoDigitYearMax: 1451,
-                       patterns: {
-                               d: "dd/MM/yy",
-                               D: "dd/MM/yyyy",
-                               f: "dd/MM/yyyy h:mm tt",
-                               F: "dd/MM/yyyy h:mm:ss tt",
-                               M: "dd MMMM"
-                       },
-                       convert: {
-                    // Adapted to Script from 
System.Globalization.HijriCalendar
-                    ticks1970: 62135596800000,
-                    // number of days leading up to each month
-                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 
295, 325, 355],
-                    minDate: -42521673600000,
-                    maxDate: 253402300799999,
-                    // The number of days to add or subtract from the calendar 
to accommodate the variances
-                    // in the start and the end of Ramadan and to accommodate 
the date difference between
-                    // countries/regions. May be dynamically adjusted based on 
user preference, but should
-                    // remain in the range of -2 to 2, inclusive.
-                    hijriAdjustment: 0,
-                    toGregorian: function(hyear, hmonth, hday) {
-                        var daysSinceJan0101 = this.daysToYear(hyear) + 
this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;
-                        // 86400000 = ticks per day
-                        var gdate = new Date(daysSinceJan0101 * 86400000 - 
this.ticks1970);
-                        // adjust for timezone, because we are interested in 
the gregorian date for the same timezone
-                        // but ticks in javascript is always from GMT, unlike 
the server were ticks counts from the base
-                        // date in the current timezone.
-                        gdate.setMinutes(gdate.getMinutes() + 
gdate.getTimezoneOffset());
-                        return gdate;
-                    },
-                    fromGregorian: function(gdate) {
-                        if ((gdate < this.minDate) || (gdate > this.maxDate)) 
return null;
-                        var ticks = this.ticks1970 + (gdate-0) - 
gdate.getTimezoneOffset() * 60000,
-                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 
1 + this.hijriAdjustment;
-                        // very particular formula determined by someone 
smart, adapted from the server-side implementation.
-                        // it approximates the hijri year.
-                        var hday, hmonth, hyear = 
Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,
-                            absDays = this.daysToYear(hyear),
-                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;
-                        // hyear is just approximate, it may need adjustment 
up or down by 1.
-                        if (daysSinceJan0101 < absDays) {
-                            hyear--;
-                            absDays -= daysInYear;
-                        }
-                        else if (daysSinceJan0101 === absDays) {
-                            hyear--;
-                            absDays = this.daysToYear(hyear);
-                        }
-                        else {
-                            if (daysSinceJan0101 > (absDays + daysInYear)) {
-                                absDays += daysInYear;
-                                hyear++;
-                            }
-                        }
-                        // determine month by looking at how many days into 
the hyear we are
-                        // monthDays contains the number of days up to each 
month.
-                        hmonth = 0;
-                        var daysIntoYear = daysSinceJan0101 - absDays;
-                        while (hmonth <= 11 && daysIntoYear > 
this.monthDays[hmonth]) {
-                            hmonth++;
-                        }
-                        hmonth--;
-                        hday = daysIntoYear - this.monthDays[hmonth];
-                        return [hyear, hmonth, hday];
-                    },
-                    daysToYear: function(year) {
-                        // calculates how many days since Jan 1, 0001
-                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,
-                            yearsInto30 = year - yearsToYear30 - 1,
-                            days = Math.floor((yearsToYear30 * 10631) / 30) + 
227013;
-                        while (yearsInto30 > 0) {
-                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);
-                            yearsInto30--;
-                        }
-                        return days;
-                    },
-                    isLeapYear: function(year) {
-                        return ((((year * 11) + 14) % 30) < 11);
-                    }
-                       }
-               },
-               Gregorian_Localized: {
-                       firstDay: 5,
-                       days: {
-                               names: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چهارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesAbbr: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چهارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesShort: ["ی","د","س","چ","پ","ج","ش"]
-                       },
-                       months: {
-                               names: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګاښ","زم
رى","وږى","تله","لړم","ليندۍ","مرغومى",""],
-                               namesAbbr: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګاښ","زم
رى","وږى","تله","لړم","ليندۍ","مرغومى",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"ل.ه","start":null,"offset":0}],
-                       patterns: {
-                               d: "yyyy/M/d",
-                               D: "yyyy, dd, MMMM, dddd",
-                               f: "yyyy, dd, MMMM, dddd h:mm tt",
-                               F: "yyyy, dd, MMMM, dddd h:mm:ss tt",
-                               M: "d MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps-AF.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps-AF.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps-AF.js
deleted file mode 100644
index bf38c1b..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps-AF.js
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * Globalize Culture ps-AF
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "ps-AF", "default", {
-       name: "ps-AF",
-       englishName: "Pashto (Afghanistan)",
-       nativeName: "پښتو (افغانستان)",
-       language: "ps",
-       isRTL: true,
-       numberFormat: {
-               pattern: ["n-"],
-               ",": "،",
-               ".": ",",
-               "NaN": "غ ع",
-               negativeInfinity: "-∞",
-               positiveInfinity: "∞",
-               percent: {
-                       pattern: ["%n-","%n"],
-                       ",": "،",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["$n-","$n"],
-                       ",": "Ù¬",
-                       ".": "Ù«",
-                       symbol: "؋"
-               }
-       },
-       calendars: {
-               standard: {
-                       name: "Hijri",
-                       firstDay: 6,
-                       days: {
-                               names: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesAbbr: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesShort: ["ح","ن","ث","ر","خ","ج","س"]
-                       },
-                       months: {
-                               names: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""],
-                               namesAbbr: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"بعد 
الهجرة","start":null,"offset":0}],
-                       twoDigitYearMax: 1451,
-                       patterns: {
-                               d: "dd/MM/yy",
-                               D: "dd/MM/yyyy",
-                               f: "dd/MM/yyyy h:mm tt",
-                               F: "dd/MM/yyyy h:mm:ss tt",
-                               M: "dd MMMM"
-                       },
-                       convert: {
-                    // Adapted to Script from 
System.Globalization.HijriCalendar
-                    ticks1970: 62135596800000,
-                    // number of days leading up to each month
-                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 
295, 325, 355],
-                    minDate: -42521673600000,
-                    maxDate: 253402300799999,
-                    // The number of days to add or subtract from the calendar 
to accommodate the variances
-                    // in the start and the end of Ramadan and to accommodate 
the date difference between
-                    // countries/regions. May be dynamically adjusted based on 
user preference, but should
-                    // remain in the range of -2 to 2, inclusive.
-                    hijriAdjustment: 0,
-                    toGregorian: function(hyear, hmonth, hday) {
-                        var daysSinceJan0101 = this.daysToYear(hyear) + 
this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;
-                        // 86400000 = ticks per day
-                        var gdate = new Date(daysSinceJan0101 * 86400000 - 
this.ticks1970);
-                        // adjust for timezone, because we are interested in 
the gregorian date for the same timezone
-                        // but ticks in javascript is always from GMT, unlike 
the server were ticks counts from the base
-                        // date in the current timezone.
-                        gdate.setMinutes(gdate.getMinutes() + 
gdate.getTimezoneOffset());
-                        return gdate;
-                    },
-                    fromGregorian: function(gdate) {
-                        if ((gdate < this.minDate) || (gdate > this.maxDate)) 
return null;
-                        var ticks = this.ticks1970 + (gdate-0) - 
gdate.getTimezoneOffset() * 60000,
-                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 
1 + this.hijriAdjustment;
-                        // very particular formula determined by someone 
smart, adapted from the server-side implementation.
-                        // it approximates the hijri year.
-                        var hday, hmonth, hyear = 
Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,
-                            absDays = this.daysToYear(hyear),
-                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;
-                        // hyear is just approximate, it may need adjustment 
up or down by 1.
-                        if (daysSinceJan0101 < absDays) {
-                            hyear--;
-                            absDays -= daysInYear;
-                        }
-                        else if (daysSinceJan0101 === absDays) {
-                            hyear--;
-                            absDays = this.daysToYear(hyear);
-                        }
-                        else {
-                            if (daysSinceJan0101 > (absDays + daysInYear)) {
-                                absDays += daysInYear;
-                                hyear++;
-                            }
-                        }
-                        // determine month by looking at how many days into 
the hyear we are
-                        // monthDays contains the number of days up to each 
month.
-                        hmonth = 0;
-                        var daysIntoYear = daysSinceJan0101 - absDays;
-                        while (hmonth <= 11 && daysIntoYear > 
this.monthDays[hmonth]) {
-                            hmonth++;
-                        }
-                        hmonth--;
-                        hday = daysIntoYear - this.monthDays[hmonth];
-                        return [hyear, hmonth, hday];
-                    },
-                    daysToYear: function(year) {
-                        // calculates how many days since Jan 1, 0001
-                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,
-                            yearsInto30 = year - yearsToYear30 - 1,
-                            days = Math.floor((yearsToYear30 * 10631) / 30) + 
227013;
-                        while (yearsInto30 > 0) {
-                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);
-                            yearsInto30--;
-                        }
-                        return days;
-                    },
-                    isLeapYear: function(year) {
-                        return ((((year * 11) + 14) % 30) < 11);
-                    }
-                       }
-               },
-               Gregorian_Localized: {
-                       firstDay: 6,
-                       days: {
-                               names: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesAbbr: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesShort: ["ی","د","س","چ","پ","ج","ش"]
-                       },
-                       months: {
-                               names: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګا ښزم
رى","زمرى","وږى","تله","لړم","لنڈ ۍ","مرغومى",""],
-                               namesAbbr: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګا ښ","زم
رى","وږى","تله","لړم","لنڈ ۍ","مرغومى",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"ل.ه","start":null,"offset":0}],
-                       patterns: {
-                               d: "yyyy/M/d",
-                               D: "yyyy, dd, MMMM, dddd",
-                               f: "yyyy, dd, MMMM, dddd h:mm tt",
-                               F: "yyyy, dd, MMMM, dddd h:mm:ss tt",
-                               M: "d MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps.js
deleted file mode 100644
index 9220a75..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ps.js
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * Globalize Culture ps
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "ps", "default", {
-       name: "ps",
-       englishName: "Pashto",
-       nativeName: "پښتو",
-       language: "ps",
-       isRTL: true,
-       numberFormat: {
-               pattern: ["n-"],
-               ",": "،",
-               ".": ",",
-               "NaN": "غ ع",
-               negativeInfinity: "-∞",
-               positiveInfinity: "∞",
-               percent: {
-                       pattern: ["%n-","%n"],
-                       ",": "،",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["$n-","$n"],
-                       ",": "Ù¬",
-                       ".": "Ù«",
-                       symbol: "؋"
-               }
-       },
-       calendars: {
-               standard: {
-                       name: "Hijri",
-                       firstDay: 6,
-                       days: {
-                               names: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesAbbr: 
["الأحد","الإثنين","الثلاثاء","الأربعاء","الخم
يس","الجمعة","السبت"],
-                               namesShort: ["ح","ن","ث","ر","خ","ج","س"]
-                       },
-                       months: {
-                               names: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""],
-                               namesAbbr: ["محرم","صفر","ربيع 
الأول","ربيع الثاني","جمادى الأولى","جمادى 
الثانية","رجب","شعبان","رمضان","شوال","ذو 
القعدة","ذو الحجة",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"بعد 
الهجرة","start":null,"offset":0}],
-                       twoDigitYearMax: 1451,
-                       patterns: {
-                               d: "dd/MM/yy",
-                               D: "dd/MM/yyyy",
-                               f: "dd/MM/yyyy h:mm tt",
-                               F: "dd/MM/yyyy h:mm:ss tt",
-                               M: "dd MMMM"
-                       },
-                       convert: {
-                    // Adapted to Script from 
System.Globalization.HijriCalendar
-                    ticks1970: 62135596800000,
-                    // number of days leading up to each month
-                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 
295, 325, 355],
-                    minDate: -42521673600000,
-                    maxDate: 253402300799999,
-                    // The number of days to add or subtract from the calendar 
to accommodate the variances
-                    // in the start and the end of Ramadan and to accommodate 
the date difference between
-                    // countries/regions. May be dynamically adjusted based on 
user preference, but should
-                    // remain in the range of -2 to 2, inclusive.
-                    hijriAdjustment: 0,
-                    toGregorian: function(hyear, hmonth, hday) {
-                        var daysSinceJan0101 = this.daysToYear(hyear) + 
this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;
-                        // 86400000 = ticks per day
-                        var gdate = new Date(daysSinceJan0101 * 86400000 - 
this.ticks1970);
-                        // adjust for timezone, because we are interested in 
the gregorian date for the same timezone
-                        // but ticks in javascript is always from GMT, unlike 
the server were ticks counts from the base
-                        // date in the current timezone.
-                        gdate.setMinutes(gdate.getMinutes() + 
gdate.getTimezoneOffset());
-                        return gdate;
-                    },
-                    fromGregorian: function(gdate) {
-                        if ((gdate < this.minDate) || (gdate > this.maxDate)) 
return null;
-                        var ticks = this.ticks1970 + (gdate-0) - 
gdate.getTimezoneOffset() * 60000,
-                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 
1 + this.hijriAdjustment;
-                        // very particular formula determined by someone 
smart, adapted from the server-side implementation.
-                        // it approximates the hijri year.
-                        var hday, hmonth, hyear = 
Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,
-                            absDays = this.daysToYear(hyear),
-                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;
-                        // hyear is just approximate, it may need adjustment 
up or down by 1.
-                        if (daysSinceJan0101 < absDays) {
-                            hyear--;
-                            absDays -= daysInYear;
-                        }
-                        else if (daysSinceJan0101 === absDays) {
-                            hyear--;
-                            absDays = this.daysToYear(hyear);
-                        }
-                        else {
-                            if (daysSinceJan0101 > (absDays + daysInYear)) {
-                                absDays += daysInYear;
-                                hyear++;
-                            }
-                        }
-                        // determine month by looking at how many days into 
the hyear we are
-                        // monthDays contains the number of days up to each 
month.
-                        hmonth = 0;
-                        var daysIntoYear = daysSinceJan0101 - absDays;
-                        while (hmonth <= 11 && daysIntoYear > 
this.monthDays[hmonth]) {
-                            hmonth++;
-                        }
-                        hmonth--;
-                        hday = daysIntoYear - this.monthDays[hmonth];
-                        return [hyear, hmonth, hday];
-                    },
-                    daysToYear: function(year) {
-                        // calculates how many days since Jan 1, 0001
-                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,
-                            yearsInto30 = year - yearsToYear30 - 1,
-                            days = Math.floor((yearsToYear30 * 10631) / 30) + 
227013;
-                        while (yearsInto30 > 0) {
-                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);
-                            yearsInto30--;
-                        }
-                        return days;
-                    },
-                    isLeapYear: function(year) {
-                        return ((((year * 11) + 14) % 30) < 11);
-                    }
-                       }
-               },
-               Gregorian_Localized: {
-                       firstDay: 6,
-                       days: {
-                               names: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesAbbr: 
["یکشنبه","دوشنبه","سه\u200cشنبه","چارشنبه","پنجشنبه","جÙ
…عه","شنبه"],
-                               namesShort: ["ی","د","س","چ","پ","ج","ش"]
-                       },
-                       months: {
-                               names: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګا ښزم
رى","زمرى","وږى","تله","لړم","لنڈ ۍ","مرغومى",""],
-                               namesAbbr: 
["سلواغه","كب","ورى","غويى","غبرګولى","چنګا ښ","زم
رى","وږى","تله","لړم","لنڈ ۍ","مرغومى",""]
-                       },
-                       AM: ["غ.م","غ.م","غ.م"],
-                       PM: ["غ.و","غ.و","غ.و"],
-                       eras: [{"name":"ل.ه","start":null,"offset":0}],
-                       patterns: {
-                               d: "yyyy/M/d",
-                               D: "yyyy, dd, MMMM, dddd",
-                               f: "yyyy, dd, MMMM, dddd h:mm tt",
-                               F: "yyyy, dd, MMMM, dddd h:mm:ss tt",
-                               M: "d MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-BR.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-BR.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-BR.js
deleted file mode 100644
index c9a1321..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-BR.js
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Globalize Culture pt-BR
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "pt-BR", "default", {
-       name: "pt-BR",
-       englishName: "Portuguese (Brazil)",
-       nativeName: "Português (Brasil)",
-       language: "pt",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               "NaN": "NaN (Não é um número)",
-               negativeInfinity: "-Infinito",
-               positiveInfinity: "+Infinito",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-$ n","$ n"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "R$"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["domingo","segunda-feira","terça-feira","quarta-feira","quinta-feira","sexta-feira","sábado"],
-                               namesAbbr: 
["dom","seg","ter","qua","qui","sex","sáb"],
-                               namesShort: ["D","S","T","Q","Q","S","S"]
-                       },
-                       months: {
-                               names: 
["janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro",""],
-                               namesAbbr: 
["jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       eras: [{"name":"d.C.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, d' de 'MMMM' de 'yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dddd, d' de 'MMMM' de 'yyyy HH:mm",
-                               F: "dddd, d' de 'MMMM' de 'yyyy HH:mm:ss",
-                               M: "dd' de 'MMMM",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-PT.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-PT.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-PT.js
deleted file mode 100644
index 67a957f..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt-PT.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Globalize Culture pt-PT
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "pt-PT", "default", {
-       name: "pt-PT",
-       englishName: "Portuguese (Portugal)",
-       nativeName: "português (Portugal)",
-       language: "pt",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               "NaN": "NaN (Não é um número)",
-               negativeInfinity: "-Infinito",
-               positiveInfinity: "+Infinito",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-n $","n $"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "€"
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": "-",
-                       firstDay: 1,
-                       days: {
-                               names: 
["domingo","segunda-feira","terça-feira","quarta-feira","quinta-feira","sexta-feira","sábado"],
-                               namesAbbr: 
["dom","seg","ter","qua","qui","sex","sáb"],
-                               namesShort: ["D","S","T","Q","Q","S","S"]
-                       },
-                       months: {
-                               names: 
["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro",""],
-                               namesAbbr: 
["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       eras: [{"name":"d.C.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd-MM-yyyy",
-                               D: "dddd, d' de 'MMMM' de 'yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dddd, d' de 'MMMM' de 'yyyy HH:mm",
-                               F: "dddd, d' de 'MMMM' de 'yyyy HH:mm:ss",
-                               M: "d/M",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt.js
deleted file mode 100644
index 45cbbff..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.pt.js
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Globalize Culture pt
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "pt", "default", {
-       name: "pt",
-       englishName: "Portuguese",
-       nativeName: "Português",
-       language: "pt",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               "NaN": "NaN (Não é um número)",
-               negativeInfinity: "-Infinito",
-               positiveInfinity: "+Infinito",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-$ n","$ n"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "R$"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["domingo","segunda-feira","terça-feira","quarta-feira","quinta-feira","sexta-feira","sábado"],
-                               namesAbbr: 
["dom","seg","ter","qua","qui","sex","sáb"],
-                               namesShort: ["D","S","T","Q","Q","S","S"]
-                       },
-                       months: {
-                               names: 
["janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro",""],
-                               namesAbbr: 
["jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       eras: [{"name":"d.C.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, d' de 'MMMM' de 'yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dddd, d' de 'MMMM' de 'yyyy HH:mm",
-                               F: "dddd, d' de 'MMMM' de 'yyyy HH:mm:ss",
-                               M: "dd' de 'MMMM",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut-GT.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut-GT.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut-GT.js
deleted file mode 100644
index 40f8658..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut-GT.js
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Globalize Culture qut-GT
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "qut-GT", "default", {
-       name: "qut-GT",
-       englishName: "K'iche (Guatemala)",
-       nativeName: "K'iche (Guatemala)",
-       language: "qut",
-       numberFormat: {
-               "NaN": "NeuN",
-               negativeInfinity: "-Infinito",
-               positiveInfinity: "Infinito",
-               currency: {
-                       symbol: "Q"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["juq'ij","kaq'ij","oxq'ij","kajq'ij","joq'ij","waqq'ij","wuqq'ij"],
-                               namesAbbr: 
["juq","kaq","oxq","kajq","joq","waqq","wuqq"],
-                               namesShort: ["ju","ka","ox","ka","jo","wa","wu"]
-                       },
-                       months: {
-                               names: ["nab'e ik'","ukab' ik'","rox ik'","ukaj 
ik'","uro' ik'","uwaq ik'","uwuq ik'","uwajxaq ik'","ub'elej ik'","ulaj 
ik'","ujulaj ik'","ukab'laj ik'",""],
-                               namesAbbr: 
["nab'e","ukab","rox","ukaj","uro","uwaq","uwuq","uwajxaq","ub'elej","ulaj","ujulaj","ukab'laj",""]
-                       },
-                       AM: ["a.m.","a.m.","A.M."],
-                       PM: ["p.m.","p.m.","P.M."],
-                       eras: [{"name":"d.C.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, dd' de 'MMMM' de 'yyyy",
-                               t: "hh:mm tt",
-                               T: "hh:mm:ss tt",
-                               f: "dddd, dd' de 'MMMM' de 'yyyy hh:mm tt",
-                               F: "dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt",
-                               M: "dd MMMM",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut.js
deleted file mode 100644
index 6d6569d..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.qut.js
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Globalize Culture qut
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "qut", "default", {
-       name: "qut",
-       englishName: "K'iche",
-       nativeName: "K'iche",
-       language: "qut",
-       numberFormat: {
-               "NaN": "NeuN",
-               negativeInfinity: "-Infinito",
-               positiveInfinity: "Infinito",
-               currency: {
-                       symbol: "Q"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["juq'ij","kaq'ij","oxq'ij","kajq'ij","joq'ij","waqq'ij","wuqq'ij"],
-                               namesAbbr: 
["juq","kaq","oxq","kajq","joq","waqq","wuqq"],
-                               namesShort: ["ju","ka","ox","ka","jo","wa","wu"]
-                       },
-                       months: {
-                               names: ["nab'e ik'","ukab' ik'","rox ik'","ukaj 
ik'","uro' ik'","uwaq ik'","uwuq ik'","uwajxaq ik'","ub'elej ik'","ulaj 
ik'","ujulaj ik'","ukab'laj ik'",""],
-                               namesAbbr: 
["nab'e","ukab","rox","ukaj","uro","uwaq","uwuq","uwajxaq","ub'elej","ulaj","ujulaj","ukab'laj",""]
-                       },
-                       AM: ["a.m.","a.m.","A.M."],
-                       PM: ["p.m.","p.m.","P.M."],
-                       eras: [{"name":"d.C.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, dd' de 'MMMM' de 'yyyy",
-                               t: "hh:mm tt",
-                               T: "hh:mm:ss tt",
-                               f: "dddd, dd' de 'MMMM' de 'yyyy hh:mm tt",
-                               F: "dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt",
-                               M: "dd MMMM",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-BO.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-BO.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-BO.js
deleted file mode 100644
index 72a80e6..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-BO.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Globalize Culture quz-BO
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "quz-BO", "default", {
-       name: "quz-BO",
-       englishName: "Quechua (Bolivia)",
-       nativeName: "runasimi (Qullasuyu)",
-       language: "quz",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               percent: {
-                       pattern: ["-%n","%n"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["($ n)","$ n"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "$b"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["intichaw","killachaw","atipachaw","quyllurchaw","Ch' 
askachaw","Illapachaw","k'uychichaw"],
-                               namesAbbr: 
["int","kil","ati","quy","Ch'","Ill","k'u"],
-                               namesShort: ["d","k","a","m","h","b","k"]
-                       },
-                       months: {
-                               names: ["Qulla puquy","Hatun puquy","Pauqar 
waray","ayriwa","Aymuray","Inti raymi","Anta Sitwa","Qhapaq Sitwa","Uma 
raymi","Kantaray","Ayamarq'a","Kapaq Raymi",""],
-                               namesAbbr: 
["Qul","Hat","Pau","ayr","Aym","Int","Ant","Qha","Uma","Kan","Aya","Kap",""]
-                       },
-                       AM: ["a.m.","a.m.","A.M."],
-                       PM: ["p.m.","p.m.","P.M."],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, dd' de 'MMMM' de 'yyyy",
-                               t: "hh:mm tt",
-                               T: "hh:mm:ss tt",
-                               f: "dddd, dd' de 'MMMM' de 'yyyy hh:mm tt",
-                               F: "dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-EC.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-EC.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-EC.js
deleted file mode 100644
index 30c4b2f..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-EC.js
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Globalize Culture quz-EC
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "quz-EC", "default", {
-       name: "quz-EC",
-       englishName: "Quechua (Ecuador)",
-       nativeName: "runasimi (Ecuador)",
-       language: "quz",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               percent: {
-                       pattern: ["-%n","%n"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["($ n)","$ n"],
-                       ",": ".",
-                       ".": ","
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["intichaw","killachaw","atipachaw","quyllurchaw","Ch' 
askachaw","Illapachaw","k'uychichaw"],
-                               namesAbbr: 
["int","kil","ati","quy","Ch'","Ill","k'u"],
-                               namesShort: ["d","k","a","m","h","b","k"]
-                       },
-                       months: {
-                               names: ["Qulla puquy","Hatun puquy","Pauqar 
waray","ayriwa","Aymuray","Inti raymi","Anta Sitwa","Qhapaq Sitwa","Uma 
raymi","Kantaray","Ayamarq'a","Kapaq Raymi",""],
-                               namesAbbr: 
["Qul","Hat","Pau","ayr","Aym","Int","Ant","Qha","Uma","Kan","Aya","Kap",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, dd' de 'MMMM' de 'yyyy",
-                               t: "H:mm",
-                               T: "H:mm:ss",
-                               f: "dddd, dd' de 'MMMM' de 'yyyy H:mm",
-                               F: "dddd, dd' de 'MMMM' de 'yyyy H:mm:ss",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-PE.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-PE.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-PE.js
deleted file mode 100644
index e98b310..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz-PE.js
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Globalize Culture quz-PE
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "quz-PE", "default", {
-       name: "quz-PE",
-       englishName: "Quechua (Peru)",
-       nativeName: "runasimi (Piruw)",
-       language: "quz",
-       numberFormat: {
-               percent: {
-                       pattern: ["-%n","%n"]
-               },
-               currency: {
-                       pattern: ["$ -n","$ n"],
-                       symbol: "S/."
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["intichaw","killachaw","atipachaw","quyllurchaw","Ch' 
askachaw","Illapachaw","k'uychichaw"],
-                               namesAbbr: 
["int","kil","ati","quy","Ch'","Ill","k'u"],
-                               namesShort: ["d","k","a","m","h","b","k"]
-                       },
-                       months: {
-                               names: ["Qulla puquy","Hatun puquy","Pauqar 
waray","ayriwa","Aymuray","Inti raymi","Anta Sitwa","Qhapaq Sitwa","Uma 
raymi","Kantaray","Ayamarq'a","Kapaq Raymi",""],
-                               namesAbbr: 
["Qul","Hat","Pau","ayr","Aym","Int","Ant","Qha","Uma","Kan","Aya","Kap",""]
-                       },
-                       AM: ["a.m.","a.m.","A.M."],
-                       PM: ["p.m.","p.m.","P.M."],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, dd' de 'MMMM' de 'yyyy",
-                               t: "hh:mm tt",
-                               T: "hh:mm:ss tt",
-                               f: "dddd, dd' de 'MMMM' de 'yyyy hh:mm tt",
-                               F: "dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz.js
deleted file mode 100644
index 705134d..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.quz.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Globalize Culture quz
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "quz", "default", {
-       name: "quz",
-       englishName: "Quechua",
-       nativeName: "runasimi",
-       language: "quz",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               percent: {
-                       pattern: ["-%n","%n"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["($ n)","$ n"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "$b"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: 
["intichaw","killachaw","atipachaw","quyllurchaw","Ch' 
askachaw","Illapachaw","k'uychichaw"],
-                               namesAbbr: 
["int","kil","ati","quy","Ch'","Ill","k'u"],
-                               namesShort: ["d","k","a","m","h","b","k"]
-                       },
-                       months: {
-                               names: ["Qulla puquy","Hatun puquy","Pauqar 
waray","ayriwa","Aymuray","Inti raymi","Anta Sitwa","Qhapaq Sitwa","Uma 
raymi","Kantaray","Ayamarq'a","Kapaq Raymi",""],
-                               namesAbbr: 
["Qul","Hat","Pau","ayr","Aym","Int","Ant","Qha","Uma","Kan","Aya","Kap",""]
-                       },
-                       AM: ["a.m.","a.m.","A.M."],
-                       PM: ["p.m.","p.m.","P.M."],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, dd' de 'MMMM' de 'yyyy",
-                               t: "hh:mm tt",
-                               T: "hh:mm:ss tt",
-                               f: "dddd, dd' de 'MMMM' de 'yyyy hh:mm tt",
-                               F: "dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt",
-                               Y: "MMMM' de 'yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm-CH.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm-CH.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm-CH.js
deleted file mode 100644
index bac6d14..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm-CH.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Globalize Culture rm-CH
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "rm-CH", "default", {
-       name: "rm-CH",
-       englishName: "Romansh (Switzerland)",
-       nativeName: "Rumantsch (Svizra)",
-       language: "rm",
-       numberFormat: {
-               ",": "'",
-               "NaN": "betg def.",
-               negativeInfinity: "-infinit",
-               positiveInfinity: "+infinit",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": "'"
-               },
-               currency: {
-                       pattern: ["$-n","$ n"],
-                       ",": "'",
-                       symbol: "fr."
-               }
-       },
-       calendars: {
-               standard: {
-                       firstDay: 1,
-                       days: {
-                               names: 
["dumengia","glindesdi","mardi","mesemna","gievgia","venderdi","sonda"],
-                               namesAbbr: 
["du","gli","ma","me","gie","ve","so"],
-                               namesShort: 
["du","gli","ma","me","gie","ve","so"]
-                       },
-                       months: {
-                               names: 
["schaner","favrer","mars","avrigl","matg","zercladur","fanadur","avust","settember","october","november","december",""],
-                               namesAbbr: 
["schan","favr","mars","avr","matg","zercl","fan","avust","sett","oct","nov","dec",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       eras: [{"name":"s. Cr.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, d MMMM yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dddd, d MMMM yyyy HH:mm",
-                               F: "dddd, d MMMM yyyy HH:mm:ss",
-                               M: "dd MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm.js
deleted file mode 100644
index 761118d..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rm.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Globalize Culture rm
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "rm", "default", {
-       name: "rm",
-       englishName: "Romansh",
-       nativeName: "Rumantsch",
-       language: "rm",
-       numberFormat: {
-               ",": "'",
-               "NaN": "betg def.",
-               negativeInfinity: "-infinit",
-               positiveInfinity: "+infinit",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": "'"
-               },
-               currency: {
-                       pattern: ["$-n","$ n"],
-                       ",": "'",
-                       symbol: "fr."
-               }
-       },
-       calendars: {
-               standard: {
-                       firstDay: 1,
-                       days: {
-                               names: 
["dumengia","glindesdi","mardi","mesemna","gievgia","venderdi","sonda"],
-                               namesAbbr: 
["du","gli","ma","me","gie","ve","so"],
-                               namesShort: 
["du","gli","ma","me","gie","ve","so"]
-                       },
-                       months: {
-                               names: 
["schaner","favrer","mars","avrigl","matg","zercladur","fanadur","avust","settember","october","november","december",""],
-                               namesAbbr: 
["schan","favr","mars","avr","matg","zercl","fan","avust","sett","oct","nov","dec",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       eras: [{"name":"s. Cr.","start":null,"offset":0}],
-                       patterns: {
-                               d: "dd/MM/yyyy",
-                               D: "dddd, d MMMM yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dddd, d MMMM yyyy HH:mm",
-                               F: "dddd, d MMMM yyyy HH:mm:ss",
-                               M: "dd MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro-RO.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro-RO.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro-RO.js
deleted file mode 100644
index f677ccf..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro-RO.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Globalize Culture ro-RO
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "ro-RO", "default", {
-       name: "ro-RO",
-       englishName: "Romanian (Romania)",
-       nativeName: "română (România)",
-       language: "ro",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-n $","n $"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "lei"
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": ".",
-                       firstDay: 1,
-                       days: {
-                               names: 
["duminică","luni","marţi","miercuri","joi","vineri","sâmbătă"],
-                               namesAbbr: ["D","L","Ma","Mi","J","V","S"],
-                               namesShort: ["D","L","Ma","Mi","J","V","S"]
-                       },
-                       months: {
-                               names: 
["ianuarie","februarie","martie","aprilie","mai","iunie","iulie","august","septembrie","octombrie","noiembrie","decembrie",""],
-                               namesAbbr: 
["ian.","feb.","mar.","apr.","mai.","iun.","iul.","aug.","sep.","oct.","nov.","dec.",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       patterns: {
-                               d: "dd.MM.yyyy",
-                               D: "d MMMM yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "d MMMM yyyy HH:mm",
-                               F: "d MMMM yyyy HH:mm:ss",
-                               M: "d MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro.js
deleted file mode 100644
index 3d5ac20..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ro.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Globalize Culture ro
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "ro", "default", {
-       name: "ro",
-       englishName: "Romanian",
-       nativeName: "română",
-       language: "ro",
-       numberFormat: {
-               ",": ".",
-               ".": ",",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": ".",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-n $","n $"],
-                       ",": ".",
-                       ".": ",",
-                       symbol: "lei"
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": ".",
-                       firstDay: 1,
-                       days: {
-                               names: 
["duminică","luni","marţi","miercuri","joi","vineri","sâmbătă"],
-                               namesAbbr: ["D","L","Ma","Mi","J","V","S"],
-                               namesShort: ["D","L","Ma","Mi","J","V","S"]
-                       },
-                       months: {
-                               names: 
["ianuarie","februarie","martie","aprilie","mai","iunie","iulie","august","septembrie","octombrie","noiembrie","decembrie",""],
-                               namesAbbr: 
["ian.","feb.","mar.","apr.","mai.","iun.","iul.","aug.","sep.","oct.","nov.","dec.",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       patterns: {
-                               d: "dd.MM.yyyy",
-                               D: "d MMMM yyyy",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "d MMMM yyyy HH:mm",
-                               F: "d MMMM yyyy HH:mm:ss",
-                               M: "d MMMM",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru-RU.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru-RU.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru-RU.js
deleted file mode 100644
index 5946b15..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru-RU.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Globalize Culture ru-RU
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "ru-RU", "default", {
-       name: "ru-RU",
-       englishName: "Russian (Russia)",
-       nativeName: "русский (Россия)",
-       language: "ru",
-       numberFormat: {
-               ",": " ",
-               ".": ",",
-               negativeInfinity: "-бесконечность",
-               positiveInfinity: "бесконечность",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": " ",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-n$","n$"],
-                       ",": " ",
-                       ".": ",",
-                       symbol: "р."
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": ".",
-                       firstDay: 1,
-                       days: {
-                               names: 
["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],
-                               namesAbbr: 
["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],
-                               namesShort: 
["Вс","Пн","Вт","Ср","Чт","Пт","Сб"]
-                       },
-                       months: {
-                               names: 
["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь",""],
-                               namesAbbr: 
["янв","фев","мар","апр","май","июн","июл","авг","сен","окт","ноя","дек",""]
-                       },
-                       monthsGenitive: {
-                               names: 
["января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря",""],
-                               namesAbbr: 
["янв","фев","мар","апр","май","июн","июл","авг","сен","окт","ноя","дек",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       patterns: {
-                               d: "dd.MM.yyyy",
-                               D: "d MMMM yyyy 'г.'",
-                               t: "H:mm",
-                               T: "H:mm:ss",
-                               f: "d MMMM yyyy 'г.' H:mm",
-                               F: "d MMMM yyyy 'г.' H:mm:ss",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru.js
deleted file mode 100644
index 23d54fa..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.ru.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Globalize Culture ru
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "ru", "default", {
-       name: "ru",
-       englishName: "Russian",
-       nativeName: "русский",
-       language: "ru",
-       numberFormat: {
-               ",": " ",
-               ".": ",",
-               negativeInfinity: "-бесконечность",
-               positiveInfinity: "бесконечность",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": " ",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-n$","n$"],
-                       ",": " ",
-                       ".": ",",
-                       symbol: "р."
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": ".",
-                       firstDay: 1,
-                       days: {
-                               names: 
["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],
-                               namesAbbr: 
["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],
-                               namesShort: 
["Вс","Пн","Вт","Ср","Чт","Пт","Сб"]
-                       },
-                       months: {
-                               names: 
["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь",""],
-                               namesAbbr: 
["янв","фев","мар","апр","май","июн","июл","авг","сен","окт","ноя","дек",""]
-                       },
-                       monthsGenitive: {
-                               names: 
["января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря",""],
-                               namesAbbr: 
["янв","фев","мар","апр","май","июн","июл","авг","сен","окт","ноя","дек",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       patterns: {
-                               d: "dd.MM.yyyy",
-                               D: "d MMMM yyyy 'г.'",
-                               t: "H:mm",
-                               T: "H:mm:ss",
-                               f: "d MMMM yyyy 'г.' H:mm",
-                               F: "d MMMM yyyy 'г.' H:mm:ss",
-                               Y: "MMMM yyyy"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw-RW.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw-RW.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw-RW.js
deleted file mode 100644
index 6052f4d..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw-RW.js
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Globalize Culture rw-RW
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "rw-RW", "default", {
-       name: "rw-RW",
-       englishName: "Kinyarwanda (Rwanda)",
-       nativeName: "Kinyarwanda (Rwanda)",
-       language: "rw",
-       numberFormat: {
-               ",": " ",
-               ".": ",",
-               percent: {
-                       ",": " ",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["$-n","$ n"],
-                       ",": " ",
-                       ".": ",",
-                       symbol: "RWF"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: ["Ku wa mbere","Ku wa kabiri","Ku wa 
gatatu","Ku wa kane","Ku wa gatanu","Ku wa gatandatu","Ku cyumweru"],
-                               namesAbbr: 
["mbe.","kab.","gat.","kan.","gat.","gat.","cyu."],
-                               namesShort: ["mb","ka","ga","ka","ga","ga","cy"]
-                       },
-                       months: {
-                               names: 
["Mutarama","Gashyantare","Werurwe","Mata","Gicurasi","Kamena","Nyakanga","Kanama","Nzeli","Ukwakira","Ugushyingo","Ukuboza",""],
-                               namesAbbr: 
["Mut","Gas","Wer","Mat","Gic","Kam","Nya","Kan","Nze","Ukwa","Ugu","Uku",""]
-                       },
-                       AM: ["saa moya z.m.","saa moya z.m.","SAA MOYA Z.M."],
-                       PM: ["saa moya z.n.","saa moya z.n.","SAA MOYA Z.N."],
-                       eras: [{"name":"AD","start":null,"offset":0}]
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw.js
deleted file mode 100644
index 8d63d97..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.rw.js
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Globalize Culture rw
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "rw", "default", {
-       name: "rw",
-       englishName: "Kinyarwanda",
-       nativeName: "Kinyarwanda",
-       language: "rw",
-       numberFormat: {
-               ",": " ",
-               ".": ",",
-               percent: {
-                       ",": " ",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["$-n","$ n"],
-                       ",": " ",
-                       ".": ",",
-                       symbol: "RWF"
-               }
-       },
-       calendars: {
-               standard: {
-                       days: {
-                               names: ["Ku wa mbere","Ku wa kabiri","Ku wa 
gatatu","Ku wa kane","Ku wa gatanu","Ku wa gatandatu","Ku cyumweru"],
-                               namesAbbr: 
["mbe.","kab.","gat.","kan.","gat.","gat.","cyu."],
-                               namesShort: ["mb","ka","ga","ka","ga","ga","cy"]
-                       },
-                       months: {
-                               names: 
["Mutarama","Gashyantare","Werurwe","Mata","Gicurasi","Kamena","Nyakanga","Kanama","Nzeli","Ukwakira","Ugushyingo","Ukuboza",""],
-                               namesAbbr: 
["Mut","Gas","Wer","Mat","Gic","Kam","Nya","Kan","Nze","Ukwa","Ugu","Uku",""]
-                       },
-                       AM: ["saa moya z.m.","saa moya z.m.","SAA MOYA Z.M."],
-                       PM: ["saa moya z.n.","saa moya z.n.","SAA MOYA Z.N."],
-                       eras: [{"name":"AD","start":null,"offset":0}]
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa-IN.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa-IN.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa-IN.js
deleted file mode 100644
index b94958d..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa-IN.js
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Globalize Culture sa-IN
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "sa-IN", "default", {
-       name: "sa-IN",
-       englishName: "Sanskrit (India)",
-       nativeName: "संस्कृत (भारतम्)",
-       language: "sa",
-       numberFormat: {
-               groupSizes: [3,2],
-               percent: {
-                       groupSizes: [3,2]
-               },
-               currency: {
-                       pattern: ["$ -n","$ n"],
-                       groupSizes: [3,2],
-                       symbol: "रु"
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": "-",
-                       days: {
-                               names: 
["रविवासरः","सोमवासरः","मङ्गलवासरः","बुधवासरः","गुरुवासरः","शुक्रवासरः","शनिवासरः"],
-                               namesAbbr: 
["रविवासरः","सोमवासरः","मङ्गलवासरः","बुधवासरः","गुरुवासरः","शुक्रवासरः","शनिवासरः"],
-                               namesShort: 
["र","स","म","ब","ग","श","श"]
-                       },
-                       months: {
-                               names: 
["जनवरी","फरवरी","मार्च","अ
प्रैल","मई","जून","जुलाई","अ
गस्त","सितम्बर","अ
क्तूबर","नवम्बर","दिसम्बर",""],
-                               namesAbbr: 
["जनवरी","फरवरी","मार्च","अ
प्रैल","मई","जून","जुलाई","अ
गस्त","सितम्बर","अ
क्तूबर","नवम्बर","दिसम्बर",""]
-                       },
-                       AM: 
["पूर्वाह्न","पूर्वाह्न","पूर्वाह्न"],
-                       PM: ["अपराह्न","अ
पराह्न","अपराह्न"],
-                       patterns: {
-                               d: "dd-MM-yyyy",
-                               D: "dd MMMM yyyy dddd",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dd MMMM yyyy dddd HH:mm",
-                               F: "dd MMMM yyyy dddd HH:mm:ss",
-                               M: "dd MMMM"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa.js
deleted file mode 100644
index 059f4bf..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sa.js
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Globalize Culture sa
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "sa", "default", {
-       name: "sa",
-       englishName: "Sanskrit",
-       nativeName: "संस्कृत",
-       language: "sa",
-       numberFormat: {
-               groupSizes: [3,2],
-               percent: {
-                       groupSizes: [3,2]
-               },
-               currency: {
-                       pattern: ["$ -n","$ n"],
-                       groupSizes: [3,2],
-                       symbol: "रु"
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": "-",
-                       days: {
-                               names: 
["रविवासरः","सोमवासरः","मङ्गलवासरः","बुधवासरः","गुरुवासरः","शुक्रवासरः","शनिवासरः"],
-                               namesAbbr: 
["रविवासरः","सोमवासरः","मङ्गलवासरः","बुधवासरः","गुरुवासरः","शुक्रवासरः","शनिवासरः"],
-                               namesShort: 
["र","स","म","ब","ग","श","श"]
-                       },
-                       months: {
-                               names: 
["जनवरी","फरवरी","मार्च","अ
प्रैल","मई","जून","जुलाई","अ
गस्त","सितम्बर","अ
क्तूबर","नवम्बर","दिसम्बर",""],
-                               namesAbbr: 
["जनवरी","फरवरी","मार्च","अ
प्रैल","मई","जून","जुलाई","अ
गस्त","सितम्बर","अ
क्तूबर","नवम्बर","दिसम्बर",""]
-                       },
-                       AM: 
["पूर्वाह्न","पूर्वाह्न","पूर्वाह्न"],
-                       PM: ["अपराह्न","अ
पराह्न","अपराह्न"],
-                       patterns: {
-                               d: "dd-MM-yyyy",
-                               D: "dd MMMM yyyy dddd",
-                               t: "HH:mm",
-                               T: "HH:mm:ss",
-                               f: "dd MMMM yyyy dddd HH:mm",
-                               F: "dd MMMM yyyy dddd HH:mm:ss",
-                               M: "dd MMMM"
-                       }
-               }
-       }
-});
-
-}( this ));

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/2b7122d3/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sah-RU.js
----------------------------------------------------------------------
diff --git 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sah-RU.js
 
b/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sah-RU.js
deleted file mode 100644
index 7d1ae37..0000000
--- 
a/security-admin/src/main/webapp/libs/bower/globalize/lib/cultures/globalize.culture.sah-RU.js
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Globalize Culture sah-RU
- *
- * http://github.com/jquery/globalize
- *
- * Copyright Software Freedom Conservancy, Inc.
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * This file was generated by the Globalize Culture Generator
- * Translation: bugs found in this file need to be fixed in the generator
- */
-
-(function( window, undefined ) {
-
-var Globalize;
-
-if ( typeof require !== "undefined" &&
-       typeof exports !== "undefined" &&
-       typeof module !== "undefined" ) {
-       // Assume CommonJS
-       Globalize = require( "globalize" );
-} else {
-       // Global variable
-       Globalize = window.Globalize;
-}
-
-Globalize.addCultureInfo( "sah-RU", "default", {
-       name: "sah-RU",
-       englishName: "Yakut (Russia)",
-       nativeName: "саха (Россия)",
-       language: "sah",
-       numberFormat: {
-               ",": " ",
-               ".": ",",
-               "NaN": "NAN",
-               negativeInfinity: "-бесконечность",
-               positiveInfinity: "бесконечность",
-               percent: {
-                       pattern: ["-n%","n%"],
-                       ",": " ",
-                       ".": ","
-               },
-               currency: {
-                       pattern: ["-n$","n$"],
-                       ",": " ",
-                       ".": ",",
-                       symbol: "с."
-               }
-       },
-       calendars: {
-               standard: {
-                       "/": ".",
-                       firstDay: 1,
-                       days: {
-                               names: 
["баскыһыанньа","бэнидиэнньик","оптуорунньук","сэрэдэ","чэппиэр","бээтинсэ","субуота"],
-                               namesAbbr: 
["Бс","Бн","Оп","Ср","Чп","Бт","Сб"],
-                               namesShort: 
["Бс","Бн","Оп","Ср","Чп","Бт","Сб"]
-                       },
-                       months: {
-                               names: ["Тох
сунньу","Олунньу","Кулун тутар","Муус 
устар","Ыам ыйа","Бэс ыйа","От ыйа","Атырдьах 
ыйа","Балаҕан ыйа","Алтынньы","Сэтинньи","Ах
сынньы",""],
-                               namesAbbr: ["тх
с","олн","кул","мст","ыам","бэс","отй","атр","блҕ","алт","стн","аÑ
…с",""]
-                       },
-                       monthsGenitive: {
-                               names: ["тох
сунньу","олунньу","кулун тутар","муус 
устар","ыам ыйын","бэс ыйын","от 
ыйын","атырдьах ыйын","балаҕан 
ыйын","алтынньы","сэтинньи","ахсынньы",""],
-                               namesAbbr: ["тх
с","олн","кул","мст","ыам","бэс","отй","атр","блҕ","алт","стн","аÑ
…с",""]
-                       },
-                       AM: null,
-                       PM: null,
-                       patterns: {
-                               d: "MM.dd.yyyy",
-                               D: "MMMM d yyyy 'с.'",
-                               t: "H:mm",
-                               T: "H:mm:ss",
-                               f: "MMMM d yyyy 'с.' H:mm",
-                               F: "MMMM d yyyy 'с.' H:mm:ss",
-                               Y: "MMMM yyyy 'с.'"
-                       }
-               }
-       }
-});
-
-}( this ));

Reply via email to