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 ));
