[
  {
    "path": ".gitignore",
    "content": ".project\n*.settings/\n/.project\n/.project\n/build/compiler**\ntmp/**\ndocs**\n.idea\nnode_modules\ntestee.log"
  },
  {
    "path": ".npmignore",
    "content": ".idea/\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: node_js\nnode_js:\n  - 0.10\n"
  },
  {
    "path": "Gruntfile.js",
    "content": "module.exports = function (grunt) {\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: 9001,\n\t\t\t\t\tbase: '.'\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tqunit: {\n\t\t\tall: {\n\t\t\t\toptions: {\n\t\t\t\t\turls: ['http://localhost:9001/test/index.html']\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tconcat: {\n\t\t\tdist: {\n\t\t\t\tsrc: ['src/dform.js', 'src/dform.core.js', 'src/dform.extensions.js'],\n\t\t\t\tdest: 'dist/<%= pkg.name %>-<%= pkg.version %>.js'\n\t\t\t}\n\t\t},\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '/*! <%= pkg.name %> <%= grunt.template.today(\"yyyy-mm-dd\") %> */\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: ['dist/<%= pkg.name %>-<%= pkg.version %>.js'],\n\t\t\t\tdest: 'dist/<%= pkg.name %>-<%= pkg.version %>.min.js'\n\t\t\t}\n\t\t}\n\t});\n\n\tgrunt.loadNpmTasks('grunt-contrib-uglify');\n\tgrunt.loadNpmTasks('grunt-contrib-concat');\n\tgrunt.loadNpmTasks('grunt-contrib-qunit');\n\tgrunt.loadNpmTasks('grunt-contrib-connect');\n\n\n\tgrunt.registerTask('test', ['connect', 'qunit']);\n\tgrunt.registerTask('default', ['concat', 'uglify']);\n};\n"
  },
  {
    "path": "bower.json",
    "content": "{\n\t\"name\": \"jquery.dform\",\n\t\"version\": \"1.1.0\",\n\t\"main\": \"dist/jquery.dform-1.1.0.js\",\n\t\"ignore\": [\n\t\t\".jshintrc\",\n\t\t\"**/*.txt\"\n\t],\n\t\"dependencies\": {\n\t\t\"jquery\": \">= 1.7.1\"\n\t}\n}"
  },
  {
    "path": "dist/jquery.dform-1.0.1.js",
    "content": "/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n * \n * Licensed under the MIT license\n */\n(function ($) {\n\tvar _subscriptions = {},\n\t\t_types = {},\n\t\teach = $.each,\n\t\taddToObject = function (obj) {\n\t\t\tvar result = function (data, fn, condition) {\n\t\t\t\tif (typeof data === 'object') {\n\t\t\t\t\t$.each(data, function (name, val) {\n\t\t\t\t\t\tresult(name, val, condition);\n\t\t\t\t\t});\n\t\t\t\t} else if (condition === undefined || condition === true) {\n\t\t\t\t\tif (!obj[data]) {\n\t\t\t\t\t\tobj[data] = [];\n\t\t\t\t\t}\n\t\t\t\t\tobj[data].push(fn);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t},\n\t\tisArray = $.isArray,\n\t\t/**\n\t\t * Returns an array of keys (properties) contained in the given object.\n\t\t *\n\t\t * @param {Object} object The object to use\n\t\t * @return {Array} An array containing all properties in the object\n\t\t */\n\t\t\tkeyset = function (object) {\n\t\t\treturn $.map(object, function (val, key) {\n\t\t\t\treturn key;\n\t\t\t});\n\t\t},\n\t\t/**\n\t\t * Returns an object that contains all values from the given\n\t\t * object that have a key which is also in the array keys.\n\t\t *\n\t\t * @param {Object} object The object to traverse\n\t\t * @param {Array} keys The keys the new object should contain\n\t\t * @return {Object} A new object containing only the properties\n\t\t * with names given in keys\n\t\t */\n\t\t\twithKeys = function (object, keys) {\n\t\t\tvar result = {};\n\t\t\teach(keys, function (index, value) {\n\t\t\t\tif (object[value]) {\n\t\t\t\t\tresult[value] = object[value];\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn result;\n\t\t},\n\t\t/**\n\t\t * Returns an object that contains all value from the given\n\t\t * object that do not have a key which is also in the array keys.\n\t\t *\n\t\t * @param {Object} object The object to traverse\n\t\t * @param {Array} keys A list of keys that should not be contained in the new object\n\t\t * @return {Object} A new object with all properties of the given object, except\n\t\t * for the ones given in the list of keys\n\t\t */\n\t\t\twithoutKeys = function (object, keys) {\n\t\t\tvar result = {};\n\t\t\teach(object, function (index, value) {\n\t\t\t\tif (!~$.inArray(index, keys)) {\n\t\t\t\t\tresult[index] = value;\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn result;\n\t\t},\n\t\t/**\n\t\t * Run all subscriptions with the given name and options\n\t\t * on an element.\n\t\t *\n\t\t * @param {String} name The name of the subscriber function\n\t\t * @param {Object} options ptions for the function\n\t\t * @param {String} type The type of the current element as in the registered types\n\t\t * @return {Object} The jQuery object\n\t\t */\n\t\t\trunSubscription = function (name, options, type) {\n\t\t\tif ($.dform.hasSubscription(name)) {\n\t\t\t\tthis.each(function () {\n\t\t\t\t\tvar element = $(this);\n\t\t\t\t\teach(_subscriptions[name], function (i, sfn) {\n\t\t\t\t\t\t// run subscriber function with options\n\t\t\t\t\t\tsfn.call(element, options, type);\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn this;\n\t\t},\n\t\t/**\n\t\t * Run all subscription functions with given options.\n\t\t *\n\t\t * @param {Object} options The options to use\n\t\t * @return {Object} The jQuery element this function has been called on\n\t\t */\n\t\t\trunAll = function (options) {\n\t\t\tvar type = options.type, self = this;\n\t\t\t// Run preprocessing subscribers\n\t\t\tthis.dform('run', '[pre]', options, type);\n\t\t\teach(options, function (name, sopts) {\n\t\t\t\tself.dform('run', name, sopts, type);\n\t\t\t});\n\t\t\t// Run post processing subscribers\n\t\t\tthis.dform('run', '[post]', options, type);\n\t\t\treturn this;\n\t\t};\n\n\t/**\n\t * Globals added directly to the jQuery object\n\t */\n\t$.extend($, {\n\t\tkeyset : keyset,\n\t\twithKeys : withKeys,\n\t\twithoutKeys : withoutKeys,\n\t\tdform : {\n\t\t\t/**\n\t\t\t * Default options the plugin is initialized with:\n\t\t\t *\n\t\t\t * ## prefix\n\t\t\t *\n\t\t\t * The Default prefix used for element classnames generated by the dform plugin.\n\t\t\t * Defaults to _ui-dform-_\n\t\t\t * E.g. an element with type text will have the class ui-dform-text\n\t\t\t *\n\t\t\t */\n\t\t\toptions : {\n\t\t\t\tprefix : \"ui-dform-\"\n\t\t\t},\n\n\t\t\t/**\n\t\t\t * A function that is called, when no registered type has been found.\n\t\t\t * The default behaviour returns an HTML element with the tag\n\t\t\t * as specified in type and the HTML attributes given in options\n\t\t\t * (without subscriber options).\n\t\t\t *\n\t\t\t * @param {Object} options\n\t\t\t * @return {Object} The created object\n\t\t\t */\n\t\t\tdefaultType : function (options) {\n\t\t\t\treturn $(\"<\" + options.type + \">\").dform('attr', options);\n\t\t\t},\n\t\t\t/**\n\t\t\t * Return all types.\n\t\t\t *\n\t\t\t * @params {String} name (optional) If passed return\n\t\t\t * all type generators for a given name.\n\t\t\t * @return {Object} Mapping from type name to\n\t\t\t * an array of generator functions.\n\t\t\t */\n\t\t\ttypes : function (name) {\n\t\t\t\treturn name ? _types[name ] : _types;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Register an element type function.\n\t\t\t *\n\t\t\t * @param {String|Array} data Can either be the name of the type\n\t\t\t * function or an object that contains name : type function pairs\n\t\t\t * @param {Function} fn The function that creates a new type element\n\t\t\t */\n\t\t\taddType : addToObject(_types),\n\t\t\t/**\n\t\t\t * Returns all subscribers or all subscribers for a given name.\n\t\t\t *\n\t\t\t * @params {String} name (optional) If passed return all\n\t\t\t * subscribers for a given name\n\t\t\t * @return {Object} Mapping from subscriber names\n\t\t\t * to an array of subscriber functions.\n\t\t\t */\n\t\t\tsubscribers : function (name) {\n\t\t\t\treturn name ? _subscriptions[name] : _subscriptions;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Register a subscriber function.\n\t\t\t *\n\t\t\t * @param {String|Object} data Can either be the name of the subscriber\n\t\t\t * function or an object that contains name : subscriber function pairs\n\t\t\t * @param {Function} fn The function to subscribe or nothing if an object is passed for data\n\t\t\t * @param {Array} deps An optional list of dependencies\n\t\t\t */\n\t\t\tsubscribe : addToObject(_subscriptions),\n\t\t\t/**\n\t\t\t * Returns if a subscriber function with the given name\n\t\t\t * has been registered.\n\t\t\t *\n\t\t\t * @param {String} name The subscriber name\n\t\t\t * @return {Boolean} True if the given name has at least one subscriber registered,\n\t\t\t *     false otherwise\n\t\t\t */\n\t\t\thasSubscription : function (name) {\n\t\t\t\treturn _subscriptions[name] ? true : false;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Create a new element.\n\t\t\t *\n\t\t\t * @param {Object} options - The options to use\n\t\t\t * @return {Object} The element as created by the builder function specified\n\t\t\t *     or returned by the defaultType function.\n\t\t\t */\n\t\t\tcreateElement : function (options) {\n\t\t\t\tif (!options.type) {\n\t\t\t\t\tthrow \"No element type given! Must always exist.\";\n\t\t\t\t}\n\t\t\t\tvar type = options.type,\n\t\t\t\t\telement = null,\n\t\t\t\t// We don't need the type key in the options\n\t\t\t\t\topts = $.withoutKeys(options, [\"type\"]);\n\n\t\t\t\tif (_types[type]) {\n\t\t\t\t\t// Run all type element builder functions called typename\n\t\t\t\t\teach(_types[type], function (i, sfn) {\n\t\t\t\t\t\telement = sfn.call(element, opts);\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t// Call defaultType function if no type was found\n\t\t\t\t\telement = $.dform.defaultType(options);\n\t\t\t\t}\n\t\t\t\treturn $(element);\n\t\t\t},\n\t\t\tmethods : {\n\t\t\t\t/**\n\t\t\t\t * Run all subscriptions with the given name and options\n\t\t\t\t * on an element.\n\t\t\t\t *\n\t\t\t\t * @param {String} name The name of the subscriber function\n\t\t\t\t * @param {Object} options ptions for the function\n\t\t\t\t * @param {String} type The type of the current element as in the registered types\n\t\t\t\t * @return {Object} The jQuery object\n\t\t\t\t */\n\t\t\t\trun : function (name, options, type) {\n\t\t\t\t\tif (typeof name !== 'string') {\n\t\t\t\t\t\treturn runAll.call(this, name);\n\t\t\t\t\t}\n\t\t\t\t\treturn runSubscription.call(this, name, options, type);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * Creates a form element on an element with given options\n\t\t\t\t *\n\t\t\t\t * @param {Object} options The options to use\n\t\t\t\t * @return {Object} The jQuery element this function has been called on\n\t\t\t\t */\n\t\t\t\tappend : function (options, converter) {\n\t\t\t\t\tif (converter && $.dform.converters && $.isFunction($.dform.converters[converter])) {\n\t\t\t\t\t\toptions = $.dform.converters[converter](options);\n\t\t\t\t\t}\n\t\t\t\t\t// Create element (run builder function for type)\n\t\t\t\t\tvar element = $.dform.createElement(options);\n\t\t\t\t\tthis.append(element);\n\t\t\t\t\t// Run all subscriptions\n\t\t\t\t\telement.dform('run', options);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * Adds HTML attributes to the current element from the given options.\n\t\t\t\t * Any subscriber will be omitted so that the attributes will contain any\n\t\t\t\t * key value pair where the key is not the name of a subscriber function\n\t\t\t\t * and is not in the string array excludes.\n\t\t\t\t *\n\t\t\t\t * @param {Object} object The attribute object\n\t\t\t\t * @param {Array} excludes A list of keys that should also be excluded\n\t\t\t\t * @return {Object} The jQuery object of the this reference\n\t\t\t\t */\n\t\t\t\tattr : function (object, excludes) {\n\t\t\t\t\t// Ignore any subscriber name and the objects given in excludes\n\t\t\t\t\tvar ignores = $.keyset(_subscriptions);\n\t\t\t\t\tisArray(excludes) && $.merge(ignores, excludes);\n\t\t\t\t\tthis.attr($.withoutKeys(object, ignores));\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t *\n\t\t\t\t *\n\t\t\t\t * @param params\n\t\t\t\t * @param success\n\t\t\t\t * @param error\n\t\t\t\t */\n\t\t\t\tajax : function (params, success, error) {\n\t\t\t\t\tvar options = {\n\t\t\t\t\t\terror : error,\n\t\t\t\t\t\turl : params\n\t\t\t\t\t}, self = this;\n\t\t\t\t\tif (typeof params !== 'string') {\n\t\t\t\t\t\t$.extend(options, params);\n\t\t\t\t\t}\n\t\t\t\t\toptions.success = function (data) {\n\t\t\t\t\t\tself.dform(data);\n\t\t\t\t\t\tif(success) {\n\t\t\t\t\t\t\tsuccess.call(self, data);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t$.ajax(options);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t *\n\t\t\t\t *\n\t\t\t\t * @param options\n\t\t\t\t */\n\t\t\t\tinit : function (options, converter) {\n\t\t\t\t\tvar opts = options.type ? options : $.extend({ \"type\" : \"form\" }, options);\n\t\t\t\t\tif (converter && $.dform.converters && $.isFunction($.dform.converters[converter])) {\n\t\t\t\t\t\topts = $.dform.converters[converter](opts);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.is(opts.type)) {\n\t\t\t\t\t\tthis.dform('attr', opts);\n\t\t\t\t\t\tthis.dform('run', opts);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.dform('append', opts);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\t/**\n\t * The jQuery plugin function\n\t *\n\t * @param options The form options\n\t * @param {String} converter The name of the converter in $.dform.converters\n\t * that will be used to convert the options\n\t */\n\t$.fn.dform = function (options, converter, error) {\n\t\tvar self = $(this);\n\t\tif ($.dform.methods[options]) {\n\t\t\t$.dform.methods[options].apply(self, Array.prototype.slice.call(arguments, 1));\n\t\t} else {\n\t\t\tif (typeof options === 'string') {\n\t\t\t\t$.dform.methods.ajax.call(self, {\n\t\t\t\t\turl : options,\n\t\t\t\t\tdataType : 'json'\n\t\t\t\t}, converter, error);\n\t\t\t} else {\n\t\t\t\t$.dform.methods.init.apply(self, arguments);\n\t\t\t}\n\t\t}\n\t\treturn this;\n\t}\n})(jQuery);\n\n/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n *\n * Licensed under the MIT license\n */\n(function ($) {\n\tvar each = $.each,\n\t\t_element = function (tag, excludes) {\n\t\t\treturn function (ops) {\n\t\t\t\treturn $(tag).dform('attr', ops, excludes);\n\t\t\t};\n\t\t},\n\t\t_html = function (options, type) {\n\t\t\tvar self = this;\n\t\t\tif ($.isPlainObject(options)) {\n\t\t\t\tself.dform('append', options);\n\t\t\t} else if ($.isArray(options)) {\n\t\t\t\teach(options, function (index, nested) {\n\t\t\t\t\tself.dform('append', nested);\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tself.html(options);\n\t\t\t}\n\t\t};\n\n\t$.dform.addType({\n\t\tcontainer : _element(\"<div>\"),\n\t\ttext : _element('<input type=\"text\" />'),\n\t\tpassword : _element('<input type=\"password\" />'),\n\t\tsubmit : _element('<input type=\"submit\" />'),\n\t\treset : _element('<input type=\"reset\" />'),\n\t\thidden : _element('<input type=\"hidden\" />'),\n\t\tradio : _element('<input type=\"radio\" />'),\n\t\tcheckbox : _element('<input type=\"checkbox\" />'),\n\t\tfile : _element('<input type=\"file\" />'),\n\t\tnumber : _element('<input type=\"number\" />'),\n\t\turl : _element('<input type=\"url\" />'),\n\t\ttel : _element('<input type=\"tel\" />'),\n\t\temail : _element('<input type=\"email\" />'),\n\t\tcheckboxes : _element(\"<div>\", [\"name\"]),\n\t\tradiobuttons : _element(\"<div>\", [\"name\"])\n\t});\n\n\t$.dform.subscribe({\n\t\t/**\n\t\t * Adds a class to the current element.\n\t\t * Ovverrides the default behaviour which would be replacing the class attribute.\n\t\t *\n\t\t * @param options A list of whitespace separated classnames\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"class\" : function (options, type) {\n\t\t\tthis.addClass(options);\n\t\t},\n\n\t\t/**\n\t\t * Sets html content of the current element\n\t\t *\n\t\t * @param options The html content to set as a string\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"html\" : _html,\n\n\t\t/**\n\t\t * Recursively appends subelements to the current form element.\n\t\t *\n\t\t * @param options Either an object with key value pairs\n\t\t *\t where the key is the element name and the value the\n\t\t *\t subelement options or an array of objects where each object\n\t\t *\t is the options for a subelement\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"elements\" : _html,\n\n\t\t/**\n\t\t * Sets the value of the current element.\n\t\t *\n\t\t * @param options The value to set\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"value\" : function (options) {\n\t\t\tthis.val(options);\n\t\t},\n\n\t\t/**\n\t\t * Set CSS styles for the current element\n\t\t *\n\t\t * @param options The Styles to set\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"css\" : function (options) {\n\t\t\tthis.css(options);\n\t\t},\n\n\t\t/**\n\t\t * Adds options to select type elements or radio and checkbox list elements.\n\t\t *\n\t\t * @param options A key value pair where the key is the\n\t\t *\t option value and the value the options text or the settings for the element.\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"options\" : function (options, type) {\n\t\t\tvar self = this;\n\t\t\t// Options for select elements\n\t\t\tif ((type === \"select\" || type === \"optgroup\") && typeof options !== 'string')\n\t\t\t{\n\t\t\t\teach(options, function (value, content) {\n\t\t\t\t\tvar option = { type : 'option', value : value };\n\t\t\t\t\tif (typeof (content) === \"string\") {\n\t\t\t\t\t\toption.html = content;\n\t\t\t\t\t}\n\t\t\t\t\tif (typeof (content) === \"object\") {\n\t\t\t\t\t\toption = $.extend(option, content);\n\t\t\t\t\t}\n\t\t\t\t\tself.dform('append', option);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse if (type === \"checkboxes\" || type === \"radiobuttons\") {\n\t\t\t\t// Options for checkbox and radiobutton lists\n\t\t\t\teach(options, function (value, content) {\n\t\t\t\t\tvar boxoptions = ((type === \"radiobuttons\") ? { \"type\" : \"radio\" } : { \"type\" : \"checkbox\" });\n\t\t\t\t\tif (typeof(content) === \"string\") {\n\t\t\t\t\t\tboxoptions[\"caption\"] = content;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$.extend(boxoptions, content);\n\t\t\t\t\t}\n\t\t\t\t\tboxoptions[\"value\"] = value;\n\t\t\t\t\tself.dform('append', boxoptions);\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Adds caption to elements.\n\t\t *\n\t\t * Depending on the element type the following elements will\n\t\t * be used:\n\t\t * - A legend for <fieldset> elements\n\t\t * - A <label> next to <radio> or <checkbox> elements\n\t\t * - A <label> before any other element\n\t\t *\n\t\t * @param options A string for the caption or the options for the\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"caption\" : function (options, type) {\n\t\t\tvar ops = {};\n\t\t\tif (typeof (options) === \"string\") {\n\t\t\t\tops[\"html\"] = options;\n\t\t\t} else {\n\t\t\t\t$.extend(ops, options);\n\t\t\t}\n\n\t\t\tif (type == \"fieldset\") {\n\t\t\t\t// Labels for fieldsets are legend\n\t\t\t\tops.type = \"legend\";\n\t\t\t\tthis.dform('append', ops);\n\t\t\t} else {\n\t\t\t\tops.type = \"label\";\n\t\t\t\tif (this.attr(\"id\")) {\n\t\t\t\t\tops[\"for\"] = this.attr(\"id\");\n\t\t\t\t}\n\t\t\t\tvar label = $($.dform.createElement(ops));\n\t\t\t\tif (type === \"checkbox\" || type === \"radio\") {\n\t\t\t\t\tthis.parent().append($(label));\n\t\t\t\t} else {\n\t\t\t\t\tlabel.insertBefore(this);\n\t\t\t\t}\n\t\t\t\tlabel.dform('run', ops);\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * The subscriber for the type parameter.\n\t\t * Although the type parameter is used to get the correct element\n\t\t * type it is just treated as a simple subscriber otherwise.\n\t\t * Since every element needs a type\n\t\t * parameter feel free to add other type subscribers to do\n\t\t * any processing between [pre] and [post].\n\t\t *\n\t\t * This subscriber adds the auto generated classes according\n\t\t * to the type prefix in $.dform.options.prefix.\n\t\t *\n\t\t * @param options The name of the type\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"type\" : function (options, type) {\n\t\t\tif ($.dform.options.prefix) {\n\t\t\t\tthis.addClass($.dform.options.prefix + type);\n\t\t\t}\n\t\t},\n\t\t/**\n\t\t * Retrieves JSON data from a URL and creates a sub form.\n\t\t *\n\t\t * @param options\n\t\t * @param type\n\t\t */\n\t\t\"url\" : function (options, type) {\n\t\t\t// TODO this.buildForm(options);\n\t\t},\n\n\t\t/**\n\t\t * Post processing function, that will run whenever all other subscribers are finished.\n\t\t *\n\t\t * @param options All options that have been used for\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"[post]\" : function (options, type) {\n\t\t\tif (type === \"checkboxes\" || type === \"radiobuttons\") {\n\t\t\t\tvar boxtype = ((type === \"checkboxes\") ? \"checkbox\" : \"radio\");\n\t\t\t\tthis.children(\"[type=\" + boxtype + \"]\").each(function () {\n\t\t\t\t\t$(this).attr(\"name\", options.name);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n\n/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n * \n * Licensed under the MIT license\n */\n(function($)\n{\n\tvar _getOptions = function(type, options)\n\t\t{\n\t\t\treturn $.withKeys(options, $.keyset($.ui[type][\"prototype\"][\"options\"]));\n\t\t},\n\t\t_get = function(keys, obj) {\n\t\t\tfor(var item = obj, i = 0; i < keys.length; i++) {\n\t\t\t\titem = item[keys[i]];\n\t\t\t\tif(!item) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn item;\n\t\t}\n\t\t\n\t$.dform.addType(\"progressbar\",\n\t\t/**\n\t\t * Returns a jQuery UI progressbar.\n\t\t *\n\t\t * @param options  As specified in the jQuery UI progressbar documentation at\n\t\t * \thttp://jqueryui.com/demos/progressbar/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options).progressbar(_getOptions(\"progressbar\", options));\n\t\t}, $.isFunction($.fn.progressbar));\n\n\t$.dform.addType(\"slider\",\n\t\t/**\n\t\t * Returns a slider element.\n\t\t *\n\t\t * @param options As specified in the jQuery UI slider documentation at\n\t\t * \thttp://jqueryui.com/demos/slider/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options).slider(_getOptions(\"slider\", options));\n\t\t}, $.isFunction($.fn.slider));\n\n\t$.dform.addType(\"accordion\",\n\t\t/**\n\t\t * Creates an element container for a jQuery UI accordion.\n\t\t *\n\t\t * @param options As specified in the jQuery UI accordion documentation at\n\t\t * \thttp://jqueryui.com/demos/accordion/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options);\n\t\t}, $.isFunction($.fn.accordion));\n\n\t$.dform.addType(\"tabs\",\n\t\t/**\n\t\t * Returns a container for jQuery UI tabs.\n\t\t *\n\t\t * @param options The options as in jQuery UI tab\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options);\n\t\t}, $.isFunction($.fn.tabs));\n\t\n\t$.dform.subscribe(\"entries\",\n\t\t/**\n\t\t *  Create entries for the accordion type.\n\t\t *  Use the <elements> subscriber to create subelements in each entry.\n\t\t *\n\t\t * @param options All options for the container div. The <caption> will be\n\t\t * \tturned into the accordion or tab title.\n\t\t * @param type The type. This subscriber will only run for accordion\n\t\t */\n\t\tfunction(options, type) {\n\t\t\tif(type == \"accordion\")\n\t\t\t{\n\t\t\t\tvar scoper = this;\n\t\t\t\t$.each(options, function(index, options) {\n\t\t\t\t\tvar el = $.extend({ \"type\" : \"div\" }, options);\n\t\t\t\t\t$(scoper).dform('append', el);\n\t\t\t\t\tif(options.caption) {\n\t\t\t\t\t\tvar label = $(scoper).children(\"div:last\").prev();\n\t\t\t\t\t\tlabel.replaceWith('<h3><a href=\"#\">' + label.html() + '</a></h3>');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}, $.isFunction($.fn.accordion));\n\n\t$.dform.subscribe(\"entries\",\n\t\t/**\n\t\t *  Create entries for the accordion type.\n\t\t *  Use the <elements> subscriber to create subelements in each entry.\n\t\t *\n\t\t * @param options All options for the container div. The <caption> will be\n\t\t * \tturned into the accordion or tab title.\n\t\t * @param type The type. This subscriber will only run for accordion\n\t\t */\n\t\tfunction(options, type) {\n\t\t\tif(type == \"tabs\")\n\t\t\t{\n\t\t\t\tvar scoper = this;\n\t\t\t\tthis.append(\"<ul>\");\n\t\t\t\tvar ul = $(scoper).children(\"ul:first\");\n\t\t\t\t$.each(options, function(index, options) {\n\t\t\t\t\tvar id = options.id ? options.id : index;\n\t\t\t\t\t$.extend(options, { \"type\" : \"container\", \"id\" : id });\n\t\t\t\t\t$(scoper).dform('append', options);\n\t\t\t\t\tvar label = $(scoper).children(\"div:last\").prev();\n\t\t\t\t\t$(label).wrapInner($(\"<a>\").attr(\"href\", \"#\" + id));\n\t\t\t\t\t$(ul).append($(\"<li>\").wrapInner(label));\n\t\t\t\t});\n\t\t\t}\n\t\t}, $.isFunction($.fn.tabs));\n\t\t\n\t$.dform.subscribe(\"dialog\",\n\t\t/**\n\t\t * Turns an element into a jQuery UI dialog.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI dialog documentation\\(http://jqueryui.com/demos/dialog/)\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\tthis.dialog(options);\n\t\t}, $.isFunction($.fn.dialog));\n\n\t$.dform.subscribe(\"resizable\",\n\t\t/**\n\t\t * Make the current element resizable.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI resizable documentation](http://jqueryui.com/demos/resizable/)\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\tthis.resizable(options);\n\t\t}, $.isFunction($.fn.resizable));\n\n\t$.dform.subscribe(\"datepicker\",\n\t\t/**\n\t\t * Adds a jQuery UI datepicker to an element of type text.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI datepicker documentation](http://jqueryui.com/demos/datepicker/)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (type == \"text\") {\n\t\t\t\tthis.datepicker(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.datepicker));\n\n\t$.dform.subscribe(\"autocomplete\",\n\t\t/**\n\t\t * Adds the autocomplete feature to a text element.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI autotomplete documentation](http://jqueryui.com/demos/autotomplete/)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (type == \"text\") {\n\t\t\t\tthis.autocomplete(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.autocomplete));\n\n\t$.dform.subscribe(\"[post]\",\n\t\t/**\n\t\t * Post processing subscriber that adds jQuery UI styling classes to\n\t\t * text, textarea, password and fieldset elements as well\n\t\t * as calling .button() on submit or button elements.\n\t\t *\n\t\t * Additionally, accordion and tabs elements will be initialized\n\t\t * with their options.\n\t\t *\n\t\t * @param options All options that have been passed for creating the element\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (this.parents(\"form\").hasClass(\"ui-widget\"))\n\t\t\t{\n\t\t\t\tif ((type === \"button\" || type === \"submit\") && $.isFunction($.fn.button)) {\n\t\t\t\t\tthis.button();\n\t\t\t\t}\n\t\t\t\tif (!!~$.inArray(type, [ \"text\", \"textarea\", \"password\",\n\t\t\t\t\t\t\"fieldset\" ])) {\n\t\t\t\t\tthis.addClass(\"ui-widget-content ui-corner-all\");\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(type === \"accordion\" || type === \"tabs\") {\n\t\t\t\tthis[type](_getOptions(type, options));\n\t\t\t}\n\t\t});\n\t\n\t$.dform.subscribe(\"[pre]\",\n\t\t/**\n\t\t * Add a preprocessing subscriber that calls .validate() on the form,\n\t\t * so that we can add rules to the input elements. Additionally\n\t\t * the jQuery UI highlight classes will be added to the validation\n\t\t * plugin default settings if the form has the ui-widget class.\n\t\t * \n\t\t * @param options All options that have been used for\n\t\t * creating the current element.\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type == \"form\")\n\t\t\t{\n\t\t\t\tvar defaults = {};\n\t\t\t\tif(this.hasClass(\"ui-widget\"))\n\t\t\t\t{\n\t\t\t\t\tdefaults = {\n\t\t\t\t\t\thighlight: function(input)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$(input).addClass(\"ui-state-highlight\");\n\t\t\t\t\t\t},\n\t\t\t\t\t\tunhighlight: function(input)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$(input).removeClass(\"ui-state-highlight\");\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (typeof (options.validate) == 'object') {\n\t\t\t\t\t$.extend(defaults, options.validate);\n\t\t\t\t}\n\t\t\t\tthis.validate(defaults);\n\t\t\t}\n\t\t}, $.isFunction($.fn.validate));\n\n\t\t/**\n\t\t * Adds support for the jQuery validation rulesets.\n\t\t * For types: text, password, textarea, radio, checkbox sets up rules through rules(\"add\", rules) for validation plugin\n\t\t * For type <form> sets up as options object for validate method of validation plugin\n\t\t * For rules of types checkboxes and radiobuttons you should use this subscriber for type form (to see example below)\n\t\t *\n\t\t * @param options\n\t\t * @param type\n\t\t */\n\t$.dform.subscribe(\"validate\", function(options, type)\n\t\t{\n\t\t\tif (type != \"form\") {\n\t\t\t\tthis.rules(\"add\", options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.validate));\n\n\t$.dform.subscribe(\"ajax\",\n\t\t/**\n\t\t * If the current element is a form, it will be turned into a dynamic form\n\t\t * that can be submitted asynchronously.\n\t\t *\n\t\t * @param options Options as specified in the [jQuery Form plugin documentation](http://jquery.malsup.com/form/#options-object)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type === \"form\")\n\t\t\t{\n\t\t\t\tthis.ajaxForm(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.ajaxForm));\n\n\t$.dform.subscribe('html',\n\t\t/**\n\t\t * Extends the html subscriber that will replace any string with it's translated\n\t\t * equivalent using the jQuery Global plugin. The html content will be interpreted\n\t\t * as an index string where the first part indicates the localize main index and\n\t\t * every following a sub index using getValueAt.\n\t\t *\n\t\t * @param options The dot separated html string to localize\n\t\t * @param type The type of the this element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(typeof options === 'string') {\n\t\t\t\tvar keys = options.split('.'),\n\t\t\t\t\ttranslated = Globalize.localize(keys.shift());\n\t\t\t\tif(translated = _get(keys, translated)) {\n\t\t\t\t\t$(this).html(translated);\n\t\t\t\t}\n\t\t\t}\n\t\t}, typeof Globalize !== 'undefined' && $.isFunction(Globalize.localize));\n\n\t$.dform.subscribe('options',\n\t\t/**\n\t\t * Extends the options subscriber for using internationalized option\n\t\t * lists.\n\t\t *\n\t\t * @param options Options as specified in the <jQuery Form plugin documentation at http://jquery.malsup.com/form/#options-object>\n\t\t * @param type The type of the element.\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type === 'select' && typeof(options) === 'string') {\n\t\t\t\t$(this).html('');\n\t\t\t\tvar keys = options.split('.'),\n\t\t\t\t\toptlist = Globalize.localize(keys.shift());\n\t\t\t\tif(optlist = _get(keys, optlist)) {\n\t\t\t\t\t$(this).dform('run', 'options', optlist, type);\n\t\t\t\t}\n\t\t\t}\n\t\t}, typeof Globalize !== 'undefined' && $.isFunction(Globalize.localize));\n})(jQuery);\n"
  },
  {
    "path": "dist/jquery.dform-1.1.0.js",
    "content": "/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n * \n * Licensed under the MIT license\n */\n(function ($) {\n\tvar _subscriptions = {},\n\t\t_types = {},\n\t\teach = $.each,\n\t\taddToObject = function (obj) {\n\t\t\tvar result = function (data, fn, condition) {\n\t\t\t\tif (typeof data === 'object') {\n\t\t\t\t\t$.each(data, function (name, val) {\n\t\t\t\t\t\tresult(name, val, condition);\n\t\t\t\t\t});\n\t\t\t\t} else if (condition === undefined || condition === true) {\n\t\t\t\t\tif (!obj[data]) {\n\t\t\t\t\t\tobj[data] = [];\n\t\t\t\t\t}\n\t\t\t\t\tobj[data].push(fn);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t},\n\t\tisArray = $.isArray,\n\t\t/**\n\t\t * Returns an array of keys (properties) contained in the given object.\n\t\t *\n\t\t * @param {Object} object The object to use\n\t\t * @return {Array} An array containing all properties in the object\n\t\t */\n\t\tkeyset = function (object) {\n\t\t\treturn $.map(object, function (val, key) {\n\t\t\t\treturn key;\n\t\t\t});\n\t\t},\n\t\t/**\n\t\t * Returns an object that contains all values from the given\n\t\t * object that have a key which is also in the array keys.\n\t\t *\n\t\t * @param {Object} object The object to traverse\n\t\t * @param {Array} keys The keys the new object should contain\n\t\t * @return {Object} A new object containing only the properties\n\t\t * with names given in keys\n\t\t */\n\t\twithKeys = function (object, keys) {\n\t\t\tvar result = {};\n\t\t\teach(keys, function (index, value) {\n\t\t\t\tif (object[value]) {\n\t\t\t\t\tresult[value] = object[value];\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn result;\n\t\t},\n\t\t/**\n\t\t * Returns an object that contains all value from the given\n\t\t * object that do not have a key which is also in the array keys.\n\t\t *\n\t\t * @param {Object} object The object to traverse\n\t\t * @param {Array} keys A list of keys that should not be contained in the new object\n\t\t * @return {Object} A new object with all properties of the given object, except\n\t\t * for the ones given in the list of keys\n\t\t */\n\t\twithoutKeys = function (object, keys) {\n\t\t\tvar result = {};\n\t\t\teach(object, function (index, value) {\n\t\t\t\tif (!~$.inArray(index, keys)) {\n\t\t\t\t\tresult[index] = value;\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn result;\n\t\t},\n\t\t/**\n\t\t * Run all subscriptions with the given name and options\n\t\t * on an element.\n\t\t *\n\t\t * @param {String} name The name of the subscriber function\n\t\t * @param {Object} options ptions for the function\n\t\t * @param {String} type The type of the current element as in the registered types\n\t\t * @return {Object} The jQuery object\n\t\t */\n\t\trunSubscription = function (name, options, type) {\n\t\t\tif ($.dform.hasSubscription(name)) {\n\t\t\t\tthis.each(function () {\n\t\t\t\t\tvar element = $(this);\n\t\t\t\t\teach(_subscriptions[name], function (i, sfn) {\n\t\t\t\t\t\t// run subscriber function with options\n\t\t\t\t\t\tsfn.call(element, options, type);\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn this;\n\t\t},\n\t\t/**\n\t\t * Run all subscription functions with given options.\n\t\t *\n\t\t * @param {Object} options The options to use\n\t\t * @return {Object} The jQuery element this function has been called on\n\t\t */\n\t\trunAll = function (options) {\n\t\t\tvar type = options.type, self = this;\n\t\t\t// Run preprocessing subscribers\n\t\t\tthis.dform('run', '[pre]', options, type);\n\t\t\teach(options, function (name, sopts) {\n\t\t\t\tself.dform('run', name, sopts, type);\n\t\t\t});\n\t\t\t// Run post processing subscribers\n\t\t\tthis.dform('run', '[post]', options, type);\n\t\t\treturn this;\n\t\t};\n\n\t/**\n\t * Globals added directly to the jQuery object\n\t */\n\t$.extend($, {\n\t\tkeyset : keyset,\n\t\twithKeys : withKeys,\n\t\twithoutKeys : withoutKeys,\n\t\tdform : {\n\t\t\t/**\n\t\t\t * Default options the plugin is initialized with:\n\t\t\t *\n\t\t\t * ## prefix\n\t\t\t *\n\t\t\t * The Default prefix used for element classnames generated by the dform plugin.\n\t\t\t * Defaults to _ui-dform-_\n\t\t\t * E.g. an element with type text will have the class ui-dform-text\n\t\t\t *\n\t\t\t */\n\t\t\toptions : {\n\t\t\t\tprefix : \"ui-dform-\"\n\t\t\t},\n\n\t\t\t/**\n\t\t\t * A function that is called, when no registered type has been found.\n\t\t\t * The default behaviour returns an HTML element with the tag\n\t\t\t * as specified in type and the HTML attributes given in options\n\t\t\t * (without subscriber options).\n\t\t\t *\n\t\t\t * @param {Object} options\n\t\t\t * @return {Object} The created object\n\t\t\t */\n\t\t\tdefaultType : function (options) {\n\t\t\t\treturn $(\"<\" + options.type + \">\").dform('attr', options);\n\t\t\t},\n\t\t\t/**\n\t\t\t * Return all types.\n\t\t\t *\n\t\t\t * @params {String} name (optional) If passed return\n\t\t\t * all type generators for a given name.\n\t\t\t * @return {Object} Mapping from type name to\n\t\t\t * an array of generator functions.\n\t\t\t */\n\t\t\ttypes : function (name) {\n\t\t\t\treturn name ? _types[name ] : _types;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Register an element type function.\n\t\t\t *\n\t\t\t * @param {String|Array} data Can either be the name of the type\n\t\t\t * function or an object that contains name : type function pairs\n\t\t\t * @param {Function} fn The function that creates a new type element\n\t\t\t */\n\t\t\taddType : addToObject(_types),\n\t\t\t/**\n\t\t\t * Returns all subscribers or all subscribers for a given name.\n\t\t\t *\n\t\t\t * @params {String} name (optional) If passed return all\n\t\t\t * subscribers for a given name\n\t\t\t * @return {Object} Mapping from subscriber names\n\t\t\t * to an array of subscriber functions.\n\t\t\t */\n\t\t\tsubscribers : function (name) {\n\t\t\t\treturn name ? _subscriptions[name] : _subscriptions;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Register a subscriber function.\n\t\t\t *\n\t\t\t * @param {String|Object} data Can either be the name of the subscriber\n\t\t\t * function or an object that contains name : subscriber function pairs\n\t\t\t * @param {Function} fn The function to subscribe or nothing if an object is passed for data\n\t\t\t * @param {Array} deps An optional list of dependencies\n\t\t\t */\n\t\t\tsubscribe : addToObject(_subscriptions),\n\t\t\t/**\n\t\t\t * Returns if a subscriber function with the given name\n\t\t\t * has been registered.\n\t\t\t *\n\t\t\t * @param {String} name The subscriber name\n\t\t\t * @return {Boolean} True if the given name has at least one subscriber registered,\n\t\t\t *     false otherwise\n\t\t\t */\n\t\t\thasSubscription : function (name) {\n\t\t\t\treturn _subscriptions[name] ? true : false;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Create a new element.\n\t\t\t *\n\t\t\t * @param {Object} options - The options to use\n\t\t\t * @return {Object} The element as created by the builder function specified\n\t\t\t *     or returned by the defaultType function.\n\t\t\t */\n\t\t\tcreateElement : function (options) {\n\t\t\t\tif (!options.type) {\n\t\t\t\t\tthrow \"No element type given! Must always exist.\";\n\t\t\t\t}\n\t\t\t\tvar type = options.type,\n\t\t\t\t\telement = null,\n\t\t\t\t// We don't need the type key in the options\n\t\t\t\t\topts = $.withoutKeys(options, [\"type\"]);\n\n\t\t\t\tif (_types[type]) {\n\t\t\t\t\t// Run all type element builder functions called typename\n\t\t\t\t\teach(_types[type], function (i, sfn) {\n\t\t\t\t\t\telement = sfn.call(element, opts);\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t// Call defaultType function if no type was found\n\t\t\t\t\telement = $.dform.defaultType(options);\n\t\t\t\t}\n\t\t\t\treturn $(element);\n\t\t\t},\n\t\t\tmethods : {\n\t\t\t\t/**\n\t\t\t\t * Run all subscriptions with the given name and options\n\t\t\t\t * on an element.\n\t\t\t\t *\n\t\t\t\t * @param {String} name The name of the subscriber function\n\t\t\t\t * @param {Object} options ptions for the function\n\t\t\t\t * @param {String} type The type of the current element as in the registered types\n\t\t\t\t * @return {Object} The jQuery object\n\t\t\t\t */\n\t\t\t\trun : function (name, options, type) {\n\t\t\t\t\tif (typeof name !== 'string') {\n\t\t\t\t\t\treturn runAll.call(this, name);\n\t\t\t\t\t}\n\t\t\t\t\treturn runSubscription.call(this, name, options, type);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * Creates a form element on an element with given options\n\t\t\t\t *\n\t\t\t\t * @param {Object} options The options to use\n\t\t\t\t * @return {Object} The jQuery element this function has been called on\n\t\t\t\t */\n\t\t\t\tappend : function (options, converter) {\n\t\t\t\t\tif (converter && $.dform.converters && $.isFunction($.dform.converters[converter])) {\n\t\t\t\t\t\toptions = $.dform.converters[converter](options);\n\t\t\t\t\t}\n\t\t\t\t\t// Create element (run builder function for type)\n\t\t\t\t\tvar element = $.dform.createElement(options);\n\t\t\t\t\tthis.append(element);\n\t\t\t\t\t// Run all subscriptions\n\t\t\t\t\telement.dform('run', options);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * Adds HTML attributes to the current element from the given options.\n\t\t\t\t * Any subscriber will be omitted so that the attributes will contain any\n\t\t\t\t * key value pair where the key is not the name of a subscriber function\n\t\t\t\t * and is not in the string array excludes.\n\t\t\t\t *\n\t\t\t\t * @param {Object} object The attribute object\n\t\t\t\t * @param {Array} excludes A list of keys that should also be excluded\n\t\t\t\t * @return {Object} The jQuery object of the this reference\n\t\t\t\t */\n\t\t\t\tattr : function (object, excludes) {\n\t\t\t\t\t// Ignore any subscriber name and the objects given in excludes\n\t\t\t\t\tvar ignores = $.keyset(_subscriptions);\n\t\t\t\t\tisArray(excludes) && $.merge(ignores, excludes);\n\t\t\t\t\tthis.attr($.withoutKeys(object, ignores));\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t *\n\t\t\t\t *\n\t\t\t\t * @param params\n\t\t\t\t * @param success\n\t\t\t\t * @param error\n\t\t\t\t */\n\t\t\t\tajax : function (params, success, error) {\n\t\t\t\t\tvar options = {\n\t\t\t\t\t\terror : error,\n\t\t\t\t\t\turl : params\n\t\t\t\t\t}, self = this;\n\t\t\t\t\tif (typeof params !== 'string') {\n\t\t\t\t\t\t$.extend(options, params);\n\t\t\t\t\t}\n\t\t\t\t\toptions.success = function (data) {\n\t\t\t\t\t\tvar callback = success || params.success;\n\t\t\t\t\t\tself.dform(data);\n\t\t\t\t\t\tif(callback) {\n\t\t\t\t\t\t\tcallback.call(self, data);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t$.ajax(options);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t *\n\t\t\t\t *\n\t\t\t\t * @param options\n\t\t\t\t */\n\t\t\t\tinit : function (options, converter) {\n\t\t\t\t\tvar opts = options.type ? options : $.extend({ \"type\" : \"form\" }, options);\n\t\t\t\t\tif (converter && $.dform.converters && $.isFunction($.dform.converters[converter])) {\n\t\t\t\t\t\topts = $.dform.converters[converter](opts);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.is(opts.type)) {\n\t\t\t\t\t\tthis.dform('attr', opts);\n\t\t\t\t\t\tthis.dform('run', opts);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.dform('append', opts);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\t/**\n\t * The jQuery plugin function\n\t *\n\t * @param options The form options\n\t * @param {String} converter The name of the converter in $.dform.converters\n\t * that will be used to convert the options\n\t */\n\t$.fn.dform = function (options, converter, error) {\n\t\tvar self = $(this);\n\t\tif ($.dform.methods[options]) {\n\t\t\t$.dform.methods[options].apply(self, Array.prototype.slice.call(arguments, 1));\n\t\t} else {\n\t\t\tif (typeof options === 'string') {\n\t\t\t\t$.dform.methods.ajax.call(self, {\n\t\t\t\t\turl : options,\n\t\t\t\t\tdataType : 'json'\n\t\t\t\t}, converter, error);\n\t\t\t} else {\n\t\t\t\t$.dform.methods.init.apply(self, arguments);\n\t\t\t}\n\t\t}\n\t\treturn this;\n\t}\n})(jQuery);\n\n/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n *\n * Licensed under the MIT license\n */\n(function ($) {\n\tvar each = $.each,\n\t\t_element = function (tag, excludes) {\n\t\t\treturn function (ops) {\n\t\t\t\treturn $(tag).dform('attr', ops, excludes);\n\t\t\t};\n\t\t},\n\t\t_html = function (options, type) {\n\t\t\tvar self = this;\n\t\t\tif ($.isPlainObject(options)) {\n\t\t\t\tself.dform('append', options);\n\t\t\t} else if ($.isArray(options)) {\n\t\t\t\teach(options, function (index, nested) {\n\t\t\t\t\tself.dform('append', nested);\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tself.html(options);\n\t\t\t}\n\t\t};\n\n\t$.dform.addType({\n\t\tcontainer : _element(\"<div>\"),\n\t\ttext : _element('<input type=\"text\" />'),\n\t\tpassword : _element('<input type=\"password\" />'),\n\t\tsubmit : _element('<input type=\"submit\" />'),\n\t\treset : _element('<input type=\"reset\" />'),\n\t\thidden : _element('<input type=\"hidden\" />'),\n\t\tradio : _element('<input type=\"radio\" />'),\n\t\tcheckbox : _element('<input type=\"checkbox\" />'),\n\t\tfile : _element('<input type=\"file\" />'),\n\t\tnumber : _element('<input type=\"number\" />'),\n\t\turl : _element('<input type=\"url\" />'),\n\t\ttel : _element('<input type=\"tel\" />'),\n\t\temail : _element('<input type=\"email\" />'),\n\t\tcheckboxes : _element(\"<div>\", [\"name\"]),\n\t\tradiobuttons : _element(\"<div>\", [\"name\"])\n\t});\n\n\t$.dform.subscribe({\n\t\t/**\n\t\t * Adds a class to the current element.\n\t\t * Ovverrides the default behaviour which would be replacing the class attribute.\n\t\t *\n\t\t * @param options A list of whitespace separated classnames\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"class\" : function (options, type) {\n\t\t\tthis.addClass(options);\n\t\t},\n\n\t\t/**\n\t\t * Sets html content of the current element\n\t\t *\n\t\t * @param options The html content to set as a string\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"html\" : _html,\n\n\t\t/**\n\t\t * Recursively appends subelements to the current form element.\n\t\t *\n\t\t * @param options Either an object with key value pairs\n\t\t *\t where the key is the element name and the value the\n\t\t *\t subelement options or an array of objects where each object\n\t\t *\t is the options for a subelement\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"elements\" : _html,\n\n\t\t/**\n\t\t * Sets the value of the current element.\n\t\t *\n\t\t * @param options The value to set\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"value\" : function (options) {\n\t\t\tthis.val(options);\n\t\t},\n\n\t\t/**\n\t\t * Set CSS styles for the current element\n\t\t *\n\t\t * @param options The Styles to set\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"css\" : function (options) {\n\t\t\tthis.css(options);\n\t\t},\n\n\t\t/**\n\t\t * Adds options to select type elements or radio and checkbox list elements.\n\t\t *\n\t\t * @param options A key value pair where the key is the\n\t\t *\t option value and the value the options text or the settings for the element.\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"options\" : function (options, type) {\n\t\t\tvar self = this;\n\t\t\t// Options for select elements\n\t\t\tif ((type === \"select\" || type === \"optgroup\") && typeof options !== 'string')\n\t\t\t{\n\t\t\t\teach(options, function (value, content) {\n\t\t\t\t\tvar option = { type : 'option', value : value };\n\t\t\t\t\tif (typeof (content) === \"string\") {\n\t\t\t\t\t\toption.html = content;\n\t\t\t\t\t}\n\t\t\t\t\tif (typeof (content) === \"object\") {\n\t\t\t\t\t\toption = $.extend(option, content);\n\t\t\t\t\t}\n\t\t\t\t\tself.dform('append', option);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse if (type === \"checkboxes\" || type === \"radiobuttons\") {\n\t\t\t\t// Options for checkbox and radiobutton lists\n\t\t\t\teach(options, function (value, content) {\n\t\t\t\t\tvar boxoptions = ((type === \"radiobuttons\") ? { \"type\" : \"radio\" } : { \"type\" : \"checkbox\" });\n\t\t\t\t\tif (typeof(content) === \"string\") {\n\t\t\t\t\t\tboxoptions[\"caption\"] = content;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$.extend(boxoptions, content);\n\t\t\t\t\t}\n\t\t\t\t\tboxoptions[\"value\"] = value;\n\t\t\t\t\tself.dform('append', boxoptions);\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Adds caption to elements.\n\t\t *\n\t\t * Depending on the element type the following elements will\n\t\t * be used:\n\t\t * - A legend for <fieldset> elements\n\t\t * - A <label> next to <radio> or <checkbox> elements\n\t\t * - A <label> before any other element\n\t\t *\n\t\t * @param options A string for the caption or the options for the\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"caption\" : function (options, type) {\n\t\t\tvar ops = {};\n\t\t\tif (typeof (options) === \"string\") {\n\t\t\t\tops[\"html\"] = options;\n\t\t\t} else {\n\t\t\t\t$.extend(ops, options);\n\t\t\t}\n\n\t\t\tif (type == \"fieldset\") {\n\t\t\t\t// Labels for fieldsets are legend\n\t\t\t\tops.type = \"legend\";\n\t\t\t\tthis.dform('append', ops);\n\t\t\t} else {\n\t\t\t\tops.type = \"label\";\n\t\t\t\tif (this.attr(\"id\")) {\n\t\t\t\t\tops[\"for\"] = this.attr(\"id\");\n\t\t\t\t}\n\t\t\t\tvar label = $($.dform.createElement(ops));\n\t\t\t\tif (type === \"checkbox\" || type === \"radio\") {\n\t\t\t\t\tthis.parent().append($(label));\n\t\t\t\t} else {\n\t\t\t\t\tlabel.insertBefore(this);\n\t\t\t\t}\n\t\t\t\tlabel.dform('run', ops);\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * The subscriber for the type parameter.\n\t\t * Although the type parameter is used to get the correct element\n\t\t * type it is just treated as a simple subscriber otherwise.\n\t\t * Since every element needs a type\n\t\t * parameter feel free to add other type subscribers to do\n\t\t * any processing between [pre] and [post].\n\t\t *\n\t\t * This subscriber adds the auto generated classes according\n\t\t * to the type prefix in $.dform.options.prefix.\n\t\t *\n\t\t * @param options The name of the type\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"type\" : function (options, type) {\n\t\t\tif ($.dform.options.prefix) {\n\t\t\t\tthis.addClass($.dform.options.prefix + type);\n\t\t\t}\n\t\t},\n\t\t/**\n\t\t * Retrieves JSON data from a URL and creates a sub form.\n\t\t *\n\t\t * @param options\n\t\t * @param type\n\t\t */\n\t\t\"url\" : function (options) {\n\t\t\tthis.dform('ajax', options);\n\t\t},\n\t\t/**\n\t\t * Post processing function, that will run whenever all other subscribers are finished.\n\t\t *\n\t\t * @param options All options that have been used for\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"[post]\" : function (options, type) {\n\t\t\tif (type === \"checkboxes\" || type === \"radiobuttons\") {\n\t\t\t\tvar boxtype = ((type === \"checkboxes\") ? \"checkbox\" : \"radio\");\n\t\t\t\tthis.children(\"[type=\" + boxtype + \"]\").each(function () {\n\t\t\t\t\t$(this).attr(\"name\", options.name);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n\n/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n * \n * Licensed under the MIT license\n */\n(function($)\n{\n\tvar _getOptions = function(type, options)\n\t\t{\n\t\t\treturn $.withKeys(options, $.keyset($.ui[type][\"prototype\"][\"options\"]));\n\t\t},\n\t\t_get = function(keys, obj) {\n\t\t\tfor(var item = obj, i = 0; i < keys.length; i++) {\n\t\t\t\titem = item[keys[i]];\n\t\t\t\tif(!item) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn item;\n\t\t}\n\t\t\n\t$.dform.addType(\"progressbar\",\n\t\t/**\n\t\t * Returns a jQuery UI progressbar.\n\t\t *\n\t\t * @param options  As specified in the jQuery UI progressbar documentation at\n\t\t * \thttp://jqueryui.com/demos/progressbar/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options).progressbar(_getOptions(\"progressbar\", options));\n\t\t}, $.isFunction($.fn.progressbar));\n\n\t$.dform.addType(\"slider\",\n\t\t/**\n\t\t * Returns a slider element.\n\t\t *\n\t\t * @param options As specified in the jQuery UI slider documentation at\n\t\t * \thttp://jqueryui.com/demos/slider/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options).slider(_getOptions(\"slider\", options));\n\t\t}, $.isFunction($.fn.slider));\n\n\t$.dform.addType(\"accordion\",\n\t\t/**\n\t\t * Creates an element container for a jQuery UI accordion.\n\t\t *\n\t\t * @param options As specified in the jQuery UI accordion documentation at\n\t\t * \thttp://jqueryui.com/demos/accordion/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options);\n\t\t}, $.isFunction($.fn.accordion));\n\n\t$.dform.addType(\"tabs\",\n\t\t/**\n\t\t * Returns a container for jQuery UI tabs.\n\t\t *\n\t\t * @param options The options as in jQuery UI tab\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options);\n\t\t}, $.isFunction($.fn.tabs));\n\t\n\t$.dform.subscribe(\"entries\",\n\t\t/**\n\t\t *  Create entries for the accordion type.\n\t\t *  Use the <elements> subscriber to create subelements in each entry.\n\t\t *\n\t\t * @param options All options for the container div. The <caption> will be\n\t\t * \tturned into the accordion or tab title.\n\t\t * @param type The type. This subscriber will only run for accordion\n\t\t */\n\t\tfunction(options, type) {\n\t\t\tif(type == \"accordion\")\n\t\t\t{\n\t\t\t\tvar scoper = this;\n\t\t\t\t$.each(options, function(index, options) {\n\t\t\t\t\tvar el = $.extend({ \"type\" : \"div\" }, options);\n\t\t\t\t\t$(scoper).dform('append', el);\n\t\t\t\t\tif(options.caption) {\n\t\t\t\t\t\tvar label = $(scoper).children(\"div:last\").prev();\n\t\t\t\t\t\tlabel.replaceWith('<h3><a href=\"#\">' + label.html() + '</a></h3>');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}, $.isFunction($.fn.accordion));\n\n\t$.dform.subscribe(\"entries\",\n\t\t/**\n\t\t *  Create entries for the accordion type.\n\t\t *  Use the <elements> subscriber to create subelements in each entry.\n\t\t *\n\t\t * @param options All options for the container div. The <caption> will be\n\t\t * \tturned into the accordion or tab title.\n\t\t * @param type The type. This subscriber will only run for accordion\n\t\t */\n\t\tfunction(options, type) {\n\t\t\tif(type == \"tabs\")\n\t\t\t{\n\t\t\t\tvar scoper = this;\n\t\t\t\tthis.append(\"<ul>\");\n\t\t\t\tvar ul = $(scoper).children(\"ul:first\");\n\t\t\t\t$.each(options, function(index, options) {\n\t\t\t\t\tvar id = options.id ? options.id : index;\n\t\t\t\t\t$.extend(options, { \"type\" : \"container\", \"id\" : id });\n\t\t\t\t\t$(scoper).dform('append', options);\n\t\t\t\t\tvar label = $(scoper).children(\"div:last\").prev();\n\t\t\t\t\t$(label).wrapInner($(\"<a>\").attr(\"href\", \"#\" + id));\n\t\t\t\t\t$(ul).append($(\"<li>\").wrapInner(label));\n\t\t\t\t});\n\t\t\t}\n\t\t}, $.isFunction($.fn.tabs));\n\t\t\n\t$.dform.subscribe(\"dialog\",\n\t\t/**\n\t\t * Turns an element into a jQuery UI dialog.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI dialog documentation\\(http://jqueryui.com/demos/dialog/)\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\tthis.dialog(options);\n\t\t}, $.isFunction($.fn.dialog));\n\n\t$.dform.subscribe(\"resizable\",\n\t\t/**\n\t\t * Make the current element resizable.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI resizable documentation](http://jqueryui.com/demos/resizable/)\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\tthis.resizable(options);\n\t\t}, $.isFunction($.fn.resizable));\n\n\t$.dform.subscribe(\"datepicker\",\n\t\t/**\n\t\t * Adds a jQuery UI datepicker to an element of type text.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI datepicker documentation](http://jqueryui.com/demos/datepicker/)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (type == \"text\") {\n\t\t\t\tthis.datepicker(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.datepicker));\n\n\t$.dform.subscribe(\"autocomplete\",\n\t\t/**\n\t\t * Adds the autocomplete feature to a text element.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI autotomplete documentation](http://jqueryui.com/demos/autotomplete/)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (type == \"text\") {\n\t\t\t\tthis.autocomplete(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.autocomplete));\n\n\t$.dform.subscribe(\"[post]\",\n\t\t/**\n\t\t * Post processing subscriber that adds jQuery UI styling classes to\n\t\t * text, textarea, password and fieldset elements as well\n\t\t * as calling .button() on submit or button elements.\n\t\t *\n\t\t * Additionally, accordion and tabs elements will be initialized\n\t\t * with their options.\n\t\t *\n\t\t * @param options All options that have been passed for creating the element\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (this.parents(\"form\").hasClass(\"ui-widget\"))\n\t\t\t{\n\t\t\t\tif ((type === \"button\" || type === \"submit\") && $.isFunction($.fn.button)) {\n\t\t\t\t\tthis.button();\n\t\t\t\t}\n\t\t\t\tif (!!~$.inArray(type, [ \"text\", \"textarea\", \"password\",\n\t\t\t\t\t\t\"fieldset\" ])) {\n\t\t\t\t\tthis.addClass(\"ui-widget-content ui-corner-all\");\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(type === \"accordion\" || type === \"tabs\") {\n\t\t\t\tthis[type](_getOptions(type, options));\n\t\t\t}\n\t\t});\n\t\n\t$.dform.subscribe(\"[pre]\",\n\t\t/**\n\t\t * Add a preprocessing subscriber that calls .validate() on the form,\n\t\t * so that we can add rules to the input elements. Additionally\n\t\t * the jQuery UI highlight classes will be added to the validation\n\t\t * plugin default settings if the form has the ui-widget class.\n\t\t * \n\t\t * @param options All options that have been used for\n\t\t * creating the current element.\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type == \"form\")\n\t\t\t{\n\t\t\t\tvar defaults = {};\n\t\t\t\tif(this.hasClass(\"ui-widget\"))\n\t\t\t\t{\n\t\t\t\t\tdefaults = {\n\t\t\t\t\t\thighlight: function(input)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$(input).addClass(\"ui-state-highlight\");\n\t\t\t\t\t\t},\n\t\t\t\t\t\tunhighlight: function(input)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$(input).removeClass(\"ui-state-highlight\");\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (typeof (options.validate) == 'object') {\n\t\t\t\t\t$.extend(defaults, options.validate);\n\t\t\t\t}\n\t\t\t\tthis.validate(defaults);\n\t\t\t}\n\t\t}, $.isFunction($.fn.validate));\n\n\t\t/**\n\t\t * Adds support for the jQuery validation rulesets.\n\t\t * For types: text, password, textarea, radio, checkbox sets up rules through rules(\"add\", rules) for validation plugin\n\t\t * For type <form> sets up as options object for validate method of validation plugin\n\t\t * For rules of types checkboxes and radiobuttons you should use this subscriber for type form (to see example below)\n\t\t *\n\t\t * @param options\n\t\t * @param type\n\t\t */\n\t$.dform.subscribe(\"validate\", function(options, type)\n\t\t{\n\t\t\tif (type != \"form\") {\n\t\t\t\tthis.rules(\"add\", options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.validate));\n\n\t$.dform.subscribe(\"ajax\",\n\t\t/**\n\t\t * If the current element is a form, it will be turned into a dynamic form\n\t\t * that can be submitted asynchronously.\n\t\t *\n\t\t * @param options Options as specified in the [jQuery Form plugin documentation](http://jquery.malsup.com/form/#options-object)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type === \"form\")\n\t\t\t{\n\t\t\t\tthis.ajaxForm(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.ajaxForm));\n\n\t$.dform.subscribe('html',\n\t\t/**\n\t\t * Extends the html subscriber that will replace any string with it's translated\n\t\t * equivalent using the jQuery Global plugin. The html content will be interpreted\n\t\t * as an index string where the first part indicates the localize main index and\n\t\t * every following a sub index using getValueAt.\n\t\t *\n\t\t * @param options The dot separated html string to localize\n\t\t * @param type The type of the this element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(typeof options === 'string') {\n\t\t\t\tvar keys = options.split('.'),\n\t\t\t\t\ttranslated = Globalize.localize(keys.shift());\n\t\t\t\tif(translated = _get(keys, translated)) {\n\t\t\t\t\t$(this).html(translated);\n\t\t\t\t}\n\t\t\t}\n\t\t}, typeof Globalize !== 'undefined' && $.isFunction(Globalize.localize));\n\n\t$.dform.subscribe('options',\n\t\t/**\n\t\t * Extends the options subscriber for using internationalized option\n\t\t * lists.\n\t\t *\n\t\t * @param options Options as specified in the <jQuery Form plugin documentation at http://jquery.malsup.com/form/#options-object>\n\t\t * @param type The type of the element.\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type === 'select' && typeof(options) === 'string') {\n\t\t\t\t$(this).html('');\n\t\t\t\tvar keys = options.split('.'),\n\t\t\t\t\toptlist = Globalize.localize(keys.shift());\n\t\t\t\tif(optlist = _get(keys, optlist)) {\n\t\t\t\t\t$(this).dform('run', 'options', optlist, type);\n\t\t\t\t}\n\t\t\t}\n\t\t}, typeof Globalize !== 'undefined' && $.isFunction(Globalize.localize));\n})(jQuery);\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"jquery.dform\",\n  \"description\": \"A flexible JavaScript Object and JSON to HTML converter with a focus on forms\",\n  \"version\": \"1.1.0\",\n  \"homepage\": \"http://daffl.github.com/jquery.dform\",\n  \"author\": \"David Luecke\",\n  \"license\": \"MIT\",\n  \"scripts\": {\n    \"test\": \"grunt test\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/daffl/jquery.dform.git\"\n  },\n  \"devDependencies\": {\n    \"grunt\": \"^0.4.5\",\n    \"grunt-cli\": \"^0.1.13\",\n    \"grunt-contrib-concat\": \"^0.5.1\",\n    \"grunt-contrib-connect\": \"^0.9.0\",\n    \"grunt-contrib-qunit\": \"^0.5.2\",\n    \"grunt-contrib-uglify\": \"^0.8.0\"\n  }\n}\n"
  },
  {
    "path": "readme.md",
    "content": "The jQuery.dForm plugin generates HTML markup from JavaScript objects and [JSON](http://json.org)\nwith a focus on HTML forms.\n\n__Some things you can do:__\n\n* naturally generate JavaScript enhanced markup with your own extensions and custom types\n* use JavaScript and JSON instead of HTML markup since your page doesn't run without JS anyway\n* have an easy way to include jQuery UI elements and other jQuery plugins (some supported out of the box)\n* scaffold forms from business objects of your server side framework\n\n## Get started\n\n[Download the latest version 1.1.0](https://raw.github.com/daffl/jquery.dform/master/dist/jquery.dform-1.1.0.js)\n([min](https://raw.github.com/daffl/jquery.dform/master/dist/jquery.dform-1.1.0.min.js))\n(~7 Kb minified)\n\nInclude it in your jQuery powered page and try this:\n\n\t<script type=\"text/javascript\">\n\t\t$(function() {\n\t\t  // Generate a form\n\t\t\t$(\"#myform\").dform({\n\t\t\t    \"action\" : \"index.html\",\n\t\t\t    \"method\" : \"get\",\n\t\t\t    \"html\" :\n\t\t\t    [\n\t\t\t        {\n\t\t\t            \"type\" : \"p\",\n\t\t\t            \"html\" : \"You must login\"\n\t\t\t        },\n\t\t\t        {\n\t\t\t            \"name\" : \"username\",\n\t\t\t            \"id\" : \"txt-username\",\n\t\t\t            \"caption\" : \"Username\",\n\t\t\t            \"type\" : \"text\",\n\t\t\t            \"placeholder\" : \"E.g. user@example.com\"\n\t\t\t        },\n\t\t\t        {\n\t\t\t            \"name\" : \"password\",\n\t\t\t            \"caption\" : \"Password\",\n\t\t\t            \"type\" : \"password\"\n\t\t\t        },\n\t\t\t        {\n\t\t\t            \"type\" : \"submit\",\n\t\t\t            \"value\" : \"Login\"\n\t\t\t        }\n\t\t\t    ]\n\t\t\t});\n\t\t});\n\t</script>\n\t<form id=\"myform\"></form>\n\nOr to quickly load an external form definition:\n\n\t<script type=\"text/javascript\">\n\t\t$(function() {\n\t\t  // Load the form object from path/to/form.json\n\t\t\t$(\"#myform\").dform('path/to/form.json', function(data) {\n\t\t\t  this //-> Generated $('#myform')\n\t\t\t  data //-> data from path/to/form.json\n\t\t\t});\n\t\t});\n\t</script>\n\t<form id=\"myform\"></form>\n\n\n__Demo:__\n\n<iframe style=\"width: 100%; height: 300px\" src=\"http://jsfiddle.net/Daff/Zt4Rz/embedded/\" allowfullscreen=\"allowfullscreen\" frameborder=\"0\"></iframe>\n\n__Learn more:__\n\n* Visit the above example [on jsfiddle.com](http://jsfiddle.net/Daff/Zt4Rz/)\n* Watch and fork the project on [GitHub](http://github.com/daffl/jquery.dform/)\n* Follow [@daffl](http://twitter.com/daffl) on Twitter\n* Read on in this documentation\n\n## Types\n\nType generators are functions that return a new jQuery DOM object for a specific type. If there is no type generator\nfor that type, a basic HTML tag with that name will be created. Every other key in the JavaScript object\nyou pass (the dForm object) will be used as an HTML attribute, except if there is a [subscriber](#subscribers)\nregistered for that key. A plugin call like this:\n\n\t$('#my-div').dform({\n\t\ttype : \"span\",\n\t\tid : \"the-span\"\n\t});\n\nWill append an empty `<span id=\"the-span\"></span>` to the selected element.\n\n### Core types\n\nBesides standard HTML tags the following core types are supported:\n\n**container** `{ \"type\" : \"container\" }`<br />\nCreates a `<div>` container (you can also use `{ \"type\" : \"div\" }`)\n\n**text** `{ \"type\" : \"text\" }`<br />\nCreates a text input field\n\n**password** `{ \"type\" : \"password\" }`<br />\nCreates a password input field\n\n**submit** `{ \"type\" : \"submit\" }`<br />\nCreates a submit button input element\n\n**reset** `{ \"type\" : \"reset\" }`<br />\nCreates a reset button input element\n\n**hidden** `{ \"type\" : \"hidden\" }`<br />\nCreates a hidden input element\n\n**file** `{ \"type\" : \"file\" }`<br />\nCreate a file upload field\n\n**radio** `{ \"type\" : \"radio\" }`<br />\nCreates a radio button\n\n**checkbox** `{ \"type\" : \"checkbox\" }`<br />\nCreates a checkbox\n\n**radiobuttons** `{ \"type\" : \"radiobuttons\" }`<br />\nCreates a group of radiobuttons (uses *options* subscriber explained below)\n\n**checkboxes** `{ \"type\" : \"checkboxes\" }`<br />\nCreates a group of checkboxes (uses *options* subscriber explained below)\n\n**number** `{ \"type\" : \"number\" }`<br />\nCreates an HTML 5 number input field\n\n**url** `{ \"type\" : \"url\" }`<br />\nCreates an HTML 5 url input field\n\n**tel** `{ \"type\" : \"tel\" }`<br />\nCreates an HTML 5 phone number input field\n\n**email** `{ \"type\" : \"email\" }`<br />\nCreates an HTML 5 email input field\n\n### Add your own\n\nYou can add your own types by calling  `$.dform.addType` and pass the type name and a function\nthat takes the dForm object as a parameter and returns a new jQuery DOM element:\n\n\t$.dform.addType(\"hellobutton\", function(options) {\n\t\t// Return a new button element that has all options that\n\t\t// don't have a registered subscriber as attributes\n\t\treturn $(\"<button>\").dform('attr', options).html(\"Say hello\");\n\t});\n\nThe type generator uses the *attr* [plugin method](#plugin-methods) to add the proper HTML attributes to the button.\nNow the new type can be used like this:\n\n\t$('#myform').dform({\n\t\t\"type\" : \"hellobutton\",\n\t\t\"id\" : \"my-button\"\n\t});\n\nWhich generates:\n\n\t<button id=\"my-button\" class=\"ui-dform-hellobutton\">Say hello</button>\n\nType generators can be chained. That means, that if you add a type that already exists `this` in the generator function\nwill refer to the element returned by its previous generator:\n\n\t$.dform.addType(\"text\", function(options) {\n\t\treturn $(this).addClass('my-textfield-class');\n\t});\n\n\t$('#myform').dform({\n\t\ttype : 'text'\n\t});\n\nNow generates\n\n\t<input type=\"text\" class=\"ui-dform-text my-textfield-class\" />\n\n## Subscribers\n\nWhile type generators are being used to generate a base element for the given type, subscribers attach to\ncertain attributes in the dForm object. When traversing the object, all subscribers registered for that\nkey will be executed on the current element.\n\n### Core subscribers\n\n**class** *{String}*<br />\nAdds a class to the current element (instead of setting the attribute) using [.addClass()](http://api.jquery.com/addClass).\n\n\t{\n\t\t\"type\" : \"div\",\n\t\t\"class\" : \"the-div container\"\n\t}\n\nGenerates:\n\n\t<div class=\"ui-dform-div the-div container\"></div>\n\n**html/elements** *{String|Array|Object}*<br />\nBased on the options it either sets the HTML string content of the current element or appends one or an array\nof dForm objects. The *elements* subscriber does the same but is kept for backwards compatibility.\n\n\t{\n        \"type\" : \"div\",\n        \"html\" : \"Div content\"\n    }\n\nGenerates:\n\n\t<div class=\"ui-dform-div\">Div content</div>\n\nThis subscriber can also be used to create nested objects by using one or an array of dForm objects:\n\n\t{\n\t\t\"type\" : \"div\",\n\t\t\"html\" :\n\t\t[\n\t\t\t{\n\t\t\t\t\"type\" : \"text\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"type\" : \"div\",\n\t\t\t\t\"html\" : {\n\t\t\t\t\t\"type\" : \"p\",\n\t\t\t\t\t\"html\" : \"A paragraph\"\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n\nGenerates:\n\n\t<div class=\"ui-dform-div\">\n\t\t<input type=\"text\" class=\"ui-dform-text\" />\n\t\t<div class=\"ui-dform-div\">\n\t\t\t<p class=\"ui-dform-p\">A paragraph</p>\n\t\t</div>\n\t</div>\n\n**value** *{String|Function}*<br />\nSets the value of the element using [.val()](http://api.jquery.com/val/)\n\n\t{\n\t\t\"type\" : \"text\",\n\t\t\"value\" : \"Text content\"\n\t}\n\nGenerates:\n\n\t<input type=\"text\" value=\"Text content\" />\n\n**css** {Object}<br />\nSets CSS properties on an element using [.css()](http://api.jquery.com/css/):\n\n\t{\n\t\t\"type\" : \"div\",\n\t\t\"css\" : {\n\t\t\t\"background-color\" : \"#FF0000\",\n\t\t\t\"display\" : \"none\"\n\t\t}\n\t}\n\nGenerates:\n\n\t<div class=\"ui-dform-div\" style=\"background-color: #FF0000; display: none;\"></div>\n\n**options** *{Object}*<br />\nGenerates a list of options from a value to text (or dForm Object) mapping for elements of type *select*:\n\n\t{\n\t\t\"type\" : \"select\",\n\t\t\"options\" : {\n\t\t\t\"us\" : \"USA\",\n\t\t\t\"ca\" : \"Canada\",\n\t\t\t\"de\" : {\n\t\t\t\t\"selected\" : \"selected\",\n\t\t\t\t\"html\" : \"Germany\"\n\t\t\t}\n\t\t}\n\t}\n\nGenerates:\n\n\t<select>\n\t\t<option value=\"us\">USA</option>\n\t\t<option value=\"ca\">Canada</option>\n\t\t<option value=\"de\" selected=\"selected\">Germany</option>\n\t</select>\n\t\n*radiobuttons* and *checkboxes* work similarly:\n\n\t{\n\t\t\"type\" : \"select\",\n\t\t\"options\" : {\n\t\t\t\"us\" : \"USA\",\n\t\t\t\"ca\" : {\n\t\t\t\t\"checked\" : \"checked\",\n\t\t\t\t\"caption\" : \"Canada\"\n\t\t\t},\n\t\t\t\"de\" : \"Germany\"\n\t\t}\n\t}\n\t\nTo use option groups just pass an object of type *optgroup*:\n\n\t{\n\t\t\"type\" : \"select\",\n\t\t\"options\" : {\n\t\t  \"northamerica\" : {\n\t\t    \"type\" : \"optgroup\",\n\t\t    \"label\" : \"North America\",\n\t\t    \"options\" : {\n          \"us\" : \"USA\",\n          \"ca\" : \"Canada\"\n\t\t    }\n\t\t  },\n\t\t  \"europe\" : {\n\t\t    \"type\" : \"optgroup\",\n\t\t    \"label\" : \"Europe\",\n\t\t    \"options\" : {\n\t\t      \"de\" : {\n            \"selected\" : \"selected\",\n            \"html\" : \"Germany\"\n          },\n          \"fr\" : \"France\"\n\t\t    }\n\t\t  }\n\t\t}\n\t}\n\nYou can also use options on *checkboxes* and *radiobuttons* which will create a list of *checkbox*\nor *radio* elements:\n\n\t{\n\t\t\"type\" : \"checkboxes\",\n\t\t\"options\" : {\n\t\t\t\"newsletter\" : \"Receive the newsletter\",\n\t\t\t\"terms\" : \"I read the terms of service\",\n\t\t\t\"update\" : \"Keep me up to date on new events\"\n\t\t}\n\t}\n\nGenerates:\n\n\t<div class=\"ui-dform-checkboxes\">\n\t\t<input type=\"checkbox\" class=\"ui-dform-checkbox\" value=\"newsletter\">\n\t\t<label class=\"ui-dform-label\">Receive the newsletter</label>\n\t\t<input type=\"checkbox\" class=\"ui-dform-checkbox\" value=\"terms\">\n\t\t<label class=\"ui-dform-label\">I read the terms of service</label>\n\t\t<input type=\"checkbox\" class=\"ui-dform-checkbox\" value=\"update\">\n\t\t<label class=\"ui-dform-label\">Keep me up to date on new events</label>\n\t</div>\n\n> *Note:* The Google Chrome JavaScript engine V8 orders object keys that can be cast to numbers by their value and\n> not by the order of their definition.\n\n**caption** *{String|Object}*<br />\nAdds a caption to the element. The type used depends on the element type:\n\n* A *legend* on *fieldset* elements\n* A *label* next to *radio* or *checkbox* elements\n* A *label* before any other element\n\nIf the element has its id set, the *for* attribute of the label will be set as well.\n\n\t{\n\t\t\"type\" : \"text\",\n\t\t\"name\" : \"username\",\n\t\t\"id\" : \"username\",\n\t\t\"caption\" : \"Enter your username\"\n\t}\n\nGenerates:\n\n\t<label for=\"username\" class=\"ui-dform-label\">Enter your username</label>\n\t<input type=\"text\" class=\"ui-dform-text\" id=\"username\" />\n\nFor fieldsets:\n\n\t{\n\t\t\"type\" : \"fieldset\",\n\t\t\"caption\" : \"Address\"\n\t}\n\nGenerates:\n\n\t<fieldset class=\"ui-dform-fieldset\">\n\t\t<legend type=\"ui-dform-legend\">Address</label>\n\t</fieldset>\n\n**url** *{String|Object}*<br />\nThe `url` subscriber issues a `$(element).dform('ajax', options)` request to load content from remote files.\n\n\t{\n\t\t\"type\" : \"div\",\n\t\t\"url\": \"form.json\"\n\t}\n\n**type** *{String}*<br />\nBesides looking up the correct Type Generator it also adds a dform specific class to the element using\n`$.dform.options.prefix` (*ui-dform-* by default) and the type name.\n\n\t{\n\t\t\"type\" : \"text\"\n\t}\n\nGenerates:\n\n\t<input type=\"text\" class=\"ui-dform-text\" />\n\nSet `$.dform.options.prefix = null;` if you don't want any classes being added.\n\n### Add your own\n\nIt is easy to add your own subscribers. Similar to a type generator you just pass the key name you want to subscribe\nto and a function that takes the options and the type name as a parameter to `$.dform.subscribe`. `this` in the\nsubscriber function will refer to the current element. That way it is possible to add an alert to the\n*hellobutton* example created in the [types section](#subscribers/add-your-own):\n\n\t$.dform.subscribe(\"alert\", function(options, type) {\n\t\t// Just run if the type is a hellobutton\n\t\tif(type === \"hellobutton\") {\n\t\t\tthis.click(function() {\n\t\t\t\talert(options);\n\t\t\t});\n\t\t}\n\t});\n\nAnd then you can use the plugin like this:\n\n\t$(\"#mydiv\").dform({\n\t\t\"type\" : \"hellobutton\",\n\t\t\"alert\" : \"Hello world!\"\n\t});\n\nWhich generates:\n\n\t<button class=\"ui-dform-hellobutton\">Say Hello</button>\n\nAnd alerts \"Hello world!\" when the button is clicked. Like type generators, subscribers will also be chained.\nYou can therefore add multiple subscribers with the same name adding behaviour or reacting to different types.\n\n### Special subscribers\n\nCurrently there are two types of special subscribers:\n\n**\\[pre\\]** *{Object}*<br />\nFunctions registered with this name will be called before any processing occurs and get the original options passed.\n\n**\\[post\\]** *{Object}*<br />\nFunctions registered with this name will be called after all processing is finished and also get the original\noptions passed.\n\n## Plugin\n\n### jQuery plugin methods\n\nThe __dform__ plugin function follows the jQuery plugin convention of taking an options object or a\nmethod name as the first parameter to call different methods:\n\n**$(form).dform(options \\[, converter\\])** *{Object}* *{String}*<br />\nAppend the dForm object to each selected element. If the element is of the same type (e.g. if you are appending\na `type : 'form'` on a `<form>`) or if no type has been given run the subscribers and\nadd the attributes on the current element. Optionally use a converter with a given name.\n\n**$(form).dform(url \\[, success\\], \\[, error\\])** *{String}* *{Function}* *{Function}*<br />\nLoad a JSON form definition using GET from a given URL and execute a success handler when it returns\nor an error handler if the request faiuls. The handler gets the data passed and has `this` refer to the form element.\n\n**$(form).dform('run', options)** *{Object}*<br />\nRun all subscribers from a given dForm object on the selected element(s).\n\n**$(form).dform('run', name, options, type)** *{String}* *{Mixed}* *{String}*<br />\nRun a subscriber with a given name and options on the selected element(s) using a specific type.\nUsually used internally.\n\n**$(form).dform('append', options \\[, converter\\])** *{Object}* *{String}*<br />\nAppend a dForm element to each selected element. Optionally using a converter with the\ngiven name.\n\n**$(form).dform('attr', options)** *{Object}*<br />\nSet each attribute from the options object that doesn't have a corresponding subscriber registered.\n\n**$(form).dform('ajax', params \\[, success\\] \\[, error\\])** *{Object|String}* *{Function}* *{Function}*<br />\nLoad a form definition using Ajax. The params take the same options as a\n[jQuery Ajax](http://api.jquery.com/jQuery.ajax/) call.\n\n### Static functions\n\n**$.keySet(object)** *{Object}*<br />\nReturn an array of the objects keys.\n\n**$.withKeys(object, keys)** *{Object}* *{Array}*<br />\nReturns a new object that contains all values from the given\nobject that have a key which is also in the array keys.\n\n**$.withoutKeys(object, keys)** *{Object}* *{Array}*<br />\nReturns a new object that contains all value from the given\nobject that do not have a key which is also in the array keys.\n\n**$.dform.options**<br />\nStatic options for generating a form. Currently only `$.dform.options.prefix`\nis being used.\n\n**$.dform.defaultType(options)** *{Object}*<br />\nA type generator that will be used when no other registered type has been found.\nThe standard generator creates an HTML element according to the type given:\n\n\t{\n\t\t\"type\" : \"a\",\n\t\t\"href\" : \"http://daffl.github.com/jquery.dform\",\n\t\t\"html\" : \"Visit the plugin homepage\"\n\t}\n\nGenerates:\n\n\t<a class=\"ui-dform-a\" href=\"http://daffl.github.com/jquery.dform\">Visit the plugin homepage</a>\n\n**$.dform.types(\\[name\\])** *{String}*<br />\nReturns all type generators for a given type name. If no name is given, a map of type names\nto an array of generator functions will be returned.\n\n**$.dform.addType(name, generator \\[, condition\\])** *{String}* *{Function}* *{Boolean}*<br />\nAdd a new type with a given name and generator function which takes the options as the parameter\nand returns a new element. Optionally pass a condition which will add the type only if it is true.\n\n**$.dform.subscribe(name, subscriber \\[, condition\\])** *{String}* *{Function}* *{Boolean}*<br />\nAdd a new subscriber function for a given name that takes the value and type name as the parameter and will have\n`this` set to the current element. Optionally pass as condition which will add the subscriber only if it is true.\n\n**$.dform.subscribers(\\[name\\])**<br />\nReturns all subscribers for a given name. If no name is given, an object containing all subscribers will\nbe returned.\n\n**$.dform.hasSubscription(name)** *{String}*<br />\nReturns if there is at least one subscriber registered with the given name.\n\n**$.dform.createElement(options)** *{Object}*<br />\nReturns a new element either using a registered type generator or the default type generator.\n\n## jQuery UI\n\njQuery.dForm automatically adds support for whichever jQuery UI plugin is available.\nIf the form has the *ui-widget* class the plugin will automatically turn buttons into jQuery UI buttons and add\ncorners to *text*, *textarea*, *password* and *fieldset* elements.\n\n> Note: jQuery UI has to be loaded __before__ the dForm plugin.\n\n### Types\n\nMost jQuery UI widgets have an appropriate type generator implemented. Besides normal HTML attributes,\neach take the same options as described in [the jQuery UI documentation](http://jqueryui.com/demos/).\n\n**progressbar** `{ \"type\" : \"progressbar\" }`<br />\nCreates a progressbar. Use the options as described in the\n[jQuery UI progressbar documentation](http://jqueryui.com/demos/progressbar/).\n\n\t{\n\t\t\"type\" : \"progressbar\",\n\t\t\"value\" : \"20\"\n\t}\n\n**slider** `{ \"type\" : \"slider\" }`<br />\nCreates a [slider element](http://jqueryui.com/demos/slider/).\n\n\t{\n\t\t\"type\" : \"slider\",\n\t\t\"step\" : 5,\n\t\t\"value\" : 25\n\t}\n\n**accordion** `{ \"type\" : \"accordion\" }`<br />\nCreates a container for a jQueryUI accordion. Use the *entries* subscriber to add elements.\nYou can use any [jQueryUI accordion option](http://jqueryui.com/demos/accordion/) in the definition.\nThe caption in each entries element will be used as the accordion heading:\n\n    {\n      \"type\" : \"accordion\",\n      \"animated\" : \"bounceslide\",\n      \"entries\" : [\n        {\n          \"caption\" : \"First entry\",\n          \"html\" : \"Content 1\"\n        },\n        {\n          \"caption\" : \"Second entry\",\n          \"html\" : \"Content 2\"\n        }\n      ]\n    }\n\n**tabs** `{ \"type\" : \"tabs\" }`<br />\nCreates a container for a set of jQuery UI tabs. Use the *entries* subscriber to add elements.\nYou can use any [jQueryUI tabs option](http://jqueryui.com/demos/tabs/) in the definition.\nThe caption in each entries element will be used as the tab heading. You can either pass an array\nof entries and set the *id* attribute individually or an object which will use the key name as the id:\n\n    {\n      \"type\" : \"tabs\",\n      \"entries\" : [\n        {\n          \"caption\" : \"Tab 1\",\n          \"id\" : \"first\",\n          \"html\" : \"Content 1\"\n        },\n        {\n          \"caption\" : \"Tab 2\",\n          \"id\" : \"second\",\n          \"html\" : \"Content 2\"\n        }\n      ]\n    }\n\nWhich is equivalent to:\n\n    {\n      \"type\" : \"tabs\",\n      \"entries\" : {\n        \"first\": {\n          \"caption\" : \"Tab 1\",\n          \"html\" : \"Content 1\"\n        },\n        \"second\" : {\n          \"caption\" : \"Tab 2\",\n          \"html\" : \"Content 2\"\n        }\n      }\n    }\n\n### Subscribers\n\nSome other features have been implemented as subscribers:\n\n**entries** *{Object}*<br />\nAdd entries to an *accordion* or *tabs* element. See the accordion and tabs type documentation for examples.\n\n**dialog** *{Object}*<br />\nTurns the current element into a jQueryUI dialog. Pass the [jQueryUI dialog options](http://jqueryui.com/demos/dialog/)\nor an empty object for the defaults.\n\n**resizable** *{Object}*<br />\nMakes the current element resizable. Pass the [jQueryUI resizable options](http://jqueryui.com/demos/resizable/)\nor an empty object for the defaults.\n\n**datepicker** *{Object}*<br />\nAdds a datepicker to a text element. Pass the [jQueryUI datepicker options](http://jqueryui.com/demos/datepicker/)\nor an empty object for the defaults:\n\n    {\n      \"type\" : \"text\",\n      \"datepicker\" : {\n        \"minDate\" : \"+1\"\n      }\n    }\n\n**autocomplete** *{Object}*<br />\nAdds autocomplete functionality to a text element. Pass the [jQueryUI autocomplete options](http://jqueryui.com/demos/autocomplete/).\n\n## Other plugins\n\n### Form validation\n\njQuery.dForm adds a **validate** subscriber if the [jQuery Form Validation](http://bassistance.de/jquery-plugins/jquery-plugin-validation/)\nplugin is available. The options passed are added as [validation rulesets](http://docs.jquery.com/Plugins/Validation/rules#.22add.22rules)\nto the element:\n\n\t{\n\t\t\"type\" : \"text\",\n\t\t\"validate\" : {\n\t\t\t\"required\" : true,\n\t\t\t\"minlength\" : 2,\n\t\t\t\"messages\" : {\n\t\t\t\t\"required\" : \"Required input\",\n\t\t\t}\n\t\t}\n\t}\n\nIf the form has the *ui-widget* class the jQuery UI CSS error classes will be used to highlight fields.\n\n### jQuery Globalize\n\n[jQuery.Globalize](https://github.com/jquery/globalize) adds internationalization to JavaScript.\nIf available, the *html* and *options* subscribers will be enabled to use internationalized strings and option lists.\nFor example with Globalize configured like this:\n\n    Globalize.culture('de');\n\t\tGlobalize.addCultureInfo( \"de\", {\n      messages: {\n        \"stuff\" : {\n          \"hello\" : \"Hallo Welt\",\n          \"options\" : {\n            \"de\" : \"Deutschland\",\n            \"ca\" : \"Kanada\",\n            \"fr\" : \"Frankreich\"\n          }\n        }\n      }\n    });\n\nYou can create an internationalized form like this:\n\n    {\n      \"type\" : \"div\",\n      \"html\" : \"stuff.hello\"\n    }\n\nWhich generates:\n\n    <div class=\"ui-dform-div\">Hallo Welt</div>\n\nAnd an options list like:\n\n    {\n      \"type\" : \"select\",\n      \"options\" : \"stuff.options\"\n    }\n\nGenerates:\n\n    <select class=\"ui-dform-select\">\n      <option value=\"de\">Deutschland</option>\n      <option value=\"ca\">Kanada</option>\n      <option value=\"fr\">Frankreich</option>\n    </select>\n\n## Changelog\n\n__1.1.0__\n\n* Added `url` subscriber ([#22](https://github.com/daffl/jquery.dform/issues/22))\n* Better Ajax support ([#35](https://github.com/daffl/jquery.dform/issues/35))\n* Added dist files to GitHub pages for better CDN support\n* Registered bower package: `bower install jquery.dform`\n\n__1.0.1__\n\n* Updated and fixed documentation\n* Added [jQuery plugin](http://plugins.jquery.com) deploy information\n* Moved away from GitHub downloads\n* Verified jQuery 1.9.0 compatibility\n\n__1.0.0__\n\n* Improved documentation using DocumentUp\n* QUnit test suite\n* Major API improvements\n\n__0.1.4__\n\n* Merged pull request [#30](https://github.com/daffl/jquery.dform/pull/30):\nWrap 'type' as an array so it doesn't break jQuery 1.7.1's $.inArray() when running in IE8\n* Added first QUnit tests\n* Fixed issue #22 with jQuery UI accordion causing problems with captions\n* Removed placeholder plugin. Use HTML 5 placeholders or the jQuery\n[placeholder plugin](https://github.com/danielstocks/jQuery-Placeholder)\n* Updated documentation engine to DocumentJS and build system to StealJS\n* Merged pull request [#19](https://github.com/daffl/jquery.dform/pull/19) and\n[#20](https://github.com/daffl/jquery.dform/pull/20),\nsupport to set up a validate options for validate() in \"form\" type\n* Merged pull request [#26](https://github.com/daffl/jquery.dform/pull/26) to support HTML 5 input types\n* Added simple getting started example\n\n__0.1.3__\n\n* Created some public [JSFiddles for trying the plugin](http://jsfiddle.net/user/Daff/fiddles)\n* Added *form* type, unified *buildForm* usage\n* Fixed [issue #14](https://github.com/daffl/jquery.dform/issues/closed#issue/14), setting type attribute properly in IE\n* Added *getValueAt*\n* Added *i18n* support using the [jQuery globalize](https://github.com/jquery/jquery-global) plugin\n* Fixed minor bugs in dform plugins\n\n__0.1.2__\n\n* Added *dformAttr* to add HTML attributes to elements\n* Moved *placeholder* into a separate plugin\n* Added *reset* button type\n* Added dynamic form definition loading by passing a URL to the *buildForm* plugin function\n* Added *ajax* subscriber using the *jQuery form plugin at http://jquery.malsup.com/form*\n* Added the *defaultType* method to create any HTML element without having to register a type\n* Improved build process\n\n__0.1.1__\n\n* Separated type and subscriber functions\n* Added types *file*, *container*, *hidden*, *accordion*, *checkboxes* and *radiobuttons*\n* Added auto class generation based on element type\n* Finished jQuery UI *accordion* and unified with *tabs* usage\n* Switched documentation to *Natualdocs at http://naturaldocs.org*\n* Added build.xml for generating documentation and minifying JavaScript\n\n__0.1__\n\n* Initial release\n\n## License\n\nCopyright (C) 2013 [David Luecke](http://daffl.github.com), [http://daffl.github.com/jquery.dform]\n\nThe MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[![Build Status](https://secure.travis-ci.org/daffl/jquery.dform.png)](http://travis-ci.org/daffl/jquery.dform)\n"
  },
  {
    "path": "src/dform.converters.js",
    "content": "/*\n * jQuery dform plugin\n * Copyright (C) 2011 David Luecke <daff@neyeon.de>\n * \n * Licensed under the MIT license\n */\n\n/**\n * \n */\n(function($)\n{\n\t$.dform.options.converters =\n\t{\n\t\t\"json\" :\n\t\t{\n\t\t\t\"types\" :\n\t\t\t{\n\t\t\t\t\"boolean\" :\n\t\t\t\t{\n\t\t\t\t\t\"type\" : \"checkbox\"\n\t\t\t\t},\n\t\t\t\t\"integer\" :\n\t\t\t\t{\n\t\t\t\t\t\"type\" : \"text\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\t$.dform.converters =\n\t{\n\t\t\"json\" : function(data, path)\n\t\t{\n\t\t\tvar converters = $.dform.options.converters.json.types;\n\t\t\tvar getElements = function(obj)\n\t\t\t{\n\t\t\t\tvar result = [];\n\t\t\t\t$.each(obj, function(key, value)\n\t\t\t\t{\n\t\t\t\t\tvar instance = typeof (value);\n\t\t\t\t\tvar element;\n\t\t\t\t\tif($.isArray(value))\n\t\t\t\t\t{\n\t\t\t\t\t\talert(key + ' is an array');\n\t\t\t\t\t} else if($.isPlainObject(value))\n\t\t\t\t\t{\n\t\t\t\t\t\telement =\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t'type' : 'fieldset',\n\t\t\t\t\t\t\t'caption' : key,\n\t\t\t\t\t\t\t'elements' : getElements(value)\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tvar baseElement = converters[instance] || { 'type' : 'text' };\n\t\t\t\t\t\telement = $.extend(baseElement, { 'caption' : key, 'name' : key, 'value' : value });\n\t\t\t\t\t}\n\t\t\t\t\tresult.push(element);\n\t\t\t\t});\n\t\t\t\treturn result;\n\t\t\t};\n\t\t\t\n\t\t\treturn {\n\t\t\t\t\"type\" : \"form\",\n\t\t\t\t\"elements\" : getElements(data)\n\t\t\t};\n\t\t},\n\n\t\t\"json-schema\" : function(data)\n\t\t{\n\t\t\tvar dform =\n\t\t\t{\n\t\t\t\telements : []\n\t\t\t};\n\n\t\t\tfor ( var propName in schema.properties)\n\t\t\t{\n\t\t\t\tvar property = schema.properties[propName];\n\t\t\t\tvar type = property.type;\n\t\t\t\tif (type == \"string\")\n\t\t\t\t{\n\t\t\t\t\tvar value = obj[propName];\n\t\t\t\t\tif (!value)\n\t\t\t\t\t\tvalue = \"\";\n\t\t\t\t\tvar element =\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\" : \"ui-form-\" + propName,\n\t\t\t\t\t\t\"id\" : \"ui-form-\" + propName,\n\t\t\t\t\t\t\"caption\" : property.title,\n\t\t\t\t\t\t\"type\" : \"text\",\n\t\t\t\t\t\t\"value\" : value\n\t\t\t\t\t};\n\t\t\t\t\tdform.elements.push(element);\n\t\t\t\t\tdform.elements.push(\n\t\t\t\t\t{\n\t\t\t\t\t\t\"type\" : \"br\"\n\t\t\t\t\t});\n\t\t\t\t} else if (type == \"object\")\n\t\t\t\t{\n\t\t\t\t\tvar element = jsonSchemaToDForm(property, obj);\n\t\t\t\t\telement.type = \"fieldset\";\n\t\t\t\t\telement.caption = property.title;\n\t\t\t\t\tdform.elements.push(element);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn dform;\n\t\t}\n\t};\n})(jQuery);\n"
  },
  {
    "path": "src/dform.core.js",
    "content": "/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n *\n * Licensed under the MIT license\n */\n(function ($) {\n\tvar each = $.each,\n\t\t_element = function (tag, excludes) {\n\t\t\treturn function (ops) {\n\t\t\t\treturn $(tag).dform('attr', ops, excludes);\n\t\t\t};\n\t\t},\n\t\t_html = function (options, type) {\n\t\t\tvar self = this;\n\t\t\tif ($.isPlainObject(options)) {\n\t\t\t\tself.dform('append', options);\n\t\t\t} else if ($.isArray(options)) {\n\t\t\t\teach(options, function (index, nested) {\n\t\t\t\t\tself.dform('append', nested);\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tself.html(options);\n\t\t\t}\n\t\t};\n\n\t$.dform.addType({\n\t\tcontainer : _element(\"<div>\"),\n\t\ttext : _element('<input type=\"text\" />'),\n\t\tpassword : _element('<input type=\"password\" />'),\n\t\tsubmit : _element('<input type=\"submit\" />'),\n\t\treset : _element('<input type=\"reset\" />'),\n\t\thidden : _element('<input type=\"hidden\" />'),\n\t\tradio : _element('<input type=\"radio\" />'),\n\t\tcheckbox : _element('<input type=\"checkbox\" />'),\n\t\tfile : _element('<input type=\"file\" />'),\n\t\tnumber : _element('<input type=\"number\" />'),\n\t\turl : _element('<input type=\"url\" />'),\n\t\ttel : _element('<input type=\"tel\" />'),\n\t\temail : _element('<input type=\"email\" />'),\n\t\tcheckboxes : _element(\"<div>\", [\"name\"]),\n\t\tradiobuttons : _element(\"<div>\", [\"name\"])\n\t});\n\n\t$.dform.subscribe({\n\t\t/**\n\t\t * Adds a class to the current element.\n\t\t * Ovverrides the default behaviour which would be replacing the class attribute.\n\t\t *\n\t\t * @param options A list of whitespace separated classnames\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"class\" : function (options, type) {\n\t\t\tthis.addClass(options);\n\t\t},\n\n\t\t/**\n\t\t * Sets html content of the current element\n\t\t *\n\t\t * @param options The html content to set as a string\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"html\" : _html,\n\n\t\t/**\n\t\t * Recursively appends subelements to the current form element.\n\t\t *\n\t\t * @param options Either an object with key value pairs\n\t\t *\t where the key is the element name and the value the\n\t\t *\t subelement options or an array of objects where each object\n\t\t *\t is the options for a subelement\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"elements\" : _html,\n\n\t\t/**\n\t\t * Sets the value of the current element.\n\t\t *\n\t\t * @param options The value to set\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"value\" : function (options) {\n\t\t\tthis.val(options);\n\t\t},\n\n\t\t/**\n\t\t * Set CSS styles for the current element\n\t\t *\n\t\t * @param options The Styles to set\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"css\" : function (options) {\n\t\t\tthis.css(options);\n\t\t},\n\n\t\t/**\n\t\t * Adds options to select type elements or radio and checkbox list elements.\n\t\t *\n\t\t * @param options A key value pair where the key is the\n\t\t *\t option value and the value the options text or the settings for the element.\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"options\" : function (options, type) {\n\t\t\tvar self = this;\n\t\t\t// Options for select elements\n\t\t\tif ((type === \"select\" || type === \"optgroup\") && typeof options !== 'string')\n\t\t\t{\n\t\t\t\teach(options, function (value, content) {\n\t\t\t\t\tvar option = { type : 'option', value : value };\n\t\t\t\t\tif (typeof (content) === \"string\") {\n\t\t\t\t\t\toption.html = content;\n\t\t\t\t\t}\n\t\t\t\t\tif (typeof (content) === \"object\") {\n\t\t\t\t\t\toption = $.extend(option, content);\n\t\t\t\t\t}\n\t\t\t\t\tself.dform('append', option);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse if (type === \"checkboxes\" || type === \"radiobuttons\") {\n\t\t\t\t// Options for checkbox and radiobutton lists\n\t\t\t\teach(options, function (value, content) {\n\t\t\t\t\tvar boxoptions = ((type === \"radiobuttons\") ? { \"type\" : \"radio\" } : { \"type\" : \"checkbox\" });\n\t\t\t\t\tif (typeof(content) === \"string\") {\n\t\t\t\t\t\tboxoptions[\"caption\"] = content;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$.extend(boxoptions, content);\n\t\t\t\t\t}\n\t\t\t\t\tboxoptions[\"value\"] = value;\n\t\t\t\t\tself.dform('append', boxoptions);\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Adds caption to elements.\n\t\t *\n\t\t * Depending on the element type the following elements will\n\t\t * be used:\n\t\t * - A legend for <fieldset> elements\n\t\t * - A <label> next to <radio> or <checkbox> elements\n\t\t * - A <label> before any other element\n\t\t *\n\t\t * @param options A string for the caption or the options for the\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"caption\" : function (options, type) {\n\t\t\tvar ops = {};\n\t\t\tif (typeof (options) === \"string\") {\n\t\t\t\tops[\"html\"] = options;\n\t\t\t} else {\n\t\t\t\t$.extend(ops, options);\n\t\t\t}\n\n\t\t\tif (type == \"fieldset\") {\n\t\t\t\t// Labels for fieldsets are legend\n\t\t\t\tops.type = \"legend\";\n\t\t\t\tthis.dform('append', ops);\n\t\t\t} else {\n\t\t\t\tops.type = \"label\";\n\t\t\t\tif (this.attr(\"id\")) {\n\t\t\t\t\tops[\"for\"] = this.attr(\"id\");\n\t\t\t\t}\n\t\t\t\tvar label = $($.dform.createElement(ops));\n\t\t\t\tif (type === \"checkbox\" || type === \"radio\") {\n\t\t\t\t\tthis.parent().append($(label));\n\t\t\t\t} else {\n\t\t\t\t\tlabel.insertBefore(this);\n\t\t\t\t}\n\t\t\t\tlabel.dform('run', ops);\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * The subscriber for the type parameter.\n\t\t * Although the type parameter is used to get the correct element\n\t\t * type it is just treated as a simple subscriber otherwise.\n\t\t * Since every element needs a type\n\t\t * parameter feel free to add other type subscribers to do\n\t\t * any processing between [pre] and [post].\n\t\t *\n\t\t * This subscriber adds the auto generated classes according\n\t\t * to the type prefix in $.dform.options.prefix.\n\t\t *\n\t\t * @param options The name of the type\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"type\" : function (options, type) {\n\t\t\tif ($.dform.options.prefix) {\n\t\t\t\tthis.addClass($.dform.options.prefix + type);\n\t\t\t}\n\t\t},\n\t\t/**\n\t\t * Retrieves JSON data from a URL and creates a sub form.\n\t\t *\n\t\t * @param options\n\t\t * @param type\n\t\t */\n\t\t\"url\" : function (options) {\n\t\t\tthis.dform('ajax', options);\n\t\t},\n\t\t/**\n\t\t * Post processing function, that will run whenever all other subscribers are finished.\n\t\t *\n\t\t * @param options All options that have been used for\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\t\"[post]\" : function (options, type) {\n\t\t\tif (type === \"checkboxes\" || type === \"radiobuttons\") {\n\t\t\t\tvar boxtype = ((type === \"checkboxes\") ? \"checkbox\" : \"radio\");\n\t\t\t\tthis.children(\"[type=\" + boxtype + \"]\").each(function () {\n\t\t\t\t\t$(this).attr(\"name\", options.name);\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t});\n})(jQuery);\n"
  },
  {
    "path": "src/dform.extensions.js",
    "content": "/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n * \n * Licensed under the MIT license\n */\n(function($)\n{\n\tvar _getOptions = function(type, options)\n\t\t{\n\t\t\treturn $.withKeys(options, $.keyset($.ui[type][\"prototype\"][\"options\"]));\n\t\t},\n\t\t_get = function(keys, obj) {\n\t\t\tfor(var item = obj, i = 0; i < keys.length; i++) {\n\t\t\t\titem = item[keys[i]];\n\t\t\t\tif(!item) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn item;\n\t\t}\n\t\t\n\t$.dform.addType(\"progressbar\",\n\t\t/**\n\t\t * Returns a jQuery UI progressbar.\n\t\t *\n\t\t * @param options  As specified in the jQuery UI progressbar documentation at\n\t\t * \thttp://jqueryui.com/demos/progressbar/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options).progressbar(_getOptions(\"progressbar\", options));\n\t\t}, $.isFunction($.fn.progressbar));\n\n\t$.dform.addType(\"slider\",\n\t\t/**\n\t\t * Returns a slider element.\n\t\t *\n\t\t * @param options As specified in the jQuery UI slider documentation at\n\t\t * \thttp://jqueryui.com/demos/slider/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options).slider(_getOptions(\"slider\", options));\n\t\t}, $.isFunction($.fn.slider));\n\n\t$.dform.addType(\"accordion\",\n\t\t/**\n\t\t * Creates an element container for a jQuery UI accordion.\n\t\t *\n\t\t * @param options As specified in the jQuery UI accordion documentation at\n\t\t * \thttp://jqueryui.com/demos/accordion/\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options);\n\t\t}, $.isFunction($.fn.accordion));\n\n\t$.dform.addType(\"tabs\",\n\t\t/**\n\t\t * Returns a container for jQuery UI tabs.\n\t\t *\n\t\t * @param options The options as in jQuery UI tab\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\treturn $(\"<div>\").dform('attr', options);\n\t\t}, $.isFunction($.fn.tabs));\n\t\n\t$.dform.subscribe(\"entries\",\n\t\t/**\n\t\t *  Create entries for the accordion type.\n\t\t *  Use the <elements> subscriber to create subelements in each entry.\n\t\t *\n\t\t * @param options All options for the container div. The <caption> will be\n\t\t * \tturned into the accordion or tab title.\n\t\t * @param type The type. This subscriber will only run for accordion\n\t\t */\n\t\tfunction(options, type) {\n\t\t\tif(type == \"accordion\")\n\t\t\t{\n\t\t\t\tvar scoper = this;\n\t\t\t\t$.each(options, function(index, options) {\n\t\t\t\t\tvar el = $.extend({ \"type\" : \"div\" }, options);\n\t\t\t\t\t$(scoper).dform('append', el);\n\t\t\t\t\tif(options.caption) {\n\t\t\t\t\t\tvar label = $(scoper).children(\"div:last\").prev();\n\t\t\t\t\t\tlabel.replaceWith('<h3><a href=\"#\">' + label.html() + '</a></h3>');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}, $.isFunction($.fn.accordion));\n\n\t$.dform.subscribe(\"entries\",\n\t\t/**\n\t\t *  Create entries for the accordion type.\n\t\t *  Use the <elements> subscriber to create subelements in each entry.\n\t\t *\n\t\t * @param options All options for the container div. The <caption> will be\n\t\t * \tturned into the accordion or tab title.\n\t\t * @param type The type. This subscriber will only run for accordion\n\t\t */\n\t\tfunction(options, type) {\n\t\t\tif(type == \"tabs\")\n\t\t\t{\n\t\t\t\tvar scoper = this;\n\t\t\t\tthis.append(\"<ul>\");\n\t\t\t\tvar ul = $(scoper).children(\"ul:first\");\n\t\t\t\t$.each(options, function(index, options) {\n\t\t\t\t\tvar id = options.id ? options.id : index;\n\t\t\t\t\t$.extend(options, { \"type\" : \"container\", \"id\" : id });\n\t\t\t\t\t$(scoper).dform('append', options);\n\t\t\t\t\tvar label = $(scoper).children(\"div:last\").prev();\n\t\t\t\t\t$(label).wrapInner($(\"<a>\").attr(\"href\", \"#\" + id));\n\t\t\t\t\t$(ul).append($(\"<li>\").wrapInner(label));\n\t\t\t\t});\n\t\t\t}\n\t\t}, $.isFunction($.fn.tabs));\n\t\t\n\t$.dform.subscribe(\"dialog\",\n\t\t/**\n\t\t * Turns an element into a jQuery UI dialog.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI dialog documentation\\(http://jqueryui.com/demos/dialog/)\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\tthis.dialog(options);\n\t\t}, $.isFunction($.fn.dialog));\n\n\t$.dform.subscribe(\"resizable\",\n\t\t/**\n\t\t * Make the current element resizable.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI resizable documentation](http://jqueryui.com/demos/resizable/)\n\t\t */\n\t\tfunction(options)\n\t\t{\n\t\t\tthis.resizable(options);\n\t\t}, $.isFunction($.fn.resizable));\n\n\t$.dform.subscribe(\"datepicker\",\n\t\t/**\n\t\t * Adds a jQuery UI datepicker to an element of type text.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI datepicker documentation](http://jqueryui.com/demos/datepicker/)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (type == \"text\") {\n\t\t\t\tthis.datepicker(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.datepicker));\n\n\t$.dform.subscribe(\"autocomplete\",\n\t\t/**\n\t\t * Adds the autocomplete feature to a text element.\n\t\t *\n\t\t * @param options As specified in the [jQuery UI autotomplete documentation](http://jqueryui.com/demos/autotomplete/)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (type == \"text\") {\n\t\t\t\tthis.autocomplete(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.autocomplete));\n\n\t$.dform.subscribe(\"[post]\",\n\t\t/**\n\t\t * Post processing subscriber that adds jQuery UI styling classes to\n\t\t * text, textarea, password and fieldset elements as well\n\t\t * as calling .button() on submit or button elements.\n\t\t *\n\t\t * Additionally, accordion and tabs elements will be initialized\n\t\t * with their options.\n\t\t *\n\t\t * @param options All options that have been passed for creating the element\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif (this.parents(\"form\").hasClass(\"ui-widget\"))\n\t\t\t{\n\t\t\t\tif ((type === \"button\" || type === \"submit\") && $.isFunction($.fn.button)) {\n\t\t\t\t\tthis.button();\n\t\t\t\t}\n\t\t\t\tif (!!~$.inArray(type, [ \"text\", \"textarea\", \"password\",\n\t\t\t\t\t\t\"fieldset\" ])) {\n\t\t\t\t\tthis.addClass(\"ui-widget-content ui-corner-all\");\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(type === \"accordion\" || type === \"tabs\") {\n\t\t\t\tthis[type](_getOptions(type, options));\n\t\t\t}\n\t\t});\n\t\n\t$.dform.subscribe(\"[pre]\",\n\t\t/**\n\t\t * Add a preprocessing subscriber that calls .validate() on the form,\n\t\t * so that we can add rules to the input elements. Additionally\n\t\t * the jQuery UI highlight classes will be added to the validation\n\t\t * plugin default settings if the form has the ui-widget class.\n\t\t * \n\t\t * @param options All options that have been used for\n\t\t * creating the current element.\n\t\t * @param type The type of the *this* element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type == \"form\")\n\t\t\t{\n\t\t\t\tvar defaults = {};\n\t\t\t\tif(this.hasClass(\"ui-widget\"))\n\t\t\t\t{\n\t\t\t\t\tdefaults = {\n\t\t\t\t\t\thighlight: function(input)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$(input).addClass(\"ui-state-highlight\");\n\t\t\t\t\t\t},\n\t\t\t\t\t\tunhighlight: function(input)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$(input).removeClass(\"ui-state-highlight\");\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tif (typeof (options.validate) == 'object') {\n\t\t\t\t\t$.extend(defaults, options.validate);\n\t\t\t\t}\n\t\t\t\tthis.validate(defaults);\n\t\t\t}\n\t\t}, $.isFunction($.fn.validate));\n\n\t\t/**\n\t\t * Adds support for the jQuery validation rulesets.\n\t\t * For types: text, password, textarea, radio, checkbox sets up rules through rules(\"add\", rules) for validation plugin\n\t\t * For type <form> sets up as options object for validate method of validation plugin\n\t\t * For rules of types checkboxes and radiobuttons you should use this subscriber for type form (to see example below)\n\t\t *\n\t\t * @param options\n\t\t * @param type\n\t\t */\n\t$.dform.subscribe(\"validate\", function(options, type)\n\t\t{\n\t\t\tif (type != \"form\") {\n\t\t\t\tthis.rules(\"add\", options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.validate));\n\n\t$.dform.subscribe(\"ajax\",\n\t\t/**\n\t\t * If the current element is a form, it will be turned into a dynamic form\n\t\t * that can be submitted asynchronously.\n\t\t *\n\t\t * @param options Options as specified in the [jQuery Form plugin documentation](http://jquery.malsup.com/form/#options-object)\n\t\t * @param type The type of the element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type === \"form\")\n\t\t\t{\n\t\t\t\tthis.ajaxForm(options);\n\t\t\t}\n\t\t}, $.isFunction($.fn.ajaxForm));\n\n\t$.dform.subscribe('html',\n\t\t/**\n\t\t * Extends the html subscriber that will replace any string with it's translated\n\t\t * equivalent using the jQuery Global plugin. The html content will be interpreted\n\t\t * as an index string where the first part indicates the localize main index and\n\t\t * every following a sub index using getValueAt.\n\t\t *\n\t\t * @param options The dot separated html string to localize\n\t\t * @param type The type of the this element\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(typeof options === 'string') {\n\t\t\t\tvar keys = options.split('.'),\n\t\t\t\t\ttranslated = Globalize.localize(keys.shift());\n\t\t\t\tif(translated = _get(keys, translated)) {\n\t\t\t\t\t$(this).html(translated);\n\t\t\t\t}\n\t\t\t}\n\t\t}, typeof Globalize !== 'undefined' && $.isFunction(Globalize.localize));\n\n\t$.dform.subscribe('options',\n\t\t/**\n\t\t * Extends the options subscriber for using internationalized option\n\t\t * lists.\n\t\t *\n\t\t * @param options Options as specified in the <jQuery Form plugin documentation at http://jquery.malsup.com/form/#options-object>\n\t\t * @param type The type of the element.\n\t\t */\n\t\tfunction(options, type)\n\t\t{\n\t\t\tif(type === 'select' && typeof(options) === 'string') {\n\t\t\t\t$(this).html('');\n\t\t\t\tvar keys = options.split('.'),\n\t\t\t\t\toptlist = Globalize.localize(keys.shift());\n\t\t\t\tif(optlist = _get(keys, optlist)) {\n\t\t\t\t\t$(this).dform('run', 'options', optlist, type);\n\t\t\t\t}\n\t\t\t}\n\t\t}, typeof Globalize !== 'undefined' && $.isFunction(Globalize.localize));\n})(jQuery);\n"
  },
  {
    "path": "src/dform.js",
    "content": "/*\n * jQuery dform plugin\n * Copyright (C) 2012 David Luecke <daff@neyeon.com>, [http://daffl.github.com/jquery.dform]\n * \n * Licensed under the MIT license\n */\n(function ($) {\n\tvar _subscriptions = {},\n\t\t_types = {},\n\t\teach = $.each,\n\t\taddToObject = function (obj) {\n\t\t\tvar result = function (data, fn, condition) {\n\t\t\t\tif (typeof data === 'object') {\n\t\t\t\t\t$.each(data, function (name, val) {\n\t\t\t\t\t\tresult(name, val, condition);\n\t\t\t\t\t});\n\t\t\t\t} else if (condition === undefined || condition === true) {\n\t\t\t\t\tif (!obj[data]) {\n\t\t\t\t\t\tobj[data] = [];\n\t\t\t\t\t}\n\t\t\t\t\tobj[data].push(fn);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t},\n\t\tisArray = $.isArray,\n\t\t/**\n\t\t * Returns an array of keys (properties) contained in the given object.\n\t\t *\n\t\t * @param {Object} object The object to use\n\t\t * @return {Array} An array containing all properties in the object\n\t\t */\n\t\tkeyset = function (object) {\n\t\t\treturn $.map(object, function (val, key) {\n\t\t\t\treturn key;\n\t\t\t});\n\t\t},\n\t\t/**\n\t\t * Returns an object that contains all values from the given\n\t\t * object that have a key which is also in the array keys.\n\t\t *\n\t\t * @param {Object} object The object to traverse\n\t\t * @param {Array} keys The keys the new object should contain\n\t\t * @return {Object} A new object containing only the properties\n\t\t * with names given in keys\n\t\t */\n\t\twithKeys = function (object, keys) {\n\t\t\tvar result = {};\n\t\t\teach(keys, function (index, value) {\n\t\t\t\tif (object[value]) {\n\t\t\t\t\tresult[value] = object[value];\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn result;\n\t\t},\n\t\t/**\n\t\t * Returns an object that contains all value from the given\n\t\t * object that do not have a key which is also in the array keys.\n\t\t *\n\t\t * @param {Object} object The object to traverse\n\t\t * @param {Array} keys A list of keys that should not be contained in the new object\n\t\t * @return {Object} A new object with all properties of the given object, except\n\t\t * for the ones given in the list of keys\n\t\t */\n\t\twithoutKeys = function (object, keys) {\n\t\t\tvar result = {};\n\t\t\teach(object, function (index, value) {\n\t\t\t\tif (!~$.inArray(index, keys)) {\n\t\t\t\t\tresult[index] = value;\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn result;\n\t\t},\n\t\t/**\n\t\t * Run all subscriptions with the given name and options\n\t\t * on an element.\n\t\t *\n\t\t * @param {String} name The name of the subscriber function\n\t\t * @param {Object} options ptions for the function\n\t\t * @param {String} type The type of the current element as in the registered types\n\t\t * @return {Object} The jQuery object\n\t\t */\n\t\trunSubscription = function (name, options, type) {\n\t\t\tif ($.dform.hasSubscription(name)) {\n\t\t\t\tthis.each(function () {\n\t\t\t\t\tvar element = $(this);\n\t\t\t\t\teach(_subscriptions[name], function (i, sfn) {\n\t\t\t\t\t\t// run subscriber function with options\n\t\t\t\t\t\tsfn.call(element, options, type);\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn this;\n\t\t},\n\t\t/**\n\t\t * Run all subscription functions with given options.\n\t\t *\n\t\t * @param {Object} options The options to use\n\t\t * @return {Object} The jQuery element this function has been called on\n\t\t */\n\t\trunAll = function (options) {\n\t\t\tvar type = options.type, self = this;\n\t\t\t// Run preprocessing subscribers\n\t\t\tthis.dform('run', '[pre]', options, type);\n\t\t\teach(options, function (name, sopts) {\n\t\t\t\tself.dform('run', name, sopts, type);\n\t\t\t});\n\t\t\t// Run post processing subscribers\n\t\t\tthis.dform('run', '[post]', options, type);\n\t\t\treturn this;\n\t\t};\n\n\t/**\n\t * Globals added directly to the jQuery object\n\t */\n\t$.extend($, {\n\t\tkeyset : keyset,\n\t\twithKeys : withKeys,\n\t\twithoutKeys : withoutKeys,\n\t\tdform : {\n\t\t\t/**\n\t\t\t * Default options the plugin is initialized with:\n\t\t\t *\n\t\t\t * ## prefix\n\t\t\t *\n\t\t\t * The Default prefix used for element classnames generated by the dform plugin.\n\t\t\t * Defaults to _ui-dform-_\n\t\t\t * E.g. an element with type text will have the class ui-dform-text\n\t\t\t *\n\t\t\t */\n\t\t\toptions : {\n\t\t\t\tprefix : \"ui-dform-\"\n\t\t\t},\n\n\t\t\t/**\n\t\t\t * A function that is called, when no registered type has been found.\n\t\t\t * The default behaviour returns an HTML element with the tag\n\t\t\t * as specified in type and the HTML attributes given in options\n\t\t\t * (without subscriber options).\n\t\t\t *\n\t\t\t * @param {Object} options\n\t\t\t * @return {Object} The created object\n\t\t\t */\n\t\t\tdefaultType : function (options) {\n\t\t\t\treturn $(\"<\" + options.type + \">\").dform('attr', options);\n\t\t\t},\n\t\t\t/**\n\t\t\t * Return all types.\n\t\t\t *\n\t\t\t * @params {String} name (optional) If passed return\n\t\t\t * all type generators for a given name.\n\t\t\t * @return {Object} Mapping from type name to\n\t\t\t * an array of generator functions.\n\t\t\t */\n\t\t\ttypes : function (name) {\n\t\t\t\treturn name ? _types[name ] : _types;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Register an element type function.\n\t\t\t *\n\t\t\t * @param {String|Array} data Can either be the name of the type\n\t\t\t * function or an object that contains name : type function pairs\n\t\t\t * @param {Function} fn The function that creates a new type element\n\t\t\t */\n\t\t\taddType : addToObject(_types),\n\t\t\t/**\n\t\t\t * Returns all subscribers or all subscribers for a given name.\n\t\t\t *\n\t\t\t * @params {String} name (optional) If passed return all\n\t\t\t * subscribers for a given name\n\t\t\t * @return {Object} Mapping from subscriber names\n\t\t\t * to an array of subscriber functions.\n\t\t\t */\n\t\t\tsubscribers : function (name) {\n\t\t\t\treturn name ? _subscriptions[name] : _subscriptions;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Register a subscriber function.\n\t\t\t *\n\t\t\t * @param {String|Object} data Can either be the name of the subscriber\n\t\t\t * function or an object that contains name : subscriber function pairs\n\t\t\t * @param {Function} fn The function to subscribe or nothing if an object is passed for data\n\t\t\t * @param {Array} deps An optional list of dependencies\n\t\t\t */\n\t\t\tsubscribe : addToObject(_subscriptions),\n\t\t\t/**\n\t\t\t * Returns if a subscriber function with the given name\n\t\t\t * has been registered.\n\t\t\t *\n\t\t\t * @param {String} name The subscriber name\n\t\t\t * @return {Boolean} True if the given name has at least one subscriber registered,\n\t\t\t *     false otherwise\n\t\t\t */\n\t\t\thasSubscription : function (name) {\n\t\t\t\treturn _subscriptions[name] ? true : false;\n\t\t\t},\n\t\t\t/**\n\t\t\t * Create a new element.\n\t\t\t *\n\t\t\t * @param {Object} options - The options to use\n\t\t\t * @return {Object} The element as created by the builder function specified\n\t\t\t *     or returned by the defaultType function.\n\t\t\t */\n\t\t\tcreateElement : function (options) {\n\t\t\t\tif (!options.type) {\n\t\t\t\t\tthrow \"No element type given! Must always exist.\";\n\t\t\t\t}\n\t\t\t\tvar type = options.type,\n\t\t\t\t\telement = null,\n\t\t\t\t// We don't need the type key in the options\n\t\t\t\t\topts = $.withoutKeys(options, [\"type\"]);\n\n\t\t\t\tif (_types[type]) {\n\t\t\t\t\t// Run all type element builder functions called typename\n\t\t\t\t\teach(_types[type], function (i, sfn) {\n\t\t\t\t\t\telement = sfn.call(element, opts);\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t// Call defaultType function if no type was found\n\t\t\t\t\telement = $.dform.defaultType(options);\n\t\t\t\t}\n\t\t\t\treturn $(element);\n\t\t\t},\n\t\t\tmethods : {\n\t\t\t\t/**\n\t\t\t\t * Run all subscriptions with the given name and options\n\t\t\t\t * on an element.\n\t\t\t\t *\n\t\t\t\t * @param {String} name The name of the subscriber function\n\t\t\t\t * @param {Object} options ptions for the function\n\t\t\t\t * @param {String} type The type of the current element as in the registered types\n\t\t\t\t * @return {Object} The jQuery object\n\t\t\t\t */\n\t\t\t\trun : function (name, options, type) {\n\t\t\t\t\tif (typeof name !== 'string') {\n\t\t\t\t\t\treturn runAll.call(this, name);\n\t\t\t\t\t}\n\t\t\t\t\treturn runSubscription.call(this, name, options, type);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * Creates a form element on an element with given options\n\t\t\t\t *\n\t\t\t\t * @param {Object} options The options to use\n\t\t\t\t * @return {Object} The jQuery element this function has been called on\n\t\t\t\t */\n\t\t\t\tappend : function (options, converter) {\n\t\t\t\t\tif (converter && $.dform.converters && $.isFunction($.dform.converters[converter])) {\n\t\t\t\t\t\toptions = $.dform.converters[converter](options);\n\t\t\t\t\t}\n\t\t\t\t\t// Create element (run builder function for type)\n\t\t\t\t\tvar element = $.dform.createElement(options);\n\t\t\t\t\tthis.append(element);\n\t\t\t\t\t// Run all subscriptions\n\t\t\t\t\telement.dform('run', options);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t * Adds HTML attributes to the current element from the given options.\n\t\t\t\t * Any subscriber will be omitted so that the attributes will contain any\n\t\t\t\t * key value pair where the key is not the name of a subscriber function\n\t\t\t\t * and is not in the string array excludes.\n\t\t\t\t *\n\t\t\t\t * @param {Object} object The attribute object\n\t\t\t\t * @param {Array} excludes A list of keys that should also be excluded\n\t\t\t\t * @return {Object} The jQuery object of the this reference\n\t\t\t\t */\n\t\t\t\tattr : function (object, excludes) {\n\t\t\t\t\t// Ignore any subscriber name and the objects given in excludes\n\t\t\t\t\tvar ignores = $.keyset(_subscriptions);\n\t\t\t\t\tisArray(excludes) && $.merge(ignores, excludes);\n\t\t\t\t\tthis.attr($.withoutKeys(object, ignores));\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t *\n\t\t\t\t *\n\t\t\t\t * @param params\n\t\t\t\t * @param success\n\t\t\t\t * @param error\n\t\t\t\t */\n\t\t\t\tajax : function (params, success, error) {\n\t\t\t\t\tvar options = {\n\t\t\t\t\t\terror : error,\n\t\t\t\t\t\turl : params\n\t\t\t\t\t}, self = this;\n\t\t\t\t\tif (typeof params !== 'string') {\n\t\t\t\t\t\t$.extend(options, params);\n\t\t\t\t\t}\n\t\t\t\t\toptions.success = function (data) {\n\t\t\t\t\t\tvar callback = success || params.success;\n\t\t\t\t\t\tself.dform(data);\n\t\t\t\t\t\tif(callback) {\n\t\t\t\t\t\t\tcallback.call(self, data);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t$.ajax(options);\n\t\t\t\t},\n\t\t\t\t/**\n\t\t\t\t *\n\t\t\t\t *\n\t\t\t\t * @param options\n\t\t\t\t */\n\t\t\t\tinit : function (options, converter) {\n\t\t\t\t\tvar opts = options.type ? options : $.extend({ \"type\" : \"form\" }, options);\n\t\t\t\t\tif (converter && $.dform.converters && $.isFunction($.dform.converters[converter])) {\n\t\t\t\t\t\topts = $.dform.converters[converter](opts);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.is(opts.type)) {\n\t\t\t\t\t\tthis.dform('attr', opts);\n\t\t\t\t\t\tthis.dform('run', opts);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.dform('append', opts);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\t/**\n\t * The jQuery plugin function\n\t *\n\t * @param options The form options\n\t * @param {String} converter The name of the converter in $.dform.converters\n\t * that will be used to convert the options\n\t */\n\t$.fn.dform = function (options, converter, error) {\n\t\tvar self = $(this);\n\t\tif ($.dform.methods[options]) {\n\t\t\t$.dform.methods[options].apply(self, Array.prototype.slice.call(arguments, 1));\n\t\t} else {\n\t\t\tif (typeof options === 'string') {\n\t\t\t\t$.dform.methods.ajax.call(self, {\n\t\t\t\t\turl : options,\n\t\t\t\t\tdataType : 'json'\n\t\t\t\t}, converter, error);\n\t\t\t} else {\n\t\t\t\t$.dform.methods.init.apply(self, arguments);\n\t\t\t}\n\t\t}\n\t\treturn this;\n\t}\n})(jQuery);\n"
  },
  {
    "path": "start.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n    <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">\n    <title>Get started with jQuery dForm</title>\n</head>\n<style type=\"text/css\">\n    input, label {\n        display: block;\n        margin-bottom: 5px;\n    }\n</style>\n<body>\n<form id=\"demo-1-form\"></form>\n<pre data-for=\"demo-1\"></pre>\n\n<form id=\"demo-2-form\"></form>\n<pre data-for=\"demo-2\"></pre>\n\n<!-- Load jQuery and the minified plugin -->\n<script type=\"text/javascript\" src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js\"></script>\n<script type=\"text/javascript\" src=\"dist/jquery.dform-1.1.0.min.js\"></script>\n\n<script type=\"text/javascript\">\n    $(function () {\n        $('script.demo').each(function () {\n            $('pre[data-for=\"' + $(this).attr('id') + '\"]').html($(this).html());\n        });\n    });\n</script>\n<script type=\"text/javascript\" class=\"demo\" id=\"demo-1\">\n$(function () {\n    // Create a form from some JSON\n    $(\"#demo-1-form\").dform({\n        \"action\":\"index.html\",\n        \"method\":\"get\",\n        \"html\":[\n            {\n                \"type\":\"p\",\n                \"html\":\"You must login\"\n            },\n            {\n                \"name\":\"username\",\n                \"id\":\"txt-username\",\n                \"caption\":\"Username\",\n                \"type\":\"text\",\n                \"placeholder\":\"E.g. u...@example.com\"\n            },\n            {\n                \"name\":\"password\",\n                \"caption\":\"Password\",\n                \"type\":\"password\"\n            },\n            {\n                \"type\":\"submit\",\n                \"value\":\"Login\"\n            }\n        ]\n    });\n});\n</script>\n<script type=\"text/javascript\" class=\"demo\" id=\"demo-2\">\n$('#demo-2-form').dform({\n    \"action\":\"index.html\",\n    \"method\":\"post\",\n    \"html\":[\n        {\n            \"type\":\"fieldset\",\n            \"caption\":\"User information\",\n            \"html\":[\n                {\n                    \"name\":\"email\",\n                    \"caption\":\"Email address\",\n                    \"type\":\"text\",\n                    \"placeholder\":\"E.g. user@example.com\",\n                    \"validate\":{\n                        \"email\":true\n                    }\n                },\n                {\n                    \"name\":\"password\",\n                    \"caption\":\"Password\",\n                    \"type\":\"password\",\n                    \"id\":\"registration-password\",\n                    \"validate\":{\n                        \"required\":true,\n                        \"minlength\":5,\n                        \"messages\":{\n                            \"required\":\"Please enter a password\",\n                            \"minlength\":\"At least {0} characters long\"\n                        }\n                    }\n                },\n                {\n                    \"name\":\"password-repeat\",\n                    \"caption\":\"Repeat password\",\n                    \"type\":\"password\",\n                    \"validate\":{\n                        \"equalTo\":\"#registration-password\",\n                        \"messages\":{\n                            \"equalTo\":\"Please repeat your password\"\n                        }\n                    }\n                },\n                {\n                    \"type\":\"radiobuttons\",\n                    \"caption\":\"Sex\",\n                    \"name\":\"sex\",\n                    \"class\":\"labellist\",\n                    \"options\":{\n                        \"f\":\"Female\",\n                        \"m\":\"Male\"\n                    }\n                },\n                {\n                    \"type\":\"checkboxes\",\n                    \"name\":\"test\",\n                    \"caption\":\"Receive newsletter about\",\n                    \"class\":\"labellist\",\n                    \"options\":{\n                        \"updates\":\"Product updates\",\n                        \"errors\":{\n                            \"value\":\"security\",\n                            \"caption\":\"Security warnings\",\n                            \"checked\":\"checked\"\n                        }\n                    }\n                }\n            ]\n        },\n        {\n            \"type\":\"fieldset\",\n            \"caption\":\"Address information\",\n            \"html\":[\n                {\n                    \"name\":\"name\",\n                    \"caption\":\"Your name\",\n                    \"type\":\"text\",\n                    \"placeholder\":\"E.g. John Doe\"\n                },\n                {\n                    \"name\":\"address\",\n                    \"caption\":\"Address\",\n                    \"type\":\"text\",\n                    \"validate\":{ \"required\":true }\n                },\n                {\n                    \"name\":\"zip\",\n                    \"caption\":\"ZIP code\",\n                    \"type\":\"text\",\n                    \"size\":5,\n                    \"validate\":{ \"required\":true }\n                },\n                {\n                    \"name\":\"city\",\n                    \"caption\":\"City\",\n                    \"type\":\"text\",\n                    \"validate\":{ \"required\":true }\n                },\n                {\n                    \"type\":\"select\",\n                    \"name\":\"continent\",\n                    \"caption\":\"Choose a continent\",\n                    \"options\":{\n                        \"america\":\"America\",\n                        \"europe\":{\n                            \"selected\":\"true\",\n                            \"id\":\"europe-option\",\n                            \"value\":\"europe\",\n                            \"html\":\"Europe\"\n                        },\n                        \"asia\":\"Asia\",\n                        \"africa\":\"Africa\",\n                        \"australia\":\"Australia\"\n                    }\n                }\n            ]\n        },\n        {\n            \"type\":\"submit\",\n            \"value\":\"Signup\"\n        }\n    ]\n});\n</script>\n</body>\n</html>\n"
  },
  {
    "path": "test/index.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n\t<script src=\"http://code.jquery.com/jquery-latest.js\"></script>\n\t<link rel=\"stylesheet\" href=\"http://code.jquery.com/qunit/qunit-1.12.0.css\" type=\"text/css\" media=\"screen\" />\n  <link rel=\"stylesheet\" href=\"http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css\" type=\"text/css\" media=\"screen\" />\n\n  <script type=\"text/javascript\" src=\"libs/globalize.js\"></script>\n  <script type=\"text/javascript\" src=\"http://code.jquery.com/ui/1.10.0/jquery-ui.js\"></script>\n\n\t<script type=\"text/javascript\" src=\"http://code.jquery.com/qunit/qunit-1.12.0.js\"></script>\n\t<script type=\"text/javascript\" src=\"../src/dform.js\"></script>\n\t<script type=\"text/javascript\" src=\"../src/dform.core.js\"></script>\n\t<script type=\"text/javascript\" src=\"../src/dform.converters.js\"></script>\n\t<script type=\"text/javascript\" src=\"../src/dform.extensions.js\"></script>\n\n\t<script type=\"text/javascript\" src=\"test.js\"></script>\n\t<script type=\"text/javascript\" src=\"test_types.js\"></script>\n\t<script type=\"text/javascript\" src=\"test_subscribers.js\"></script>\n\t<script type=\"text/javascript\" src=\"test_extensions.js\"></script>\n  <script type=\"text/javascript\" src=\"test_jqueryui.js\"></script>\n\n\t<title>jQuery dForm - QUnit tests</title>\n</head>\n<body>\n\t<h1 id=\"qunit-header\">QUnit example</h1>\n\t<h2 id=\"qunit-banner\"></h2>\n\t<div id=\"qunit-testrunner-toolbar\"></div>\n\t<h2 id=\"qunit-userAgent\"></h2>\n\t<ol id=\"qunit-tests\"></ol>\n\t<div id=\"qunit-fixture\">test markup, will be hidden</div>\n  <div id=\"qunit-testarea\"></div>\n</body>\n</html>\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.af-ZA.js",
    "content": "/*\n * Globalize Culture af-ZA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"af-ZA\", \"default\", {\n\tname: \"af-ZA\",\n\tenglishName: \"Afrikaans (South Africa)\",\n\tnativeName: \"Afrikaans (Suid Afrika)\",\n\tlanguage: \"af\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sondag\",\"Maandag\",\"Dinsdag\",\"Woensdag\",\"Donderdag\",\"Vrydag\",\"Saterdag\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Maan\",\"Dins\",\"Woen\",\"Dond\",\"Vry\",\"Sat\"],\n\t\t\t\tnamesShort: [\"So\",\"Ma\",\"Di\",\"Wo\",\"Do\",\"Vr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januarie\",\"Februarie\",\"Maart\",\"April\",\"Mei\",\"Junie\",\"Julie\",\"Augustus\",\"September\",\"Oktober\",\"November\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.af.js",
    "content": "/*\n * Globalize Culture af\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"af\", \"default\", {\n\tname: \"af\",\n\tenglishName: \"Afrikaans\",\n\tnativeName: \"Afrikaans\",\n\tlanguage: \"af\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sondag\",\"Maandag\",\"Dinsdag\",\"Woensdag\",\"Donderdag\",\"Vrydag\",\"Saterdag\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Maan\",\"Dins\",\"Woen\",\"Dond\",\"Vry\",\"Sat\"],\n\t\t\t\tnamesShort: [\"So\",\"Ma\",\"Di\",\"Wo\",\"Do\",\"Vr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januarie\",\"Februarie\",\"Maart\",\"April\",\"Mei\",\"Junie\",\"Julie\",\"Augustus\",\"September\",\"Oktober\",\"November\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.am-ET.js",
    "content": "/*\n * Globalize Culture am-ET\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"am-ET\", \"default\", {\n\tname: \"am-ET\",\n\tenglishName: \"Amharic (Ethiopia)\",\n\tnativeName: \"አማርኛ (ኢትዮጵያ)\",\n\tlanguage: \"am\",\n\tnumberFormat: {\n\t\tdecimals: 1,\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tdecimals: 1,\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"ETB\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"እሑድ\",\"ሰኞ\",\"ማክሰኞ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesAbbr: [\"እሑድ\",\"ሰኞ\",\"ማክሰ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesShort: [\"እ\",\"ሰ\",\"ማ\",\"ረ\",\"ሐ\",\"ዓ\",\"ቅ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ጃንዩወሪ\",\"ፌብሩወሪ\",\"ማርች\",\"ኤፕረል\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስት\",\"ሴፕቴምበር\",\"ኦክተውበር\",\"ኖቬምበር\",\"ዲሴምበር\",\"\"],\n\t\t\t\tnamesAbbr: [\"ጃንዩ\",\"ፌብሩ\",\"ማርች\",\"ኤፕረ\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስ\",\"ሴፕቴ\",\"ኦክተ\",\"ኖቬም\",\"ዲሴም\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ጡዋት\",\"ጡዋት\",\"ጡዋት\"],\n\t\t\tPM: [\"ከሰዓት\",\"ከሰዓት\",\"ከሰዓት\"],\n\t\t\teras: [{\"name\":\"ዓመተ  ምሕረት\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd '፣' MMMM d 'ቀን' yyyy\",\n\t\t\t\tf: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm tt\",\n\t\t\t\tF: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm:ss tt\",\n\t\t\t\tM: \"MMMM d ቀን\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.am.js",
    "content": "/*\n * Globalize Culture am\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"am\", \"default\", {\n\tname: \"am\",\n\tenglishName: \"Amharic\",\n\tnativeName: \"አማርኛ\",\n\tlanguage: \"am\",\n\tnumberFormat: {\n\t\tdecimals: 1,\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tdecimals: 1,\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"ETB\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"እሑድ\",\"ሰኞ\",\"ማክሰኞ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesAbbr: [\"እሑድ\",\"ሰኞ\",\"ማክሰ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesShort: [\"እ\",\"ሰ\",\"ማ\",\"ረ\",\"ሐ\",\"ዓ\",\"ቅ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ጃንዩወሪ\",\"ፌብሩወሪ\",\"ማርች\",\"ኤፕረል\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስት\",\"ሴፕቴምበር\",\"ኦክተውበር\",\"ኖቬምበር\",\"ዲሴምበር\",\"\"],\n\t\t\t\tnamesAbbr: [\"ጃንዩ\",\"ፌብሩ\",\"ማርች\",\"ኤፕረ\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስ\",\"ሴፕቴ\",\"ኦክተ\",\"ኖቬም\",\"ዲሴም\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ጡዋት\",\"ጡዋት\",\"ጡዋት\"],\n\t\t\tPM: [\"ከሰዓት\",\"ከሰዓት\",\"ከሰዓት\"],\n\t\t\teras: [{\"name\":\"ዓመተ  ምሕረት\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd '፣' MMMM d 'ቀን' yyyy\",\n\t\t\t\tf: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm tt\",\n\t\t\t\tF: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm:ss tt\",\n\t\t\t\tM: \"MMMM d ቀን\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-AE.js",
    "content": "/*\n * Globalize Culture ar-AE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-AE\", \"default\", {\n\tname: \"ar-AE\",\n\tenglishName: \"Arabic (U.A.E.)\",\n\tnativeName: \"العربية (الإمارات العربية المتحدة)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.إ.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-BH.js",
    "content": "/*\n * Globalize Culture ar-BH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-BH\", \"default\", {\n\tname: \"ar-BH\",\n\tenglishName: \"Arabic (Bahrain)\",\n\tnativeName: \"العربية (البحرين)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ب.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-DZ.js",
    "content": "/*\n * Globalize Culture ar-DZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-DZ\", \"default\", {\n\tname: \"ar-DZ\",\n\tenglishName: \"Arabic (Algeria)\",\n\tnativeName: \"العربية (الجزائر)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.ج.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MMMM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MMMM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-EG.js",
    "content": "/*\n * Globalize Culture ar-EG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-EG\", \"default\", {\n\tname: \"ar-EG\",\n\tenglishName: \"Arabic (Egypt)\",\n\tnativeName: \"العربية (مصر)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ج.م.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-IQ.js",
    "content": "/*\n * Globalize Culture ar-IQ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-IQ\", \"default\", {\n\tname: \"ar-IQ\",\n\tenglishName: \"Arabic (Iraq)\",\n\tnativeName: \"العربية (العراق)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.ع.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-JO.js",
    "content": "/*\n * Globalize Culture ar-JO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-JO\", \"default\", {\n\tname: \"ar-JO\",\n\tenglishName: \"Arabic (Jordan)\",\n\tnativeName: \"العربية (الأردن)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ا.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-KW.js",
    "content": "/*\n * Globalize Culture ar-KW\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-KW\", \"default\", {\n\tname: \"ar-KW\",\n\tenglishName: \"Arabic (Kuwait)\",\n\tnativeName: \"العربية (الكويت)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ك.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-LB.js",
    "content": "/*\n * Globalize Culture ar-LB\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-LB\", \"default\", {\n\tname: \"ar-LB\",\n\tenglishName: \"Arabic (Lebanon)\",\n\tnativeName: \"العربية (لبنان)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.ل.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-LY.js",
    "content": "/*\n * Globalize Culture ar-LY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-LY\", \"default\", {\n\tname: \"ar-LY\",\n\tenglishName: \"Arabic (Libya)\",\n\tnativeName: \"العربية (ليبيا)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ل.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-MA.js",
    "content": "/*\n * Globalize Culture ar-MA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-MA\", \"default\", {\n\tname: \"ar-MA\",\n\tenglishName: \"Arabic (Morocco)\",\n\tnativeName: \"العربية (المملكة المغربية)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.م.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"ماي\",\"يونيو\",\"يوليوز\",\"غشت\",\"شتنبر\",\"أكتوبر\",\"نونبر\",\"دجنبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"ماي\",\"يونيو\",\"يوليوز\",\"غشت\",\"شتنبر\",\"أكتوبر\",\"نونبر\",\"دجنبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MMMM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MMMM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-OM.js",
    "content": "/*\n * Globalize Culture ar-OM\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-OM\", \"default\", {\n\tname: \"ar-OM\",\n\tenglishName: \"Arabic (Oman)\",\n\tnativeName: \"العربية (عمان)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"ر.ع.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-QA.js",
    "content": "/*\n * Globalize Culture ar-QA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-QA\", \"default\", {\n\tname: \"ar-QA\",\n\tenglishName: \"Arabic (Qatar)\",\n\tnativeName: \"العربية (قطر)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.ق.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-SA.js",
    "content": "/*\n * Globalize Culture ar-SA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-SA\", \"default\", {\n\tname: \"ar-SA\",\n\tenglishName: \"Arabic (Saudi Arabia)\",\n\tnativeName: \"العربية (المملكة العربية السعودية)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-SY.js",
    "content": "/*\n * Globalize Culture ar-SY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-SY\", \"default\", {\n\tname: \"ar-SY\",\n\tenglishName: \"Arabic (Syria)\",\n\tnativeName: \"العربية (سوريا)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-TN.js",
    "content": "/*\n * Globalize Culture ar-TN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-TN\", \"default\", {\n\tname: \"ar-TN\",\n\tenglishName: \"Arabic (Tunisia)\",\n\tnativeName: \"العربية (تونس)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ت.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MMMM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MMMM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar-YE.js",
    "content": "/*\n * Globalize Culture ar-YE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar-YE\", \"default\", {\n\tname: \"ar-YE\",\n\tenglishName: \"Arabic (Yemen)\",\n\tnativeName: \"العربية (اليمن)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.ي.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ar.js",
    "content": "/*\n * Globalize Culture ar\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar\", \"default\", {\n\tname: \"ar\",\n\tenglishName: \"Arabic\",\n\tnativeName: \"العربية\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.arn-CL.js",
    "content": "/*\n * Globalize Culture arn-CL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"arn-CL\", \"default\", {\n\tname: \"arn-CL\",\n\tenglishName: \"Mapudungun (Chile)\",\n\tnativeName: \"Mapudungun (Chile)\",\n\tlanguage: \"arn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.arn.js",
    "content": "/*\n * Globalize Culture arn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"arn\", \"default\", {\n\tname: \"arn\",\n\tenglishName: \"Mapudungun\",\n\tnativeName: \"Mapudungun\",\n\tlanguage: \"arn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.as-IN.js",
    "content": "/*\n * Globalize Culture as-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"as-IN\", \"default\", {\n\tname: \"as-IN\",\n\tenglishName: \"Assamese (India)\",\n\tnativeName: \"অসমীয়া (ভাৰত)\",\n\tlanguage: \"as\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"n$\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ট\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"সোমবাৰ\",\"মঙ্গলবাৰ\",\"বুধবাৰ\",\"বৃহস্পতিবাৰ\",\"শুক্রবাৰ\",\"শনিবাৰ\",\"ৰবিবাৰ\"],\n\t\t\t\tnamesAbbr: [\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহ.\",\"শুক্র.\",\"শনি.\",\"ৰবি.\"],\n\t\t\t\tnamesShort: [\"সো\",\"ম\",\"বু\",\"বৃ\",\"শু\",\"শ\",\"র\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুৱাৰী\",\"ফেব্রুৱাৰী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টেম্বর\",\"অক্টোবর\",\"নবেম্বর\",\"ডিচেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু\",\"ফেব্রু\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টে\",\"অক্টো\",\"নবে\",\"ডিচে\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ৰাতিপু\",\"ৰাতিপু\",\"ৰাতিপু\"],\n\t\t\tPM: [\"আবেলি\",\"আবেলি\",\"আবেলি\"],\n\t\t\teras: [{\"name\":\"খ্রীষ্টাব্দ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"yyyy,MMMM dd, dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy,MMMM dd, dddd tt h:mm\",\n\t\t\t\tF: \"yyyy,MMMM dd, dddd tt h:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM,yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.as.js",
    "content": "/*\n * Globalize Culture as\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"as\", \"default\", {\n\tname: \"as\",\n\tenglishName: \"Assamese\",\n\tnativeName: \"অসমীয়া\",\n\tlanguage: \"as\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"n$\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ট\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"সোমবাৰ\",\"মঙ্গলবাৰ\",\"বুধবাৰ\",\"বৃহস্পতিবাৰ\",\"শুক্রবাৰ\",\"শনিবাৰ\",\"ৰবিবাৰ\"],\n\t\t\t\tnamesAbbr: [\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহ.\",\"শুক্র.\",\"শনি.\",\"ৰবি.\"],\n\t\t\t\tnamesShort: [\"সো\",\"ম\",\"বু\",\"বৃ\",\"শু\",\"শ\",\"র\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুৱাৰী\",\"ফেব্রুৱাৰী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টেম্বর\",\"অক্টোবর\",\"নবেম্বর\",\"ডিচেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু\",\"ফেব্রু\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টে\",\"অক্টো\",\"নবে\",\"ডিচে\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ৰাতিপু\",\"ৰাতিপু\",\"ৰাতিপু\"],\n\t\t\tPM: [\"আবেলি\",\"আবেলি\",\"আবেলি\"],\n\t\t\teras: [{\"name\":\"খ্রীষ্টাব্দ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"yyyy,MMMM dd, dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy,MMMM dd, dddd tt h:mm\",\n\t\t\t\tF: \"yyyy,MMMM dd, dddd tt h:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM,yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.az-Cyrl-AZ.js",
    "content": "/*\n * Globalize Culture az-Cyrl-AZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"az-Cyrl-AZ\", \"default\", {\n\tname: \"az-Cyrl-AZ\",\n\tenglishName: \"Azeri (Cyrillic, Azerbaijan)\",\n\tnativeName: \"Азәрбајҹан (Азәрбајҹан)\",\n\tlanguage: \"az-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ман.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Базар\",\"Базар ертәси\",\"Чәршәнбә ахшамы\",\"Чәршәнбә\",\"Ҹүмә ахшамы\",\"Ҹүмә\",\"Шәнбә\"],\n\t\t\t\tnamesAbbr: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"],\n\t\t\t\tnamesShort: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Јанвар\",\"Феврал\",\"Март\",\"Апрел\",\"Мај\",\"Ијун\",\"Ијул\",\"Август\",\"Сентјабр\",\"Октјабр\",\"Нојабр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"Мај\",\"Ијун\",\"Ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"јанвар\",\"феврал\",\"март\",\"апрел\",\"мај\",\"ијун\",\"ијул\",\"август\",\"сентјабр\",\"октјабр\",\"нојабр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"ијун\",\"ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.az-Cyrl.js",
    "content": "/*\n * Globalize Culture az-Cyrl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"az-Cyrl\", \"default\", {\n\tname: \"az-Cyrl\",\n\tenglishName: \"Azeri (Cyrillic)\",\n\tnativeName: \"Азәрбајҹан дили\",\n\tlanguage: \"az-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ман.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Базар\",\"Базар ертәси\",\"Чәршәнбә ахшамы\",\"Чәршәнбә\",\"Ҹүмә ахшамы\",\"Ҹүмә\",\"Шәнбә\"],\n\t\t\t\tnamesAbbr: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"],\n\t\t\t\tnamesShort: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Јанвар\",\"Феврал\",\"Март\",\"Апрел\",\"Мај\",\"Ијун\",\"Ијул\",\"Август\",\"Сентјабр\",\"Октјабр\",\"Нојабр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"Мај\",\"Ијун\",\"Ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"јанвар\",\"феврал\",\"март\",\"апрел\",\"мај\",\"ијун\",\"ијул\",\"август\",\"сентјабр\",\"октјабр\",\"нојабр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"ијун\",\"ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.az-Latn-AZ.js",
    "content": "/*\n * Globalize Culture az-Latn-AZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"az-Latn-AZ\", \"default\", {\n\tname: \"az-Latn-AZ\",\n\tenglishName: \"Azeri (Latin, Azerbaijan)\",\n\tnativeName: \"Azərbaycan\\xadılı (Azərbaycan)\",\n\tlanguage: \"az-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"man.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Bazar\",\"Bazar ertəsi\",\"Çərşənbə axşamı\",\"Çərşənbə\",\"Cümə axşamı\",\"Cümə\",\"Şənbə\"],\n\t\t\t\tnamesAbbr: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"],\n\t\t\t\tnamesShort: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yanvar\",\"Fevral\",\"Mart\",\"Aprel\",\"May\",\"İyun\",\"İyul\",\"Avgust\",\"Sentyabr\",\"Oktyabr\",\"Noyabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.az-Latn.js",
    "content": "/*\n * Globalize Culture az-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"az-Latn\", \"default\", {\n\tname: \"az-Latn\",\n\tenglishName: \"Azeri (Latin)\",\n\tnativeName: \"Azərbaycan\\xadılı\",\n\tlanguage: \"az-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"man.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Bazar\",\"Bazar ertəsi\",\"Çərşənbə axşamı\",\"Çərşənbə\",\"Cümə axşamı\",\"Cümə\",\"Şənbə\"],\n\t\t\t\tnamesAbbr: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"],\n\t\t\t\tnamesShort: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yanvar\",\"Fevral\",\"Mart\",\"Aprel\",\"May\",\"İyun\",\"İyul\",\"Avgust\",\"Sentyabr\",\"Oktyabr\",\"Noyabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.az.js",
    "content": "/*\n * Globalize Culture az\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"az\", \"default\", {\n\tname: \"az\",\n\tenglishName: \"Azeri\",\n\tnativeName: \"Azərbaycan\\xadılı\",\n\tlanguage: \"az\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"man.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Bazar\",\"Bazar ertəsi\",\"Çərşənbə axşamı\",\"Çərşənbə\",\"Cümə axşamı\",\"Cümə\",\"Şənbə\"],\n\t\t\t\tnamesAbbr: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"],\n\t\t\t\tnamesShort: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yanvar\",\"Fevral\",\"Mart\",\"Aprel\",\"May\",\"İyun\",\"İyul\",\"Avgust\",\"Sentyabr\",\"Oktyabr\",\"Noyabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ba-RU.js",
    "content": "/*\n * Globalize Culture ba-RU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ba-RU\", \"default\", {\n\tname: \"ba-RU\",\n\tenglishName: \"Bashkir (Russia)\",\n\tnativeName: \"Башҡорт (Россия)\",\n\tlanguage: \"ba\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"һ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Йәкшәмбе\",\"Дүшәмбе\",\"Шишәмбе\",\"Шаршамбы\",\"Кесаҙна\",\"Йома\",\"Шәмбе\"],\n\t\t\t\tnamesAbbr: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"],\n\t\t\t\tnamesShort: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ғинуар\",\"февраль\",\"март\",\"апрель\",\"май\",\"июнь\",\"июль\",\"август\",\"сентябрь\",\"октябрь\",\"ноябрь\",\"декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"ғин\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy 'й'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'й' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'й' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ba.js",
    "content": "/*\n * Globalize Culture ba\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ba\", \"default\", {\n\tname: \"ba\",\n\tenglishName: \"Bashkir\",\n\tnativeName: \"Башҡорт\",\n\tlanguage: \"ba\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"һ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Йәкшәмбе\",\"Дүшәмбе\",\"Шишәмбе\",\"Шаршамбы\",\"Кесаҙна\",\"Йома\",\"Шәмбе\"],\n\t\t\t\tnamesAbbr: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"],\n\t\t\t\tnamesShort: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ғинуар\",\"февраль\",\"март\",\"апрель\",\"май\",\"июнь\",\"июль\",\"август\",\"сентябрь\",\"октябрь\",\"ноябрь\",\"декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"ғин\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy 'й'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'й' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'й' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.be-BY.js",
    "content": "/*\n * Globalize Culture be-BY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"be-BY\", \"default\", {\n\tname: \"be-BY\",\n\tenglishName: \"Belarusian (Belarus)\",\n\tnativeName: \"Беларускі (Беларусь)\",\n\tlanguage: \"be\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"нядзеля\",\"панядзелак\",\"аўторак\",\"серада\",\"чацвер\",\"пятніца\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"],\n\t\t\t\tnamesShort: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Студзень\",\"Люты\",\"Сакавік\",\"Красавік\",\"Май\",\"Чэрвень\",\"Ліпень\",\"Жнівень\",\"Верасень\",\"Кастрычнік\",\"Лістапад\",\"Снежань\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"студзеня\",\"лютага\",\"сакавіка\",\"красавіка\",\"мая\",\"чэрвеня\",\"ліпеня\",\"жніўня\",\"верасня\",\"кастрычніка\",\"лістапада\",\"снежня\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.be.js",
    "content": "/*\n * Globalize Culture be\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"be\", \"default\", {\n\tname: \"be\",\n\tenglishName: \"Belarusian\",\n\tnativeName: \"Беларускі\",\n\tlanguage: \"be\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"нядзеля\",\"панядзелак\",\"аўторак\",\"серада\",\"чацвер\",\"пятніца\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"],\n\t\t\t\tnamesShort: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Студзень\",\"Люты\",\"Сакавік\",\"Красавік\",\"Май\",\"Чэрвень\",\"Ліпень\",\"Жнівень\",\"Верасень\",\"Кастрычнік\",\"Лістапад\",\"Снежань\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"студзеня\",\"лютага\",\"сакавіка\",\"красавіка\",\"мая\",\"чэрвеня\",\"ліпеня\",\"жніўня\",\"верасня\",\"кастрычніка\",\"лістапада\",\"снежня\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bg-BG.js",
    "content": "/*\n * Globalize Culture bg-BG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bg-BG\", \"default\", {\n\tname: \"bg-BG\",\n\tenglishName: \"Bulgarian (Bulgaria)\",\n\tnativeName: \"български (България)\",\n\tlanguage: \"bg\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"- безкрайност\",\n\t\tpositiveInfinity: \"+ безкрайност\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"лв.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неделя\",\"понеделник\",\"вторник\",\"сряда\",\"четвъртък\",\"петък\",\"събота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"вт\",\"ср\",\"четв\",\"пет\",\"съб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"в\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"януари\",\"февруари\",\"март\",\"април\",\"май\",\"юни\",\"юли\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"ян\",\"февр\",\"март\",\"апр\",\"май\",\"юни\",\"юли\",\"авг\",\"септ\",\"окт\",\"ноември\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"след новата ера\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy 'г.'\",\n\t\t\t\tD: \"dd MMMM yyyy 'г.'\",\n\t\t\t\tt: \"HH:mm 'ч.'\",\n\t\t\t\tT: \"HH:mm:ss 'ч.'\",\n\t\t\t\tf: \"dd MMMM yyyy 'г.' HH:mm 'ч.'\",\n\t\t\t\tF: \"dd MMMM yyyy 'г.' HH:mm:ss 'ч.'\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy 'г.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bg.js",
    "content": "/*\n * Globalize Culture bg\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bg\", \"default\", {\n\tname: \"bg\",\n\tenglishName: \"Bulgarian\",\n\tnativeName: \"български\",\n\tlanguage: \"bg\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"- безкрайност\",\n\t\tpositiveInfinity: \"+ безкрайност\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"лв.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неделя\",\"понеделник\",\"вторник\",\"сряда\",\"четвъртък\",\"петък\",\"събота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"вт\",\"ср\",\"четв\",\"пет\",\"съб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"в\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"януари\",\"февруари\",\"март\",\"април\",\"май\",\"юни\",\"юли\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"ян\",\"февр\",\"март\",\"апр\",\"май\",\"юни\",\"юли\",\"авг\",\"септ\",\"окт\",\"ноември\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"след новата ера\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy 'г.'\",\n\t\t\t\tD: \"dd MMMM yyyy 'г.'\",\n\t\t\t\tt: \"HH:mm 'ч.'\",\n\t\t\t\tT: \"HH:mm:ss 'ч.'\",\n\t\t\t\tf: \"dd MMMM yyyy 'г.' HH:mm 'ч.'\",\n\t\t\t\tF: \"dd MMMM yyyy 'г.' HH:mm:ss 'ч.'\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy 'г.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bn-BD.js",
    "content": "/*\n * Globalize Culture bn-BD\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bn-BD\", \"default\", {\n\tname: \"bn-BD\",\n\tenglishName: \"Bengali (Bangladesh)\",\n\tnativeName: \"বাংলা (বাংলাদেশ)\",\n\tlanguage: \"bn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"৳\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"রবিবার\",\"সোমবার\",\"মঙ্গলবার\",\"বুধবার\",\"বৃহস্পতিবার\",\"শুক্রবার\",\"শনিবার\"],\n\t\t\t\tnamesAbbr: [\"রবি.\",\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহস্পতি.\",\"শুক্র.\",\"শনি.\"],\n\t\t\t\tnamesShort: [\"র\",\"স\",\"ম\",\"ব\",\"ব\",\"শ\",\"শ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুয়ারী\",\"ফেব্রুয়ারী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগস্ট\",\"সেপ্টেম্বর\",\"অক্টোবর\",\"নভেম্বর\",\"ডিসেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু.\",\"ফেব্রু.\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগ.\",\"সেপ্টে.\",\"অক্টো.\",\"নভে.\",\"ডিসে.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"পুর্বাহ্ন\",\"পুর্বাহ্ন\",\"পুর্বাহ্ন\"],\n\t\t\tPM: [\"অপরাহ্ন\",\"অপরাহ্ন\",\"অপরাহ্ন\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bn-IN.js",
    "content": "/*\n * Globalize Culture bn-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bn-IN\", \"default\", {\n\tname: \"bn-IN\",\n\tenglishName: \"Bengali (India)\",\n\tnativeName: \"বাংলা (ভারত)\",\n\tlanguage: \"bn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"টা\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"রবিবার\",\"সোমবার\",\"মঙ্গলবার\",\"বুধবার\",\"বৃহস্পতিবার\",\"শুক্রবার\",\"শনিবার\"],\n\t\t\t\tnamesAbbr: [\"রবি.\",\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহস্পতি.\",\"শুক্র.\",\"শনি.\"],\n\t\t\t\tnamesShort: [\"র\",\"স\",\"ম\",\"ব\",\"ব\",\"শ\",\"শ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুয়ারী\",\"ফেব্রুয়ারী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগস্ট\",\"সেপ্টেম্বর\",\"অক্টোবর\",\"নভেম্বর\",\"ডিসেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু.\",\"ফেব্রু.\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগ.\",\"সেপ্টে.\",\"অক্টো.\",\"নভে.\",\"ডিসে.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"পুর্বাহ্ন\",\"পুর্বাহ্ন\",\"পুর্বাহ্ন\"],\n\t\t\tPM: [\"অপরাহ্ন\",\"অপরাহ্ন\",\"অপরাহ্ন\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bn.js",
    "content": "/*\n * Globalize Culture bn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bn\", \"default\", {\n\tname: \"bn\",\n\tenglishName: \"Bengali\",\n\tnativeName: \"বাংলা\",\n\tlanguage: \"bn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"টা\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"রবিবার\",\"সোমবার\",\"মঙ্গলবার\",\"বুধবার\",\"বৃহস্পতিবার\",\"শুক্রবার\",\"শনিবার\"],\n\t\t\t\tnamesAbbr: [\"রবি.\",\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহস্পতি.\",\"শুক্র.\",\"শনি.\"],\n\t\t\t\tnamesShort: [\"র\",\"স\",\"ম\",\"ব\",\"ব\",\"শ\",\"শ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুয়ারী\",\"ফেব্রুয়ারী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগস্ট\",\"সেপ্টেম্বর\",\"অক্টোবর\",\"নভেম্বর\",\"ডিসেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু.\",\"ফেব্রু.\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগ.\",\"সেপ্টে.\",\"অক্টো.\",\"নভে.\",\"ডিসে.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"পুর্বাহ্ন\",\"পুর্বাহ্ন\",\"পুর্বাহ্ন\"],\n\t\t\tPM: [\"অপরাহ্ন\",\"অপরাহ্ন\",\"অপরাহ্ন\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bo-CN.js",
    "content": "/*\n * Globalize Culture bo-CN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bo-CN\", \"default\", {\n\tname: \"bo-CN\",\n\tenglishName: \"Tibetan (PRC)\",\n\tnativeName: \"བོད་ཡིག (ཀྲུང་ཧྭ་མི་དམངས་སྤྱི་མཐུན་རྒྱལ་ཁབ།)\",\n\tlanguage: \"bo\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ཨང་ཀི་མིན་པ།\",\n\t\tnegativeInfinity: \"མོ་གྲངས་ཚད་མེད་ཆུང་བ།\",\n\t\tpositiveInfinity: \"ཕོ་གྲངས་ཚད་མེད་ཆེ་བ།\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"གཟའ་ཉི་མ།\",\"གཟའ་ཟླ་བ།\",\"གཟའ་མིག་དམར།\",\"གཟའ་ལྷག་པ།\",\"གཟའ་ཕུར་བུ།\",\"གཟའ་པ་སངས།\",\"གཟའ་སྤེན་པ།\"],\n\t\t\t\tnamesAbbr: [\"ཉི་མ།\",\"ཟླ་བ།\",\"མིག་དམར།\",\"ལྷག་པ།\",\"ཕུར་བུ།\",\"པ་སངས།\",\"སྤེན་པ།\"],\n\t\t\t\tnamesShort: [\"༧\",\"༡\",\"༢\",\"༣\",\"༤\",\"༥\",\"༦\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"སྤྱི་ཟླ་དང་པོ།\",\"སྤྱི་ཟླ་གཉིས་པ།\",\"སྤྱི་ཟླ་གསུམ་པ།\",\"སྤྱི་ཟླ་བཞི་པ།\",\"སྤྱི་ཟླ་ལྔ་པ།\",\"སྤྱི་ཟླ་དྲུག་པ།\",\"སྤྱི་ཟླ་བདུན་པ།\",\"སྤྱི་ཟླ་བརྒྱད་པ།\",\"སྤྱི་ཟླ་དགུ་པ།\",\"སྤྱི་ཟླ་བཅུ་པོ།\",\"སྤྱི་ཟླ་བཅུ་གཅིག་པ།\",\"སྤྱི་ཟླ་བཅུ་གཉིས་པ།\",\"\"],\n\t\t\t\tnamesAbbr: [\"ཟླ་ ༡\",\"ཟླ་ ༢\",\"ཟླ་ ༣\",\"ཟླ་ ༤\",\"ཟླ་ ༥\",\"ཟླ་ ༦\",\"ཟླ་ ༧\",\"ཟླ་ ༨\",\"ཟླ་ ༩\",\"ཟླ་ ༡༠\",\"ཟླ་ ༡༡\",\"ཟླ་ ༡༢\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"སྔ་དྲོ\",\"སྔ་དྲོ\",\"སྔ་དྲོ\"],\n\t\t\tPM: [\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\"],\n\t\t\teras: [{\"name\":\"སྤྱི་ལོ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ལོའི་ཟླ' M'ཚེས' d\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm\",\n\t\t\t\tF: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm:ss\",\n\t\t\t\tM: \"'ཟླ་' M'ཚེས'd\",\n\t\t\t\tY: \"yyyy.M\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bo.js",
    "content": "/*\n * Globalize Culture bo\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bo\", \"default\", {\n\tname: \"bo\",\n\tenglishName: \"Tibetan\",\n\tnativeName: \"བོད་ཡིག\",\n\tlanguage: \"bo\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ཨང་ཀི་མིན་པ།\",\n\t\tnegativeInfinity: \"མོ་གྲངས་ཚད་མེད་ཆུང་བ།\",\n\t\tpositiveInfinity: \"ཕོ་གྲངས་ཚད་མེད་ཆེ་བ།\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"གཟའ་ཉི་མ།\",\"གཟའ་ཟླ་བ།\",\"གཟའ་མིག་དམར།\",\"གཟའ་ལྷག་པ།\",\"གཟའ་ཕུར་བུ།\",\"གཟའ་པ་སངས།\",\"གཟའ་སྤེན་པ།\"],\n\t\t\t\tnamesAbbr: [\"ཉི་མ།\",\"ཟླ་བ།\",\"མིག་དམར།\",\"ལྷག་པ།\",\"ཕུར་བུ།\",\"པ་སངས།\",\"སྤེན་པ།\"],\n\t\t\t\tnamesShort: [\"༧\",\"༡\",\"༢\",\"༣\",\"༤\",\"༥\",\"༦\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"སྤྱི་ཟླ་དང་པོ།\",\"སྤྱི་ཟླ་གཉིས་པ།\",\"སྤྱི་ཟླ་གསུམ་པ།\",\"སྤྱི་ཟླ་བཞི་པ།\",\"སྤྱི་ཟླ་ལྔ་པ།\",\"སྤྱི་ཟླ་དྲུག་པ།\",\"སྤྱི་ཟླ་བདུན་པ།\",\"སྤྱི་ཟླ་བརྒྱད་པ།\",\"སྤྱི་ཟླ་དགུ་པ།\",\"སྤྱི་ཟླ་བཅུ་པོ།\",\"སྤྱི་ཟླ་བཅུ་གཅིག་པ།\",\"སྤྱི་ཟླ་བཅུ་གཉིས་པ།\",\"\"],\n\t\t\t\tnamesAbbr: [\"ཟླ་ ༡\",\"ཟླ་ ༢\",\"ཟླ་ ༣\",\"ཟླ་ ༤\",\"ཟླ་ ༥\",\"ཟླ་ ༦\",\"ཟླ་ ༧\",\"ཟླ་ ༨\",\"ཟླ་ ༩\",\"ཟླ་ ༡༠\",\"ཟླ་ ༡༡\",\"ཟླ་ ༡༢\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"སྔ་དྲོ\",\"སྔ་དྲོ\",\"སྔ་དྲོ\"],\n\t\t\tPM: [\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\"],\n\t\t\teras: [{\"name\":\"སྤྱི་ལོ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ལོའི་ཟླ' M'ཚེས' d\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm\",\n\t\t\t\tF: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm:ss\",\n\t\t\t\tM: \"'ཟླ་' M'ཚེས'd\",\n\t\t\t\tY: \"yyyy.M\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.br-FR.js",
    "content": "/*\n * Globalize Culture br-FR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"br-FR\", \"default\", {\n\tname: \"br-FR\",\n\tenglishName: \"Breton (France)\",\n\tnativeName: \"brezhoneg (Frañs)\",\n\tlanguage: \"br\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NkN\",\n\t\tnegativeInfinity: \"-Anfin\",\n\t\tpositiveInfinity: \"+Anfin\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sul\",\"Lun\",\"Meurzh\",\"Merc'her\",\"Yaou\",\"Gwener\",\"Sadorn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Lun\",\"Meu.\",\"Mer.\",\"Yaou\",\"Gwe.\",\"Sad.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Lu\",\"Mz\",\"Mc\",\"Ya\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Genver\",\"C'hwevrer\",\"Meurzh\",\"Ebrel\",\"Mae\",\"Mezheven\",\"Gouere\",\"Eost\",\"Gwengolo\",\"Here\",\"Du\",\"Kerzu\",\"\"],\n\t\t\t\tnamesAbbr: [\"Gen.\",\"C'hwe.\",\"Meur.\",\"Ebr.\",\"Mae\",\"Mezh.\",\"Goue.\",\"Eost\",\"Gwen.\",\"Here\",\"Du\",\"Kzu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"g. J.-K.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.br.js",
    "content": "/*\n * Globalize Culture br\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"br\", \"default\", {\n\tname: \"br\",\n\tenglishName: \"Breton\",\n\tnativeName: \"brezhoneg\",\n\tlanguage: \"br\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NkN\",\n\t\tnegativeInfinity: \"-Anfin\",\n\t\tpositiveInfinity: \"+Anfin\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sul\",\"Lun\",\"Meurzh\",\"Merc'her\",\"Yaou\",\"Gwener\",\"Sadorn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Lun\",\"Meu.\",\"Mer.\",\"Yaou\",\"Gwe.\",\"Sad.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Lu\",\"Mz\",\"Mc\",\"Ya\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Genver\",\"C'hwevrer\",\"Meurzh\",\"Ebrel\",\"Mae\",\"Mezheven\",\"Gouere\",\"Eost\",\"Gwengolo\",\"Here\",\"Du\",\"Kerzu\",\"\"],\n\t\t\t\tnamesAbbr: [\"Gen.\",\"C'hwe.\",\"Meur.\",\"Ebr.\",\"Mae\",\"Mezh.\",\"Goue.\",\"Eost\",\"Gwen.\",\"Here\",\"Du\",\"Kzu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"g. J.-K.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bs-Cyrl-BA.js",
    "content": "/*\n * Globalize Culture bs-Cyrl-BA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bs-Cyrl-BA\", \"default\", {\n\tname: \"bs-Cyrl-BA\",\n\tenglishName: \"Bosnian (Cyrillic, Bosnia and Herzegovina)\",\n\tnativeName: \"босански (Босна и Херцеговина)\",\n\tlanguage: \"bs-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"КМ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недјеља\",\"понедјељак\",\"уторак\",\"сриједа\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"у\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bs-Cyrl.js",
    "content": "/*\n * Globalize Culture bs-Cyrl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bs-Cyrl\", \"default\", {\n\tname: \"bs-Cyrl\",\n\tenglishName: \"Bosnian (Cyrillic)\",\n\tnativeName: \"босански\",\n\tlanguage: \"bs-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"КМ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недјеља\",\"понедјељак\",\"уторак\",\"сриједа\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"у\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bs-Latn-BA.js",
    "content": "/*\n * Globalize Culture bs-Latn-BA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bs-Latn-BA\", \"default\", {\n\tname: \"bs-Latn-BA\",\n\tenglishName: \"Bosnian (Latin, Bosnia and Herzegovina)\",\n\tnativeName: \"bosanski (Bosna i Hercegovina)\",\n\tlanguage: \"bs-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"juni\",\"juli\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bs-Latn.js",
    "content": "/*\n * Globalize Culture bs-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bs-Latn\", \"default\", {\n\tname: \"bs-Latn\",\n\tenglishName: \"Bosnian (Latin)\",\n\tnativeName: \"bosanski\",\n\tlanguage: \"bs-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"juni\",\"juli\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.bs.js",
    "content": "/*\n * Globalize Culture bs\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"bs\", \"default\", {\n\tname: \"bs\",\n\tenglishName: \"Bosnian\",\n\tnativeName: \"bosanski\",\n\tlanguage: \"bs\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"juni\",\"juli\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ca-ES.js",
    "content": "/*\n * Globalize Culture ca-ES\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ca-ES\", \"default\", {\n\tname: \"ca-ES\",\n\tenglishName: \"Catalan (Catalan)\",\n\tnativeName: \"català (català)\",\n\tlanguage: \"ca\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"diumenge\",\"dilluns\",\"dimarts\",\"dimecres\",\"dijous\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dg.\",\"dl.\",\"dt.\",\"dc.\",\"dj.\",\"dv.\",\"ds.\"],\n\t\t\t\tnamesShort: [\"dg\",\"dl\",\"dt\",\"dc\",\"dj\",\"dv\",\"ds\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gener\",\"febrer\",\"març\",\"abril\",\"maig\",\"juny\",\"juliol\",\"agost\",\"setembre\",\"octubre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"març\",\"abr\",\"maig\",\"juny\",\"jul\",\"ag\",\"set\",\"oct\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' / 'MMMM' / 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' / 'MMMM' / 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' / 'MMMM' / 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' / 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ca.js",
    "content": "/*\n * Globalize Culture ca\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ca\", \"default\", {\n\tname: \"ca\",\n\tenglishName: \"Catalan\",\n\tnativeName: \"català\",\n\tlanguage: \"ca\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"diumenge\",\"dilluns\",\"dimarts\",\"dimecres\",\"dijous\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dg.\",\"dl.\",\"dt.\",\"dc.\",\"dj.\",\"dv.\",\"ds.\"],\n\t\t\t\tnamesShort: [\"dg\",\"dl\",\"dt\",\"dc\",\"dj\",\"dv\",\"ds\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gener\",\"febrer\",\"març\",\"abril\",\"maig\",\"juny\",\"juliol\",\"agost\",\"setembre\",\"octubre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"març\",\"abr\",\"maig\",\"juny\",\"jul\",\"ag\",\"set\",\"oct\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' / 'MMMM' / 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' / 'MMMM' / 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' / 'MMMM' / 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' / 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.co-FR.js",
    "content": "/*\n * Globalize Culture co-FR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"co-FR\", \"default\", {\n\tname: \"co-FR\",\n\tenglishName: \"Corsican (France)\",\n\tnativeName: \"Corsu (France)\",\n\tlanguage: \"co\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Mica numericu\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"+Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumenica\",\"luni\",\"marti\",\"mercuri\",\"ghjovi\",\"venderi\",\"sabbatu\"],\n\t\t\t\tnamesAbbr: [\"dum.\",\"lun.\",\"mar.\",\"mer.\",\"ghj.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"du\",\"lu\",\"ma\",\"me\",\"gh\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ghjennaghju\",\"ferraghju\",\"marzu\",\"aprile\",\"maghju\",\"ghjunghju\",\"lugliu\",\"aostu\",\"settembre\",\"ottobre\",\"nuvembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ghje\",\"ferr\",\"marz\",\"apri\",\"magh\",\"ghju\",\"lugl\",\"aost\",\"sett\",\"otto\",\"nuve\",\"dice\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"dopu J-C\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.co.js",
    "content": "/*\n * Globalize Culture co\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"co\", \"default\", {\n\tname: \"co\",\n\tenglishName: \"Corsican\",\n\tnativeName: \"Corsu\",\n\tlanguage: \"co\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Mica numericu\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"+Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumenica\",\"luni\",\"marti\",\"mercuri\",\"ghjovi\",\"venderi\",\"sabbatu\"],\n\t\t\t\tnamesAbbr: [\"dum.\",\"lun.\",\"mar.\",\"mer.\",\"ghj.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"du\",\"lu\",\"ma\",\"me\",\"gh\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ghjennaghju\",\"ferraghju\",\"marzu\",\"aprile\",\"maghju\",\"ghjunghju\",\"lugliu\",\"aostu\",\"settembre\",\"ottobre\",\"nuvembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ghje\",\"ferr\",\"marz\",\"apri\",\"magh\",\"ghju\",\"lugl\",\"aost\",\"sett\",\"otto\",\"nuve\",\"dice\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"dopu J-C\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.cs-CZ.js",
    "content": "/*\n * Globalize Culture cs-CZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"cs-CZ\", \"default\", {\n\tname: \"cs-CZ\",\n\tenglishName: \"Czech (Czech Republic)\",\n\tnativeName: \"čeština (Česká republika)\",\n\tlanguage: \"cs\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Není číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Kč\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"neděle\",\"pondělí\",\"úterý\",\"středa\",\"čtvrtek\",\"pátek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"leden\",\"únor\",\"březen\",\"duben\",\"květen\",\"červen\",\"červenec\",\"srpen\",\"září\",\"říjen\",\"listopad\",\"prosinec\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ledna\",\"února\",\"března\",\"dubna\",\"května\",\"června\",\"července\",\"srpna\",\"září\",\"října\",\"listopadu\",\"prosince\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"dop.\",\"dop.\",\"DOP.\"],\n\t\t\tPM: [\"odp.\",\"odp.\",\"ODP.\"],\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.cs.js",
    "content": "/*\n * Globalize Culture cs\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"cs\", \"default\", {\n\tname: \"cs\",\n\tenglishName: \"Czech\",\n\tnativeName: \"čeština\",\n\tlanguage: \"cs\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Není číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Kč\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"neděle\",\"pondělí\",\"úterý\",\"středa\",\"čtvrtek\",\"pátek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"leden\",\"únor\",\"březen\",\"duben\",\"květen\",\"červen\",\"červenec\",\"srpen\",\"září\",\"říjen\",\"listopad\",\"prosinec\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ledna\",\"února\",\"března\",\"dubna\",\"května\",\"června\",\"července\",\"srpna\",\"září\",\"října\",\"listopadu\",\"prosince\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"dop.\",\"dop.\",\"DOP.\"],\n\t\t\tPM: [\"odp.\",\"odp.\",\"ODP.\"],\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.cy-GB.js",
    "content": "/*\n * Globalize Culture cy-GB\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"cy-GB\", \"default\", {\n\tname: \"cy-GB\",\n\tenglishName: \"Welsh (United Kingdom)\",\n\tnativeName: \"Cymraeg (y Deyrnas Unedig)\",\n\tlanguage: \"cy\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dydd Sul\",\"Dydd Llun\",\"Dydd Mawrth\",\"Dydd Mercher\",\"Dydd Iau\",\"Dydd Gwener\",\"Dydd Sadwrn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Llun\",\"Maw\",\"Mer\",\"Iau\",\"Gwe\",\"Sad\"],\n\t\t\t\tnamesShort: [\"Su\",\"Ll\",\"Ma\",\"Me\",\"Ia\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ionawr\",\"Chwefror\",\"Mawrth\",\"Ebrill\",\"Mai\",\"Mehefin\",\"Gorffennaf\",\"Awst\",\"Medi\",\"Hydref\",\"Tachwedd\",\"Rhagfyr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ion\",\"Chwe\",\"Maw\",\"Ebr\",\"Mai\",\"Meh\",\"Gor\",\"Aws\",\"Med\",\"Hyd\",\"Tach\",\"Rhag\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.cy.js",
    "content": "/*\n * Globalize Culture cy\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"cy\", \"default\", {\n\tname: \"cy\",\n\tenglishName: \"Welsh\",\n\tnativeName: \"Cymraeg\",\n\tlanguage: \"cy\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dydd Sul\",\"Dydd Llun\",\"Dydd Mawrth\",\"Dydd Mercher\",\"Dydd Iau\",\"Dydd Gwener\",\"Dydd Sadwrn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Llun\",\"Maw\",\"Mer\",\"Iau\",\"Gwe\",\"Sad\"],\n\t\t\t\tnamesShort: [\"Su\",\"Ll\",\"Ma\",\"Me\",\"Ia\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ionawr\",\"Chwefror\",\"Mawrth\",\"Ebrill\",\"Mai\",\"Mehefin\",\"Gorffennaf\",\"Awst\",\"Medi\",\"Hydref\",\"Tachwedd\",\"Rhagfyr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ion\",\"Chwe\",\"Maw\",\"Ebr\",\"Mai\",\"Meh\",\"Gor\",\"Aws\",\"Med\",\"Hyd\",\"Tach\",\"Rhag\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.da-DK.js",
    "content": "/*\n * Globalize Culture da-DK\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"da-DK\", \"default\", {\n\tname: \"da-DK\",\n\tenglishName: \"Danish (Denmark)\",\n\tnativeName: \"dansk (Danmark)\",\n\tlanguage: \"da\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marts\",\"april\",\"maj\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.da.js",
    "content": "/*\n * Globalize Culture da\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"da\", \"default\", {\n\tname: \"da\",\n\tenglishName: \"Danish\",\n\tnativeName: \"dansk\",\n\tlanguage: \"da\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marts\",\"april\",\"maj\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.de-AT.js",
    "content": "/*\n * Globalize Culture de-AT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"de-AT\", \"default\", {\n\tname: \"de-AT\",\n\tenglishName: \"German (Austria)\",\n\tnativeName: \"Deutsch (Österreich)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jänner\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jän\",\"Feb\",\"Mär\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, dd. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, dd. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, dd. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.de-CH.js",
    "content": "/*\n * Globalize Culture de-CH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"de-CH\", \"default\", {\n\tname: \"de-CH\",\n\tenglishName: \"German (Switzerland)\",\n\tnativeName: \"Deutsch (Schweiz)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"Fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.de-DE.js",
    "content": "/*\n * Globalize Culture de-DE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"de-DE\", \"default\", {\n\tname: \"de-DE\",\n\tenglishName: \"German (Germany)\",\n\tnativeName: \"Deutsch (Deutschland)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.de-LI.js",
    "content": "/*\n * Globalize Culture de-LI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"de-LI\", \"default\", {\n\tname: \"de-LI\",\n\tenglishName: \"German (Liechtenstein)\",\n\tnativeName: \"Deutsch (Liechtenstein)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"CHF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.de-LU.js",
    "content": "/*\n * Globalize Culture de-LU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"de-LU\", \"default\", {\n\tname: \"de-LU\",\n\tenglishName: \"German (Luxembourg)\",\n\tnativeName: \"Deutsch (Luxemburg)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.de.js",
    "content": "/*\n * Globalize Culture de\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"de\", \"default\", {\n\tname: \"de\",\n\tenglishName: \"German\",\n\tnativeName: \"Deutsch\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.dsb-DE.js",
    "content": "/*\n * Globalize Culture dsb-DE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"dsb-DE\", \"default\", {\n\tname: \"dsb-DE\",\n\tenglishName: \"Lower Sorbian (Germany)\",\n\tnativeName: \"dolnoserbšćina (Nimska)\",\n\tlanguage: \"dsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekońcne\",\n\t\tpositiveInfinity: \"+njekońcne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njeźela\",\"ponjeźele\",\"wałtora\",\"srjoda\",\"stwortk\",\"pětk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pon\",\"wał\",\"srj\",\"stw\",\"pět\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"s\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"maj\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"maja\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'goź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'goź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.dsb.js",
    "content": "/*\n * Globalize Culture dsb\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"dsb\", \"default\", {\n\tname: \"dsb\",\n\tenglishName: \"Lower Sorbian\",\n\tnativeName: \"dolnoserbšćina\",\n\tlanguage: \"dsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekońcne\",\n\t\tpositiveInfinity: \"+njekońcne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njeźela\",\"ponjeźele\",\"wałtora\",\"srjoda\",\"stwortk\",\"pětk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pon\",\"wał\",\"srj\",\"stw\",\"pět\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"s\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"maj\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"maja\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'goź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'goź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.dv-MV.js",
    "content": "/*\n * Globalize Culture dv-MV\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"dv-MV\", \"default\", {\n\tname: \"dv-MV\",\n\tenglishName: \"Divehi (Maldives)\",\n\tnativeName: \"ދިވެހިބަސް (ދިވެހި ރާއްޖެ)\",\n\tlanguage: \"dv\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"n $-\",\"n $\"],\n\t\t\tsymbol: \"ރ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"],\n\t\t\t\tnamesAbbr: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"ހިޖްރީ\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy HH:mm\",\n\t\t\t\tF: \"dd/MM/yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"މީލާދީ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"ddd, yyyy MMMM dd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"ddd, yyyy MMMM dd HH:mm\",\n\t\t\t\tF: \"ddd, yyyy MMMM dd HH:mm:ss\",\n\t\t\t\tY: \"yyyy, MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.dv.js",
    "content": "/*\n * Globalize Culture dv\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"dv\", \"default\", {\n\tname: \"dv\",\n\tenglishName: \"Divehi\",\n\tnativeName: \"ދިވެހިބަސް\",\n\tlanguage: \"dv\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"n $-\",\"n $\"],\n\t\t\tsymbol: \"ރ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"],\n\t\t\t\tnamesAbbr: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy HH:mm\",\n\t\t\t\tF: \"dd/MM/yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"މީލާދީ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"ddd, yyyy MMMM dd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"ddd, yyyy MMMM dd HH:mm\",\n\t\t\t\tF: \"ddd, yyyy MMMM dd HH:mm:ss\",\n\t\t\t\tY: \"yyyy, MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.el-GR.js",
    "content": "/*\n * Globalize Culture el-GR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"el-GR\", \"default\", {\n\tname: \"el-GR\",\n\tenglishName: \"Greek (Greece)\",\n\tnativeName: \"Ελληνικά (Ελλάδα)\",\n\tlanguage: \"el\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"μη αριθμός\",\n\t\tnegativeInfinity: \"-Άπειρο\",\n\t\tpositiveInfinity: \"Άπειρο\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Κυριακή\",\"Δευτέρα\",\"Τρίτη\",\"Τετάρτη\",\"Πέμπτη\",\"Παρασκευή\",\"Σάββατο\"],\n\t\t\t\tnamesAbbr: [\"Κυρ\",\"Δευ\",\"Τρι\",\"Τετ\",\"Πεμ\",\"Παρ\",\"Σαβ\"],\n\t\t\t\tnamesShort: [\"Κυ\",\"Δε\",\"Τρ\",\"Τε\",\"Πε\",\"Πα\",\"Σά\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ιανουάριος\",\"Φεβρουάριος\",\"Μάρτιος\",\"Απρίλιος\",\"Μάιος\",\"Ιούνιος\",\"Ιούλιος\",\"Αύγουστος\",\"Σεπτέμβριος\",\"Οκτώβριος\",\"Νοέμβριος\",\"Δεκέμβριος\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Ιανουαρίου\",\"Φεβρουαρίου\",\"Μαρτίου\",\"Απριλίου\",\"Μαΐου\",\"Ιουνίου\",\"Ιουλίου\",\"Αυγούστου\",\"Σεπτεμβρίου\",\"Οκτωβρίου\",\"Νοεμβρίου\",\"Δεκεμβρίου\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"πμ\",\"πμ\",\"ΠΜ\"],\n\t\t\tPM: [\"μμ\",\"μμ\",\"ΜΜ\"],\n\t\t\teras: [{\"name\":\"μ.Χ.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.el.js",
    "content": "/*\n * Globalize Culture el\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"el\", \"default\", {\n\tname: \"el\",\n\tenglishName: \"Greek\",\n\tnativeName: \"Ελληνικά\",\n\tlanguage: \"el\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"μη αριθμός\",\n\t\tnegativeInfinity: \"-Άπειρο\",\n\t\tpositiveInfinity: \"Άπειρο\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Κυριακή\",\"Δευτέρα\",\"Τρίτη\",\"Τετάρτη\",\"Πέμπτη\",\"Παρασκευή\",\"Σάββατο\"],\n\t\t\t\tnamesAbbr: [\"Κυρ\",\"Δευ\",\"Τρι\",\"Τετ\",\"Πεμ\",\"Παρ\",\"Σαβ\"],\n\t\t\t\tnamesShort: [\"Κυ\",\"Δε\",\"Τρ\",\"Τε\",\"Πε\",\"Πα\",\"Σά\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ιανουάριος\",\"Φεβρουάριος\",\"Μάρτιος\",\"Απρίλιος\",\"Μάιος\",\"Ιούνιος\",\"Ιούλιος\",\"Αύγουστος\",\"Σεπτέμβριος\",\"Οκτώβριος\",\"Νοέμβριος\",\"Δεκέμβριος\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Ιανουαρίου\",\"Φεβρουαρίου\",\"Μαρτίου\",\"Απριλίου\",\"Μαΐου\",\"Ιουνίου\",\"Ιουλίου\",\"Αυγούστου\",\"Σεπτεμβρίου\",\"Οκτωβρίου\",\"Νοεμβρίου\",\"Δεκεμβρίου\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"πμ\",\"πμ\",\"ΠΜ\"],\n\t\t\tPM: [\"μμ\",\"μμ\",\"ΜΜ\"],\n\t\t\teras: [{\"name\":\"μ.Χ.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-029.js",
    "content": "/*\n * Globalize Culture en-029\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-029\", \"default\", {\n\tname: \"en-029\",\n\tenglishName: \"English (Caribbean)\",\n\tnativeName: \"English (Caribbean)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-AU.js",
    "content": "/*\n * Globalize Culture en-AU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-AU\", \"default\", {\n\tname: \"en-AU\",\n\tenglishName: \"English (Australia)\",\n\tnativeName: \"English (Australia)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-BZ.js",
    "content": "/*\n * Globalize Culture en-BZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-BZ\", \"default\", {\n\tname: \"en-BZ\",\n\tenglishName: \"English (Belize)\",\n\tnativeName: \"English (Belize)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"BZ$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-CA.js",
    "content": "/*\n * Globalize Culture en-CA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-CA\", \"default\", {\n\tname: \"en-CA\",\n\tenglishName: \"English (Canada)\",\n\tnativeName: \"English (Canada)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"MMMM-dd-yy\",\n\t\t\t\tf: \"MMMM-dd-yy h:mm tt\",\n\t\t\t\tF: \"MMMM-dd-yy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-GB.js",
    "content": "/*\n * Globalize Culture en-GB\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-GB\", \"default\", {\n\tname: \"en-GB\",\n\tenglishName: \"English (United Kingdom)\",\n\tnativeName: \"English (United Kingdom)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-IE.js",
    "content": "/*\n * Globalize Culture en-IE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-IE\", \"default\", {\n\tname: \"en-IE\",\n\tenglishName: \"English (Ireland)\",\n\tnativeName: \"English (Ireland)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-IN.js",
    "content": "/*\n * Globalize Culture en-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-IN\", \"default\", {\n\tname: \"en-IN\",\n\tenglishName: \"English (India)\",\n\tnativeName: \"English (India)\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"Rs.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-JM.js",
    "content": "/*\n * Globalize Culture en-JM\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-JM\", \"default\", {\n\tname: \"en-JM\",\n\tenglishName: \"English (Jamaica)\",\n\tnativeName: \"English (Jamaica)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"J$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-MY.js",
    "content": "/*\n * Globalize Culture en-MY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-MY\", \"default\", {\n\tname: \"en-MY\",\n\tenglishName: \"English (Malaysia)\",\n\tnativeName: \"English (Malaysia)\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"RM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM, yyyy\",\n\t\t\t\tf: \"dddd, d MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-NZ.js",
    "content": "/*\n * Globalize Culture en-NZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-NZ\", \"default\", {\n\tname: \"en-NZ\",\n\tenglishName: \"English (New Zealand)\",\n\tnativeName: \"English (New Zealand)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-PH.js",
    "content": "/*\n * Globalize Culture en-PH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-PH\", \"default\", {\n\tname: \"en-PH\",\n\tenglishName: \"English (Republic of the Philippines)\",\n\tnativeName: \"English (Philippines)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"Php\"\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-SG.js",
    "content": "/*\n * Globalize Culture en-SG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-SG\", \"default\", {\n\tname: \"en-SG\",\n\tenglishName: \"English (Singapore)\",\n\tnativeName: \"English (Singapore)\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM, yyyy\",\n\t\t\t\tf: \"dddd, d MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-TT.js",
    "content": "/*\n * Globalize Culture en-TT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-TT\", \"default\", {\n\tname: \"en-TT\",\n\tenglishName: \"English (Trinidad and Tobago)\",\n\tnativeName: \"English (Trinidad y Tobago)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"TT$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-US.js",
    "content": "/*\n * Globalize Culture en-US\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-US\", \"default\", {\n\tname: \"en-US\",\n\tenglishName: \"English (United States)\"\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-ZA.js",
    "content": "/*\n * Globalize Culture en-ZA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-ZA\", \"default\", {\n\tname: \"en-ZA\",\n\tenglishName: \"English (South Africa)\",\n\tnativeName: \"English (South Africa)\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.en-ZW.js",
    "content": "/*\n * Globalize Culture en-ZW\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"en-ZW\", \"default\", {\n\tname: \"en-ZW\",\n\tenglishName: \"English (Zimbabwe)\",\n\tnativeName: \"English (Zimbabwe)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"Z$\"\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-AR.js",
    "content": "/*\n * Globalize Culture es-AR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-AR\", \"default\", {\n\tname: \"es-AR\",\n\tenglishName: \"Spanish (Argentina)\",\n\tnativeName: \"Español (Argentina)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-BO.js",
    "content": "/*\n * Globalize Culture es-BO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-BO\", \"default\", {\n\tname: \"es-BO\",\n\tenglishName: \"Spanish (Bolivia)\",\n\tnativeName: \"Español (Bolivia)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$b\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-CL.js",
    "content": "/*\n * Globalize Culture es-CL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-CL\", \"default\", {\n\tname: \"es-CL\",\n\tenglishName: \"Spanish (Chile)\",\n\tnativeName: \"Español (Chile)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-CO.js",
    "content": "/*\n * Globalize Culture es-CO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-CO\", \"default\", {\n\tname: \"es-CO\",\n\tenglishName: \"Spanish (Colombia)\",\n\tnativeName: \"Español (Colombia)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-CR.js",
    "content": "/*\n * Globalize Culture es-CR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-CR\", \"default\", {\n\tname: \"es-CR\",\n\tenglishName: \"Spanish (Costa Rica)\",\n\tnativeName: \"Español (Costa Rica)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₡\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-DO.js",
    "content": "/*\n * Globalize Culture es-DO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-DO\", \"default\", {\n\tname: \"es-DO\",\n\tenglishName: \"Spanish (Dominican Republic)\",\n\tnativeName: \"Español (República Dominicana)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"RD$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-EC.js",
    "content": "/*\n * Globalize Culture es-EC\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-EC\", \"default\", {\n\tname: \"es-EC\",\n\tenglishName: \"Spanish (Ecuador)\",\n\tnativeName: \"Español (Ecuador)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-ES.js",
    "content": "/*\n * Globalize Culture es-ES\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-ES\", \"default\", {\n\tname: \"es-ES\",\n\tenglishName: \"Spanish (Spain, International Sort)\",\n\tnativeName: \"Español (España, alfabetización internacional)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-GT.js",
    "content": "/*\n * Globalize Culture es-GT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-GT\", \"default\", {\n\tname: \"es-GT\",\n\tenglishName: \"Spanish (Guatemala)\",\n\tnativeName: \"Español (Guatemala)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"Q\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-HN.js",
    "content": "/*\n * Globalize Culture es-HN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-HN\", \"default\", {\n\tname: \"es-HN\",\n\tenglishName: \"Spanish (Honduras)\",\n\tnativeName: \"Español (Honduras)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"L.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-MX.js",
    "content": "/*\n * Globalize Culture es-MX\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-MX\", \"default\", {\n\tname: \"es-MX\",\n\tenglishName: \"Spanish (Mexico)\",\n\tnativeName: \"Español (México)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-NI.js",
    "content": "/*\n * Globalize Culture es-NI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-NI\", \"default\", {\n\tname: \"es-NI\",\n\tenglishName: \"Spanish (Nicaragua)\",\n\tnativeName: \"Español (Nicaragua)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"C$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-PA.js",
    "content": "/*\n * Globalize Culture es-PA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-PA\", \"default\", {\n\tname: \"es-PA\",\n\tenglishName: \"Spanish (Panama)\",\n\tnativeName: \"Español (Panamá)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tsymbol: \"B/.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-PE.js",
    "content": "/*\n * Globalize Culture es-PE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-PE\", \"default\", {\n\tname: \"es-PE\",\n\tenglishName: \"Spanish (Peru)\",\n\tnativeName: \"Español (Perú)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tsymbol: \"S/.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-PR.js",
    "content": "/*\n * Globalize Culture es-PR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-PR\", \"default\", {\n\tname: \"es-PR\",\n\tenglishName: \"Spanish (Puerto Rico)\",\n\tnativeName: \"Español (Puerto Rico)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-PY.js",
    "content": "/*\n * Globalize Culture es-PY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-PY\", \"default\", {\n\tname: \"es-PY\",\n\tenglishName: \"Spanish (Paraguay)\",\n\tnativeName: \"Español (Paraguay)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Gs\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-SV.js",
    "content": "/*\n * Globalize Culture es-SV\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-SV\", \"default\", {\n\tname: \"es-SV\",\n\tenglishName: \"Spanish (El Salvador)\",\n\tnativeName: \"Español (El Salvador)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-US.js",
    "content": "/*\n * Globalize Culture es-US\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-US\", \"default\", {\n\tname: \"es-US\",\n\tenglishName: \"Spanish (United States)\",\n\tnativeName: \"Español (Estados Unidos)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\tM: \"dd' de 'MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-UY.js",
    "content": "/*\n * Globalize Culture es-UY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-UY\", \"default\", {\n\tname: \"es-UY\",\n\tenglishName: \"Spanish (Uruguay)\",\n\tnativeName: \"Español (Uruguay)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$U\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es-VE.js",
    "content": "/*\n * Globalize Culture es-VE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es-VE\", \"default\", {\n\tname: \"es-VE\",\n\tenglishName: \"Spanish (Bolivarian Republic of Venezuela)\",\n\tnativeName: \"Español (Republica Bolivariana de Venezuela)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Bs. F.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.es.js",
    "content": "/*\n * Globalize Culture es\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"es\", \"default\", {\n\tname: \"es\",\n\tenglishName: \"Spanish\",\n\tnativeName: \"español\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.et-EE.js",
    "content": "/*\n * Globalize Culture et-EE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"et-EE\", \"default\", {\n\tname: \"et-EE\",\n\tenglishName: \"Estonian (Estonia)\",\n\tnativeName: \"eesti (Eesti)\",\n\tlanguage: \"et\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"avaldamatu\",\n\t\tnegativeInfinity: \"miinuslõpmatus\",\n\t\tpositiveInfinity: \"plusslõpmatus\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pühapäev\",\"esmaspäev\",\"teisipäev\",\"kolmapäev\",\"neljapäev\",\"reede\",\"laupäev\"],\n\t\t\t\tnamesAbbr: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"],\n\t\t\t\tnamesShort: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jaanuar\",\"veebruar\",\"märts\",\"aprill\",\"mai\",\"juuni\",\"juuli\",\"august\",\"september\",\"oktoober\",\"november\",\"detsember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jaan\",\"veebr\",\"märts\",\"apr\",\"mai\",\"juuni\",\"juuli\",\"aug\",\"sept\",\"okt\",\"nov\",\"dets\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"EL\",\"el\",\"EL\"],\n\t\t\tPM: [\"PL\",\"pl\",\"PL\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy'. a.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy'. a.' H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy'. a.' H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy'. a.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.et.js",
    "content": "/*\n * Globalize Culture et\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"et\", \"default\", {\n\tname: \"et\",\n\tenglishName: \"Estonian\",\n\tnativeName: \"eesti\",\n\tlanguage: \"et\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"avaldamatu\",\n\t\tnegativeInfinity: \"miinuslõpmatus\",\n\t\tpositiveInfinity: \"plusslõpmatus\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pühapäev\",\"esmaspäev\",\"teisipäev\",\"kolmapäev\",\"neljapäev\",\"reede\",\"laupäev\"],\n\t\t\t\tnamesAbbr: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"],\n\t\t\t\tnamesShort: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jaanuar\",\"veebruar\",\"märts\",\"aprill\",\"mai\",\"juuni\",\"juuli\",\"august\",\"september\",\"oktoober\",\"november\",\"detsember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jaan\",\"veebr\",\"märts\",\"apr\",\"mai\",\"juuni\",\"juuli\",\"aug\",\"sept\",\"okt\",\"nov\",\"dets\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"EL\",\"el\",\"EL\"],\n\t\t\tPM: [\"PL\",\"pl\",\"PL\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy'. a.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy'. a.' H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy'. a.' H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy'. a.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.eu-ES.js",
    "content": "/*\n * Globalize Culture eu-ES\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"eu-ES\", \"default\", {\n\tname: \"eu-ES\",\n\tenglishName: \"Basque (Basque)\",\n\tnativeName: \"euskara (euskara)\",\n\tlanguage: \"eu\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"EdZ\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"igandea\",\"astelehena\",\"asteartea\",\"asteazkena\",\"osteguna\",\"ostirala\",\"larunbata\"],\n\t\t\t\tnamesAbbr: [\"ig.\",\"al.\",\"as.\",\"az.\",\"og.\",\"or.\",\"lr.\"],\n\t\t\t\tnamesShort: [\"ig\",\"al\",\"as\",\"az\",\"og\",\"or\",\"lr\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"urtarrila\",\"otsaila\",\"martxoa\",\"apirila\",\"maiatza\",\"ekaina\",\"uztaila\",\"abuztua\",\"iraila\",\"urria\",\"azaroa\",\"abendua\",\"\"],\n\t\t\t\tnamesAbbr: [\"urt.\",\"ots.\",\"mar.\",\"api.\",\"mai.\",\"eka.\",\"uzt.\",\"abu.\",\"ira.\",\"urr.\",\"aza.\",\"abe.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dddd, yyyy.'eko' MMMM'k 'd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy.'eko' MMMM'k 'd HH:mm\",\n\t\t\t\tF: \"dddd, yyyy.'eko' MMMM'k 'd H:mm:ss\",\n\t\t\t\tY: \"yyyy.'eko' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.eu.js",
    "content": "/*\n * Globalize Culture eu\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"eu\", \"default\", {\n\tname: \"eu\",\n\tenglishName: \"Basque\",\n\tnativeName: \"euskara\",\n\tlanguage: \"eu\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"EdZ\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"igandea\",\"astelehena\",\"asteartea\",\"asteazkena\",\"osteguna\",\"ostirala\",\"larunbata\"],\n\t\t\t\tnamesAbbr: [\"ig.\",\"al.\",\"as.\",\"az.\",\"og.\",\"or.\",\"lr.\"],\n\t\t\t\tnamesShort: [\"ig\",\"al\",\"as\",\"az\",\"og\",\"or\",\"lr\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"urtarrila\",\"otsaila\",\"martxoa\",\"apirila\",\"maiatza\",\"ekaina\",\"uztaila\",\"abuztua\",\"iraila\",\"urria\",\"azaroa\",\"abendua\",\"\"],\n\t\t\t\tnamesAbbr: [\"urt.\",\"ots.\",\"mar.\",\"api.\",\"mai.\",\"eka.\",\"uzt.\",\"abu.\",\"ira.\",\"urr.\",\"aza.\",\"abe.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dddd, yyyy.'eko' MMMM'k 'd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy.'eko' MMMM'k 'd HH:mm\",\n\t\t\t\tF: \"dddd, yyyy.'eko' MMMM'k 'd H:mm:ss\",\n\t\t\t\tY: \"yyyy.'eko' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fa-IR.js",
    "content": "/*\n * Globalize Culture fa-IR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fa-IR\", \"default\", {\n\tname: \"fa-IR\",\n\tenglishName: \"Persian\",\n\tnativeName: \"فارسى (ایران)\",\n\tlanguage: \"fa\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\t\".\": \"/\",\n\t\t\tsymbol: \"ريال\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy/MM/dd\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"yyyy/MM/dd hh:mm tt\",\n\t\t\t\tF: \"yyyy/MM/dd hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fa.js",
    "content": "/*\n * Globalize Culture fa\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fa\", \"default\", {\n\tname: \"fa\",\n\tenglishName: \"Persian\",\n\tnativeName: \"فارسى\",\n\tlanguage: \"fa\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\t\".\": \"/\",\n\t\t\tsymbol: \"ريال\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy/MM/dd\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"yyyy/MM/dd hh:mm tt\",\n\t\t\t\tF: \"yyyy/MM/dd hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fi-FI.js",
    "content": "/*\n * Globalize Culture fi-FI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fi-FI\", \"default\", {\n\tname: \"fi-FI\",\n\tenglishName: \"Finnish (Finland)\",\n\tnativeName: \"suomi (Suomi)\",\n\tlanguage: \"fi\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnuntai\",\"maanantai\",\"tiistai\",\"keskiviikko\",\"torstai\",\"perjantai\",\"lauantai\"],\n\t\t\t\tnamesAbbr: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"],\n\t\t\t\tnamesShort: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tammikuu\",\"helmikuu\",\"maaliskuu\",\"huhtikuu\",\"toukokuu\",\"kesäkuu\",\"heinäkuu\",\"elokuu\",\"syyskuu\",\"lokakuu\",\"marraskuu\",\"joulukuu\",\"\"],\n\t\t\t\tnamesAbbr: [\"tammi\",\"helmi\",\"maalis\",\"huhti\",\"touko\",\"kesä\",\"heinä\",\"elo\",\"syys\",\"loka\",\"marras\",\"joulu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM'ta 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM'ta 'yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM'ta 'yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM'ta'\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fi.js",
    "content": "/*\n * Globalize Culture fi\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fi\", \"default\", {\n\tname: \"fi\",\n\tenglishName: \"Finnish\",\n\tnativeName: \"suomi\",\n\tlanguage: \"fi\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnuntai\",\"maanantai\",\"tiistai\",\"keskiviikko\",\"torstai\",\"perjantai\",\"lauantai\"],\n\t\t\t\tnamesAbbr: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"],\n\t\t\t\tnamesShort: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tammikuu\",\"helmikuu\",\"maaliskuu\",\"huhtikuu\",\"toukokuu\",\"kesäkuu\",\"heinäkuu\",\"elokuu\",\"syyskuu\",\"lokakuu\",\"marraskuu\",\"joulukuu\",\"\"],\n\t\t\t\tnamesAbbr: [\"tammi\",\"helmi\",\"maalis\",\"huhti\",\"touko\",\"kesä\",\"heinä\",\"elo\",\"syys\",\"loka\",\"marras\",\"joulu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM'ta 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM'ta 'yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM'ta 'yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM'ta'\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fil-PH.js",
    "content": "/*\n * Globalize Culture fil-PH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fil-PH\", \"default\", {\n\tname: \"fil-PH\",\n\tenglishName: \"Filipino (Philippines)\",\n\tnativeName: \"Filipino (Pilipinas)\",\n\tlanguage: \"fil\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"PhP\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Linggo\",\"Lunes\",\"Martes\",\"Mierkoles\",\"Huebes\",\"Biernes\",\"Sabado\"],\n\t\t\t\tnamesAbbr: [\"Lin\",\"Lun\",\"Mar\",\"Mier\",\"Hueb\",\"Bier\",\"Saba\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"M\",\"M\",\"H\",\"B\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Enero\",\"Pebrero\",\"Marso\",\"Abril\",\"Mayo\",\"Hunyo\",\"Hulyo\",\"Agosto\",\"Septyembre\",\"Oktubre\",\"Nobyembre\",\"Disyembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"En\",\"Peb\",\"Mar\",\"Abr\",\"Mayo\",\"Hun\",\"Hul\",\"Agos\",\"Sept\",\"Okt\",\"Nob\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"Anno Domini\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fil.js",
    "content": "/*\n * Globalize Culture fil\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fil\", \"default\", {\n\tname: \"fil\",\n\tenglishName: \"Filipino\",\n\tnativeName: \"Filipino\",\n\tlanguage: \"fil\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"PhP\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Linggo\",\"Lunes\",\"Martes\",\"Mierkoles\",\"Huebes\",\"Biernes\",\"Sabado\"],\n\t\t\t\tnamesAbbr: [\"Lin\",\"Lun\",\"Mar\",\"Mier\",\"Hueb\",\"Bier\",\"Saba\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"M\",\"M\",\"H\",\"B\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Enero\",\"Pebrero\",\"Marso\",\"Abril\",\"Mayo\",\"Hunyo\",\"Hulyo\",\"Agosto\",\"Septyembre\",\"Oktubre\",\"Nobyembre\",\"Disyembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"En\",\"Peb\",\"Mar\",\"Abr\",\"Mayo\",\"Hun\",\"Hul\",\"Agos\",\"Sept\",\"Okt\",\"Nob\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"Anno Domini\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fo-FO.js",
    "content": "/*\n * Globalize Culture fo-FO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fo-FO\", \"default\", {\n\tname: \"fo-FO\",\n\tenglishName: \"Faroese (Faroe Islands)\",\n\tnativeName: \"føroyskt (Føroyar)\",\n\tlanguage: \"fo\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánadagur\",\"týsdagur\",\"mikudagur\",\"hósdagur\",\"fríggjadagur\",\"leygardagur\"],\n\t\t\t\tnamesAbbr: [\"sun\",\"mán\",\"týs\",\"mik\",\"hós\",\"frí\",\"leyg\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"tý\",\"mi\",\"hó\",\"fr\",\"ley\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"apríl\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fo.js",
    "content": "/*\n * Globalize Culture fo\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fo\", \"default\", {\n\tname: \"fo\",\n\tenglishName: \"Faroese\",\n\tnativeName: \"føroyskt\",\n\tlanguage: \"fo\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánadagur\",\"týsdagur\",\"mikudagur\",\"hósdagur\",\"fríggjadagur\",\"leygardagur\"],\n\t\t\t\tnamesAbbr: [\"sun\",\"mán\",\"týs\",\"mik\",\"hós\",\"frí\",\"leyg\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"tý\",\"mi\",\"hó\",\"fr\",\"ley\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"apríl\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr-BE.js",
    "content": "/*\n * Globalize Culture fr-BE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr-BE\", \"default\", {\n\tname: \"fr-BE\",\n\tenglishName: \"French (Belgium)\",\n\tnativeName: \"français (Belgique)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr-CA.js",
    "content": "/*\n * Globalize Culture fr-CA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr-CA\", \"default\", {\n\tname: \"fr-CA\",\n\tenglishName: \"French (Canada)\",\n\tnativeName: \"français (Canada)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"(n $)\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr-CH.js",
    "content": "/*\n * Globalize Culture fr-CH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr-CH\", \"default\", {\n\tname: \"fr-CH\",\n\tenglishName: \"French (Switzerland)\",\n\tnativeName: \"français (Suisse)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr-FR.js",
    "content": "/*\n * Globalize Culture fr-FR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr-FR\", \"default\", {\n\tname: \"fr-FR\",\n\tenglishName: \"French (France)\",\n\tnativeName: \"français (France)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr-LU.js",
    "content": "/*\n * Globalize Culture fr-LU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr-LU\", \"default\", {\n\tname: \"fr-LU\",\n\tenglishName: \"French (Luxembourg)\",\n\tnativeName: \"français (Luxembourg)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr-MC.js",
    "content": "/*\n * Globalize Culture fr-MC\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr-MC\", \"default\", {\n\tname: \"fr-MC\",\n\tenglishName: \"French (Monaco)\",\n\tnativeName: \"français (Principauté de Monaco)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fr.js",
    "content": "/*\n * Globalize Culture fr\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fr\", \"default\", {\n\tname: \"fr\",\n\tenglishName: \"French\",\n\tnativeName: \"français\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fy-NL.js",
    "content": "/*\n * Globalize Culture fy-NL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fy-NL\", \"default\", {\n\tname: \"fy-NL\",\n\tenglishName: \"Frisian (Netherlands)\",\n\tnativeName: \"Frysk (Nederlân)\",\n\tlanguage: \"fy\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Snein\",\"Moandei\",\"Tiisdei\",\"Woansdei\",\"Tongersdei\",\"Freed\",\"Sneon\"],\n\t\t\t\tnamesAbbr: [\"Sn\",\"Mo\",\"Ti\",\"Wo\",\"To\",\"Fr\",\"Sn\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jannewaris\",\"febrewaris\",\"maart\",\"april\",\"maaie\",\"juny\",\"july\",\"augustus\",\"septimber\",\"oktober\",\"novimber\",\"desimber\",\"\"],\n\t\t\t\tnamesAbbr: [\"jann\",\"febr\",\"mrt\",\"apr\",\"maaie\",\"jun\",\"jul\",\"aug\",\"sept\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.fy.js",
    "content": "/*\n * Globalize Culture fy\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"fy\", \"default\", {\n\tname: \"fy\",\n\tenglishName: \"Frisian\",\n\tnativeName: \"Frysk\",\n\tlanguage: \"fy\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Snein\",\"Moandei\",\"Tiisdei\",\"Woansdei\",\"Tongersdei\",\"Freed\",\"Sneon\"],\n\t\t\t\tnamesAbbr: [\"Sn\",\"Mo\",\"Ti\",\"Wo\",\"To\",\"Fr\",\"Sn\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jannewaris\",\"febrewaris\",\"maart\",\"april\",\"maaie\",\"juny\",\"july\",\"augustus\",\"septimber\",\"oktober\",\"novimber\",\"desimber\",\"\"],\n\t\t\t\tnamesAbbr: [\"jann\",\"febr\",\"mrt\",\"apr\",\"maaie\",\"jun\",\"jul\",\"aug\",\"sept\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ga-IE.js",
    "content": "/*\n * Globalize Culture ga-IE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ga-IE\", \"default\", {\n\tname: \"ga-IE\",\n\tenglishName: \"Irish (Ireland)\",\n\tnativeName: \"Gaeilge (Éire)\",\n\tlanguage: \"ga\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dé Domhnaigh\",\"Dé Luain\",\"Dé Máirt\",\"Dé Céadaoin\",\"Déardaoin\",\"Dé hAoine\",\"Dé Sathairn\"],\n\t\t\t\tnamesAbbr: [\"Domh\",\"Luan\",\"Máir\",\"Céad\",\"Déar\",\"Aoi\",\"Sath\"],\n\t\t\t\tnamesShort: [\"Do\",\"Lu\",\"Má\",\"Cé\",\"De\",\"Ao\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Eanáir\",\"Feabhra\",\"Márta\",\"Aibreán\",\"Bealtaine\",\"Meitheamh\",\"Iúil\",\"Lúnasa\",\"Meán Fómhair\",\"Deireadh Fómhair\",\"Samhain\",\"Nollaig\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ean\",\"Feabh\",\"Már\",\"Aib\",\"Bealt\",\"Meith\",\"Iúil\",\"Lún\",\"M.Fómh\",\"D.Fómh\",\"Samh\",\"Noll\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"r.n.\",\"r.n.\",\"R.N.\"],\n\t\t\tPM: [\"i.n.\",\"i.n.\",\"I.N.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ga.js",
    "content": "/*\n * Globalize Culture ga\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ga\", \"default\", {\n\tname: \"ga\",\n\tenglishName: \"Irish\",\n\tnativeName: \"Gaeilge\",\n\tlanguage: \"ga\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dé Domhnaigh\",\"Dé Luain\",\"Dé Máirt\",\"Dé Céadaoin\",\"Déardaoin\",\"Dé hAoine\",\"Dé Sathairn\"],\n\t\t\t\tnamesAbbr: [\"Domh\",\"Luan\",\"Máir\",\"Céad\",\"Déar\",\"Aoi\",\"Sath\"],\n\t\t\t\tnamesShort: [\"Do\",\"Lu\",\"Má\",\"Cé\",\"De\",\"Ao\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Eanáir\",\"Feabhra\",\"Márta\",\"Aibreán\",\"Bealtaine\",\"Meitheamh\",\"Iúil\",\"Lúnasa\",\"Meán Fómhair\",\"Deireadh Fómhair\",\"Samhain\",\"Nollaig\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ean\",\"Feabh\",\"Már\",\"Aib\",\"Bealt\",\"Meith\",\"Iúil\",\"Lún\",\"M.Fómh\",\"D.Fómh\",\"Samh\",\"Noll\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"r.n.\",\"r.n.\",\"R.N.\"],\n\t\t\tPM: [\"i.n.\",\"i.n.\",\"I.N.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gd-GB.js",
    "content": "/*\n * Globalize Culture gd-GB\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gd-GB\", \"default\", {\n\tname: \"gd-GB\",\n\tenglishName: \"Scottish Gaelic (United Kingdom)\",\n\tnativeName: \"Gàidhlig (An Rìoghachd Aonaichte)\",\n\tlanguage: \"gd\",\n\tnumberFormat: {\n\t\tnegativeInfinity: \"-Neo-chrìochnachd\",\n\t\tpositiveInfinity: \"Neo-chrìochnachd\",\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Didòmhnaich\",\"Diluain\",\"Dimàirt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],\n\t\t\t\tnamesAbbr: [\"Dòm\",\"Lua\",\"Mài\",\"Cia\",\"Ard\",\"Hao\",\"Sat\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"M\",\"C\",\"A\",\"H\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Am Faoilleach\",\"An Gearran\",\"Am Màrt\",\"An Giblean\",\"An Cèitean\",\"An t-Ògmhios\",\"An t-Iuchar\",\"An Lùnastal\",\"An t-Sultain\",\"An Dàmhair\",\"An t-Samhain\",\"An Dùbhlachd\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fao\",\"Gea\",\"Màr\",\"Gib\",\"Cèi\",\"Ògm\",\"Iuc\",\"Lùn\",\"Sul\",\"Dàm\",\"Sam\",\"Dùb\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"m\",\"m\",\"M\"],\n\t\t\tPM: [\"f\",\"f\",\"F\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gd.js",
    "content": "/*\n * Globalize Culture gd\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gd\", \"default\", {\n\tname: \"gd\",\n\tenglishName: \"Scottish Gaelic\",\n\tnativeName: \"Gàidhlig\",\n\tlanguage: \"gd\",\n\tnumberFormat: {\n\t\tnegativeInfinity: \"-Neo-chrìochnachd\",\n\t\tpositiveInfinity: \"Neo-chrìochnachd\",\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Didòmhnaich\",\"Diluain\",\"Dimàirt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],\n\t\t\t\tnamesAbbr: [\"Dòm\",\"Lua\",\"Mài\",\"Cia\",\"Ard\",\"Hao\",\"Sat\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"M\",\"C\",\"A\",\"H\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Am Faoilleach\",\"An Gearran\",\"Am Màrt\",\"An Giblean\",\"An Cèitean\",\"An t-Ògmhios\",\"An t-Iuchar\",\"An Lùnastal\",\"An t-Sultain\",\"An Dàmhair\",\"An t-Samhain\",\"An Dùbhlachd\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fao\",\"Gea\",\"Màr\",\"Gib\",\"Cèi\",\"Ògm\",\"Iuc\",\"Lùn\",\"Sul\",\"Dàm\",\"Sam\",\"Dùb\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"m\",\"m\",\"M\"],\n\t\t\tPM: [\"f\",\"f\",\"F\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gl-ES.js",
    "content": "/*\n * Globalize Culture gl-ES\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gl-ES\", \"default\", {\n\tname: \"gl-ES\",\n\tenglishName: \"Galician (Galician)\",\n\tnativeName: \"galego (galego)\",\n\tlanguage: \"gl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"luns\",\"martes\",\"mércores\",\"xoves\",\"venres\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"luns\",\"mar\",\"mér\",\"xov\",\"ven\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mé\",\"xo\",\"ve\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"xaneiro\",\"febreiro\",\"marzo\",\"abril\",\"maio\",\"xuño\",\"xullo\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"decembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"xan\",\"feb\",\"mar\",\"abr\",\"maio\",\"xuñ\",\"xull\",\"ago\",\"set\",\"out\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gl.js",
    "content": "/*\n * Globalize Culture gl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gl\", \"default\", {\n\tname: \"gl\",\n\tenglishName: \"Galician\",\n\tnativeName: \"galego\",\n\tlanguage: \"gl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"luns\",\"martes\",\"mércores\",\"xoves\",\"venres\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"luns\",\"mar\",\"mér\",\"xov\",\"ven\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mé\",\"xo\",\"ve\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"xaneiro\",\"febreiro\",\"marzo\",\"abril\",\"maio\",\"xuño\",\"xullo\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"decembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"xan\",\"feb\",\"mar\",\"abr\",\"maio\",\"xuñ\",\"xull\",\"ago\",\"set\",\"out\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gsw-FR.js",
    "content": "/*\n * Globalize Culture gsw-FR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gsw-FR\", \"default\", {\n\tname: \"gsw-FR\",\n\tenglishName: \"Alsatian (France)\",\n\tnativeName: \"Elsässisch (Frànkrisch)\",\n\tlanguage: \"gsw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Ohne Nummer\",\n\t\tnegativeInfinity: \"-Unendlich\",\n\t\tpositiveInfinity: \"+Unendlich\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sundàà\",\"Mondàà\",\"Dienschdàà\",\"Mittwuch\",\"Dunnerschdàà\",\"Fridàà\",\"Sàmschdàà\"],\n\t\t\t\tnamesAbbr: [\"Su.\",\"Mo.\",\"Di.\",\"Mi.\",\"Du.\",\"Fr.\",\"Sà.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Mo\",\"Di\",\"Mi\",\"Du\",\"Fr\",\"Sà\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jänner\",\"Feverje\",\"März\",\"Àpril\",\"Mai\",\"Jüni\",\"Jüli\",\"Augscht\",\"September\",\"Oktower\",\"Nowember\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jän.\",\"Fev.\",\"März\",\"Apr.\",\"Mai\",\"Jüni\",\"Jüli\",\"Aug.\",\"Sept.\",\"Okt.\",\"Now.\",\"Dez.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"Vor J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gsw.js",
    "content": "/*\n * Globalize Culture gsw\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gsw\", \"default\", {\n\tname: \"gsw\",\n\tenglishName: \"Alsatian\",\n\tnativeName: \"Elsässisch\",\n\tlanguage: \"gsw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Ohne Nummer\",\n\t\tnegativeInfinity: \"-Unendlich\",\n\t\tpositiveInfinity: \"+Unendlich\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sundàà\",\"Mondàà\",\"Dienschdàà\",\"Mittwuch\",\"Dunnerschdàà\",\"Fridàà\",\"Sàmschdàà\"],\n\t\t\t\tnamesAbbr: [\"Su.\",\"Mo.\",\"Di.\",\"Mi.\",\"Du.\",\"Fr.\",\"Sà.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Mo\",\"Di\",\"Mi\",\"Du\",\"Fr\",\"Sà\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jänner\",\"Feverje\",\"März\",\"Àpril\",\"Mai\",\"Jüni\",\"Jüli\",\"Augscht\",\"September\",\"Oktower\",\"Nowember\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jän.\",\"Fev.\",\"März\",\"Apr.\",\"Mai\",\"Jüni\",\"Jüli\",\"Aug.\",\"Sept.\",\"Okt.\",\"Now.\",\"Dez.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"Vor J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gu-IN.js",
    "content": "/*\n * Globalize Culture gu-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gu-IN\", \"default\", {\n\tname: \"gu-IN\",\n\tenglishName: \"Gujarati (India)\",\n\tnativeName: \"ગુજરાતી (ભારત)\",\n\tlanguage: \"gu\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"રૂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"રવિવાર\",\"સોમવાર\",\"મંગળવાર\",\"બુધવાર\",\"ગુરુવાર\",\"શુક્રવાર\",\"શનિવાર\"],\n\t\t\t\tnamesAbbr: [\"રવિ\",\"સોમ\",\"મંગળ\",\"બુધ\",\"ગુરુ\",\"શુક્ર\",\"શનિ\"],\n\t\t\t\tnamesShort: [\"ર\",\"સ\",\"મ\",\"બ\",\"ગ\",\"શ\",\"શ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"જાન્યુઆરી\",\"ફેબ્રુઆરી\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટેમ્બર\",\"ઑક્ટ્બર\",\"નવેમ્બર\",\"ડિસેમ્બર\",\"\"],\n\t\t\t\tnamesAbbr: [\"જાન્યુ\",\"ફેબ્રુ\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટે\",\"ઑક્ટો\",\"નવે\",\"ડિસે\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\"],\n\t\t\tPM: [\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.gu.js",
    "content": "/*\n * Globalize Culture gu\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"gu\", \"default\", {\n\tname: \"gu\",\n\tenglishName: \"Gujarati\",\n\tnativeName: \"ગુજરાતી\",\n\tlanguage: \"gu\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"રૂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"રવિવાર\",\"સોમવાર\",\"મંગળવાર\",\"બુધવાર\",\"ગુરુવાર\",\"શુક્રવાર\",\"શનિવાર\"],\n\t\t\t\tnamesAbbr: [\"રવિ\",\"સોમ\",\"મંગળ\",\"બુધ\",\"ગુરુ\",\"શુક્ર\",\"શનિ\"],\n\t\t\t\tnamesShort: [\"ર\",\"સ\",\"મ\",\"બ\",\"ગ\",\"શ\",\"શ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"જાન્યુઆરી\",\"ફેબ્રુઆરી\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટેમ્બર\",\"ઑક્ટ્બર\",\"નવેમ્બર\",\"ડિસેમ્બર\",\"\"],\n\t\t\t\tnamesAbbr: [\"જાન્યુ\",\"ફેબ્રુ\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટે\",\"ઑક્ટો\",\"નવે\",\"ડિસે\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\"],\n\t\t\tPM: [\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ha-Latn-NG.js",
    "content": "/*\n * Globalize Culture ha-Latn-NG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ha-Latn-NG\", \"default\", {\n\tname: \"ha-Latn-NG\",\n\tenglishName: \"Hausa (Latin, Nigeria)\",\n\tnativeName: \"Hausa (Nigeria)\",\n\tlanguage: \"ha-Latn\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lahadi\",\"Litinin\",\"Talata\",\"Laraba\",\"Alhamis\",\"Juma'a\",\"Asabar\"],\n\t\t\t\tnamesAbbr: [\"Lah\",\"Lit\",\"Tal\",\"Lar\",\"Alh\",\"Jum\",\"Asa\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"T\",\"L\",\"A\",\"J\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januwaru\",\"Febreru\",\"Maris\",\"Afrilu\",\"Mayu\",\"Yuni\",\"Yuli\",\"Agusta\",\"Satumba\",\"Oktocba\",\"Nuwamba\",\"Disamba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Afr\",\"May\",\"Yun\",\"Yul\",\"Agu\",\"Sat\",\"Okt\",\"Nuw\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Safe\",\"safe\",\"SAFE\"],\n\t\t\tPM: [\"Yamma\",\"yamma\",\"YAMMA\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ha-Latn.js",
    "content": "/*\n * Globalize Culture ha-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ha-Latn\", \"default\", {\n\tname: \"ha-Latn\",\n\tenglishName: \"Hausa (Latin)\",\n\tnativeName: \"Hausa\",\n\tlanguage: \"ha-Latn\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lahadi\",\"Litinin\",\"Talata\",\"Laraba\",\"Alhamis\",\"Juma'a\",\"Asabar\"],\n\t\t\t\tnamesAbbr: [\"Lah\",\"Lit\",\"Tal\",\"Lar\",\"Alh\",\"Jum\",\"Asa\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"T\",\"L\",\"A\",\"J\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januwaru\",\"Febreru\",\"Maris\",\"Afrilu\",\"Mayu\",\"Yuni\",\"Yuli\",\"Agusta\",\"Satumba\",\"Oktocba\",\"Nuwamba\",\"Disamba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Afr\",\"May\",\"Yun\",\"Yul\",\"Agu\",\"Sat\",\"Okt\",\"Nuw\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Safe\",\"safe\",\"SAFE\"],\n\t\t\tPM: [\"Yamma\",\"yamma\",\"YAMMA\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ha.js",
    "content": "/*\n * Globalize Culture ha\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ha\", \"default\", {\n\tname: \"ha\",\n\tenglishName: \"Hausa\",\n\tnativeName: \"Hausa\",\n\tlanguage: \"ha\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lahadi\",\"Litinin\",\"Talata\",\"Laraba\",\"Alhamis\",\"Juma'a\",\"Asabar\"],\n\t\t\t\tnamesAbbr: [\"Lah\",\"Lit\",\"Tal\",\"Lar\",\"Alh\",\"Jum\",\"Asa\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"T\",\"L\",\"A\",\"J\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januwaru\",\"Febreru\",\"Maris\",\"Afrilu\",\"Mayu\",\"Yuni\",\"Yuli\",\"Agusta\",\"Satumba\",\"Oktocba\",\"Nuwamba\",\"Disamba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Afr\",\"May\",\"Yun\",\"Yul\",\"Agu\",\"Sat\",\"Okt\",\"Nuw\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Safe\",\"safe\",\"SAFE\"],\n\t\t\tPM: [\"Yamma\",\"yamma\",\"YAMMA\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.he-IL.js",
    "content": "/*\n * Globalize Culture he-IL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"he-IL\", \"default\", {\n\tname: \"he-IL\",\n\tenglishName: \"Hebrew (Israel)\",\n\tnativeName: \"עברית (ישראל)\",\n\tlanguage: \"he\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"לא מספר\",\n\t\tnegativeInfinity: \"אינסוף שלילי\",\n\t\tpositiveInfinity: \"אינסוף חיובי\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"₪\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"יום א\",\"יום ב\",\"יום ג\",\"יום ד\",\"יום ה\",\"יום ו\",\"שבת\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ינואר\",\"פברואר\",\"מרץ\",\"אפריל\",\"מאי\",\"יוני\",\"יולי\",\"אוגוסט\",\"ספטמבר\",\"אוקטובר\",\"נובמבר\",\"דצמבר\",\"\"],\n\t\t\t\tnamesAbbr: [\"ינו\",\"פבר\",\"מרץ\",\"אפר\",\"מאי\",\"יונ\",\"יול\",\"אוג\",\"ספט\",\"אוק\",\"נוב\",\"דצמ\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"לספירה\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tHebrew: {\n\t\t\tname: \"Hebrew\",\n\t\t\t\"/\": \" \",\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"],\n\t\t\t\tnamesAbbr: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"C.E.\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 5790,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd MMMM yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.he.js",
    "content": "/*\n * Globalize Culture he\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"he\", \"default\", {\n\tname: \"he\",\n\tenglishName: \"Hebrew\",\n\tnativeName: \"עברית\",\n\tlanguage: \"he\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"לא מספר\",\n\t\tnegativeInfinity: \"אינסוף שלילי\",\n\t\tpositiveInfinity: \"אינסוף חיובי\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"₪\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"יום א\",\"יום ב\",\"יום ג\",\"יום ד\",\"יום ה\",\"יום ו\",\"שבת\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ינואר\",\"פברואר\",\"מרץ\",\"אפריל\",\"מאי\",\"יוני\",\"יולי\",\"אוגוסט\",\"ספטמבר\",\"אוקטובר\",\"נובמבר\",\"דצמבר\",\"\"],\n\t\t\t\tnamesAbbr: [\"ינו\",\"פבר\",\"מרץ\",\"אפר\",\"מאי\",\"יונ\",\"יול\",\"אוג\",\"ספט\",\"אוק\",\"נוב\",\"דצמ\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"לספירה\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tHebrew: {\n\t\t\tname: \"Hebrew\",\n\t\t\t\"/\": \" \",\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"],\n\t\t\t\tnamesAbbr: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"C.E.\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 5790,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd MMMM yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hi-IN.js",
    "content": "/*\n * Globalize Culture hi-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hi-IN\", \"default\", {\n\tname: \"hi-IN\",\n\tenglishName: \"Hindi (India)\",\n\tnativeName: \"हिंदी (भारत)\",\n\tlanguage: \"hi\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगलवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगल.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hi.js",
    "content": "/*\n * Globalize Culture hi\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hi\", \"default\", {\n\tname: \"hi\",\n\tenglishName: \"Hindi\",\n\tnativeName: \"हिंदी\",\n\tlanguage: \"hi\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगलवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगल.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hr-BA.js",
    "content": "/*\n * Globalize Culture hr-BA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hr-BA\", \"default\", {\n\tname: \"hr-BA\",\n\tenglishName: \"Croatian (Latin, Bosnia and Herzegovina)\",\n\tnativeName: \"hrvatski (Bosna i Hercegovina)\",\n\tlanguage: \"hr\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"siječanj\",\"veljača\",\"ožujak\",\"travanj\",\"svibanj\",\"lipanj\",\"srpanj\",\"kolovoz\",\"rujan\",\"listopad\",\"studeni\",\"prosinac\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"siječnja\",\"veljače\",\"ožujka\",\"travnja\",\"svibnja\",\"lipnja\",\"srpnja\",\"kolovoza\",\"rujna\",\"listopada\",\"studenog\",\"prosinca\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy.\",\n\t\t\t\tD: \"d. MMMM yyyy.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy. H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy. H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hr-HR.js",
    "content": "/*\n * Globalize Culture hr-HR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hr-HR\", \"default\", {\n\tname: \"hr-HR\",\n\tenglishName: \"Croatian (Croatia)\",\n\tnativeName: \"hrvatski (Hrvatska)\",\n\tlanguage: \"hr\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kn\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"siječanj\",\"veljača\",\"ožujak\",\"travanj\",\"svibanj\",\"lipanj\",\"srpanj\",\"kolovoz\",\"rujan\",\"listopad\",\"studeni\",\"prosinac\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"siječnja\",\"veljače\",\"ožujka\",\"travnja\",\"svibnja\",\"lipnja\",\"srpnja\",\"kolovoza\",\"rujna\",\"listopada\",\"studenog\",\"prosinca\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy.\",\n\t\t\t\tD: \"d. MMMM yyyy.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy. H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy. H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hr.js",
    "content": "/*\n * Globalize Culture hr\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hr\", \"default\", {\n\tname: \"hr\",\n\tenglishName: \"Croatian\",\n\tnativeName: \"hrvatski\",\n\tlanguage: \"hr\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kn\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"siječanj\",\"veljača\",\"ožujak\",\"travanj\",\"svibanj\",\"lipanj\",\"srpanj\",\"kolovoz\",\"rujan\",\"listopad\",\"studeni\",\"prosinac\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"siječnja\",\"veljače\",\"ožujka\",\"travnja\",\"svibnja\",\"lipnja\",\"srpnja\",\"kolovoza\",\"rujna\",\"listopada\",\"studenog\",\"prosinca\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy.\",\n\t\t\t\tD: \"d. MMMM yyyy.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy. H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy. H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hsb-DE.js",
    "content": "/*\n * Globalize Culture hsb-DE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hsb-DE\", \"default\", {\n\tname: \"hsb-DE\",\n\tenglishName: \"Upper Sorbian (Germany)\",\n\tnativeName: \"hornjoserbšćina (Němska)\",\n\tlanguage: \"hsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekónčne\",\n\t\tpositiveInfinity: \"+njekónčne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njedźela\",\"póndźela\",\"wutora\",\"srjeda\",\"štwórtk\",\"pjatk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pón\",\"wut\",\"srj\",\"štw\",\"pja\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"š\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"meja\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"meje\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'hodź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'hodź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hsb.js",
    "content": "/*\n * Globalize Culture hsb\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hsb\", \"default\", {\n\tname: \"hsb\",\n\tenglishName: \"Upper Sorbian\",\n\tnativeName: \"hornjoserbšćina\",\n\tlanguage: \"hsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekónčne\",\n\t\tpositiveInfinity: \"+njekónčne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njedźela\",\"póndźela\",\"wutora\",\"srjeda\",\"štwórtk\",\"pjatk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pón\",\"wut\",\"srj\",\"štw\",\"pja\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"š\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"meja\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"meje\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'hodź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'hodź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hu-HU.js",
    "content": "/*\n * Globalize Culture hu-HU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hu-HU\", \"default\", {\n\tname: \"hu-HU\",\n\tenglishName: \"Hungarian (Hungary)\",\n\tnativeName: \"magyar (Magyarország)\",\n\tlanguage: \"hu\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nem szám\",\n\t\tnegativeInfinity: \"negatív végtelen\",\n\t\tpositiveInfinity: \"végtelen\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ft\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"vasárnap\",\"hétfő\",\"kedd\",\"szerda\",\"csütörtök\",\"péntek\",\"szombat\"],\n\t\t\t\tnamesAbbr: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"],\n\t\t\t\tnamesShort: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"március\",\"április\",\"május\",\"június\",\"július\",\"augusztus\",\"szeptember\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"febr.\",\"márc.\",\"ápr.\",\"máj.\",\"jún.\",\"júl.\",\"aug.\",\"szept.\",\"okt.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"de.\",\"de.\",\"DE.\"],\n\t\t\tPM: [\"du.\",\"du.\",\"DU.\"],\n\t\t\teras: [{\"name\":\"i.sz.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"yyyy. MMMM d.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy. MMMM d. H:mm\",\n\t\t\t\tF: \"yyyy. MMMM d. H:mm:ss\",\n\t\t\t\tM: \"MMMM d.\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hu.js",
    "content": "/*\n * Globalize Culture hu\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hu\", \"default\", {\n\tname: \"hu\",\n\tenglishName: \"Hungarian\",\n\tnativeName: \"magyar\",\n\tlanguage: \"hu\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nem szám\",\n\t\tnegativeInfinity: \"negatív végtelen\",\n\t\tpositiveInfinity: \"végtelen\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ft\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"vasárnap\",\"hétfő\",\"kedd\",\"szerda\",\"csütörtök\",\"péntek\",\"szombat\"],\n\t\t\t\tnamesAbbr: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"],\n\t\t\t\tnamesShort: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"március\",\"április\",\"május\",\"június\",\"július\",\"augusztus\",\"szeptember\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"febr.\",\"márc.\",\"ápr.\",\"máj.\",\"jún.\",\"júl.\",\"aug.\",\"szept.\",\"okt.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"de.\",\"de.\",\"DE.\"],\n\t\t\tPM: [\"du.\",\"du.\",\"DU.\"],\n\t\t\teras: [{\"name\":\"i.sz.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"yyyy. MMMM d.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy. MMMM d. H:mm\",\n\t\t\t\tF: \"yyyy. MMMM d. H:mm:ss\",\n\t\t\t\tM: \"MMMM d.\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hy-AM.js",
    "content": "/*\n * Globalize Culture hy-AM\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hy-AM\", \"default\", {\n\tname: \"hy-AM\",\n\tenglishName: \"Armenian (Armenia)\",\n\tnativeName: \"Հայերեն (Հայաստան)\",\n\tlanguage: \"hy\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"դր.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Կիրակի\",\"Երկուշաբթի\",\"Երեքշաբթի\",\"Չորեքշաբթի\",\"Հինգշաբթի\",\"ՈՒրբաթ\",\"Շաբաթ\"],\n\t\t\t\tnamesAbbr: [\"Կիր\",\"Երկ\",\"Երք\",\"Չրք\",\"Հնգ\",\"ՈՒր\",\"Շբթ\"],\n\t\t\t\tnamesShort: [\"Կ\",\"Ե\",\"Ե\",\"Չ\",\"Հ\",\"Ո\",\"Շ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Հունվար\",\"Փետրվար\",\"Մարտ\",\"Ապրիլ\",\"Մայիս\",\"Հունիս\",\"Հուլիս\",\"Օգոստոս\",\"Սեպտեմբեր\",\"Հոկտեմբեր\",\"Նոյեմբեր\",\"Դեկտեմբեր\",\"\"],\n\t\t\t\tnamesAbbr: [\"ՀՆՎ\",\"ՓՏՎ\",\"ՄՐՏ\",\"ԱՊՐ\",\"ՄՅՍ\",\"ՀՆՍ\",\"ՀԼՍ\",\"ՕԳՍ\",\"ՍԵՊ\",\"ՀՈԿ\",\"ՆՈՅ\",\"ԴԵԿ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM, yyyy H:mm\",\n\t\t\t\tF: \"d MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.hy.js",
    "content": "/*\n * Globalize Culture hy\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"hy\", \"default\", {\n\tname: \"hy\",\n\tenglishName: \"Armenian\",\n\tnativeName: \"Հայերեն\",\n\tlanguage: \"hy\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"դր.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Կիրակի\",\"Երկուշաբթի\",\"Երեքշաբթի\",\"Չորեքշաբթի\",\"Հինգշաբթի\",\"ՈՒրբաթ\",\"Շաբաթ\"],\n\t\t\t\tnamesAbbr: [\"Կիր\",\"Երկ\",\"Երք\",\"Չրք\",\"Հնգ\",\"ՈՒր\",\"Շբթ\"],\n\t\t\t\tnamesShort: [\"Կ\",\"Ե\",\"Ե\",\"Չ\",\"Հ\",\"Ո\",\"Շ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Հունվար\",\"Փետրվար\",\"Մարտ\",\"Ապրիլ\",\"Մայիս\",\"Հունիս\",\"Հուլիս\",\"Օգոստոս\",\"Սեպտեմբեր\",\"Հոկտեմբեր\",\"Նոյեմբեր\",\"Դեկտեմբեր\",\"\"],\n\t\t\t\tnamesAbbr: [\"ՀՆՎ\",\"ՓՏՎ\",\"ՄՐՏ\",\"ԱՊՐ\",\"ՄՅՍ\",\"ՀՆՍ\",\"ՀԼՍ\",\"ՕԳՍ\",\"ՍԵՊ\",\"ՀՈԿ\",\"ՆՈՅ\",\"ԴԵԿ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM, yyyy H:mm\",\n\t\t\t\tF: \"d MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.id-ID.js",
    "content": "/*\n * Globalize Culture id-ID\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"id-ID\", \"default\", {\n\tname: \"id-ID\",\n\tenglishName: \"Indonesian (Indonesia)\",\n\tnativeName: \"Bahasa Indonesia (Indonesia)\",\n\tlanguage: \"id\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Rp\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Minggu\",\"Senin\",\"Selasa\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Minggu\",\"Sen\",\"Sel\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"M\",\"S\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Maret\",\"April\",\"Mei\",\"Juni\",\"Juli\",\"Agustus\",\"September\",\"Oktober\",\"Nopember\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Agust\",\"Sep\",\"Okt\",\"Nop\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.id.js",
    "content": "/*\n * Globalize Culture id\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"id\", \"default\", {\n\tname: \"id\",\n\tenglishName: \"Indonesian\",\n\tnativeName: \"Bahasa Indonesia\",\n\tlanguage: \"id\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Rp\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Minggu\",\"Senin\",\"Selasa\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Minggu\",\"Sen\",\"Sel\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"M\",\"S\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Maret\",\"April\",\"Mei\",\"Juni\",\"Juli\",\"Agustus\",\"September\",\"Oktober\",\"Nopember\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Agust\",\"Sep\",\"Okt\",\"Nop\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ig-NG.js",
    "content": "/*\n * Globalize Culture ig-NG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ig-NG\", \"default\", {\n\tname: \"ig-NG\",\n\tenglishName: \"Igbo (Nigeria)\",\n\tnativeName: \"Igbo (Nigeria)\",\n\tlanguage: \"ig\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Onwa mbu\",\"Onwa ibua\",\"Onwa ato\",\"Onwa ano\",\"Onwa ise\",\"Onwa isi\",\"Onwa asa\",\"Onwa asato\",\"Onwa itolu\",\"Onwa iri\",\"Onwa iri n'ofu\",\"Onwa iri n'ibua\",\"\"],\n\t\t\t\tnamesAbbr: [\"mbu.\",\"ibu.\",\"ato.\",\"ano.\",\"ise\",\"isi\",\"asa\",\"asa.\",\"ito.\",\"iri.\",\"n'of.\",\"n'ib.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Ututu\",\"ututu\",\"UTUTU\"],\n\t\t\tPM: [\"Efifie\",\"efifie\",\"EFIFIE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ig.js",
    "content": "/*\n * Globalize Culture ig\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ig\", \"default\", {\n\tname: \"ig\",\n\tenglishName: \"Igbo\",\n\tnativeName: \"Igbo\",\n\tlanguage: \"ig\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Onwa mbu\",\"Onwa ibua\",\"Onwa ato\",\"Onwa ano\",\"Onwa ise\",\"Onwa isi\",\"Onwa asa\",\"Onwa asato\",\"Onwa itolu\",\"Onwa iri\",\"Onwa iri n'ofu\",\"Onwa iri n'ibua\",\"\"],\n\t\t\t\tnamesAbbr: [\"mbu.\",\"ibu.\",\"ato.\",\"ano.\",\"ise\",\"isi\",\"asa\",\"asa.\",\"ito.\",\"iri.\",\"n'of.\",\"n'ib.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Ututu\",\"ututu\",\"UTUTU\"],\n\t\t\tPM: [\"Efifie\",\"efifie\",\"EFIFIE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ii-CN.js",
    "content": "/*\n * Globalize Culture ii-CN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ii-CN\", \"default\", {\n\tname: \"ii-CN\",\n\tenglishName: \"Yi (PRC)\",\n\tnativeName: \"ꆈꌠꁱꂷ (ꍏꉸꏓꂱꇭꉼꇩ)\",\n\tlanguage: \"ii\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ꌗꂷꀋꉬ\",\n\t\tnegativeInfinity: \"ꀄꊭꌐꀋꉆ\",\n\t\tpositiveInfinity: \"ꈤꇁꑖꀋꉬ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ꑭꆏꑍ\",\"ꆏꊂ꒔\",\"ꆏꊂꑍ\",\"ꆏꊂꌕ\",\"ꆏꊂꇖ\",\"ꆏꊂꉬ\",\"ꆏꊂꃘ\"],\n\t\t\t\tnamesAbbr: [\"ꑭꆏ\",\"ꆏ꒔\",\"ꆏꑍ\",\"ꆏꌕ\",\"ꆏꇖ\",\"ꆏꉬ\",\"ꆏꃘ\"],\n\t\t\t\tnamesShort: [\"ꆏ\",\"꒔\",\"ꑍ\",\"ꌕ\",\"ꇖ\",\"ꉬ\",\"ꃘ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\"],\n\t\t\tPM: [\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\"],\n\t\t\teras: [{\"name\":\"ꇬꑼ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ꈎ' M'ꆪ' d'ꑍ'\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' tt h:mm\",\n\t\t\t\tF: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' H:mm:ss\",\n\t\t\t\tM: \"M'ꆪ' d'ꑍ'\",\n\t\t\t\tY: \"yyyy'ꈎ' M'ꆪ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ii.js",
    "content": "/*\n * Globalize Culture ii\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ii\", \"default\", {\n\tname: \"ii\",\n\tenglishName: \"Yi\",\n\tnativeName: \"ꆈꌠꁱꂷ\",\n\tlanguage: \"ii\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ꌗꂷꀋꉬ\",\n\t\tnegativeInfinity: \"ꀄꊭꌐꀋꉆ\",\n\t\tpositiveInfinity: \"ꈤꇁꑖꀋꉬ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ꑭꆏꑍ\",\"ꆏꊂ꒔\",\"ꆏꊂꑍ\",\"ꆏꊂꌕ\",\"ꆏꊂꇖ\",\"ꆏꊂꉬ\",\"ꆏꊂꃘ\"],\n\t\t\t\tnamesAbbr: [\"ꑭꆏ\",\"ꆏ꒔\",\"ꆏꑍ\",\"ꆏꌕ\",\"ꆏꇖ\",\"ꆏꉬ\",\"ꆏꃘ\"],\n\t\t\t\tnamesShort: [\"ꆏ\",\"꒔\",\"ꑍ\",\"ꌕ\",\"ꇖ\",\"ꉬ\",\"ꃘ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\"],\n\t\t\tPM: [\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\"],\n\t\t\teras: [{\"name\":\"ꇬꑼ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ꈎ' M'ꆪ' d'ꑍ'\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' tt h:mm\",\n\t\t\t\tF: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' H:mm:ss\",\n\t\t\t\tM: \"M'ꆪ' d'ꑍ'\",\n\t\t\t\tY: \"yyyy'ꈎ' M'ꆪ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.is-IS.js",
    "content": "/*\n * Globalize Culture is-IS\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"is-IS\", \"default\", {\n\tname: \"is-IS\",\n\tenglishName: \"Icelandic (Iceland)\",\n\tnativeName: \"íslenska (Ísland)\",\n\tlanguage: \"is\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánudagur\",\"þriðjudagur\",\"miðvikudagur\",\"fimmtudagur\",\"föstudagur\",\"laugardagur\"],\n\t\t\t\tnamesAbbr: [\"sun.\",\"mán.\",\"þri.\",\"mið.\",\"fim.\",\"fös.\",\"lau.\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"þr\",\"mi\",\"fi\",\"fö\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janúar\",\"febrúar\",\"mars\",\"apríl\",\"maí\",\"júní\",\"júlí\",\"ágúst\",\"september\",\"október\",\"nóvember\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"feb.\",\"mar.\",\"apr.\",\"maí\",\"jún.\",\"júl.\",\"ágú.\",\"sep.\",\"okt.\",\"nóv.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.is.js",
    "content": "/*\n * Globalize Culture is\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"is\", \"default\", {\n\tname: \"is\",\n\tenglishName: \"Icelandic\",\n\tnativeName: \"íslenska\",\n\tlanguage: \"is\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánudagur\",\"þriðjudagur\",\"miðvikudagur\",\"fimmtudagur\",\"föstudagur\",\"laugardagur\"],\n\t\t\t\tnamesAbbr: [\"sun.\",\"mán.\",\"þri.\",\"mið.\",\"fim.\",\"fös.\",\"lau.\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"þr\",\"mi\",\"fi\",\"fö\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janúar\",\"febrúar\",\"mars\",\"apríl\",\"maí\",\"júní\",\"júlí\",\"ágúst\",\"september\",\"október\",\"nóvember\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"feb.\",\"mar.\",\"apr.\",\"maí\",\"jún.\",\"júl.\",\"ágú.\",\"sep.\",\"okt.\",\"nóv.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.it-CH.js",
    "content": "/*\n * Globalize Culture it-CH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"it-CH\", \"default\", {\n\tname: \"it-CH\",\n\tenglishName: \"Italian (Switzerland)\",\n\tnativeName: \"italiano (Svizzera)\",\n\tlanguage: \"it\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"Non un numero reale\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domenica\",\"lunedì\",\"martedì\",\"mercoledì\",\"giovedì\",\"venerdì\",\"sabato\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mer\",\"gio\",\"ven\",\"sab\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"me\",\"gi\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gennaio\",\"febbraio\",\"marzo\",\"aprile\",\"maggio\",\"giugno\",\"luglio\",\"agosto\",\"settembre\",\"ottobre\",\"novembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"mar\",\"apr\",\"mag\",\"giu\",\"lug\",\"ago\",\"set\",\"ott\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.it-IT.js",
    "content": "/*\n * Globalize Culture it-IT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"it-IT\", \"default\", {\n\tname: \"it-IT\",\n\tenglishName: \"Italian (Italy)\",\n\tnativeName: \"italiano (Italia)\",\n\tlanguage: \"it\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non un numero reale\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domenica\",\"lunedì\",\"martedì\",\"mercoledì\",\"giovedì\",\"venerdì\",\"sabato\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mer\",\"gio\",\"ven\",\"sab\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"me\",\"gi\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gennaio\",\"febbraio\",\"marzo\",\"aprile\",\"maggio\",\"giugno\",\"luglio\",\"agosto\",\"settembre\",\"ottobre\",\"novembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"mar\",\"apr\",\"mag\",\"giu\",\"lug\",\"ago\",\"set\",\"ott\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.it.js",
    "content": "/*\n * Globalize Culture it\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"it\", \"default\", {\n\tname: \"it\",\n\tenglishName: \"Italian\",\n\tnativeName: \"italiano\",\n\tlanguage: \"it\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non un numero reale\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domenica\",\"lunedì\",\"martedì\",\"mercoledì\",\"giovedì\",\"venerdì\",\"sabato\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mer\",\"gio\",\"ven\",\"sab\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"me\",\"gi\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gennaio\",\"febbraio\",\"marzo\",\"aprile\",\"maggio\",\"giugno\",\"luglio\",\"agosto\",\"settembre\",\"ottobre\",\"novembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"mar\",\"apr\",\"mag\",\"giu\",\"lug\",\"ago\",\"set\",\"ott\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.iu-Cans-CA.js",
    "content": "/*\n * Globalize Culture iu-Cans-CA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"iu-Cans-CA\", \"default\", {\n\tname: \"iu-Cans-CA\",\n\tenglishName: \"Inuktitut (Syllabics, Canada)\",\n\tnativeName: \"ᐃᓄᒃᑎᑐᑦ (ᑲᓇᑕᒥ)\",\n\tlanguage: \"iu-Cans\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᓈᑦᑏᖑᔭ\",\"ᓇᒡᒐᔾᔭᐅ\",\"ᐊᐃᑉᐱᖅ\",\"ᐱᖓᑦᓯᖅ\",\"ᓯᑕᒻᒥᖅ\",\"ᑕᓪᓕᕐᒥᖅ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesAbbr: [\"ᓈᑦᑏ\",\"ᓇᒡᒐ\",\"ᐊᐃᑉᐱ\",\"ᐱᖓᑦᓯ\",\"ᓯᑕ\",\"ᑕᓪᓕ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesShort: [\"ᓈ\",\"ᓇ\",\"ᐊ\",\"ᐱ\",\"ᓯ\",\"ᑕ\",\"ᓯ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᔮᓐᓄᐊᕆ\",\"ᕖᕝᕗᐊᕆ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌᓯ\",\"ᓯᑎᐱᕆ\",\"ᐅᑐᐱᕆ\",\"ᓄᕕᐱᕆ\",\"ᑎᓯᐱᕆ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᔮᓐᓄ\",\"ᕖᕝᕗ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌ\",\"ᓯᑎᐱ\",\"ᐅᑐᐱ\",\"ᓄᕕᐱ\",\"ᑎᓯᐱ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd,MMMM dd,yyyy\",\n\t\t\t\tf: \"dddd,MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"dddd,MMMM dd,yyyy h:mm:ss tt\",\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.iu-Cans.js",
    "content": "/*\n * Globalize Culture iu-Cans\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"iu-Cans\", \"default\", {\n\tname: \"iu-Cans\",\n\tenglishName: \"Inuktitut (Syllabics)\",\n\tnativeName: \"ᐃᓄᒃᑎᑐᑦ\",\n\tlanguage: \"iu-Cans\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᓈᑦᑏᖑᔭ\",\"ᓇᒡᒐᔾᔭᐅ\",\"ᐊᐃᑉᐱᖅ\",\"ᐱᖓᑦᓯᖅ\",\"ᓯᑕᒻᒥᖅ\",\"ᑕᓪᓕᕐᒥᖅ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesAbbr: [\"ᓈᑦᑏ\",\"ᓇᒡᒐ\",\"ᐊᐃᑉᐱ\",\"ᐱᖓᑦᓯ\",\"ᓯᑕ\",\"ᑕᓪᓕ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesShort: [\"ᓈ\",\"ᓇ\",\"ᐊ\",\"ᐱ\",\"ᓯ\",\"ᑕ\",\"ᓯ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᔮᓐᓄᐊᕆ\",\"ᕖᕝᕗᐊᕆ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌᓯ\",\"ᓯᑎᐱᕆ\",\"ᐅᑐᐱᕆ\",\"ᓄᕕᐱᕆ\",\"ᑎᓯᐱᕆ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᔮᓐᓄ\",\"ᕖᕝᕗ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌ\",\"ᓯᑎᐱ\",\"ᐅᑐᐱ\",\"ᓄᕕᐱ\",\"ᑎᓯᐱ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd,MMMM dd,yyyy\",\n\t\t\t\tf: \"dddd,MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"dddd,MMMM dd,yyyy h:mm:ss tt\",\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.iu-Latn-CA.js",
    "content": "/*\n * Globalize Culture iu-Latn-CA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"iu-Latn-CA\", \"default\", {\n\tname: \"iu-Latn-CA\",\n\tenglishName: \"Inuktitut (Latin, Canada)\",\n\tnativeName: \"Inuktitut (Kanatami)\",\n\tlanguage: \"iu-Latn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Naattiinguja\",\"Naggajjau\",\"Aippiq\",\"Pingatsiq\",\"Sitammiq\",\"Tallirmiq\",\"Sivataarvik\"],\n\t\t\t\tnamesAbbr: [\"Nat\",\"Nag\",\"Aip\",\"Pi\",\"Sit\",\"Tal\",\"Siv\"],\n\t\t\t\tnamesShort: [\"N\",\"N\",\"A\",\"P\",\"S\",\"T\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jaannuari\",\"Viivvuari\",\"Maatsi\",\"Iipuri\",\"Mai\",\"Juuni\",\"Julai\",\"Aaggiisi\",\"Sitipiri\",\"Utupiri\",\"Nuvipiri\",\"Tisipiri\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Viv\",\"Mas\",\"Ipu\",\"Mai\",\"Jun\",\"Jul\",\"Agi\",\"Sii\",\"Uut\",\"Nuv\",\"Tis\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"ddd, MMMM dd,yyyy\",\n\t\t\t\tf: \"ddd, MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"ddd, MMMM dd,yyyy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.iu-Latn.js",
    "content": "/*\n * Globalize Culture iu-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"iu-Latn\", \"default\", {\n\tname: \"iu-Latn\",\n\tenglishName: \"Inuktitut (Latin)\",\n\tnativeName: \"Inuktitut\",\n\tlanguage: \"iu-Latn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Naattiinguja\",\"Naggajjau\",\"Aippiq\",\"Pingatsiq\",\"Sitammiq\",\"Tallirmiq\",\"Sivataarvik\"],\n\t\t\t\tnamesAbbr: [\"Nat\",\"Nag\",\"Aip\",\"Pi\",\"Sit\",\"Tal\",\"Siv\"],\n\t\t\t\tnamesShort: [\"N\",\"N\",\"A\",\"P\",\"S\",\"T\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jaannuari\",\"Viivvuari\",\"Maatsi\",\"Iipuri\",\"Mai\",\"Juuni\",\"Julai\",\"Aaggiisi\",\"Sitipiri\",\"Utupiri\",\"Nuvipiri\",\"Tisipiri\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Viv\",\"Mas\",\"Ipu\",\"Mai\",\"Jun\",\"Jul\",\"Agi\",\"Sii\",\"Uut\",\"Nuv\",\"Tis\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"ddd, MMMM dd,yyyy\",\n\t\t\t\tf: \"ddd, MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"ddd, MMMM dd,yyyy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.iu.js",
    "content": "/*\n * Globalize Culture iu\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"iu\", \"default\", {\n\tname: \"iu\",\n\tenglishName: \"Inuktitut\",\n\tnativeName: \"Inuktitut\",\n\tlanguage: \"iu\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Naattiinguja\",\"Naggajjau\",\"Aippiq\",\"Pingatsiq\",\"Sitammiq\",\"Tallirmiq\",\"Sivataarvik\"],\n\t\t\t\tnamesAbbr: [\"Nat\",\"Nag\",\"Aip\",\"Pi\",\"Sit\",\"Tal\",\"Siv\"],\n\t\t\t\tnamesShort: [\"N\",\"N\",\"A\",\"P\",\"S\",\"T\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jaannuari\",\"Viivvuari\",\"Maatsi\",\"Iipuri\",\"Mai\",\"Juuni\",\"Julai\",\"Aaggiisi\",\"Sitipiri\",\"Utupiri\",\"Nuvipiri\",\"Tisipiri\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Viv\",\"Mas\",\"Ipu\",\"Mai\",\"Jun\",\"Jul\",\"Agi\",\"Sii\",\"Uut\",\"Nuv\",\"Tis\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"ddd, MMMM dd,yyyy\",\n\t\t\t\tf: \"ddd, MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"ddd, MMMM dd,yyyy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ja-JP.js",
    "content": "/*\n * Globalize Culture ja-JP\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ja-JP\", \"default\", {\n\tname: \"ja-JP\",\n\tenglishName: \"Japanese (Japan)\",\n\tnativeName: \"日本語 (日本)\",\n\tlanguage: \"ja\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NaN (非数値)\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"+∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"西暦\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t},\n\t\tJapanese: {\n\t\t\tname: \"Japanese\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"平成\",\"start\":null,\"offset\":1867},{\"name\":\"昭和\",\"start\":-1812153600000,\"offset\":1911},{\"name\":\"大正\",\"start\":-1357603200000,\"offset\":1925},{\"name\":\"明治\",\"start\":60022080000,\"offset\":1988}],\n\t\t\ttwoDigitYearMax: 99,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg y/M/d\",\n\t\t\t\tD: \"gg y'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"gg y'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"gg y'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"gg y'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ja.js",
    "content": "/*\n * Globalize Culture ja\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ja\", \"default\", {\n\tname: \"ja\",\n\tenglishName: \"Japanese\",\n\tnativeName: \"日本語\",\n\tlanguage: \"ja\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NaN (非数値)\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"+∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"西暦\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t},\n\t\tJapanese: {\n\t\t\tname: \"Japanese\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"平成\",\"start\":null,\"offset\":1867},{\"name\":\"昭和\",\"start\":-1812153600000,\"offset\":1911},{\"name\":\"大正\",\"start\":-1357603200000,\"offset\":1925},{\"name\":\"明治\",\"start\":60022080000,\"offset\":1988}],\n\t\t\ttwoDigitYearMax: 99,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg y/M/d\",\n\t\t\t\tD: \"gg y'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"gg y'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"gg y'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"gg y'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ka-GE.js",
    "content": "/*\n * Globalize Culture ka-GE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ka-GE\", \"default\", {\n\tname: \"ka-GE\",\n\tenglishName: \"Georgian (Georgia)\",\n\tnativeName: \"ქართული (საქართველო)\",\n\tlanguage: \"ka\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lari\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesAbbr: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesShort: [\"კ\",\"ო\",\"ს\",\"ო\",\"ხ\",\"პ\",\"შ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"იანვარი\",\"თებერვალი\",\"მარტი\",\"აპრილი\",\"მაისი\",\"ივნისი\",\"ივლისი\",\"აგვისტო\",\"სექტემბერი\",\"ოქტომბერი\",\"ნოემბერი\",\"დეკემბერი\",\"\"],\n\t\t\t\tnamesAbbr: [\"იან\",\"თებ\",\"მარ\",\"აპრ\",\"მაის\",\"ივნ\",\"ივლ\",\"აგვ\",\"სექ\",\"ოქტ\",\"ნოემ\",\"დეკ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'წლის' dd MM, dddd\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'წლის' dd MM, dddd H:mm\",\n\t\t\t\tF: \"yyyy 'წლის' dd MM, dddd H:mm:ss\",\n\t\t\t\tM: \"dd MM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ka.js",
    "content": "/*\n * Globalize Culture ka\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ka\", \"default\", {\n\tname: \"ka\",\n\tenglishName: \"Georgian\",\n\tnativeName: \"ქართული\",\n\tlanguage: \"ka\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lari\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesAbbr: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesShort: [\"კ\",\"ო\",\"ს\",\"ო\",\"ხ\",\"პ\",\"შ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"იანვარი\",\"თებერვალი\",\"მარტი\",\"აპრილი\",\"მაისი\",\"ივნისი\",\"ივლისი\",\"აგვისტო\",\"სექტემბერი\",\"ოქტომბერი\",\"ნოემბერი\",\"დეკემბერი\",\"\"],\n\t\t\t\tnamesAbbr: [\"იან\",\"თებ\",\"მარ\",\"აპრ\",\"მაის\",\"ივნ\",\"ივლ\",\"აგვ\",\"სექ\",\"ოქტ\",\"ნოემ\",\"დეკ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'წლის' dd MM, dddd\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'წლის' dd MM, dddd H:mm\",\n\t\t\t\tF: \"yyyy 'წლის' dd MM, dddd H:mm:ss\",\n\t\t\t\tM: \"dd MM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kk-KZ.js",
    "content": "/*\n * Globalize Culture kk-KZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kk-KZ\", \"default\", {\n\tname: \"kk-KZ\",\n\tenglishName: \"Kazakh (Kazakhstan)\",\n\tnativeName: \"Қазақ (Қазақстан)\",\n\tlanguage: \"kk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"Т\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жексенбі\",\"Дүйсенбі\",\"Сейсенбі\",\"Сәрсенбі\",\"Бейсенбі\",\"Жұма\",\"Сенбі\"],\n\t\t\t\tnamesAbbr: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"],\n\t\t\t\tnamesShort: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"қаңтар\",\"ақпан\",\"наурыз\",\"сәуір\",\"мамыр\",\"маусым\",\"шілде\",\"тамыз\",\"қыркүйек\",\"қазан\",\"қараша\",\"желтоқсан\",\"\"],\n\t\t\t\tnamesAbbr: [\"Қаң\",\"Ақп\",\"Нау\",\"Сәу\",\"Мам\",\"Мау\",\"Шіл\",\"Там\",\"Қыр\",\"Қаз\",\"Қар\",\"Жел\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'ж.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kk.js",
    "content": "/*\n * Globalize Culture kk\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kk\", \"default\", {\n\tname: \"kk\",\n\tenglishName: \"Kazakh\",\n\tnativeName: \"Қазақ\",\n\tlanguage: \"kk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"Т\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жексенбі\",\"Дүйсенбі\",\"Сейсенбі\",\"Сәрсенбі\",\"Бейсенбі\",\"Жұма\",\"Сенбі\"],\n\t\t\t\tnamesAbbr: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"],\n\t\t\t\tnamesShort: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"қаңтар\",\"ақпан\",\"наурыз\",\"сәуір\",\"мамыр\",\"маусым\",\"шілде\",\"тамыз\",\"қыркүйек\",\"қазан\",\"қараша\",\"желтоқсан\",\"\"],\n\t\t\t\tnamesAbbr: [\"Қаң\",\"Ақп\",\"Нау\",\"Сәу\",\"Мам\",\"Мау\",\"Шіл\",\"Там\",\"Қыр\",\"Қаз\",\"Қар\",\"Жел\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'ж.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kl-GL.js",
    "content": "/*\n * Globalize Culture kl-GL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kl-GL\", \"default\", {\n\tname: \"kl-GL\",\n\tenglishName: \"Greenlandic (Greenland)\",\n\tnativeName: \"kalaallisut (Kalaallit Nunaat)\",\n\tlanguage: \"kl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sapaat\",\"ataasinngorneq\",\"marlunngorneq\",\"pingasunngorneq\",\"sisamanngorneq\",\"tallimanngorneq\",\"arfininngorneq\"],\n\t\t\t\tnamesAbbr: [\"sap\",\"ata\",\"mar\",\"ping\",\"sis\",\"tal\",\"arf\"],\n\t\t\t\tnamesShort: [\"sa\",\"at\",\"ma\",\"pi\",\"si\",\"ta\",\"ar\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"martsi\",\"apriili\",\"maaji\",\"juni\",\"juli\",\"aggusti\",\"septembari\",\"oktobari\",\"novembari\",\"decembari\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kl.js",
    "content": "/*\n * Globalize Culture kl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kl\", \"default\", {\n\tname: \"kl\",\n\tenglishName: \"Greenlandic\",\n\tnativeName: \"kalaallisut\",\n\tlanguage: \"kl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sapaat\",\"ataasinngorneq\",\"marlunngorneq\",\"pingasunngorneq\",\"sisamanngorneq\",\"tallimanngorneq\",\"arfininngorneq\"],\n\t\t\t\tnamesAbbr: [\"sap\",\"ata\",\"mar\",\"ping\",\"sis\",\"tal\",\"arf\"],\n\t\t\t\tnamesShort: [\"sa\",\"at\",\"ma\",\"pi\",\"si\",\"ta\",\"ar\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"martsi\",\"apriili\",\"maaji\",\"juni\",\"juli\",\"aggusti\",\"septembari\",\"oktobari\",\"novembari\",\"decembari\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.km-KH.js",
    "content": "/*\n * Globalize Culture km-KH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"km-KH\", \"default\", {\n\tname: \"km-KH\",\n\tenglishName: \"Khmer (Cambodia)\",\n\tnativeName: \"ខ្មែរ (កម្ពុជា)\",\n\tlanguage: \"km\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-- អនន្ត\",\n\t\tpositiveInfinity: \"អនន្ត\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\tsymbol: \"៛\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ថ្ងៃអាទិត្យ\",\"ថ្ងៃច័ន្ទ\",\"ថ្ងៃអង្គារ\",\"ថ្ងៃពុធ\",\"ថ្ងៃព្រហស្បតិ៍\",\"ថ្ងៃសុក្រ\",\"ថ្ងៃសៅរ៍\"],\n\t\t\t\tnamesAbbr: [\"អាទិ.\",\"ច.\",\"អ.\",\"ពុ\",\"ព្រហ.\",\"សុ.\",\"ស.\"],\n\t\t\t\tnamesShort: [\"អា\",\"ច\",\"អ\",\"ពុ\",\"ព្\",\"សុ\",\"ស\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"មករា\",\"កុម្ភៈ\",\"មិនា\",\"មេសា\",\"ឧសភា\",\"មិថុនា\",\"កក្កដា\",\"សីហា\",\"កញ្ញា\",\"តុលា\",\"វិច្ឆិកា\",\"ធ្នូ\",\"\"],\n\t\t\t\tnamesAbbr: [\"១\",\"២\",\"៣\",\"៤\",\"៥\",\"៦\",\"៧\",\"៨\",\"៩\",\"១០\",\"១១\",\"១២\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"មុនគ.ស.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'ថ្ងៃទី' dd 'ខែ' MM\",\n\t\t\t\tY: \"'ខែ' MM 'ឆ្នាំ' yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy HH:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.km.js",
    "content": "/*\n * Globalize Culture km\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"km\", \"default\", {\n\tname: \"km\",\n\tenglishName: \"Khmer\",\n\tnativeName: \"ខ្មែរ\",\n\tlanguage: \"km\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-- អនន្ត\",\n\t\tpositiveInfinity: \"អនន្ត\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\tsymbol: \"៛\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ថ្ងៃអាទិត្យ\",\"ថ្ងៃច័ន្ទ\",\"ថ្ងៃអង្គារ\",\"ថ្ងៃពុធ\",\"ថ្ងៃព្រហស្បតិ៍\",\"ថ្ងៃសុក្រ\",\"ថ្ងៃសៅរ៍\"],\n\t\t\t\tnamesAbbr: [\"អាទិ.\",\"ច.\",\"អ.\",\"ពុ\",\"ព្រហ.\",\"សុ.\",\"ស.\"],\n\t\t\t\tnamesShort: [\"អា\",\"ច\",\"អ\",\"ពុ\",\"ព្\",\"សុ\",\"ស\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"មករា\",\"កុម្ភៈ\",\"មិនា\",\"មេសា\",\"ឧសភា\",\"មិថុនា\",\"កក្កដា\",\"សីហា\",\"កញ្ញា\",\"តុលា\",\"វិច្ឆិកា\",\"ធ្នូ\",\"\"],\n\t\t\t\tnamesAbbr: [\"១\",\"២\",\"៣\",\"៤\",\"៥\",\"៦\",\"៧\",\"៨\",\"៩\",\"១០\",\"១១\",\"១២\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"មុនគ.ស.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'ថ្ងៃទី' dd 'ខែ' MM\",\n\t\t\t\tY: \"'ខែ' MM 'ឆ្នាំ' yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy HH:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kn-IN.js",
    "content": "/*\n * Globalize Culture kn-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kn-IN\", \"default\", {\n\tname: \"kn-IN\",\n\tenglishName: \"Kannada (India)\",\n\tnativeName: \"ಕನ್ನಡ (ಭಾರತ)\",\n\tlanguage: \"kn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ರೂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ಭಾನುವಾರ\",\"ಸೋಮವಾರ\",\"ಮಂಗಳವಾರ\",\"ಬುಧವಾರ\",\"ಗುರುವಾರ\",\"ಶುಕ್ರವಾರ\",\"ಶನಿವಾರ\"],\n\t\t\t\tnamesAbbr: [\"ಭಾನು.\",\"ಸೋಮ.\",\"ಮಂಗಳ.\",\"ಬುಧ.\",\"ಗುರು.\",\"ಶುಕ್ರ.\",\"ಶನಿ.\"],\n\t\t\t\tnamesShort: [\"ರ\",\"ಸ\",\"ಮ\",\"ಬ\",\"ಗ\",\"ಶ\",\"ಶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"],\n\t\t\t\tnamesAbbr: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\"],\n\t\t\tPM: [\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kn.js",
    "content": "/*\n * Globalize Culture kn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kn\", \"default\", {\n\tname: \"kn\",\n\tenglishName: \"Kannada\",\n\tnativeName: \"ಕನ್ನಡ\",\n\tlanguage: \"kn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ರೂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ಭಾನುವಾರ\",\"ಸೋಮವಾರ\",\"ಮಂಗಳವಾರ\",\"ಬುಧವಾರ\",\"ಗುರುವಾರ\",\"ಶುಕ್ರವಾರ\",\"ಶನಿವಾರ\"],\n\t\t\t\tnamesAbbr: [\"ಭಾನು.\",\"ಸೋಮ.\",\"ಮಂಗಳ.\",\"ಬುಧ.\",\"ಗುರು.\",\"ಶುಕ್ರ.\",\"ಶನಿ.\"],\n\t\t\t\tnamesShort: [\"ರ\",\"ಸ\",\"ಮ\",\"ಬ\",\"ಗ\",\"ಶ\",\"ಶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"],\n\t\t\t\tnamesAbbr: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\"],\n\t\t\tPM: [\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ko-KR.js",
    "content": "/*\n * Globalize Culture ko-KR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ko-KR\", \"default\", {\n\tname: \"ko-KR\",\n\tenglishName: \"Korean (Korea)\",\n\tnativeName: \"한국어 (대한민국)\",\n\tlanguage: \"ko\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"₩\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"서기\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"yyyy'년' M'월'\"\n\t\t\t}\n\t\t},\n\t\tKorean: {\n\t\t\tname: \"Korean\",\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"단기\",\"start\":null,\"offset\":-2333}],\n\t\t\ttwoDigitYearMax: 4362,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg yyyy-MM-dd\",\n\t\t\t\tD: \"gg yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"gg yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"gg yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"gg yyyy'년' M'월'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ko.js",
    "content": "/*\n * Globalize Culture ko\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ko\", \"default\", {\n\tname: \"ko\",\n\tenglishName: \"Korean\",\n\tnativeName: \"한국어\",\n\tlanguage: \"ko\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"₩\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"서기\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"yyyy'년' M'월'\"\n\t\t\t}\n\t\t},\n\t\tKorean: {\n\t\t\tname: \"Korean\",\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"단기\",\"start\":null,\"offset\":-2333}],\n\t\t\ttwoDigitYearMax: 4362,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg yyyy-MM-dd\",\n\t\t\t\tD: \"gg yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"gg yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"gg yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"gg yyyy'년' M'월'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kok-IN.js",
    "content": "/*\n * Globalize Culture kok-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kok-IN\", \"default\", {\n\tname: \"kok-IN\",\n\tenglishName: \"Konkani (India)\",\n\tnativeName: \"कोंकणी (भारत)\",\n\tlanguage: \"kok\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"आयतार\",\"सोमार\",\"मंगळार\",\"बुधवार\",\"बिरेस्तार\",\"सुक्रार\",\"शेनवार\"],\n\t\t\t\tnamesAbbr: [\"आय.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"बिरे.\",\"सुक्र.\",\"शेन.\"],\n\t\t\t\tnamesShort: [\"आ\",\"स\",\"म\",\"ब\",\"ब\",\"स\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.kok.js",
    "content": "/*\n * Globalize Culture kok\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"kok\", \"default\", {\n\tname: \"kok\",\n\tenglishName: \"Konkani\",\n\tnativeName: \"कोंकणी\",\n\tlanguage: \"kok\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"आयतार\",\"सोमार\",\"मंगळार\",\"बुधवार\",\"बिरेस्तार\",\"सुक्रार\",\"शेनवार\"],\n\t\t\t\tnamesAbbr: [\"आय.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"बिरे.\",\"सुक्र.\",\"शेन.\"],\n\t\t\t\tnamesShort: [\"आ\",\"स\",\"म\",\"ब\",\"ब\",\"स\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ky-KG.js",
    "content": "/*\n * Globalize Culture ky-KG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ky-KG\", \"default\", {\n\tname: \"ky-KG\",\n\tenglishName: \"Kyrgyz (Kyrgyzstan)\",\n\tnativeName: \"Кыргыз (Кыргызстан)\",\n\tlanguage: \"ky\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"сом\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жекшемби\",\"Дүйшөмбү\",\"Шейшемби\",\"Шаршемби\",\"Бейшемби\",\"Жума\",\"Ишемби\"],\n\t\t\t\tnamesAbbr: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"],\n\t\t\t\tnamesShort: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d'-'MMMM yyyy'-ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d'-'MMMM yyyy'-ж.' H:mm\",\n\t\t\t\tF: \"d'-'MMMM yyyy'-ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy'-ж.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ky.js",
    "content": "/*\n * Globalize Culture ky\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ky\", \"default\", {\n\tname: \"ky\",\n\tenglishName: \"Kyrgyz\",\n\tnativeName: \"Кыргыз\",\n\tlanguage: \"ky\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"сом\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жекшемби\",\"Дүйшөмбү\",\"Шейшемби\",\"Шаршемби\",\"Бейшемби\",\"Жума\",\"Ишемби\"],\n\t\t\t\tnamesAbbr: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"],\n\t\t\t\tnamesShort: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d'-'MMMM yyyy'-ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d'-'MMMM yyyy'-ж.' H:mm\",\n\t\t\t\tF: \"d'-'MMMM yyyy'-ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy'-ж.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lb-LU.js",
    "content": "/*\n * Globalize Culture lb-LU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lb-LU\", \"default\", {\n\tname: \"lb-LU\",\n\tenglishName: \"Luxembourgish (Luxembourg)\",\n\tnativeName: \"Lëtzebuergesch (Luxembourg)\",\n\tlanguage: \"lb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. num.\",\n\t\tnegativeInfinity: \"-onendlech\",\n\t\tpositiveInfinity: \"+onendlech\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonndeg\",\"Méindeg\",\"Dënschdeg\",\"Mëttwoch\",\"Donneschdeg\",\"Freideg\",\"Samschdeg\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Méi\",\"Dën\",\"Mët\",\"Don\",\"Fre\",\"Sam\"],\n\t\t\t\tnamesShort: [\"So\",\"Mé\",\"Dë\",\"Më\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"Mäerz\",\"Abrëll\",\"Mee\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mäe\",\"Abr\",\"Mee\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lb.js",
    "content": "/*\n * Globalize Culture lb\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lb\", \"default\", {\n\tname: \"lb\",\n\tenglishName: \"Luxembourgish\",\n\tnativeName: \"Lëtzebuergesch\",\n\tlanguage: \"lb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. num.\",\n\t\tnegativeInfinity: \"-onendlech\",\n\t\tpositiveInfinity: \"+onendlech\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonndeg\",\"Méindeg\",\"Dënschdeg\",\"Mëttwoch\",\"Donneschdeg\",\"Freideg\",\"Samschdeg\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Méi\",\"Dën\",\"Mët\",\"Don\",\"Fre\",\"Sam\"],\n\t\t\t\tnamesShort: [\"So\",\"Mé\",\"Dë\",\"Më\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"Mäerz\",\"Abrëll\",\"Mee\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mäe\",\"Abr\",\"Mee\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lo-LA.js",
    "content": "/*\n * Globalize Culture lo-LA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lo-LA\", \"default\", {\n\tname: \"lo-LA\",\n\tenglishName: \"Lao (Lao P.D.R.)\",\n\tnativeName: \"ລາວ (ສ.ປ.ປ. ລາວ)\",\n\tlanguage: \"lo\",\n\tnumberFormat: {\n\t\tpattern: [\"(n)\"],\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"(n$)\",\"n$\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"₭\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ວັນອາທິດ\",\"ວັນຈັນ\",\"ວັນອັງຄານ\",\"ວັນພຸດ\",\"ວັນພະຫັດ\",\"ວັນສຸກ\",\"ວັນເສົາ\"],\n\t\t\t\tnamesAbbr: [\"ອາທິດ\",\"ຈັນ\",\"ອັງຄານ\",\"ພຸດ\",\"ພະຫັດ\",\"ສຸກ\",\"ເສົາ\"],\n\t\t\t\tnamesShort: [\"ອ\",\"ຈ\",\"ອ\",\"ພ\",\"ພ\",\"ສ\",\"ເ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ເຊົ້າ\",\"ເຊົ້າ\",\"ເຊົ້າ\"],\n\t\t\tPM: [\"ແລງ\",\"ແລງ\",\"ແລງ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lo.js",
    "content": "/*\n * Globalize Culture lo\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lo\", \"default\", {\n\tname: \"lo\",\n\tenglishName: \"Lao\",\n\tnativeName: \"ລາວ\",\n\tlanguage: \"lo\",\n\tnumberFormat: {\n\t\tpattern: [\"(n)\"],\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"(n$)\",\"n$\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"₭\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ວັນອາທິດ\",\"ວັນຈັນ\",\"ວັນອັງຄານ\",\"ວັນພຸດ\",\"ວັນພະຫັດ\",\"ວັນສຸກ\",\"ວັນເສົາ\"],\n\t\t\t\tnamesAbbr: [\"ອາທິດ\",\"ຈັນ\",\"ອັງຄານ\",\"ພຸດ\",\"ພະຫັດ\",\"ສຸກ\",\"ເສົາ\"],\n\t\t\t\tnamesShort: [\"ອ\",\"ຈ\",\"ອ\",\"ພ\",\"ພ\",\"ສ\",\"ເ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ເຊົ້າ\",\"ເຊົ້າ\",\"ເຊົ້າ\"],\n\t\t\tPM: [\"ແລງ\",\"ແລງ\",\"ແລງ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lt-LT.js",
    "content": "/*\n * Globalize Culture lt-LT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lt-LT\", \"default\", {\n\tname: \"lt-LT\",\n\tenglishName: \"Lithuanian (Lithuania)\",\n\tnativeName: \"lietuvių (Lietuva)\",\n\tlanguage: \"lt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-begalybė\",\n\t\tpositiveInfinity: \"begalybė\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lt\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sekmadienis\",\"pirmadienis\",\"antradienis\",\"trečiadienis\",\"ketvirtadienis\",\"penktadienis\",\"šeštadienis\"],\n\t\t\t\tnamesAbbr: [\"Sk\",\"Pr\",\"An\",\"Tr\",\"Kt\",\"Pn\",\"Št\"],\n\t\t\t\tnamesShort: [\"S\",\"P\",\"A\",\"T\",\"K\",\"Pn\",\"Š\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"sausis\",\"vasaris\",\"kovas\",\"balandis\",\"gegužė\",\"birželis\",\"liepa\",\"rugpjūtis\",\"rugsėjis\",\"spalis\",\"lapkritis\",\"gruodis\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"sausio\",\"vasario\",\"kovo\",\"balandžio\",\"gegužės\",\"birželio\",\"liepos\",\"rugpjūčio\",\"rugsėjo\",\"spalio\",\"lapkričio\",\"gruodžio\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd\",\n\t\t\t\tD: \"yyyy 'm.' MMMM d 'd.'\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'm.' MMMM d 'd.' HH:mm\",\n\t\t\t\tF: \"yyyy 'm.' MMMM d 'd.' HH:mm:ss\",\n\t\t\t\tM: \"MMMM d 'd.'\",\n\t\t\t\tY: \"yyyy 'm.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lt.js",
    "content": "/*\n * Globalize Culture lt\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lt\", \"default\", {\n\tname: \"lt\",\n\tenglishName: \"Lithuanian\",\n\tnativeName: \"lietuvių\",\n\tlanguage: \"lt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-begalybė\",\n\t\tpositiveInfinity: \"begalybė\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lt\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sekmadienis\",\"pirmadienis\",\"antradienis\",\"trečiadienis\",\"ketvirtadienis\",\"penktadienis\",\"šeštadienis\"],\n\t\t\t\tnamesAbbr: [\"Sk\",\"Pr\",\"An\",\"Tr\",\"Kt\",\"Pn\",\"Št\"],\n\t\t\t\tnamesShort: [\"S\",\"P\",\"A\",\"T\",\"K\",\"Pn\",\"Š\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"sausis\",\"vasaris\",\"kovas\",\"balandis\",\"gegužė\",\"birželis\",\"liepa\",\"rugpjūtis\",\"rugsėjis\",\"spalis\",\"lapkritis\",\"gruodis\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"sausio\",\"vasario\",\"kovo\",\"balandžio\",\"gegužės\",\"birželio\",\"liepos\",\"rugpjūčio\",\"rugsėjo\",\"spalio\",\"lapkričio\",\"gruodžio\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd\",\n\t\t\t\tD: \"yyyy 'm.' MMMM d 'd.'\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'm.' MMMM d 'd.' HH:mm\",\n\t\t\t\tF: \"yyyy 'm.' MMMM d 'd.' HH:mm:ss\",\n\t\t\t\tM: \"MMMM d 'd.'\",\n\t\t\t\tY: \"yyyy 'm.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lv-LV.js",
    "content": "/*\n * Globalize Culture lv-LV\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lv-LV\", \"default\", {\n\tname: \"lv-LV\",\n\tenglishName: \"Latvian (Latvia)\",\n\tnativeName: \"latviešu (Latvija)\",\n\tlanguage: \"lv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-bezgalība\",\n\t\tpositiveInfinity: \"bezgalība\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ls\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"svētdiena\",\"pirmdiena\",\"otrdiena\",\"trešdiena\",\"ceturtdiena\",\"piektdiena\",\"sestdiena\"],\n\t\t\t\tnamesAbbr: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"],\n\t\t\t\tnamesShort: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvāris\",\"februāris\",\"marts\",\"aprīlis\",\"maijs\",\"jūnijs\",\"jūlijs\",\"augusts\",\"septembris\",\"oktobris\",\"novembris\",\"decembris\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"janvārī\",\"februārī\",\"martā\",\"aprīlī\",\"maijā\",\"jūnijā\",\"jūlijā\",\"augustā\",\"septembrī\",\"oktobrī\",\"novembrī\",\"decembrī\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"dddd, yyyy'. gada 'd. MMMM\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy'. gada 'd. MMMM H:mm\",\n\t\t\t\tF: \"dddd, yyyy'. gada 'd. MMMM H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.lv.js",
    "content": "/*\n * Globalize Culture lv\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"lv\", \"default\", {\n\tname: \"lv\",\n\tenglishName: \"Latvian\",\n\tnativeName: \"latviešu\",\n\tlanguage: \"lv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-bezgalība\",\n\t\tpositiveInfinity: \"bezgalība\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ls\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"svētdiena\",\"pirmdiena\",\"otrdiena\",\"trešdiena\",\"ceturtdiena\",\"piektdiena\",\"sestdiena\"],\n\t\t\t\tnamesAbbr: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"],\n\t\t\t\tnamesShort: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvāris\",\"februāris\",\"marts\",\"aprīlis\",\"maijs\",\"jūnijs\",\"jūlijs\",\"augusts\",\"septembris\",\"oktobris\",\"novembris\",\"decembris\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"janvārī\",\"februārī\",\"martā\",\"aprīlī\",\"maijā\",\"jūnijā\",\"jūlijā\",\"augustā\",\"septembrī\",\"oktobrī\",\"novembrī\",\"decembrī\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"dddd, yyyy'. gada 'd. MMMM\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy'. gada 'd. MMMM H:mm\",\n\t\t\t\tF: \"dddd, yyyy'. gada 'd. MMMM H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mi-NZ.js",
    "content": "/*\n * Globalize Culture mi-NZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mi-NZ\", \"default\", {\n\tname: \"mi-NZ\",\n\tenglishName: \"Maori (New Zealand)\",\n\tnativeName: \"Reo Māori (Aotearoa)\",\n\tlanguage: \"mi\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Rātapu\",\"Rāhina\",\"Rātū\",\"Rāapa\",\"Rāpare\",\"Rāmere\",\"Rāhoroi\"],\n\t\t\t\tnamesAbbr: [\"Ta\",\"Hi\",\"Tū\",\"Apa\",\"Pa\",\"Me\",\"Ho\"],\n\t\t\t\tnamesShort: [\"Ta\",\"Hi\",\"Tū\",\"Aa\",\"Pa\",\"Me\",\"Ho\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Kohi-tātea\",\"Hui-tanguru\",\"Poutū-te-rangi\",\"Paenga-whāwhā\",\"Haratua\",\"Pipiri\",\"Hōngongoi\",\"Here-turi-kōkā\",\"Mahuru\",\"Whiringa-ā-nuku\",\"Whiringa-ā-rangi\",\"Hakihea\",\"\"],\n\t\t\t\tnamesAbbr: [\"Kohi\",\"Hui\",\"Pou\",\"Pae\",\"Hara\",\"Pipi\",\"Hōngo\",\"Here\",\"Mahu\",\"Nuku\",\"Rangi\",\"Haki\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM, yyyy\",\n\t\t\t\tf: \"dddd, dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM, yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mi.js",
    "content": "/*\n * Globalize Culture mi\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mi\", \"default\", {\n\tname: \"mi\",\n\tenglishName: \"Maori\",\n\tnativeName: \"Reo Māori\",\n\tlanguage: \"mi\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Rātapu\",\"Rāhina\",\"Rātū\",\"Rāapa\",\"Rāpare\",\"Rāmere\",\"Rāhoroi\"],\n\t\t\t\tnamesAbbr: [\"Ta\",\"Hi\",\"Tū\",\"Apa\",\"Pa\",\"Me\",\"Ho\"],\n\t\t\t\tnamesShort: [\"Ta\",\"Hi\",\"Tū\",\"Aa\",\"Pa\",\"Me\",\"Ho\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Kohi-tātea\",\"Hui-tanguru\",\"Poutū-te-rangi\",\"Paenga-whāwhā\",\"Haratua\",\"Pipiri\",\"Hōngongoi\",\"Here-turi-kōkā\",\"Mahuru\",\"Whiringa-ā-nuku\",\"Whiringa-ā-rangi\",\"Hakihea\",\"\"],\n\t\t\t\tnamesAbbr: [\"Kohi\",\"Hui\",\"Pou\",\"Pae\",\"Hara\",\"Pipi\",\"Hōngo\",\"Here\",\"Mahu\",\"Nuku\",\"Rangi\",\"Haki\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM, yyyy\",\n\t\t\t\tf: \"dddd, dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM, yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mk-MK.js",
    "content": "/*\n * Globalize Culture mk-MK\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mk-MK\", \"default\", {\n\tname: \"mk-MK\",\n\tenglishName: \"Macedonian (Former Yugoslav Republic of Macedonia)\",\n\tnativeName: \"македонски јазик (Македонија)\",\n\tlanguage: \"mk\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ден.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недела\",\"понеделник\",\"вторник\",\"среда\",\"четврток\",\"петок\",\"сабота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"втр\",\"срд\",\"чет\",\"пет\",\"саб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"вт\",\"ср\",\"че\",\"пе\",\"са\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануари\",\"февруари\",\"март\",\"април\",\"мај\",\"јуни\",\"јули\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"фев\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"ное\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mk.js",
    "content": "/*\n * Globalize Culture mk\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mk\", \"default\", {\n\tname: \"mk\",\n\tenglishName: \"Macedonian (FYROM)\",\n\tnativeName: \"македонски јазик\",\n\tlanguage: \"mk\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ден.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недела\",\"понеделник\",\"вторник\",\"среда\",\"четврток\",\"петок\",\"сабота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"втр\",\"срд\",\"чет\",\"пет\",\"саб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"вт\",\"ср\",\"че\",\"пе\",\"са\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануари\",\"февруари\",\"март\",\"април\",\"мај\",\"јуни\",\"јули\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"фев\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"ное\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ml-IN.js",
    "content": "/*\n * Globalize Culture ml-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ml-IN\", \"default\", {\n\tname: \"ml-IN\",\n\tenglishName: \"Malayalam (India)\",\n\tnativeName: \"മലയാളം (ഭാരതം)\",\n\tlanguage: \"ml\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ക\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ഞായറാഴ്ച\",\"തിങ്കളാഴ്ച\",\"ചൊവ്വാഴ്ച\",\"ബുധനാഴ്ച\",\"വ്യാഴാഴ്ച\",\"വെള്ളിയാഴ്ച\",\"ശനിയാഴ്ച\"],\n\t\t\t\tnamesAbbr: [\"ഞായർ.\",\"തിങ്കൾ.\",\"ചൊവ്വ.\",\"ബുധൻ.\",\"വ്യാഴം.\",\"വെള്ളി.\",\"ശനി.\"],\n\t\t\t\tnamesShort: [\"ഞ\",\"ത\",\"ച\",\"ബ\",\"വ\",\"വെ\",\"ശ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"],\n\t\t\t\tnamesAbbr: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ml.js",
    "content": "/*\n * Globalize Culture ml\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ml\", \"default\", {\n\tname: \"ml\",\n\tenglishName: \"Malayalam\",\n\tnativeName: \"മലയാളം\",\n\tlanguage: \"ml\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ക\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ഞായറാഴ്ച\",\"തിങ്കളാഴ്ച\",\"ചൊവ്വാഴ്ച\",\"ബുധനാഴ്ച\",\"വ്യാഴാഴ്ച\",\"വെള്ളിയാഴ്ച\",\"ശനിയാഴ്ച\"],\n\t\t\t\tnamesAbbr: [\"ഞായർ.\",\"തിങ്കൾ.\",\"ചൊവ്വ.\",\"ബുധൻ.\",\"വ്യാഴം.\",\"വെള്ളി.\",\"ശനി.\"],\n\t\t\t\tnamesShort: [\"ഞ\",\"ത\",\"ച\",\"ബ\",\"വ\",\"വെ\",\"ശ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"],\n\t\t\t\tnamesAbbr: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mn-Cyrl.js",
    "content": "/*\n * Globalize Culture mn-Cyrl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mn-Cyrl\", \"default\", {\n\tname: \"mn-Cyrl\",\n\tenglishName: \"Mongolian (Cyrillic)\",\n\tnativeName: \"Монгол хэл\",\n\tlanguage: \"mn-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₮\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ням\",\"Даваа\",\"Мягмар\",\"Лхагва\",\"Пүрэв\",\"Баасан\",\"Бямба\"],\n\t\t\t\tnamesAbbr: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"],\n\t\t\t\tnamesShort: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1 дүгээр сар\",\"2 дугаар сар\",\"3 дугаар сар\",\"4 дүгээр сар\",\"5 дугаар сар\",\"6 дугаар сар\",\"7 дугаар сар\",\"8 дугаар сар\",\"9 дүгээр сар\",\"10 дугаар сар\",\"11 дүгээр сар\",\"12 дугаар сар\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"1 дүгээр сарын\",\"2 дугаар сарын\",\"3 дугаар сарын\",\"4 дүгээр сарын\",\"5 дугаар сарын\",\"6 дугаар сарын\",\"7 дугаар сарын\",\"8 дугаар сарын\",\"9 дүгээр сарын\",\"10 дугаар сарын\",\"11 дүгээр сарын\",\"12 дугаар сарын\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yy.MM.dd\",\n\t\t\t\tD: \"yyyy 'оны' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'оны' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'оны' MMMM d H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"yyyy 'он' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mn-MN.js",
    "content": "/*\n * Globalize Culture mn-MN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mn-MN\", \"default\", {\n\tname: \"mn-MN\",\n\tenglishName: \"Mongolian (Cyrillic, Mongolia)\",\n\tnativeName: \"Монгол хэл (Монгол улс)\",\n\tlanguage: \"mn-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₮\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ням\",\"Даваа\",\"Мягмар\",\"Лхагва\",\"Пүрэв\",\"Баасан\",\"Бямба\"],\n\t\t\t\tnamesAbbr: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"],\n\t\t\t\tnamesShort: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1 дүгээр сар\",\"2 дугаар сар\",\"3 дугаар сар\",\"4 дүгээр сар\",\"5 дугаар сар\",\"6 дугаар сар\",\"7 дугаар сар\",\"8 дугаар сар\",\"9 дүгээр сар\",\"10 дугаар сар\",\"11 дүгээр сар\",\"12 дугаар сар\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"1 дүгээр сарын\",\"2 дугаар сарын\",\"3 дугаар сарын\",\"4 дүгээр сарын\",\"5 дугаар сарын\",\"6 дугаар сарын\",\"7 дугаар сарын\",\"8 дугаар сарын\",\"9 дүгээр сарын\",\"10 дугаар сарын\",\"11 дүгээр сарын\",\"12 дугаар сарын\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yy.MM.dd\",\n\t\t\t\tD: \"yyyy 'оны' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'оны' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'оны' MMMM d H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"yyyy 'он' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mn-Mong-CN.js",
    "content": "/*\n * Globalize Culture mn-Mong-CN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mn-Mong-CN\", \"default\", {\n\tname: \"mn-Mong-CN\",\n\tenglishName: \"Mongolian (Traditional Mongolian, PRC)\",\n\tnativeName: \"ᠮᠤᠨᠭᠭᠤᠯ ᠬᠡᠯᠡ (ᠪᠦᠭᠦᠳᠡ ᠨᠠᠢᠷᠠᠮᠳᠠᠬᠤ ᠳᠤᠮᠳᠠᠳᠤ ᠠᠷᠠᠳ ᠣᠯᠣᠰ)\",\n\tlanguage: \"mn-Mong\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ᠲᠤᠭᠠᠠ ᠪᠤᠰᠤ\",\n\t\tnegativeInfinity: \"ᠰᠦᠬᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠡᠬᠡ\",\n\t\tpositiveInfinity: \"ᠡᠶ᠋ᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠠᠬᠡ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesAbbr: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesShort: [\"ᠡ\\u200d\",\"ᠨᠢ\\u200d\",\"ᠬᠣ\\u200d\",\"ᠭᠤ\\u200d\",\"ᠳᠥ\\u200d\",\"ᠲᠠ\\u200d\",\"ᠵᠢ\\u200d\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ᠣᠨ ᠲᠣᠭᠠᠯᠠᠯ ᠤᠨ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm\",\n\t\t\t\tF: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm:ss\",\n\t\t\t\tM: \"M'ᠰᠠᠷ᠎ᠠ' d'ᠡᠳᠦᠷ'\",\n\t\t\t\tY: \"yyyy'ᠣᠨ' M'ᠰᠠᠷ᠎ᠠ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mn-Mong.js",
    "content": "/*\n * Globalize Culture mn-Mong\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mn-Mong\", \"default\", {\n\tname: \"mn-Mong\",\n\tenglishName: \"Mongolian (Traditional Mongolian)\",\n\tnativeName: \"ᠮᠤᠨᠭᠭᠤᠯ ᠬᠡᠯᠡ\",\n\tlanguage: \"mn-Mong\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ᠲᠤᠭᠠᠠ ᠪᠤᠰᠤ\",\n\t\tnegativeInfinity: \"ᠰᠦᠬᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠡᠬᠡ\",\n\t\tpositiveInfinity: \"ᠡᠶ᠋ᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠠᠬᠡ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesAbbr: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesShort: [\"ᠡ\\u200d\",\"ᠨᠢ\\u200d\",\"ᠬᠣ\\u200d\",\"ᠭᠤ\\u200d\",\"ᠳᠥ\\u200d\",\"ᠲᠠ\\u200d\",\"ᠵᠢ\\u200d\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ᠣᠨ ᠲᠣᠭᠠᠯᠠᠯ ᠤᠨ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm\",\n\t\t\t\tF: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm:ss\",\n\t\t\t\tM: \"M'ᠰᠠᠷ᠎ᠠ' d'ᠡᠳᠦᠷ'\",\n\t\t\t\tY: \"yyyy'ᠣᠨ' M'ᠰᠠᠷ᠎ᠠ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mn.js",
    "content": "/*\n * Globalize Culture mn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mn\", \"default\", {\n\tname: \"mn\",\n\tenglishName: \"Mongolian\",\n\tnativeName: \"Монгол хэл\",\n\tlanguage: \"mn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₮\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ням\",\"Даваа\",\"Мягмар\",\"Лхагва\",\"Пүрэв\",\"Баасан\",\"Бямба\"],\n\t\t\t\tnamesAbbr: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"],\n\t\t\t\tnamesShort: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1 дүгээр сар\",\"2 дугаар сар\",\"3 дугаар сар\",\"4 дүгээр сар\",\"5 дугаар сар\",\"6 дугаар сар\",\"7 дугаар сар\",\"8 дугаар сар\",\"9 дүгээр сар\",\"10 дугаар сар\",\"11 дүгээр сар\",\"12 дугаар сар\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"1 дүгээр сарын\",\"2 дугаар сарын\",\"3 дугаар сарын\",\"4 дүгээр сарын\",\"5 дугаар сарын\",\"6 дугаар сарын\",\"7 дугаар сарын\",\"8 дугаар сарын\",\"9 дүгээр сарын\",\"10 дугаар сарын\",\"11 дүгээр сарын\",\"12 дугаар сарын\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yy.MM.dd\",\n\t\t\t\tD: \"yyyy 'оны' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'оны' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'оны' MMMM d H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"yyyy 'он' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.moh-CA.js",
    "content": "/*\n * Globalize Culture moh-CA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"moh-CA\", \"default\", {\n\tname: \"moh-CA\",\n\tenglishName: \"Mohawk (Mohawk)\",\n\tnativeName: \"Kanien'kéha\",\n\tlanguage: \"moh\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Awentatokentì:ke\",\"Awentataón'ke\",\"Ratironhia'kehronòn:ke\",\"Soséhne\",\"Okaristiiáhne\",\"Ronwaia'tanentaktonhne\",\"Entákta\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tsothohrkó:Wa\",\"Enniska\",\"Enniskó:Wa\",\"Onerahtókha\",\"Onerahtohkó:Wa\",\"Ohiari:Ha\",\"Ohiarihkó:Wa\",\"Seskéha\",\"Seskehkó:Wa\",\"Kenténha\",\"Kentenhkó:Wa\",\"Tsothóhrha\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.moh.js",
    "content": "/*\n * Globalize Culture moh\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"moh\", \"default\", {\n\tname: \"moh\",\n\tenglishName: \"Mohawk\",\n\tnativeName: \"Kanien'kéha\",\n\tlanguage: \"moh\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Awentatokentì:ke\",\"Awentataón'ke\",\"Ratironhia'kehronòn:ke\",\"Soséhne\",\"Okaristiiáhne\",\"Ronwaia'tanentaktonhne\",\"Entákta\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tsothohrkó:Wa\",\"Enniska\",\"Enniskó:Wa\",\"Onerahtókha\",\"Onerahtohkó:Wa\",\"Ohiari:Ha\",\"Ohiarihkó:Wa\",\"Seskéha\",\"Seskehkó:Wa\",\"Kenténha\",\"Kentenhkó:Wa\",\"Tsothóhrha\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mr-IN.js",
    "content": "/*\n * Globalize Culture mr-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mr-IN\", \"default\", {\n\tname: \"mr-IN\",\n\tenglishName: \"Marathi (India)\",\n\tnativeName: \"मराठी (भारत)\",\n\tlanguage: \"mr\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगळवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोव्हेंबर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जाने.\",\"फेब्रु.\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टें.\",\"ऑक्टो.\",\"नोव्हें.\",\"डिसें.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mr.js",
    "content": "/*\n * Globalize Culture mr\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mr\", \"default\", {\n\tname: \"mr\",\n\tenglishName: \"Marathi\",\n\tnativeName: \"मराठी\",\n\tlanguage: \"mr\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगळवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोव्हेंबर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जाने.\",\"फेब्रु.\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टें.\",\"ऑक्टो.\",\"नोव्हें.\",\"डिसें.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ms-BN.js",
    "content": "/*\n * Globalize Culture ms-BN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ms-BN\", \"default\", {\n\tname: \"ms-BN\",\n\tenglishName: \"Malay (Brunei Darussalam)\",\n\tnativeName: \"Bahasa Melayu (Brunei Darussalam)\",\n\tlanguage: \"ms\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ahad\",\"Isnin\",\"Selasa\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Ahad\",\"Isnin\",\"Sel\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"A\",\"I\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Mac\",\"April\",\"Mei\",\"Jun\",\"Julai\",\"Ogos\",\"September\",\"Oktober\",\"November\",\"Disember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ogos\",\"Sept\",\"Okt\",\"Nov\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ms-MY.js",
    "content": "/*\n * Globalize Culture ms-MY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ms-MY\", \"default\", {\n\tname: \"ms-MY\",\n\tenglishName: \"Malay (Malaysia)\",\n\tnativeName: \"Bahasa Melayu (Malaysia)\",\n\tlanguage: \"ms\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"RM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ahad\",\"Isnin\",\"Selasa\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Ahad\",\"Isnin\",\"Sel\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"A\",\"I\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Mac\",\"April\",\"Mei\",\"Jun\",\"Julai\",\"Ogos\",\"September\",\"Oktober\",\"November\",\"Disember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ogos\",\"Sept\",\"Okt\",\"Nov\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ms.js",
    "content": "/*\n * Globalize Culture ms\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ms\", \"default\", {\n\tname: \"ms\",\n\tenglishName: \"Malay\",\n\tnativeName: \"Bahasa Melayu\",\n\tlanguage: \"ms\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"RM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ahad\",\"Isnin\",\"Selasa\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Ahad\",\"Isnin\",\"Sel\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"A\",\"I\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Mac\",\"April\",\"Mei\",\"Jun\",\"Julai\",\"Ogos\",\"September\",\"Oktober\",\"November\",\"Disember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ogos\",\"Sept\",\"Okt\",\"Nov\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mt-MT.js",
    "content": "/*\n * Globalize Culture mt-MT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mt-MT\", \"default\", {\n\tname: \"mt-MT\",\n\tenglishName: \"Maltese (Malta)\",\n\tnativeName: \"Malti (Malta)\",\n\tlanguage: \"mt\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Il-Ħadd\",\"It-Tnejn\",\"It-Tlieta\",\"L-Erbgħa\",\"Il-Ħamis\",\"Il-Ġimgħa\",\"Is-Sibt\"],\n\t\t\t\tnamesAbbr: [\"Ħad\",\"Tne\",\"Tli\",\"Erb\",\"Ħam\",\"Ġim\",\"Sib\"],\n\t\t\t\tnamesShort: [\"I\",\"I\",\"I\",\"L\",\"I\",\"I\",\"I\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jannar\",\"Frar\",\"Marzu\",\"April\",\"Mejju\",\"Ġunju\",\"Lulju\",\"Awissu\",\"Settembru\",\"Ottubru\",\"Novembru\",\"Diċembru\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Fra\",\"Mar\",\"Apr\",\"Mej\",\"Ġun\",\"Lul\",\"Awi\",\"Set\",\"Ott\",\"Nov\",\"Diċ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' ta\\\\' 'MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d' ta\\\\' 'MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.mt.js",
    "content": "/*\n * Globalize Culture mt\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"mt\", \"default\", {\n\tname: \"mt\",\n\tenglishName: \"Maltese\",\n\tnativeName: \"Malti\",\n\tlanguage: \"mt\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Il-Ħadd\",\"It-Tnejn\",\"It-Tlieta\",\"L-Erbgħa\",\"Il-Ħamis\",\"Il-Ġimgħa\",\"Is-Sibt\"],\n\t\t\t\tnamesAbbr: [\"Ħad\",\"Tne\",\"Tli\",\"Erb\",\"Ħam\",\"Ġim\",\"Sib\"],\n\t\t\t\tnamesShort: [\"I\",\"I\",\"I\",\"L\",\"I\",\"I\",\"I\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jannar\",\"Frar\",\"Marzu\",\"April\",\"Mejju\",\"Ġunju\",\"Lulju\",\"Awissu\",\"Settembru\",\"Ottubru\",\"Novembru\",\"Diċembru\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Fra\",\"Mar\",\"Apr\",\"Mej\",\"Ġun\",\"Lul\",\"Awi\",\"Set\",\"Ott\",\"Nov\",\"Diċ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' ta\\\\' 'MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d' ta\\\\' 'MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nb-NO.js",
    "content": "/*\n * Globalize Culture nb-NO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nb-NO\", \"default\", {\n\tname: \"nb-NO\",\n\tenglishName: \"Norwegian, Bokmål (Norway)\",\n\tnativeName: \"norsk, bokmål (Norge)\",\n\tlanguage: \"nb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nb.js",
    "content": "/*\n * Globalize Culture nb\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nb\", \"default\", {\n\tname: \"nb\",\n\tenglishName: \"Norwegian (Bokmål)\",\n\tnativeName: \"norsk (bokmål)\",\n\tlanguage: \"nb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ne-NP.js",
    "content": "/*\n * Globalize Culture ne-NP\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ne-NP\", \"default\", {\n\tname: \"ne-NP\",\n\tenglishName: \"Nepali (Nepal)\",\n\tnativeName: \"नेपाली (नेपाल)\",\n\tlanguage: \"ne\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"आइतवार\",\"सोमवार\",\"मङ्गलवार\",\"बुधवार\",\"बिहीवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"आइत\",\"सोम\",\"मङ्गल\",\"बुध\",\"बिही\",\"शुक्र\",\"शनि\"],\n\t\t\t\tnamesShort: [\"आ\",\"सो\",\"म\",\"बु\",\"बि\",\"शु\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फेब्रुअरी\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अगस्त\",\"सेप्टेम्बर\",\"अक्टोबर\",\"नोभेम्बर\",\"डिसेम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जन\",\"फेब\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अग\",\"सेप्ट\",\"अक्ट\",\"नोभ\",\"डिस\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"विहानी\",\"विहानी\",\"विहानी\"],\n\t\t\tPM: [\"बेलुकी\",\"बेलुकी\",\"बेलुकी\"],\n\t\t\teras: [{\"name\":\"a.d.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ne.js",
    "content": "/*\n * Globalize Culture ne\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ne\", \"default\", {\n\tname: \"ne\",\n\tenglishName: \"Nepali\",\n\tnativeName: \"नेपाली\",\n\tlanguage: \"ne\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"आइतवार\",\"सोमवार\",\"मङ्गलवार\",\"बुधवार\",\"बिहीवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"आइत\",\"सोम\",\"मङ्गल\",\"बुध\",\"बिही\",\"शुक्र\",\"शनि\"],\n\t\t\t\tnamesShort: [\"आ\",\"सो\",\"म\",\"बु\",\"बि\",\"शु\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फेब्रुअरी\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अगस्त\",\"सेप्टेम्बर\",\"अक्टोबर\",\"नोभेम्बर\",\"डिसेम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जन\",\"फेब\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अग\",\"सेप्ट\",\"अक्ट\",\"नोभ\",\"डिस\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"विहानी\",\"विहानी\",\"विहानी\"],\n\t\t\tPM: [\"बेलुकी\",\"बेलुकी\",\"बेलुकी\"],\n\t\t\teras: [{\"name\":\"a.d.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nl-BE.js",
    "content": "/*\n * Globalize Culture nl-BE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nl-BE\", \"default\", {\n\tname: \"nl-BE\",\n\tenglishName: \"Dutch (Belgium)\",\n\tnativeName: \"Nederlands (België)\",\n\tlanguage: \"nl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Niet-een-getal)\",\n\t\tnegativeInfinity: \"-oneindig\",\n\t\tpositiveInfinity: \"oneindig\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"zondag\",\"maandag\",\"dinsdag\",\"woensdag\",\"donderdag\",\"vrijdag\",\"zaterdag\"],\n\t\t\t\tnamesAbbr: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"],\n\t\t\t\tnamesShort: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"maart\",\"april\",\"mei\",\"juni\",\"juli\",\"augustus\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mrt\",\"apr\",\"mei\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nl-NL.js",
    "content": "/*\n * Globalize Culture nl-NL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nl-NL\", \"default\", {\n\tname: \"nl-NL\",\n\tenglishName: \"Dutch (Netherlands)\",\n\tnativeName: \"Nederlands (Nederland)\",\n\tlanguage: \"nl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"zondag\",\"maandag\",\"dinsdag\",\"woensdag\",\"donderdag\",\"vrijdag\",\"zaterdag\"],\n\t\t\t\tnamesAbbr: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"],\n\t\t\t\tnamesShort: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"maart\",\"april\",\"mei\",\"juni\",\"juli\",\"augustus\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mrt\",\"apr\",\"mei\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nl.js",
    "content": "/*\n * Globalize Culture nl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nl\", \"default\", {\n\tname: \"nl\",\n\tenglishName: \"Dutch\",\n\tnativeName: \"Nederlands\",\n\tlanguage: \"nl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"zondag\",\"maandag\",\"dinsdag\",\"woensdag\",\"donderdag\",\"vrijdag\",\"zaterdag\"],\n\t\t\t\tnamesAbbr: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"],\n\t\t\t\tnamesShort: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"maart\",\"april\",\"mei\",\"juni\",\"juli\",\"augustus\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mrt\",\"apr\",\"mei\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nn-NO.js",
    "content": "/*\n * Globalize Culture nn-NO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nn-NO\", \"default\", {\n\tname: \"nn-NO\",\n\tenglishName: \"Norwegian, Nynorsk (Norway)\",\n\tnativeName: \"norsk, nynorsk (Noreg)\",\n\tlanguage: \"nn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"måndag\",\"tysdag\",\"onsdag\",\"torsdag\",\"fredag\",\"laurdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"],\n\t\t\t\tnamesShort: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nn.js",
    "content": "/*\n * Globalize Culture nn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nn\", \"default\", {\n\tname: \"nn\",\n\tenglishName: \"Norwegian (Nynorsk)\",\n\tnativeName: \"norsk (nynorsk)\",\n\tlanguage: \"nn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"måndag\",\"tysdag\",\"onsdag\",\"torsdag\",\"fredag\",\"laurdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"],\n\t\t\t\tnamesShort: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.no.js",
    "content": "/*\n * Globalize Culture no\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"no\", \"default\", {\n\tname: \"no\",\n\tenglishName: \"Norwegian\",\n\tnativeName: \"norsk\",\n\tlanguage: \"no\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nso-ZA.js",
    "content": "/*\n * Globalize Culture nso-ZA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nso-ZA\", \"default\", {\n\tname: \"nso-ZA\",\n\tenglishName: \"Sesotho sa Leboa (South Africa)\",\n\tnativeName: \"Sesotho sa Leboa (Afrika Borwa)\",\n\tlanguage: \"nso\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lamorena\",\"Mošupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labohlano\",\"Mokibelo\"],\n\t\t\t\tnamesAbbr: [\"Lam\",\"Moš\",\"Lbb\",\"Lbr\",\"Lbn\",\"Lbh\",\"Mok\"],\n\t\t\t\tnamesShort: [\"L\",\"M\",\"L\",\"L\",\"L\",\"L\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Pherekgong\",\"Hlakola\",\"Mopitlo\",\"Moranang\",\"Mosegamanye\",\"Ngoatobošego\",\"Phuphu\",\"Phato\",\"Lewedi\",\"Diphalana\",\"Dibatsela\",\"Manthole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Pher\",\"Hlak\",\"Mop\",\"Mor\",\"Mos\",\"Ngwat\",\"Phup\",\"Phat\",\"Lew\",\"Dip\",\"Dib\",\"Man\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.nso.js",
    "content": "/*\n * Globalize Culture nso\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"nso\", \"default\", {\n\tname: \"nso\",\n\tenglishName: \"Sesotho sa Leboa\",\n\tnativeName: \"Sesotho sa Leboa\",\n\tlanguage: \"nso\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lamorena\",\"Mošupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labohlano\",\"Mokibelo\"],\n\t\t\t\tnamesAbbr: [\"Lam\",\"Moš\",\"Lbb\",\"Lbr\",\"Lbn\",\"Lbh\",\"Mok\"],\n\t\t\t\tnamesShort: [\"L\",\"M\",\"L\",\"L\",\"L\",\"L\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Pherekgong\",\"Hlakola\",\"Mopitlo\",\"Moranang\",\"Mosegamanye\",\"Ngoatobošego\",\"Phuphu\",\"Phato\",\"Lewedi\",\"Diphalana\",\"Dibatsela\",\"Manthole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Pher\",\"Hlak\",\"Mop\",\"Mor\",\"Mos\",\"Ngwat\",\"Phup\",\"Phat\",\"Lew\",\"Dip\",\"Dib\",\"Man\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.oc-FR.js",
    "content": "/*\n * Globalize Culture oc-FR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"oc-FR\", \"default\", {\n\tname: \"oc-FR\",\n\tenglishName: \"Occitan (France)\",\n\tnativeName: \"Occitan (França)\",\n\tlanguage: \"oc\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numeric\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"+Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimenge\",\"diluns\",\"dimars\",\"dimècres\",\"dijòus\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mèc.\",\"jòu.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"mè\",\"jò\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"genier\",\"febrier\",\"març\",\"abril\",\"mai\",\"junh\",\"julh\",\"agost\",\"setembre\",\"octobre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"de genier\",\"de febrier\",\"de març\",\"d'abril\",\"de mai\",\"de junh\",\"de julh\",\"d'agost\",\"de setembre\",\"d'octobre\",\"de novembre\",\"de desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"après Jèsus-Crist\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd,' lo 'd MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.oc.js",
    "content": "/*\n * Globalize Culture oc\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"oc\", \"default\", {\n\tname: \"oc\",\n\tenglishName: \"Occitan\",\n\tnativeName: \"Occitan\",\n\tlanguage: \"oc\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numeric\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"+Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimenge\",\"diluns\",\"dimars\",\"dimècres\",\"dijòus\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mèc.\",\"jòu.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"mè\",\"jò\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"genier\",\"febrier\",\"març\",\"abril\",\"mai\",\"junh\",\"julh\",\"agost\",\"setembre\",\"octobre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"de genier\",\"de febrier\",\"de març\",\"d'abril\",\"de mai\",\"de junh\",\"de julh\",\"d'agost\",\"de setembre\",\"d'octobre\",\"de novembre\",\"de desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"après Jèsus-Crist\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd,' lo 'd MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.or-IN.js",
    "content": "/*\n * Globalize Culture or-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"or-IN\", \"default\", {\n\tname: \"or-IN\",\n\tenglishName: \"Oriya (India)\",\n\tnativeName: \"ଓଡ଼ିଆ (ଭାରତ)\",\n\tlanguage: \"or\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ଟ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ରବିବାର\",\"ସୋମବାର\",\"ମଙ୍ଗଳବାର\",\"ବୁଧବାର\",\"ଗୁରୁବାର\",\"ଶୁକ୍ରବାର\",\"ଶନିବାର\"],\n\t\t\t\tnamesAbbr: [\"ରବି.\",\"ସୋମ.\",\"ମଙ୍ଗଳ.\",\"ବୁଧ.\",\"ଗୁରୁ.\",\"ଶୁକ୍ର.\",\"ଶନି.\"],\n\t\t\t\tnamesShort: [\"ର\",\"ସୋ\",\"ମ\",\"ବୁ\",\"ଗୁ\",\"ଶୁ\",\"ଶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"],\n\t\t\t\tnamesAbbr: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"ଖ୍ରୀଷ୍ଟାବ୍ଦ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.or.js",
    "content": "/*\n * Globalize Culture or\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"or\", \"default\", {\n\tname: \"or\",\n\tenglishName: \"Oriya\",\n\tnativeName: \"ଓଡ଼ିଆ\",\n\tlanguage: \"or\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ଟ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ରବିବାର\",\"ସୋମବାର\",\"ମଙ୍ଗଳବାର\",\"ବୁଧବାର\",\"ଗୁରୁବାର\",\"ଶୁକ୍ରବାର\",\"ଶନିବାର\"],\n\t\t\t\tnamesAbbr: [\"ରବି.\",\"ସୋମ.\",\"ମଙ୍ଗଳ.\",\"ବୁଧ.\",\"ଗୁରୁ.\",\"ଶୁକ୍ର.\",\"ଶନି.\"],\n\t\t\t\tnamesShort: [\"ର\",\"ସୋ\",\"ମ\",\"ବୁ\",\"ଗୁ\",\"ଶୁ\",\"ଶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"],\n\t\t\t\tnamesAbbr: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"ଖ୍ରୀଷ୍ଟାବ୍ଦ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pa-IN.js",
    "content": "/*\n * Globalize Culture pa-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pa-IN\", \"default\", {\n\tname: \"pa-IN\",\n\tenglishName: \"Punjabi (India)\",\n\tnativeName: \"ਪੰਜਾਬੀ (ਭਾਰਤ)\",\n\tlanguage: \"pa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ਰੁ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ਐਤਵਾਰ\",\"ਸੋਮਵਾਰ\",\"ਮੰਗਲਵਾਰ\",\"ਬੁੱਧਵਾਰ\",\"ਵੀਰਵਾਰ\",\"ਸ਼ੁੱਕਰਵਾਰ\",\"ਸ਼ਨਿੱਚਰਵਾਰ\"],\n\t\t\t\tnamesAbbr: [\"ਐਤ.\",\"ਸੋਮ.\",\"ਮੰਗਲ.\",\"ਬੁੱਧ.\",\"ਵੀਰ.\",\"ਸ਼ੁਕਰ.\",\"ਸ਼ਨਿੱਚਰ.\"],\n\t\t\t\tnamesShort: [\"ਐ\",\"ਸ\",\"ਮ\",\"ਬ\",\"ਵ\",\"ਸ਼\",\"ਸ਼\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ਸਵੇਰ\",\"ਸਵੇਰ\",\"ਸਵੇਰ\"],\n\t\t\tPM: [\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd tt hh:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd tt hh:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pa.js",
    "content": "/*\n * Globalize Culture pa\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pa\", \"default\", {\n\tname: \"pa\",\n\tenglishName: \"Punjabi\",\n\tnativeName: \"ਪੰਜਾਬੀ\",\n\tlanguage: \"pa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ਰੁ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ਐਤਵਾਰ\",\"ਸੋਮਵਾਰ\",\"ਮੰਗਲਵਾਰ\",\"ਬੁੱਧਵਾਰ\",\"ਵੀਰਵਾਰ\",\"ਸ਼ੁੱਕਰਵਾਰ\",\"ਸ਼ਨਿੱਚਰਵਾਰ\"],\n\t\t\t\tnamesAbbr: [\"ਐਤ.\",\"ਸੋਮ.\",\"ਮੰਗਲ.\",\"ਬੁੱਧ.\",\"ਵੀਰ.\",\"ਸ਼ੁਕਰ.\",\"ਸ਼ਨਿੱਚਰ.\"],\n\t\t\t\tnamesShort: [\"ਐ\",\"ਸ\",\"ਮ\",\"ਬ\",\"ਵ\",\"ਸ਼\",\"ਸ਼\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ਸਵੇਰ\",\"ਸਵੇਰ\",\"ਸਵੇਰ\"],\n\t\t\tPM: [\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd tt hh:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd tt hh:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pl-PL.js",
    "content": "/*\n * Globalize Culture pl-PL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pl-PL\", \"default\", {\n\tname: \"pl-PL\",\n\tenglishName: \"Polish (Poland)\",\n\tnativeName: \"polski (Polska)\",\n\tlanguage: \"pl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nie jest liczbą\",\n\t\tnegativeInfinity: \"-nieskończoność\",\n\t\tpositiveInfinity: \"+nieskończoność\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"zł\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"niedz.\",\"pon.\",\"wt.\",\"śr.\",\"czw.\",\"pt.\",\"sob.\"],\n\t\t\t\tnamesShort: [\"N\",\"Pn\",\"Wt\",\"Śr\",\"Cz\",\"Pt\",\"So\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"stycznia\",\"lutego\",\"marca\",\"kwietnia\",\"maja\",\"czerwca\",\"lipca\",\"sierpnia\",\"września\",\"października\",\"listopada\",\"grudnia\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pl.js",
    "content": "/*\n * Globalize Culture pl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pl\", \"default\", {\n\tname: \"pl\",\n\tenglishName: \"Polish\",\n\tnativeName: \"polski\",\n\tlanguage: \"pl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nie jest liczbą\",\n\t\tnegativeInfinity: \"-nieskończoność\",\n\t\tpositiveInfinity: \"+nieskończoność\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"zł\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"niedz.\",\"pon.\",\"wt.\",\"śr.\",\"czw.\",\"pt.\",\"sob.\"],\n\t\t\t\tnamesShort: [\"N\",\"Pn\",\"Wt\",\"Śr\",\"Cz\",\"Pt\",\"So\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"stycznia\",\"lutego\",\"marca\",\"kwietnia\",\"maja\",\"czerwca\",\"lipca\",\"sierpnia\",\"września\",\"października\",\"listopada\",\"grudnia\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.prs-AF.js",
    "content": "/*\n * Globalize Culture prs-AF\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"prs-AF\", \"default\", {\n\tname: \"prs-AF\",\n\tenglishName: \"Dari (Afghanistan)\",\n\tnativeName: \"درى (افغانستان)\",\n\tlanguage: \"prs\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.prs.js",
    "content": "/*\n * Globalize Culture prs\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"prs\", \"default\", {\n\tname: \"prs\",\n\tenglishName: \"Dari\",\n\tnativeName: \"درى\",\n\tlanguage: \"prs\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ps-AF.js",
    "content": "/*\n * Globalize Culture ps-AF\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ps-AF\", \"default\", {\n\tname: \"ps-AF\",\n\tenglishName: \"Pashto (Afghanistan)\",\n\tnativeName: \"پښتو (افغانستان)\",\n\tlanguage: \"ps\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \"،\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \"،\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\t\",\": \"٬\",\n\t\t\t\".\": \"٫\",\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښزمرى\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ps.js",
    "content": "/*\n * Globalize Culture ps\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ps\", \"default\", {\n\tname: \"ps\",\n\tenglishName: \"Pashto\",\n\tnativeName: \"پښتو\",\n\tlanguage: \"ps\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \"،\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \"،\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\t\",\": \"٬\",\n\t\t\t\".\": \"٫\",\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښزمرى\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pt-BR.js",
    "content": "/*\n * Globalize Culture pt-BR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pt-BR\", \"default\", {\n\tname: \"pt-BR\",\n\tenglishName: \"Portuguese (Brazil)\",\n\tnativeName: \"Português (Brasil)\",\n\tlanguage: \"pt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Não é um número)\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"R$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"segunda-feira\",\"terça-feira\",\"quarta-feira\",\"quinta-feira\",\"sexta-feira\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"seg\",\"ter\",\"qua\",\"qui\",\"sex\",\"sáb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"T\",\"Q\",\"Q\",\"S\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janeiro\",\"fevereiro\",\"março\",\"abril\",\"maio\",\"junho\",\"julho\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"dezembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"fev\",\"mar\",\"abr\",\"mai\",\"jun\",\"jul\",\"ago\",\"set\",\"out\",\"nov\",\"dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' de 'MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' de 'MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd' de 'MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pt-PT.js",
    "content": "/*\n * Globalize Culture pt-PT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pt-PT\", \"default\", {\n\tname: \"pt-PT\",\n\tenglishName: \"Portuguese (Portugal)\",\n\tnativeName: \"português (Portugal)\",\n\tlanguage: \"pt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Não é um número)\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"segunda-feira\",\"terça-feira\",\"quarta-feira\",\"quinta-feira\",\"sexta-feira\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"seg\",\"ter\",\"qua\",\"qui\",\"sex\",\"sáb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"T\",\"Q\",\"Q\",\"S\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Janeiro\",\"Fevereiro\",\"Março\",\"Abril\",\"Maio\",\"Junho\",\"Julho\",\"Agosto\",\"Setembro\",\"Outubro\",\"Novembro\",\"Dezembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Fev\",\"Mar\",\"Abr\",\"Mai\",\"Jun\",\"Jul\",\"Ago\",\"Set\",\"Out\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, d' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' de 'MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' de 'MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"d/M\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.pt.js",
    "content": "/*\n * Globalize Culture pt\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"pt\", \"default\", {\n\tname: \"pt\",\n\tenglishName: \"Portuguese\",\n\tnativeName: \"Português\",\n\tlanguage: \"pt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Não é um número)\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"R$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"segunda-feira\",\"terça-feira\",\"quarta-feira\",\"quinta-feira\",\"sexta-feira\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"seg\",\"ter\",\"qua\",\"qui\",\"sex\",\"sáb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"T\",\"Q\",\"Q\",\"S\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janeiro\",\"fevereiro\",\"março\",\"abril\",\"maio\",\"junho\",\"julho\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"dezembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"fev\",\"mar\",\"abr\",\"mai\",\"jun\",\"jul\",\"ago\",\"set\",\"out\",\"nov\",\"dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' de 'MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' de 'MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd' de 'MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.qut-GT.js",
    "content": "/*\n * Globalize Culture qut-GT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"qut-GT\", \"default\", {\n\tname: \"qut-GT\",\n\tenglishName: \"K'iche (Guatemala)\",\n\tnativeName: \"K'iche (Guatemala)\",\n\tlanguage: \"qut\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"Q\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"juq'ij\",\"kaq'ij\",\"oxq'ij\",\"kajq'ij\",\"joq'ij\",\"waqq'ij\",\"wuqq'ij\"],\n\t\t\t\tnamesAbbr: [\"juq\",\"kaq\",\"oxq\",\"kajq\",\"joq\",\"waqq\",\"wuqq\"],\n\t\t\t\tnamesShort: [\"ju\",\"ka\",\"ox\",\"ka\",\"jo\",\"wa\",\"wu\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"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'\",\"\"],\n\t\t\t\tnamesAbbr: [\"nab'e\",\"ukab\",\"rox\",\"ukaj\",\"uro\",\"uwaq\",\"uwuq\",\"uwajxaq\",\"ub'elej\",\"ulaj\",\"ujulaj\",\"ukab'laj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.qut.js",
    "content": "/*\n * Globalize Culture qut\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"qut\", \"default\", {\n\tname: \"qut\",\n\tenglishName: \"K'iche\",\n\tnativeName: \"K'iche\",\n\tlanguage: \"qut\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"Q\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"juq'ij\",\"kaq'ij\",\"oxq'ij\",\"kajq'ij\",\"joq'ij\",\"waqq'ij\",\"wuqq'ij\"],\n\t\t\t\tnamesAbbr: [\"juq\",\"kaq\",\"oxq\",\"kajq\",\"joq\",\"waqq\",\"wuqq\"],\n\t\t\t\tnamesShort: [\"ju\",\"ka\",\"ox\",\"ka\",\"jo\",\"wa\",\"wu\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"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'\",\"\"],\n\t\t\t\tnamesAbbr: [\"nab'e\",\"ukab\",\"rox\",\"ukaj\",\"uro\",\"uwaq\",\"uwuq\",\"uwajxaq\",\"ub'elej\",\"ulaj\",\"ujulaj\",\"ukab'laj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.quz-BO.js",
    "content": "/*\n * Globalize Culture quz-BO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"quz-BO\", \"default\", {\n\tname: \"quz-BO\",\n\tenglishName: \"Quechua (Bolivia)\",\n\tnativeName: \"runasimi (Qullasuyu)\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$b\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.quz-EC.js",
    "content": "/*\n * Globalize Culture quz-EC\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"quz-EC\", \"default\", {\n\tname: \"quz-EC\",\n\tenglishName: \"Quechua (Ecuador)\",\n\tnativeName: \"runasimi (Ecuador)\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.quz-PE.js",
    "content": "/*\n * Globalize Culture quz-PE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"quz-PE\", \"default\", {\n\tname: \"quz-PE\",\n\tenglishName: \"Quechua (Peru)\",\n\tnativeName: \"runasimi (Piruw)\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tsymbol: \"S/.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.quz.js",
    "content": "/*\n * Globalize Culture quz\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"quz\", \"default\", {\n\tname: \"quz\",\n\tenglishName: \"Quechua\",\n\tnativeName: \"runasimi\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$b\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.rm-CH.js",
    "content": "/*\n * Globalize Culture rm-CH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"rm-CH\", \"default\", {\n\tname: \"rm-CH\",\n\tenglishName: \"Romansh (Switzerland)\",\n\tnativeName: \"Rumantsch (Svizra)\",\n\tlanguage: \"rm\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"betg def.\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"+infinit\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumengia\",\"glindesdi\",\"mardi\",\"mesemna\",\"gievgia\",\"venderdi\",\"sonda\"],\n\t\t\t\tnamesAbbr: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"],\n\t\t\t\tnamesShort: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"schaner\",\"favrer\",\"mars\",\"avrigl\",\"matg\",\"zercladur\",\"fanadur\",\"avust\",\"settember\",\"october\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"schan\",\"favr\",\"mars\",\"avr\",\"matg\",\"zercl\",\"fan\",\"avust\",\"sett\",\"oct\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"s. Cr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.rm.js",
    "content": "/*\n * Globalize Culture rm\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"rm\", \"default\", {\n\tname: \"rm\",\n\tenglishName: \"Romansh\",\n\tnativeName: \"Rumantsch\",\n\tlanguage: \"rm\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"betg def.\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"+infinit\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumengia\",\"glindesdi\",\"mardi\",\"mesemna\",\"gievgia\",\"venderdi\",\"sonda\"],\n\t\t\t\tnamesAbbr: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"],\n\t\t\t\tnamesShort: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"schaner\",\"favrer\",\"mars\",\"avrigl\",\"matg\",\"zercladur\",\"fanadur\",\"avust\",\"settember\",\"october\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"schan\",\"favr\",\"mars\",\"avr\",\"matg\",\"zercl\",\"fan\",\"avust\",\"sett\",\"oct\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"s. Cr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ro-RO.js",
    "content": "/*\n * Globalize Culture ro-RO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ro-RO\", \"default\", {\n\tname: \"ro-RO\",\n\tenglishName: \"Romanian (Romania)\",\n\tnativeName: \"română (România)\",\n\tlanguage: \"ro\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"lei\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"duminică\",\"luni\",\"marţi\",\"miercuri\",\"joi\",\"vineri\",\"sâmbătă\"],\n\t\t\t\tnamesAbbr: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ianuarie\",\"februarie\",\"martie\",\"aprilie\",\"mai\",\"iunie\",\"iulie\",\"august\",\"septembrie\",\"octombrie\",\"noiembrie\",\"decembrie\",\"\"],\n\t\t\t\tnamesAbbr: [\"ian.\",\"feb.\",\"mar.\",\"apr.\",\"mai.\",\"iun.\",\"iul.\",\"aug.\",\"sep.\",\"oct.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ro.js",
    "content": "/*\n * Globalize Culture ro\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ro\", \"default\", {\n\tname: \"ro\",\n\tenglishName: \"Romanian\",\n\tnativeName: \"română\",\n\tlanguage: \"ro\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"lei\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"duminică\",\"luni\",\"marţi\",\"miercuri\",\"joi\",\"vineri\",\"sâmbătă\"],\n\t\t\t\tnamesAbbr: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ianuarie\",\"februarie\",\"martie\",\"aprilie\",\"mai\",\"iunie\",\"iulie\",\"august\",\"septembrie\",\"octombrie\",\"noiembrie\",\"decembrie\",\"\"],\n\t\t\t\tnamesAbbr: [\"ian.\",\"feb.\",\"mar.\",\"apr.\",\"mai.\",\"iun.\",\"iul.\",\"aug.\",\"sep.\",\"oct.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ru-RU.js",
    "content": "/*\n * Globalize Culture ru-RU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ru-RU\", \"default\", {\n\tname: \"ru-RU\",\n\tenglishName: \"Russian (Russia)\",\n\tnativeName: \"русский (Россия)\",\n\tlanguage: \"ru\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"воскресенье\",\"понедельник\",\"вторник\",\"среда\",\"четверг\",\"пятница\",\"суббота\"],\n\t\t\t\tnamesAbbr: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"января\",\"февраля\",\"марта\",\"апреля\",\"мая\",\"июня\",\"июля\",\"августа\",\"сентября\",\"октября\",\"ноября\",\"декабря\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'г.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'г.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'г.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ru.js",
    "content": "/*\n * Globalize Culture ru\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ru\", \"default\", {\n\tname: \"ru\",\n\tenglishName: \"Russian\",\n\tnativeName: \"русский\",\n\tlanguage: \"ru\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"воскресенье\",\"понедельник\",\"вторник\",\"среда\",\"четверг\",\"пятница\",\"суббота\"],\n\t\t\t\tnamesAbbr: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"января\",\"февраля\",\"марта\",\"апреля\",\"мая\",\"июня\",\"июля\",\"августа\",\"сентября\",\"октября\",\"ноября\",\"декабря\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'г.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'г.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'г.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.rw-RW.js",
    "content": "/*\n * Globalize Culture rw-RW\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"rw-RW\", \"default\", {\n\tname: \"rw-RW\",\n\tenglishName: \"Kinyarwanda (Rwanda)\",\n\tnativeName: \"Kinyarwanda (Rwanda)\",\n\tlanguage: \"rw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"RWF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ku wa mbere\",\"Ku wa kabiri\",\"Ku wa gatatu\",\"Ku wa kane\",\"Ku wa gatanu\",\"Ku wa gatandatu\",\"Ku cyumweru\"],\n\t\t\t\tnamesAbbr: [\"mbe.\",\"kab.\",\"gat.\",\"kan.\",\"gat.\",\"gat.\",\"cyu.\"],\n\t\t\t\tnamesShort: [\"mb\",\"ka\",\"ga\",\"ka\",\"ga\",\"ga\",\"cy\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mutarama\",\"Gashyantare\",\"Werurwe\",\"Mata\",\"Gicurasi\",\"Kamena\",\"Nyakanga\",\"Kanama\",\"Nzeli\",\"Ukwakira\",\"Ugushyingo\",\"Ukuboza\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mut\",\"Gas\",\"Wer\",\"Mat\",\"Gic\",\"Kam\",\"Nya\",\"Kan\",\"Nze\",\"Ukwa\",\"Ugu\",\"Uku\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"saa moya z.m.\",\"saa moya z.m.\",\"SAA MOYA Z.M.\"],\n\t\t\tPM: [\"saa moya z.n.\",\"saa moya z.n.\",\"SAA MOYA Z.N.\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.rw.js",
    "content": "/*\n * Globalize Culture rw\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"rw\", \"default\", {\n\tname: \"rw\",\n\tenglishName: \"Kinyarwanda\",\n\tnativeName: \"Kinyarwanda\",\n\tlanguage: \"rw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"RWF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ku wa mbere\",\"Ku wa kabiri\",\"Ku wa gatatu\",\"Ku wa kane\",\"Ku wa gatanu\",\"Ku wa gatandatu\",\"Ku cyumweru\"],\n\t\t\t\tnamesAbbr: [\"mbe.\",\"kab.\",\"gat.\",\"kan.\",\"gat.\",\"gat.\",\"cyu.\"],\n\t\t\t\tnamesShort: [\"mb\",\"ka\",\"ga\",\"ka\",\"ga\",\"ga\",\"cy\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mutarama\",\"Gashyantare\",\"Werurwe\",\"Mata\",\"Gicurasi\",\"Kamena\",\"Nyakanga\",\"Kanama\",\"Nzeli\",\"Ukwakira\",\"Ugushyingo\",\"Ukuboza\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mut\",\"Gas\",\"Wer\",\"Mat\",\"Gic\",\"Kam\",\"Nya\",\"Kan\",\"Nze\",\"Ukwa\",\"Ugu\",\"Uku\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"saa moya z.m.\",\"saa moya z.m.\",\"SAA MOYA Z.M.\"],\n\t\t\tPM: [\"saa moya z.n.\",\"saa moya z.n.\",\"SAA MOYA Z.N.\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sa-IN.js",
    "content": "/*\n * Globalize Culture sa-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sa-IN\", \"default\", {\n\tname: \"sa-IN\",\n\tenglishName: \"Sanskrit (India)\",\n\tnativeName: \"संस्कृत (भारतम्)\",\n\tlanguage: \"sa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesAbbr: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sa.js",
    "content": "/*\n * Globalize Culture sa\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sa\", \"default\", {\n\tname: \"sa\",\n\tenglishName: \"Sanskrit\",\n\tnativeName: \"संस्कृत\",\n\tlanguage: \"sa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesAbbr: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sah-RU.js",
    "content": "/*\n * Globalize Culture sah-RU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sah-RU\", \"default\", {\n\tname: \"sah-RU\",\n\tenglishName: \"Yakut (Russia)\",\n\tnativeName: \"саха (Россия)\",\n\tlanguage: \"sah\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"с.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"баскыһыанньа\",\"бэнидиэнньик\",\"оптуорунньук\",\"сэрэдэ\",\"чэппиэр\",\"бээтинсэ\",\"субуота\"],\n\t\t\t\tnamesAbbr: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Тохсунньу\",\"Олунньу\",\"Кулун тутар\",\"Муус устар\",\"Ыам ыйа\",\"Бэс ыйа\",\"От ыйа\",\"Атырдьах ыйа\",\"Балаҕан ыйа\",\"Алтынньы\",\"Сэтинньи\",\"Ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"тохсунньу\",\"олунньу\",\"кулун тутар\",\"муус устар\",\"ыам ыйын\",\"бэс ыйын\",\"от ыйын\",\"атырдьах ыйын\",\"балаҕан ыйын\",\"алтынньы\",\"сэтинньи\",\"ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"MM.dd.yyyy\",\n\t\t\t\tD: \"MMMM d yyyy 'с.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d yyyy 'с.' H:mm\",\n\t\t\t\tF: \"MMMM d yyyy 'с.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy 'с.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sah.js",
    "content": "/*\n * Globalize Culture sah\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sah\", \"default\", {\n\tname: \"sah\",\n\tenglishName: \"Yakut\",\n\tnativeName: \"саха\",\n\tlanguage: \"sah\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"с.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"баскыһыанньа\",\"бэнидиэнньик\",\"оптуорунньук\",\"сэрэдэ\",\"чэппиэр\",\"бээтинсэ\",\"субуота\"],\n\t\t\t\tnamesAbbr: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Тохсунньу\",\"Олунньу\",\"Кулун тутар\",\"Муус устар\",\"Ыам ыйа\",\"Бэс ыйа\",\"От ыйа\",\"Атырдьах ыйа\",\"Балаҕан ыйа\",\"Алтынньы\",\"Сэтинньи\",\"Ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"тохсунньу\",\"олунньу\",\"кулун тутар\",\"муус устар\",\"ыам ыйын\",\"бэс ыйын\",\"от ыйын\",\"атырдьах ыйын\",\"балаҕан ыйын\",\"алтынньы\",\"сэтинньи\",\"ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"MM.dd.yyyy\",\n\t\t\t\tD: \"MMMM d yyyy 'с.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d yyyy 'с.' H:mm\",\n\t\t\t\tF: \"MMMM d yyyy 'с.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy 'с.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.se-FI.js",
    "content": "/*\n * Globalize Culture se-FI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"se-FI\", \"default\", {\n\tname: \"se-FI\",\n\tenglishName: \"Sami, Northern (Finland)\",\n\tnativeName: \"davvisámegiella (Suopma)\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"vuossárga\",\"maŋŋebárga\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"vuos\",\"maŋ\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.se-NO.js",
    "content": "/*\n * Globalize Culture se-NO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"se-NO\", \"default\", {\n\tname: \"se-NO\",\n\tenglishName: \"Sami, Northern (Norway)\",\n\tnativeName: \"davvisámegiella (Norga)\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"vuossárga\",\"maŋŋebárga\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"vuos\",\"maŋ\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.se-SE.js",
    "content": "/*\n * Globalize Culture se-SE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"se-SE\", \"default\", {\n\tname: \"se-SE\",\n\tenglishName: \"Sami, Northern (Sweden)\",\n\tnativeName: \"davvisámegiella (Ruoŧŧa)\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"mánnodat\",\"disdat\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"mán\",\"dis\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.se.js",
    "content": "/*\n * Globalize Culture se\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"se\", \"default\", {\n\tname: \"se\",\n\tenglishName: \"Sami (Northern)\",\n\tnativeName: \"davvisámegiella\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"vuossárga\",\"maŋŋebárga\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"vuos\",\"maŋ\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.si-LK.js",
    "content": "/*\n * Globalize Culture si-LK\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"si-LK\", \"default\", {\n\tname: \"si-LK\",\n\tenglishName: \"Sinhala (Sri Lanka)\",\n\tnativeName: \"සිංහල (ශ්\\u200dරී ලංකා)\",\n\tlanguage: \"si\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tnegativeInfinity: \"-අනන්තය\",\n\t\tpositiveInfinity: \"අනන්තය\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tsymbol: \"රු.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ඉරිදා\",\"සඳුදා\",\"අඟහරුවාදා\",\"බදාදා\",\"බ්\\u200dරහස්පතින්දා\",\"සිකුරාදා\",\"සෙනසුරාදා\"],\n\t\t\t\tnamesAbbr: [\"ඉරිදා\",\"සඳුදා\",\"කුජදා\",\"බුදදා\",\"ගුරුදා\",\"කිවිදා\",\"ශනිදා\"],\n\t\t\t\tnamesShort: [\"ඉ\",\"ස\",\"අ\",\"බ\",\"බ්\\u200dර\",\"සි\",\"සෙ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ජනවාරි\",\"පෙබරවාරි\",\"මාර්තු\",\"අ\\u200cප්\\u200dරේල්\",\"මැයි\",\"ජූනි\",\"ජූලි\",\"අ\\u200cගෝස්තු\",\"සැප්තැම්බර්\",\"ඔක්තෝබර්\",\"නොවැම්බර්\",\"දෙසැම්බර්\",\"\"],\n\t\t\t\tnamesAbbr: [\"ජන.\",\"පෙබ.\",\"මාර්තු.\",\"අප්\\u200dරේල්.\",\"මැයි.\",\"ජූනි.\",\"ජූලි.\",\"අගෝ.\",\"සැප්.\",\"ඔක්.\",\"නොවැ.\",\"දෙසැ.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"පෙ.ව.\",\"පෙ.ව.\",\"පෙ.ව.\"],\n\t\t\tPM: [\"ප.ව.\",\"ප.ව.\",\"ප.ව.\"],\n\t\t\teras: [{\"name\":\"ක්\\u200dරි.ව.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd\",\n\t\t\t\tf: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm tt\",\n\t\t\t\tF: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm:ss tt\",\n\t\t\t\tY: \"yyyy MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.si.js",
    "content": "/*\n * Globalize Culture si\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"si\", \"default\", {\n\tname: \"si\",\n\tenglishName: \"Sinhala\",\n\tnativeName: \"සිංහල\",\n\tlanguage: \"si\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tnegativeInfinity: \"-අනන්තය\",\n\t\tpositiveInfinity: \"අනන්තය\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tsymbol: \"රු.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ඉරිදා\",\"සඳුදා\",\"අඟහරුවාදා\",\"බදාදා\",\"බ්\\u200dරහස්පතින්දා\",\"සිකුරාදා\",\"සෙනසුරාදා\"],\n\t\t\t\tnamesAbbr: [\"ඉරිදා\",\"සඳුදා\",\"කුජදා\",\"බුදදා\",\"ගුරුදා\",\"කිවිදා\",\"ශනිදා\"],\n\t\t\t\tnamesShort: [\"ඉ\",\"ස\",\"අ\",\"බ\",\"බ්\\u200dර\",\"සි\",\"සෙ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ජනවාරි\",\"පෙබරවාරි\",\"මාර්තු\",\"අ\\u200cප්\\u200dරේල්\",\"මැයි\",\"ජූනි\",\"ජූලි\",\"අ\\u200cගෝස්තු\",\"සැප්තැම්බර්\",\"ඔක්තෝබර්\",\"නොවැම්බර්\",\"දෙසැම්බර්\",\"\"],\n\t\t\t\tnamesAbbr: [\"ජන.\",\"පෙබ.\",\"මාර්තු.\",\"අප්\\u200dරේල්.\",\"මැයි.\",\"ජූනි.\",\"ජූලි.\",\"අගෝ.\",\"සැප්.\",\"ඔක්.\",\"නොවැ.\",\"දෙසැ.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"පෙ.ව.\",\"පෙ.ව.\",\"පෙ.ව.\"],\n\t\t\tPM: [\"ප.ව.\",\"ප.ව.\",\"ප.ව.\"],\n\t\t\teras: [{\"name\":\"ක්\\u200dරි.ව.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd\",\n\t\t\t\tf: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm tt\",\n\t\t\t\tF: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm:ss tt\",\n\t\t\t\tY: \"yyyy MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sk-SK.js",
    "content": "/*\n * Globalize Culture sk-SK\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sk-SK\", \"default\", {\n\tname: \"sk-SK\",\n\tenglishName: \"Slovak (Slovakia)\",\n\tnativeName: \"slovenčina (Slovenská republika)\",\n\tlanguage: \"sk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Nie je číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedeľa\",\"pondelok\",\"utorok\",\"streda\",\"štvrtok\",\"piatok\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"marec\",\"apríl\",\"máj\",\"jún\",\"júl\",\"august\",\"september\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januára\",\"februára\",\"marca\",\"apríla\",\"mája\",\"júna\",\"júla\",\"augusta\",\"septembra\",\"októbra\",\"novembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sk.js",
    "content": "/*\n * Globalize Culture sk\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sk\", \"default\", {\n\tname: \"sk\",\n\tenglishName: \"Slovak\",\n\tnativeName: \"slovenčina\",\n\tlanguage: \"sk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Nie je číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedeľa\",\"pondelok\",\"utorok\",\"streda\",\"štvrtok\",\"piatok\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"marec\",\"apríl\",\"máj\",\"jún\",\"júl\",\"august\",\"september\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januára\",\"februára\",\"marca\",\"apríla\",\"mája\",\"júna\",\"júla\",\"augusta\",\"septembra\",\"októbra\",\"novembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sl-SI.js",
    "content": "/*\n * Globalize Culture sl-SI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sl-SI\", \"default\", {\n\tname: \"sl-SI\",\n\tenglishName: \"Slovenian (Slovenia)\",\n\tnativeName: \"slovenski (Slovenija)\",\n\tlanguage: \"sl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-neskončnost\",\n\t\tpositiveInfinity: \"neskončnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljek\",\"torek\",\"sreda\",\"četrtek\",\"petek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"tor\",\"sre\",\"čet\",\"pet\",\"sob\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"to\",\"sr\",\"če\",\"pe\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marec\",\"april\",\"maj\",\"junij\",\"julij\",\"avgust\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sl.js",
    "content": "/*\n * Globalize Culture sl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sl\", \"default\", {\n\tname: \"sl\",\n\tenglishName: \"Slovenian\",\n\tnativeName: \"slovenski\",\n\tlanguage: \"sl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-neskončnost\",\n\t\tpositiveInfinity: \"neskončnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljek\",\"torek\",\"sreda\",\"četrtek\",\"petek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"tor\",\"sre\",\"čet\",\"pet\",\"sob\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"to\",\"sr\",\"če\",\"pe\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marec\",\"april\",\"maj\",\"junij\",\"julij\",\"avgust\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sma-NO.js",
    "content": "/*\n * Globalize Culture sma-NO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sma-NO\", \"default\", {\n\tname: \"sma-NO\",\n\tenglishName: \"Sami, Southern (Norway)\",\n\tnativeName: \"åarjelsaemiengiele (Nöörje)\",\n\tlanguage: \"sma\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"aejlege\",\"måanta\",\"dæjsta\",\"gaskevåhkoe\",\"duarsta\",\"bearjadahke\",\"laavvardahke\"],\n\t\t\t\tnamesAbbr: [\"aej\",\"måa\",\"dæj\",\"gask\",\"duar\",\"bearj\",\"laav\"],\n\t\t\t\tnamesShort: [\"a\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tsïengele\",\"goevte\",\"njoktje\",\"voerhtje\",\"suehpede\",\"ruffie\",\"snjaltje\",\"mïetske\",\"skïerede\",\"golke\",\"rahka\",\"goeve\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"tsïengelen\",\"goevten\",\"njoktjen\",\"voerhtjen\",\"suehpeden\",\"ruffien\",\"snjaltjen\",\"mïetsken\",\"skïereden\",\"golken\",\"rahkan\",\"goeven\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sma-SE.js",
    "content": "/*\n * Globalize Culture sma-SE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sma-SE\", \"default\", {\n\tname: \"sma-SE\",\n\tenglishName: \"Sami, Southern (Sweden)\",\n\tnativeName: \"åarjelsaemiengiele (Sveerje)\",\n\tlanguage: \"sma\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"aejlege\",\"måanta\",\"dæjsta\",\"gaskevåhkoe\",\"duarsta\",\"bearjadahke\",\"laavvardahke\"],\n\t\t\t\tnamesAbbr: [\"aej\",\"måa\",\"dæj\",\"gask\",\"duar\",\"bearj\",\"laav\"],\n\t\t\t\tnamesShort: [\"a\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tsïengele\",\"goevte\",\"njoktje\",\"voerhtje\",\"suehpede\",\"ruffie\",\"snjaltje\",\"mïetske\",\"skïerede\",\"golke\",\"rahka\",\"goeve\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"tsïengelen\",\"goevten\",\"njoktjen\",\"voerhtjen\",\"suehpeden\",\"ruffien\",\"snjaltjen\",\"mïetsken\",\"skïereden\",\"golken\",\"rahkan\",\"goeven\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sma.js",
    "content": "/*\n * Globalize Culture sma\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sma\", \"default\", {\n\tname: \"sma\",\n\tenglishName: \"Sami (Southern)\",\n\tnativeName: \"åarjelsaemiengiele\",\n\tlanguage: \"sma\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"aejlege\",\"måanta\",\"dæjsta\",\"gaskevåhkoe\",\"duarsta\",\"bearjadahke\",\"laavvardahke\"],\n\t\t\t\tnamesAbbr: [\"aej\",\"måa\",\"dæj\",\"gask\",\"duar\",\"bearj\",\"laav\"],\n\t\t\t\tnamesShort: [\"a\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tsïengele\",\"goevte\",\"njoktje\",\"voerhtje\",\"suehpede\",\"ruffie\",\"snjaltje\",\"mïetske\",\"skïerede\",\"golke\",\"rahka\",\"goeve\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"tsïengelen\",\"goevten\",\"njoktjen\",\"voerhtjen\",\"suehpeden\",\"ruffien\",\"snjaltjen\",\"mïetsken\",\"skïereden\",\"golken\",\"rahkan\",\"goeven\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.smj-NO.js",
    "content": "/*\n * Globalize Culture smj-NO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"smj-NO\", \"default\", {\n\tname: \"smj-NO\",\n\tenglishName: \"Sami, Lule (Norway)\",\n\tnativeName: \"julevusámegiella (Vuodna)\",\n\tlanguage: \"smj\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sådnåbiejvve\",\"mánnodahka\",\"dijstahka\",\"gasskavahkko\",\"duorastahka\",\"bierjjedahka\",\"lávvodahka\"],\n\t\t\t\tnamesAbbr: [\"såd\",\"mán\",\"dis\",\"gas\",\"duor\",\"bier\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ådåjakmánno\",\"guovvamánno\",\"sjnjuktjamánno\",\"vuoratjismánno\",\"moarmesmánno\",\"biehtsemánno\",\"sjnjilltjamánno\",\"bårggemánno\",\"ragátmánno\",\"gålgådismánno\",\"basádismánno\",\"javllamánno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ådåjakmáno\",\"guovvamáno\",\"sjnjuktjamáno\",\"vuoratjismáno\",\"moarmesmáno\",\"biehtsemáno\",\"sjnjilltjamáno\",\"bårggemáno\",\"ragátmáno\",\"gålgådismáno\",\"basádismáno\",\"javllamáno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.smj-SE.js",
    "content": "/*\n * Globalize Culture smj-SE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"smj-SE\", \"default\", {\n\tname: \"smj-SE\",\n\tenglishName: \"Sami, Lule (Sweden)\",\n\tnativeName: \"julevusámegiella (Svierik)\",\n\tlanguage: \"smj\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ájllek\",\"mánnodahka\",\"dijstahka\",\"gasskavahkko\",\"duorastahka\",\"bierjjedahka\",\"lávvodahka\"],\n\t\t\t\tnamesAbbr: [\"ájl\",\"mán\",\"dis\",\"gas\",\"duor\",\"bier\",\"láv\"],\n\t\t\t\tnamesShort: [\"á\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ådåjakmánno\",\"guovvamánno\",\"sjnjuktjamánno\",\"vuoratjismánno\",\"moarmesmánno\",\"biehtsemánno\",\"sjnjilltjamánno\",\"bårggemánno\",\"ragátmánno\",\"gålgådismánno\",\"basádismánno\",\"javllamánno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ådåjakmáno\",\"guovvamáno\",\"sjnjuktjamáno\",\"vuoratjismáno\",\"moarmesmáno\",\"biehtsemáno\",\"sjnjilltjamáno\",\"bårggemáno\",\"ragátmáno\",\"gålgådismáno\",\"basádismáno\",\"javllamáno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.smj.js",
    "content": "/*\n * Globalize Culture smj\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"smj\", \"default\", {\n\tname: \"smj\",\n\tenglishName: \"Sami (Lule)\",\n\tnativeName: \"julevusámegiella\",\n\tlanguage: \"smj\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ájllek\",\"mánnodahka\",\"dijstahka\",\"gasskavahkko\",\"duorastahka\",\"bierjjedahka\",\"lávvodahka\"],\n\t\t\t\tnamesAbbr: [\"ájl\",\"mán\",\"dis\",\"gas\",\"duor\",\"bier\",\"láv\"],\n\t\t\t\tnamesShort: [\"á\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ådåjakmánno\",\"guovvamánno\",\"sjnjuktjamánno\",\"vuoratjismánno\",\"moarmesmánno\",\"biehtsemánno\",\"sjnjilltjamánno\",\"bårggemánno\",\"ragátmánno\",\"gålgådismánno\",\"basádismánno\",\"javllamánno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ådåjakmáno\",\"guovvamáno\",\"sjnjuktjamáno\",\"vuoratjismáno\",\"moarmesmáno\",\"biehtsemáno\",\"sjnjilltjamáno\",\"bårggemáno\",\"ragátmáno\",\"gålgådismáno\",\"basádismáno\",\"javllamáno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.smn-FI.js",
    "content": "/*\n * Globalize Culture smn-FI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"smn-FI\", \"default\", {\n\tname: \"smn-FI\",\n\tenglishName: \"Sami, Inari (Finland)\",\n\tnativeName: \"sämikielâ (Suomâ)\",\n\tlanguage: \"smn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pasepeivi\",\"vuossargâ\",\"majebargâ\",\"koskokko\",\"tuorâstâh\",\"vástuppeivi\",\"lávárdâh\"],\n\t\t\t\tnamesAbbr: [\"pa\",\"vu\",\"ma\",\"ko\",\"tu\",\"vá\",\"lá\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"k\",\"t\",\"v\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uđđâivemáánu\",\"kuovâmáánu\",\"njuhčâmáánu\",\"cuáŋuimáánu\",\"vyesimáánu\",\"kesimáánu\",\"syeinimáánu\",\"porgemáánu\",\"čohčâmáánu\",\"roovvâdmáánu\",\"skammâmáánu\",\"juovlâmáánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"uđiv\",\"kuov\",\"njuh\",\"cuoŋ\",\"vyes\",\"kesi\",\"syei\",\"porg\",\"čoh\",\"roov\",\"ska\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.smn.js",
    "content": "/*\n * Globalize Culture smn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"smn\", \"default\", {\n\tname: \"smn\",\n\tenglishName: \"Sami (Inari)\",\n\tnativeName: \"sämikielâ\",\n\tlanguage: \"smn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pasepeivi\",\"vuossargâ\",\"majebargâ\",\"koskokko\",\"tuorâstâh\",\"vástuppeivi\",\"lávárdâh\"],\n\t\t\t\tnamesAbbr: [\"pa\",\"vu\",\"ma\",\"ko\",\"tu\",\"vá\",\"lá\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"k\",\"t\",\"v\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uđđâivemáánu\",\"kuovâmáánu\",\"njuhčâmáánu\",\"cuáŋuimáánu\",\"vyesimáánu\",\"kesimáánu\",\"syeinimáánu\",\"porgemáánu\",\"čohčâmáánu\",\"roovvâdmáánu\",\"skammâmáánu\",\"juovlâmáánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"uđiv\",\"kuov\",\"njuh\",\"cuoŋ\",\"vyes\",\"kesi\",\"syei\",\"porg\",\"čoh\",\"roov\",\"ska\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sms-FI.js",
    "content": "/*\n * Globalize Culture sms-FI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sms-FI\", \"default\", {\n\tname: \"sms-FI\",\n\tenglishName: \"Sami, Skolt (Finland)\",\n\tnativeName: \"sääm´ǩiõll (Lää´ddjânnam)\",\n\tlanguage: \"sms\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pâ´sspei´vv\",\"vuõssargg\",\"mââibargg\",\"seärad\",\"nelljdpei´vv\",\"piâtnâc\",\"sue´vet\"],\n\t\t\t\tnamesAbbr: [\"pâ\",\"vu\",\"mâ\",\"se\",\"ne\",\"pi\",\"su\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"s\",\"n\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđee´jjmään\",\"tä´lvvmään\",\"pâ´zzlâšttammään\",\"njuhččmään\",\"vue´ssmään\",\"ǩie´ssmään\",\"suei´nnmään\",\"på´rǧǧmään\",\"čõhččmään\",\"kålggmään\",\"skamm´mään\",\"rosttovmään\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđee´jjmannu\",\"tä´lvvmannu\",\"pâ´zzlâšttammannu\",\"njuhččmannu\",\"vue´ssmannu\",\"ǩie´ssmannu\",\"suei´nnmannu\",\"på´rǧǧmannu\",\"čõhččmannu\",\"kålggmannu\",\"skamm´mannu\",\"rosttovmannu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sms.js",
    "content": "/*\n * Globalize Culture sms\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sms\", \"default\", {\n\tname: \"sms\",\n\tenglishName: \"Sami (Skolt)\",\n\tnativeName: \"sääm´ǩiõll\",\n\tlanguage: \"sms\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pâ´sspei´vv\",\"vuõssargg\",\"mââibargg\",\"seärad\",\"nelljdpei´vv\",\"piâtnâc\",\"sue´vet\"],\n\t\t\t\tnamesAbbr: [\"pâ\",\"vu\",\"mâ\",\"se\",\"ne\",\"pi\",\"su\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"s\",\"n\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđee´jjmään\",\"tä´lvvmään\",\"pâ´zzlâšttammään\",\"njuhččmään\",\"vue´ssmään\",\"ǩie´ssmään\",\"suei´nnmään\",\"på´rǧǧmään\",\"čõhččmään\",\"kålggmään\",\"skamm´mään\",\"rosttovmään\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđee´jjmannu\",\"tä´lvvmannu\",\"pâ´zzlâšttammannu\",\"njuhččmannu\",\"vue´ssmannu\",\"ǩie´ssmannu\",\"suei´nnmannu\",\"på´rǧǧmannu\",\"čõhččmannu\",\"kålggmannu\",\"skamm´mannu\",\"rosttovmannu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sq-AL.js",
    "content": "/*\n * Globalize Culture sq-AL\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sq-AL\", \"default\", {\n\tname: \"sq-AL\",\n\tenglishName: \"Albanian (Albania)\",\n\tnativeName: \"shqipe (Shqipëria)\",\n\tlanguage: \"sq\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lek\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"e diel\",\"e hënë\",\"e martë\",\"e mërkurë\",\"e enjte\",\"e premte\",\"e shtunë\"],\n\t\t\t\tnamesAbbr: [\"Die\",\"Hën\",\"Mar\",\"Mër\",\"Enj\",\"Pre\",\"Sht\"],\n\t\t\t\tnamesShort: [\"Di\",\"Hë\",\"Ma\",\"Më\",\"En\",\"Pr\",\"Sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janar\",\"shkurt\",\"mars\",\"prill\",\"maj\",\"qershor\",\"korrik\",\"gusht\",\"shtator\",\"tetor\",\"nëntor\",\"dhjetor\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Shk\",\"Mar\",\"Pri\",\"Maj\",\"Qer\",\"Kor\",\"Gsh\",\"Sht\",\"Tet\",\"Nën\",\"Dhj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"PD\",\"pd\",\"PD\"],\n\t\t\tPM: [\"MD\",\"md\",\"MD\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy-MM-dd\",\n\t\t\t\tt: \"h:mm.tt\",\n\t\t\t\tT: \"h:mm:ss.tt\",\n\t\t\t\tf: \"yyyy-MM-dd h:mm.tt\",\n\t\t\t\tF: \"yyyy-MM-dd h:mm:ss.tt\",\n\t\t\t\tY: \"yyyy-MM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sq.js",
    "content": "/*\n * Globalize Culture sq\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sq\", \"default\", {\n\tname: \"sq\",\n\tenglishName: \"Albanian\",\n\tnativeName: \"shqipe\",\n\tlanguage: \"sq\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lek\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"e diel\",\"e hënë\",\"e martë\",\"e mërkurë\",\"e enjte\",\"e premte\",\"e shtunë\"],\n\t\t\t\tnamesAbbr: [\"Die\",\"Hën\",\"Mar\",\"Mër\",\"Enj\",\"Pre\",\"Sht\"],\n\t\t\t\tnamesShort: [\"Di\",\"Hë\",\"Ma\",\"Më\",\"En\",\"Pr\",\"Sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janar\",\"shkurt\",\"mars\",\"prill\",\"maj\",\"qershor\",\"korrik\",\"gusht\",\"shtator\",\"tetor\",\"nëntor\",\"dhjetor\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Shk\",\"Mar\",\"Pri\",\"Maj\",\"Qer\",\"Kor\",\"Gsh\",\"Sht\",\"Tet\",\"Nën\",\"Dhj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"PD\",\"pd\",\"PD\"],\n\t\t\tPM: [\"MD\",\"md\",\"MD\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy-MM-dd\",\n\t\t\t\tt: \"h:mm.tt\",\n\t\t\t\tT: \"h:mm:ss.tt\",\n\t\t\t\tf: \"yyyy-MM-dd h:mm.tt\",\n\t\t\t\tF: \"yyyy-MM-dd h:mm:ss.tt\",\n\t\t\t\tY: \"yyyy-MM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Cyrl-BA.js",
    "content": "/*\n * Globalize Culture sr-Cyrl-BA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Cyrl-BA\", \"default\", {\n\tname: \"sr-Cyrl-BA\",\n\tenglishName: \"Serbian (Cyrillic, Bosnia and Herzegovina)\",\n\tnativeName: \"српски (Босна и Херцеговина)\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"КМ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"у\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Cyrl-CS.js",
    "content": "/*\n * Globalize Culture sr-Cyrl-CS\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Cyrl-CS\", \"default\", {\n\tname: \"sr-Cyrl-CS\",\n\tenglishName: \"Serbian (Cyrillic, Serbia and Montenegro (Former))\",\n\tnativeName: \"српски (Србија и Црна Гора (Претходно))\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Дин.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Cyrl-ME.js",
    "content": "/*\n * Globalize Culture sr-Cyrl-ME\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Cyrl-ME\", \"default\", {\n\tname: \"sr-Cyrl-ME\",\n\tenglishName: \"Serbian (Cyrillic, Montenegro)\",\n\tnativeName: \"српски (Црна Гора)\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Cyrl-RS.js",
    "content": "/*\n * Globalize Culture sr-Cyrl-RS\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Cyrl-RS\", \"default\", {\n\tname: \"sr-Cyrl-RS\",\n\tenglishName: \"Serbian (Cyrillic, Serbia)\",\n\tnativeName: \"српски (Србија)\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Дин.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Cyrl.js",
    "content": "/*\n * Globalize Culture sr-Cyrl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Cyrl\", \"default\", {\n\tname: \"sr-Cyrl\",\n\tenglishName: \"Serbian (Cyrillic)\",\n\tnativeName: \"српски\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Дин.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Latn-BA.js",
    "content": "/*\n * Globalize Culture sr-Latn-BA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Latn-BA\", \"default\", {\n\tname: \"sr-Latn-BA\",\n\tenglishName: \"Serbian (Latin, Bosnia and Herzegovina)\",\n\tnativeName: \"srpski (Bosna i Hercegovina)\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Latn-CS.js",
    "content": "/*\n * Globalize Culture sr-Latn-CS\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Latn-CS\", \"default\", {\n\tname: \"sr-Latn-CS\",\n\tenglishName: \"Serbian (Latin, Serbia and Montenegro (Former))\",\n\tnativeName: \"srpski (Srbija i Crna Gora (Prethodno))\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Latn-ME.js",
    "content": "/*\n * Globalize Culture sr-Latn-ME\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Latn-ME\", \"default\", {\n\tname: \"sr-Latn-ME\",\n\tenglishName: \"Serbian (Latin, Montenegro)\",\n\tnativeName: \"srpski (Crna Gora)\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Latn-RS.js",
    "content": "/*\n * Globalize Culture sr-Latn-RS\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Latn-RS\", \"default\", {\n\tname: \"sr-Latn-RS\",\n\tenglishName: \"Serbian (Latin, Serbia)\",\n\tnativeName: \"srpski (Srbija)\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr-Latn.js",
    "content": "/*\n * Globalize Culture sr-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr-Latn\", \"default\", {\n\tname: \"sr-Latn\",\n\tenglishName: \"Serbian (Latin)\",\n\tnativeName: \"srpski\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sr.js",
    "content": "/*\n * Globalize Culture sr\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sr\", \"default\", {\n\tname: \"sr\",\n\tenglishName: \"Serbian\",\n\tnativeName: \"srpski\",\n\tlanguage: \"sr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sv-FI.js",
    "content": "/*\n * Globalize Culture sv-FI\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sv-FI\", \"default\", {\n\tname: \"sv-FI\",\n\tenglishName: \"Swedish (Finland)\",\n\tnativeName: \"svenska (Finland)\",\n\tlanguage: \"sv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"söndag\",\"måndag\",\"tisdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lördag\"],\n\t\t\t\tnamesAbbr: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"],\n\t\t\t\tnamesShort: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"mars\",\"april\",\"maj\",\"juni\",\"juli\",\"augusti\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"'den 'd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"'den 'd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"'den 'd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'den 'd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sv-SE.js",
    "content": "/*\n * Globalize Culture sv-SE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sv-SE\", \"default\", {\n\tname: \"sv-SE\",\n\tenglishName: \"Swedish (Sweden)\",\n\tnativeName: \"svenska (Sverige)\",\n\tlanguage: \"sv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"söndag\",\"måndag\",\"tisdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lördag\"],\n\t\t\t\tnamesAbbr: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"],\n\t\t\t\tnamesShort: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"mars\",\"april\",\"maj\",\"juni\",\"juli\",\"augusti\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"'den 'd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"'den 'd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"'den 'd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'den 'd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sv.js",
    "content": "/*\n * Globalize Culture sv\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sv\", \"default\", {\n\tname: \"sv\",\n\tenglishName: \"Swedish\",\n\tnativeName: \"svenska\",\n\tlanguage: \"sv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"söndag\",\"måndag\",\"tisdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lördag\"],\n\t\t\t\tnamesAbbr: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"],\n\t\t\t\tnamesShort: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"mars\",\"april\",\"maj\",\"juni\",\"juli\",\"augusti\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"'den 'd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"'den 'd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"'den 'd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'den 'd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sw-KE.js",
    "content": "/*\n * Globalize Culture sw-KE\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sw-KE\", \"default\", {\n\tname: \"sw-KE\",\n\tenglishName: \"Kiswahili (Kenya)\",\n\tnativeName: \"Kiswahili (Kenya)\",\n\tlanguage: \"sw\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"S\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Jumapili\",\"Jumatatu\",\"Jumanne\",\"Jumatano\",\"Alhamisi\",\"Ijumaa\",\"Jumamosi\"],\n\t\t\t\tnamesAbbr: [\"Jumap.\",\"Jumat.\",\"Juman.\",\"Jumat.\",\"Alh.\",\"Iju.\",\"Jumam.\"],\n\t\t\t\tnamesShort: [\"P\",\"T\",\"N\",\"T\",\"A\",\"I\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Machi\",\"Aprili\",\"Mei\",\"Juni\",\"Julai\",\"Agosti\",\"Septemba\",\"Oktoba\",\"Novemba\",\"Decemba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ago\",\"Sep\",\"Okt\",\"Nov\",\"Dec\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.sw.js",
    "content": "/*\n * Globalize Culture sw\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"sw\", \"default\", {\n\tname: \"sw\",\n\tenglishName: \"Kiswahili\",\n\tnativeName: \"Kiswahili\",\n\tlanguage: \"sw\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"S\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Jumapili\",\"Jumatatu\",\"Jumanne\",\"Jumatano\",\"Alhamisi\",\"Ijumaa\",\"Jumamosi\"],\n\t\t\t\tnamesAbbr: [\"Jumap.\",\"Jumat.\",\"Juman.\",\"Jumat.\",\"Alh.\",\"Iju.\",\"Jumam.\"],\n\t\t\t\tnamesShort: [\"P\",\"T\",\"N\",\"T\",\"A\",\"I\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Machi\",\"Aprili\",\"Mei\",\"Juni\",\"Julai\",\"Agosti\",\"Septemba\",\"Oktoba\",\"Novemba\",\"Decemba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ago\",\"Sep\",\"Okt\",\"Nov\",\"Dec\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.syr-SY.js",
    "content": "/*\n * Globalize Culture syr-SY\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"syr-SY\", \"default\", {\n\tname: \"syr-SY\",\n\tenglishName: \"Syriac (Syria)\",\n\tnativeName: \"ܣܘܪܝܝܐ (سوريا)\",\n\tlanguage: \"syr\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ܚܕ ܒܫܒܐ\",\"ܬܪܝܢ ܒܫܒܐ\",\"ܬܠܬܐ ܒܫܒܐ\",\"ܐܪܒܥܐ ܒܫܒܐ\",\"ܚܡܫܐ ܒܫܒܐ\",\"ܥܪܘܒܬܐ\",\"ܫܒܬܐ\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܐ \\u070fܒܫ\",\"\\u070fܒ \\u070fܒܫ\",\"\\u070fܓ \\u070fܒܫ\",\"\\u070fܕ \\u070fܒܫ\",\"\\u070fܗ \\u070fܒܫ\",\"\\u070fܥܪܘܒ\",\"\\u070fܫܒ\"],\n\t\t\t\tnamesShort: [\"ܐ\",\"ܒ\",\"ܓ\",\"ܕ\",\"ܗ\",\"ܥ\",\"ܫ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ܟܢܘܢ ܐܚܪܝ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"ܬܫܪܝ ܩܕܝܡ\",\"ܬܫܪܝ ܐܚܪܝ\",\"ܟܢܘܢ ܩܕܝܡ\",\"\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܟܢ \\u070fܒ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"\\u070fܬܫ \\u070fܐ\",\"\\u070fܬܫ \\u070fܒ\",\"\\u070fܟܢ \\u070fܐ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ܩ.ܛ\",\"ܩ.ܛ\",\"ܩ.ܛ\"],\n\t\t\tPM: [\"ܒ.ܛ\",\"ܒ.ܛ\",\"ܒ.ܛ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.syr.js",
    "content": "/*\n * Globalize Culture syr\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"syr\", \"default\", {\n\tname: \"syr\",\n\tenglishName: \"Syriac\",\n\tnativeName: \"ܣܘܪܝܝܐ\",\n\tlanguage: \"syr\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ܚܕ ܒܫܒܐ\",\"ܬܪܝܢ ܒܫܒܐ\",\"ܬܠܬܐ ܒܫܒܐ\",\"ܐܪܒܥܐ ܒܫܒܐ\",\"ܚܡܫܐ ܒܫܒܐ\",\"ܥܪܘܒܬܐ\",\"ܫܒܬܐ\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܐ \\u070fܒܫ\",\"\\u070fܒ \\u070fܒܫ\",\"\\u070fܓ \\u070fܒܫ\",\"\\u070fܕ \\u070fܒܫ\",\"\\u070fܗ \\u070fܒܫ\",\"\\u070fܥܪܘܒ\",\"\\u070fܫܒ\"],\n\t\t\t\tnamesShort: [\"ܐ\",\"ܒ\",\"ܓ\",\"ܕ\",\"ܗ\",\"ܥ\",\"ܫ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ܟܢܘܢ ܐܚܪܝ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"ܬܫܪܝ ܩܕܝܡ\",\"ܬܫܪܝ ܐܚܪܝ\",\"ܟܢܘܢ ܩܕܝܡ\",\"\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܟܢ \\u070fܒ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"\\u070fܬܫ \\u070fܐ\",\"\\u070fܬܫ \\u070fܒ\",\"\\u070fܟܢ \\u070fܐ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ܩ.ܛ\",\"ܩ.ܛ\",\"ܩ.ܛ\"],\n\t\t\tPM: [\"ܒ.ܛ\",\"ܒ.ܛ\",\"ܒ.ܛ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ta-IN.js",
    "content": "/*\n * Globalize Culture ta-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ta-IN\", \"default\", {\n\tname: \"ta-IN\",\n\tenglishName: \"Tamil (India)\",\n\tnativeName: \"தமிழ் (இந்தியா)\",\n\tlanguage: \"ta\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ரூ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ஞாயிற்றுக்கிழமை\",\"திங்கள்கிழமை\",\"செவ்வாய்கிழமை\",\"புதன்கிழமை\",\"வியாழக்கிழமை\",\"வெள்ளிக்கிழமை\",\"சனிக்கிழமை\"],\n\t\t\t\tnamesAbbr: [\"ஞாயிறு\",\"திங்கள்\",\"செவ்வாய்\",\"புதன்\",\"வியாழன்\",\"வெள்ளி\",\"சனி\"],\n\t\t\t\tnamesShort: [\"ஞா\",\"தி\",\"செ\",\"பு\",\"வி\",\"வெ\",\"ச\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"],\n\t\t\t\tnamesAbbr: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"காலை\",\"காலை\",\"காலை\"],\n\t\t\tPM: [\"மாலை\",\"மாலை\",\"மாலை\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ta.js",
    "content": "/*\n * Globalize Culture ta\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ta\", \"default\", {\n\tname: \"ta\",\n\tenglishName: \"Tamil\",\n\tnativeName: \"தமிழ்\",\n\tlanguage: \"ta\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ரூ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ஞாயிற்றுக்கிழமை\",\"திங்கள்கிழமை\",\"செவ்வாய்கிழமை\",\"புதன்கிழமை\",\"வியாழக்கிழமை\",\"வெள்ளிக்கிழமை\",\"சனிக்கிழமை\"],\n\t\t\t\tnamesAbbr: [\"ஞாயிறு\",\"திங்கள்\",\"செவ்வாய்\",\"புதன்\",\"வியாழன்\",\"வெள்ளி\",\"சனி\"],\n\t\t\t\tnamesShort: [\"ஞா\",\"தி\",\"செ\",\"பு\",\"வி\",\"வெ\",\"ச\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"],\n\t\t\t\tnamesAbbr: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"காலை\",\"காலை\",\"காலை\"],\n\t\t\tPM: [\"மாலை\",\"மாலை\",\"மாலை\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.te-IN.js",
    "content": "/*\n * Globalize Culture te-IN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"te-IN\", \"default\", {\n\tname: \"te-IN\",\n\tenglishName: \"Telugu (India)\",\n\tnativeName: \"తెలుగు (భారత దేశం)\",\n\tlanguage: \"te\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"రూ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ఆదివారం\",\"సోమవారం\",\"మంగళవారం\",\"బుధవారం\",\"గురువారం\",\"శుక్రవారం\",\"శనివారం\"],\n\t\t\t\tnamesAbbr: [\"ఆది.\",\"సోమ.\",\"మంగళ.\",\"బుధ.\",\"గురు.\",\"శుక్ర.\",\"శని.\"],\n\t\t\t\tnamesShort: [\"ఆ\",\"సో\",\"మం\",\"బు\",\"గు\",\"శు\",\"శ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"],\n\t\t\t\tnamesAbbr: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"పూర్వాహ్న\",\"పూర్వాహ్న\",\"పూర్వాహ్న\"],\n\t\t\tPM: [\"అపరాహ్న\",\"అపరాహ్న\",\"అపరాహ్న\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.te.js",
    "content": "/*\n * Globalize Culture te\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"te\", \"default\", {\n\tname: \"te\",\n\tenglishName: \"Telugu\",\n\tnativeName: \"తెలుగు\",\n\tlanguage: \"te\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"రూ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ఆదివారం\",\"సోమవారం\",\"మంగళవారం\",\"బుధవారం\",\"గురువారం\",\"శుక్రవారం\",\"శనివారం\"],\n\t\t\t\tnamesAbbr: [\"ఆది.\",\"సోమ.\",\"మంగళ.\",\"బుధ.\",\"గురు.\",\"శుక్ర.\",\"శని.\"],\n\t\t\t\tnamesShort: [\"ఆ\",\"సో\",\"మం\",\"బు\",\"గు\",\"శు\",\"శ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"],\n\t\t\t\tnamesAbbr: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"పూర్వాహ్న\",\"పూర్వాహ్న\",\"పూర్వాహ్న\"],\n\t\t\tPM: [\"అపరాహ్న\",\"అపరాహ్న\",\"అపరాహ్న\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tg-Cyrl-TJ.js",
    "content": "/*\n * Globalize Culture tg-Cyrl-TJ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tg-Cyrl-TJ\", \"default\", {\n\tname: \"tg-Cyrl-TJ\",\n\tenglishName: \"Tajik (Cyrillic, Tajikistan)\",\n\tnativeName: \"Тоҷикӣ (Тоҷикистон)\",\n\tlanguage: \"tg-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \";\",\n\t\t\tsymbol: \"т.р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"Яш\",\"Душанбе\",\"Сешанбе\",\"Чоршанбе\",\"Панҷшанбе\",\"Ҷумъа\",\"Шанбе\"],\n\t\t\t\tnamesAbbr: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"],\n\t\t\t\tnamesShort: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январи\",\"феврали\",\"марти\",\"апрели\",\"маи\",\"июни\",\"июли\",\"августи\",\"сентябри\",\"октябри\",\"ноябри\",\"декабри\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tg-Cyrl.js",
    "content": "/*\n * Globalize Culture tg-Cyrl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tg-Cyrl\", \"default\", {\n\tname: \"tg-Cyrl\",\n\tenglishName: \"Tajik (Cyrillic)\",\n\tnativeName: \"Тоҷикӣ\",\n\tlanguage: \"tg-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \";\",\n\t\t\tsymbol: \"т.р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"Яш\",\"Душанбе\",\"Сешанбе\",\"Чоршанбе\",\"Панҷшанбе\",\"Ҷумъа\",\"Шанбе\"],\n\t\t\t\tnamesAbbr: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"],\n\t\t\t\tnamesShort: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январи\",\"феврали\",\"марти\",\"апрели\",\"маи\",\"июни\",\"июли\",\"августи\",\"сентябри\",\"октябри\",\"ноябри\",\"декабри\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tg.js",
    "content": "/*\n * Globalize Culture tg\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tg\", \"default\", {\n\tname: \"tg\",\n\tenglishName: \"Tajik\",\n\tnativeName: \"Тоҷикӣ\",\n\tlanguage: \"tg\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \";\",\n\t\t\tsymbol: \"т.р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"Яш\",\"Душанбе\",\"Сешанбе\",\"Чоршанбе\",\"Панҷшанбе\",\"Ҷумъа\",\"Шанбе\"],\n\t\t\t\tnamesAbbr: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"],\n\t\t\t\tnamesShort: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январи\",\"феврали\",\"марти\",\"апрели\",\"маи\",\"июни\",\"июли\",\"августи\",\"сентябри\",\"октябри\",\"ноябри\",\"декабри\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.th-TH.js",
    "content": "/*\n * Globalize Culture th-TH\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"th-TH\", \"default\", {\n\tname: \"th-TH\",\n\tenglishName: \"Thai (Thailand)\",\n\tnativeName: \"ไทย (ไทย)\",\n\tlanguage: \"th\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"฿\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"ThaiBuddhist\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"พ.ศ.\",\"start\":null,\"offset\":-543}],\n\t\t\ttwoDigitYearMax: 2572,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"'วัน'dddd'ที่' d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"'วัน'dddd'ที่' d MMMM yyyy H:mm\",\n\t\t\t\tF: \"'วัน'dddd'ที่' d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.th.js",
    "content": "/*\n * Globalize Culture th\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"th\", \"default\", {\n\tname: \"th\",\n\tenglishName: \"Thai\",\n\tnativeName: \"ไทย\",\n\tlanguage: \"th\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"฿\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"ThaiBuddhist\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"พ.ศ.\",\"start\":null,\"offset\":-543}],\n\t\t\ttwoDigitYearMax: 2572,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"'วัน'dddd'ที่' d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"'วัน'dddd'ที่' d MMMM yyyy H:mm\",\n\t\t\t\tF: \"'วัน'dddd'ที่' d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tk-TM.js",
    "content": "/*\n * Globalize Culture tk-TM\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tk-TM\", \"default\", {\n\tname: \"tk-TM\",\n\tenglishName: \"Turkmen (Turkmenistan)\",\n\tnativeName: \"türkmençe (Türkmenistan)\",\n\tlanguage: \"tk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-üznüksizlik\",\n\t\tpositiveInfinity: \"üznüksizlik\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"m.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Duşenbe\",\"Sişenbe\",\"Çarşenbe\",\"Penşenbe\",\"Anna\",\"Şenbe\",\"Ýekşenbe\"],\n\t\t\t\tnamesAbbr: [\"Db\",\"Sb\",\"Çb\",\"Pb\",\"An\",\"Şb\",\"Ýb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"Ç\",\"P\",\"A\",\"Ş\",\"Ý\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ýanwar\",\"Fewral\",\"Mart\",\"Aprel\",\"Maý\",\"lýun\",\"lýul\",\"Awgust\",\"Sentýabr\",\"Oktýabr\",\"Noýabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ýan\",\"Few\",\"Mart\",\"Apr\",\"Maý\",\"lýun\",\"lýul\",\"Awg\",\"Sen\",\"Okt\",\"Not\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"yyyy 'ý.' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'ý.' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'ý.' MMMM d H:mm:ss\",\n\t\t\t\tY: \"yyyy 'ý.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tk.js",
    "content": "/*\n * Globalize Culture tk\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tk\", \"default\", {\n\tname: \"tk\",\n\tenglishName: \"Turkmen\",\n\tnativeName: \"türkmençe\",\n\tlanguage: \"tk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-üznüksizlik\",\n\t\tpositiveInfinity: \"üznüksizlik\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"m.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Duşenbe\",\"Sişenbe\",\"Çarşenbe\",\"Penşenbe\",\"Anna\",\"Şenbe\",\"Ýekşenbe\"],\n\t\t\t\tnamesAbbr: [\"Db\",\"Sb\",\"Çb\",\"Pb\",\"An\",\"Şb\",\"Ýb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"Ç\",\"P\",\"A\",\"Ş\",\"Ý\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ýanwar\",\"Fewral\",\"Mart\",\"Aprel\",\"Maý\",\"lýun\",\"lýul\",\"Awgust\",\"Sentýabr\",\"Oktýabr\",\"Noýabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ýan\",\"Few\",\"Mart\",\"Apr\",\"Maý\",\"lýun\",\"lýul\",\"Awg\",\"Sen\",\"Okt\",\"Not\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"yyyy 'ý.' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'ý.' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'ý.' MMMM d H:mm:ss\",\n\t\t\t\tY: \"yyyy 'ý.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tn-ZA.js",
    "content": "/*\n * Globalize Culture tn-ZA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tn-ZA\", \"default\", {\n\tname: \"tn-ZA\",\n\tenglishName: \"Setswana (South Africa)\",\n\tnativeName: \"Setswana (Aforika Borwa)\",\n\tlanguage: \"tn\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Latshipi\",\"Mosupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labotlhano\",\"Lamatlhatso\"],\n\t\t\t\tnamesAbbr: [\"Ltp.\",\"Mos.\",\"Lbd.\",\"Lbr.\",\"Lbn.\",\"Lbt.\",\"Lmt.\"],\n\t\t\t\tnamesShort: [\"Lp\",\"Ms\",\"Lb\",\"Lr\",\"Ln\",\"Lt\",\"Lm\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ferikgong\",\"Tlhakole\",\"Mopitloe\",\"Moranang\",\"Motsheganong\",\"Seetebosigo\",\"Phukwi\",\"Phatwe\",\"Lwetse\",\"Diphalane\",\"Ngwanatsele\",\"Sedimothole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fer.\",\"Tlhak.\",\"Mop.\",\"Mor.\",\"Motsh.\",\"Seet.\",\"Phukw.\",\"Phatw.\",\"Lwets.\",\"Diph.\",\"Ngwan.\",\"Sed.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tn.js",
    "content": "/*\n * Globalize Culture tn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tn\", \"default\", {\n\tname: \"tn\",\n\tenglishName: \"Setswana\",\n\tnativeName: \"Setswana\",\n\tlanguage: \"tn\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Latshipi\",\"Mosupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labotlhano\",\"Lamatlhatso\"],\n\t\t\t\tnamesAbbr: [\"Ltp.\",\"Mos.\",\"Lbd.\",\"Lbr.\",\"Lbn.\",\"Lbt.\",\"Lmt.\"],\n\t\t\t\tnamesShort: [\"Lp\",\"Ms\",\"Lb\",\"Lr\",\"Ln\",\"Lt\",\"Lm\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ferikgong\",\"Tlhakole\",\"Mopitloe\",\"Moranang\",\"Motsheganong\",\"Seetebosigo\",\"Phukwi\",\"Phatwe\",\"Lwetse\",\"Diphalane\",\"Ngwanatsele\",\"Sedimothole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fer.\",\"Tlhak.\",\"Mop.\",\"Mor.\",\"Motsh.\",\"Seet.\",\"Phukw.\",\"Phatw.\",\"Lwets.\",\"Diph.\",\"Ngwan.\",\"Sed.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tr-TR.js",
    "content": "/*\n * Globalize Culture tr-TR\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tr-TR\", \"default\", {\n\tname: \"tr-TR\",\n\tenglishName: \"Turkish (Turkey)\",\n\tnativeName: \"Türkçe (Türkiye)\",\n\tlanguage: \"tr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"TL\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Pazar\",\"Pazartesi\",\"Salı\",\"Çarşamba\",\"Perşembe\",\"Cuma\",\"Cumartesi\"],\n\t\t\t\tnamesAbbr: [\"Paz\",\"Pzt\",\"Sal\",\"Çar\",\"Per\",\"Cum\",\"Cmt\"],\n\t\t\t\tnamesShort: [\"Pz\",\"Pt\",\"Sa\",\"Ça\",\"Pe\",\"Cu\",\"Ct\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ocak\",\"Şubat\",\"Mart\",\"Nisan\",\"Mayıs\",\"Haziran\",\"Temmuz\",\"Ağustos\",\"Eylül\",\"Ekim\",\"Kasım\",\"Aralık\",\"\"],\n\t\t\t\tnamesAbbr: [\"Oca\",\"Şub\",\"Mar\",\"Nis\",\"May\",\"Haz\",\"Tem\",\"Ağu\",\"Eyl\",\"Eki\",\"Kas\",\"Ara\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tr.js",
    "content": "/*\n * Globalize Culture tr\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tr\", \"default\", {\n\tname: \"tr\",\n\tenglishName: \"Turkish\",\n\tnativeName: \"Türkçe\",\n\tlanguage: \"tr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"TL\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Pazar\",\"Pazartesi\",\"Salı\",\"Çarşamba\",\"Perşembe\",\"Cuma\",\"Cumartesi\"],\n\t\t\t\tnamesAbbr: [\"Paz\",\"Pzt\",\"Sal\",\"Çar\",\"Per\",\"Cum\",\"Cmt\"],\n\t\t\t\tnamesShort: [\"Pz\",\"Pt\",\"Sa\",\"Ça\",\"Pe\",\"Cu\",\"Ct\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ocak\",\"Şubat\",\"Mart\",\"Nisan\",\"Mayıs\",\"Haziran\",\"Temmuz\",\"Ağustos\",\"Eylül\",\"Ekim\",\"Kasım\",\"Aralık\",\"\"],\n\t\t\t\tnamesAbbr: [\"Oca\",\"Şub\",\"Mar\",\"Nis\",\"May\",\"Haz\",\"Tem\",\"Ağu\",\"Eyl\",\"Eki\",\"Kas\",\"Ara\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tt-RU.js",
    "content": "/*\n * Globalize Culture tt-RU\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tt-RU\", \"default\", {\n\tname: \"tt-RU\",\n\tenglishName: \"Tatar (Russia)\",\n\tnativeName: \"Татар (Россия)\",\n\tlanguage: \"tt\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Якшәмбе\",\"Дүшәмбе\",\"Сишәмбе\",\"Чәршәмбе\",\"Пәнҗешәмбе\",\"Җомга\",\"Шимбә\"],\n\t\t\t\tnamesAbbr: [\"Якш\",\"Дүш\",\"Сиш\",\"Чәрш\",\"Пәнҗ\",\"Җом\",\"Шим\"],\n\t\t\t\tnamesShort: [\"Я\",\"Д\",\"С\",\"Ч\",\"П\",\"Җ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Гыйнвар\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.\",\"Фев.\",\"Мар.\",\"Апр.\",\"Май\",\"Июнь\",\"Июль\",\"Авг.\",\"Сен.\",\"Окт.\",\"Нояб.\",\"Дек.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Гыйнварның\",\"Февральнең\",\"Мартның\",\"Апрельнең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Августның\",\"Сентябрьның\",\"Октябрьның\",\"Ноябрьның\",\"Декабрьның\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.-ның\",\"Фев.-нең\",\"Мар.-ның\",\"Апр.-нең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Авг.-ның\",\"Сен.-ның\",\"Окт.-ның\",\"Нояб.-ның\",\"Дек.-ның\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tt.js",
    "content": "/*\n * Globalize Culture tt\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tt\", \"default\", {\n\tname: \"tt\",\n\tenglishName: \"Tatar\",\n\tnativeName: \"Татар\",\n\tlanguage: \"tt\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Якшәмбе\",\"Дүшәмбе\",\"Сишәмбе\",\"Чәршәмбе\",\"Пәнҗешәмбе\",\"Җомга\",\"Шимбә\"],\n\t\t\t\tnamesAbbr: [\"Якш\",\"Дүш\",\"Сиш\",\"Чәрш\",\"Пәнҗ\",\"Җом\",\"Шим\"],\n\t\t\t\tnamesShort: [\"Я\",\"Д\",\"С\",\"Ч\",\"П\",\"Җ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Гыйнвар\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.\",\"Фев.\",\"Мар.\",\"Апр.\",\"Май\",\"Июнь\",\"Июль\",\"Авг.\",\"Сен.\",\"Окт.\",\"Нояб.\",\"Дек.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Гыйнварның\",\"Февральнең\",\"Мартның\",\"Апрельнең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Августның\",\"Сентябрьның\",\"Октябрьның\",\"Ноябрьның\",\"Декабрьның\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.-ның\",\"Фев.-нең\",\"Мар.-ның\",\"Апр.-нең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Авг.-ның\",\"Сен.-ның\",\"Окт.-ның\",\"Нояб.-ның\",\"Дек.-ның\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tzm-Latn-DZ.js",
    "content": "/*\n * Globalize Culture tzm-Latn-DZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tzm-Latn-DZ\", \"default\", {\n\tname: \"tzm-Latn-DZ\",\n\tenglishName: \"Tamazight (Latin, Algeria)\",\n\tnativeName: \"Tamazight (Djazaïr)\",\n\tlanguage: \"tzm-Latn\",\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"DZD\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Acer\",\"Arime\",\"Aram\",\"Ahad\",\"Amhadh\",\"Sem\",\"Sedh\"],\n\t\t\t\tnamesAbbr: [\"Ace\",\"Ari\",\"Ara\",\"Aha\",\"Amh\",\"Sem\",\"Sed\"],\n\t\t\t\tnamesShort: [\"Ac\",\"Ar\",\"Ar\",\"Ah\",\"Am\",\"Se\",\"Se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yenayer\",\"Furar\",\"Maghres\",\"Yebrir\",\"Mayu\",\"Yunyu\",\"Yulyu\",\"Ghuct\",\"Cutenber\",\"Ktuber\",\"Wambir\",\"Dujanbir\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yen\",\"Fur\",\"Mag\",\"Yeb\",\"May\",\"Yun\",\"Yul\",\"Ghu\",\"Cut\",\"Ktu\",\"Wam\",\"Duj\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tzm-Latn.js",
    "content": "/*\n * Globalize Culture tzm-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tzm-Latn\", \"default\", {\n\tname: \"tzm-Latn\",\n\tenglishName: \"Tamazight (Latin)\",\n\tnativeName: \"Tamazight\",\n\tlanguage: \"tzm-Latn\",\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"DZD\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Acer\",\"Arime\",\"Aram\",\"Ahad\",\"Amhadh\",\"Sem\",\"Sedh\"],\n\t\t\t\tnamesAbbr: [\"Ace\",\"Ari\",\"Ara\",\"Aha\",\"Amh\",\"Sem\",\"Sed\"],\n\t\t\t\tnamesShort: [\"Ac\",\"Ar\",\"Ar\",\"Ah\",\"Am\",\"Se\",\"Se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yenayer\",\"Furar\",\"Maghres\",\"Yebrir\",\"Mayu\",\"Yunyu\",\"Yulyu\",\"Ghuct\",\"Cutenber\",\"Ktuber\",\"Wambir\",\"Dujanbir\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yen\",\"Fur\",\"Mag\",\"Yeb\",\"May\",\"Yun\",\"Yul\",\"Ghu\",\"Cut\",\"Ktu\",\"Wam\",\"Duj\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.tzm.js",
    "content": "/*\n * Globalize Culture tzm\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"tzm\", \"default\", {\n\tname: \"tzm\",\n\tenglishName: \"Tamazight\",\n\tnativeName: \"Tamazight\",\n\tlanguage: \"tzm\",\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"DZD\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Acer\",\"Arime\",\"Aram\",\"Ahad\",\"Amhadh\",\"Sem\",\"Sedh\"],\n\t\t\t\tnamesAbbr: [\"Ace\",\"Ari\",\"Ara\",\"Aha\",\"Amh\",\"Sem\",\"Sed\"],\n\t\t\t\tnamesShort: [\"Ac\",\"Ar\",\"Ar\",\"Ah\",\"Am\",\"Se\",\"Se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yenayer\",\"Furar\",\"Maghres\",\"Yebrir\",\"Mayu\",\"Yunyu\",\"Yulyu\",\"Ghuct\",\"Cutenber\",\"Ktuber\",\"Wambir\",\"Dujanbir\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yen\",\"Fur\",\"Mag\",\"Yeb\",\"May\",\"Yun\",\"Yul\",\"Ghu\",\"Cut\",\"Ktu\",\"Wam\",\"Duj\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ug-CN.js",
    "content": "/*\n * Globalize Culture ug-CN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ug-CN\", \"default\", {\n\tname: \"ug-CN\",\n\tenglishName: \"Uyghur (PRC)\",\n\tnativeName: \"ئۇيغۇرچە (جۇڭخۇا خەلق جۇمھۇرىيىتى)\",\n\tlanguage: \"ug\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"سان ئەمەس\",\n\t\tnegativeInfinity: \"مەنپىي چەكسىزلىك\",\n\t\tpositiveInfinity: \"مۇسبەت چەكسىزلىك\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"يەكشەنبە\",\"دۈشەنبە\",\"سەيشەنبە\",\"چارشەنبە\",\"پەيشەنبە\",\"جۈمە\",\"شەنبە\"],\n\t\t\t\tnamesAbbr: [\"يە\",\"دۈ\",\"سە\",\"چا\",\"پە\",\"جۈ\",\"شە\"],\n\t\t\t\tnamesShort: [\"ي\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"],\n\t\t\t\tnamesAbbr: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\"],\n\t\t\tPM: [\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\"],\n\t\t\teras: [{\"name\":\"مىلادى\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-M-d\",\n\t\t\t\tD: \"yyyy-'يىلى' MMMM d-'كۈنى،'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm\",\n\t\t\t\tF: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm:ss\",\n\t\t\t\tM: \"MMMM d'-كۈنى'\",\n\t\t\t\tY: \"yyyy-'يىلى' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ug.js",
    "content": "/*\n * Globalize Culture ug\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ug\", \"default\", {\n\tname: \"ug\",\n\tenglishName: \"Uyghur\",\n\tnativeName: \"ئۇيغۇرچە\",\n\tlanguage: \"ug\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"سان ئەمەس\",\n\t\tnegativeInfinity: \"مەنپىي چەكسىزلىك\",\n\t\tpositiveInfinity: \"مۇسبەت چەكسىزلىك\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"يەكشەنبە\",\"دۈشەنبە\",\"سەيشەنبە\",\"چارشەنبە\",\"پەيشەنبە\",\"جۈمە\",\"شەنبە\"],\n\t\t\t\tnamesAbbr: [\"يە\",\"دۈ\",\"سە\",\"چا\",\"پە\",\"جۈ\",\"شە\"],\n\t\t\t\tnamesShort: [\"ي\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"],\n\t\t\t\tnamesAbbr: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\"],\n\t\t\tPM: [\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\"],\n\t\t\teras: [{\"name\":\"مىلادى\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-M-d\",\n\t\t\t\tD: \"yyyy-'يىلى' MMMM d-'كۈنى،'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm\",\n\t\t\t\tF: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm:ss\",\n\t\t\t\tM: \"MMMM d'-كۈنى'\",\n\t\t\t\tY: \"yyyy-'يىلى' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uk-UA.js",
    "content": "/*\n * Globalize Culture uk-UA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uk-UA\", \"default\", {\n\tname: \"uk-UA\",\n\tenglishName: \"Ukrainian (Ukraine)\",\n\tnativeName: \"українська (Україна)\",\n\tlanguage: \"uk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-безмежність\",\n\t\tpositiveInfinity: \"безмежність\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₴\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неділя\",\"понеділок\",\"вівторок\",\"середа\",\"четвер\",\"п'ятниця\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Січень\",\"Лютий\",\"Березень\",\"Квітень\",\"Травень\",\"Червень\",\"Липень\",\"Серпень\",\"Вересень\",\"Жовтень\",\"Листопад\",\"Грудень\",\"\"],\n\t\t\t\tnamesAbbr: [\"Січ\",\"Лют\",\"Бер\",\"Кві\",\"Тра\",\"Чер\",\"Лип\",\"Сер\",\"Вер\",\"Жов\",\"Лис\",\"Гру\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"січня\",\"лютого\",\"березня\",\"квітня\",\"травня\",\"червня\",\"липня\",\"серпня\",\"вересня\",\"жовтня\",\"листопада\",\"грудня\",\"\"],\n\t\t\t\tnamesAbbr: [\"січ\",\"лют\",\"бер\",\"кві\",\"тра\",\"чер\",\"лип\",\"сер\",\"вер\",\"жов\",\"лис\",\"гру\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy' р.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy' р.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy' р.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy' р.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uk.js",
    "content": "/*\n * Globalize Culture uk\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uk\", \"default\", {\n\tname: \"uk\",\n\tenglishName: \"Ukrainian\",\n\tnativeName: \"українська\",\n\tlanguage: \"uk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-безмежність\",\n\t\tpositiveInfinity: \"безмежність\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₴\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неділя\",\"понеділок\",\"вівторок\",\"середа\",\"четвер\",\"п'ятниця\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Січень\",\"Лютий\",\"Березень\",\"Квітень\",\"Травень\",\"Червень\",\"Липень\",\"Серпень\",\"Вересень\",\"Жовтень\",\"Листопад\",\"Грудень\",\"\"],\n\t\t\t\tnamesAbbr: [\"Січ\",\"Лют\",\"Бер\",\"Кві\",\"Тра\",\"Чер\",\"Лип\",\"Сер\",\"Вер\",\"Жов\",\"Лис\",\"Гру\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"січня\",\"лютого\",\"березня\",\"квітня\",\"травня\",\"червня\",\"липня\",\"серпня\",\"вересня\",\"жовтня\",\"листопада\",\"грудня\",\"\"],\n\t\t\t\tnamesAbbr: [\"січ\",\"лют\",\"бер\",\"кві\",\"тра\",\"чер\",\"лип\",\"сер\",\"вер\",\"жов\",\"лис\",\"гру\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy' р.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy' р.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy' р.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy' р.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ur-PK.js",
    "content": "/*\n * Globalize Culture ur-PK\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ur-PK\", \"default\", {\n\tname: \"ur-PK\",\n\tenglishName: \"Urdu (Islamic Republic of Pakistan)\",\n\tnativeName: \"اُردو (پاکستان)\",\n\tlanguage: \"ur\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"Rs\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesAbbr: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesShort: [\"ا\",\"پ\",\"م\",\"ب\",\"ج\",\"ج\",\"ه\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tf: \"dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.ur.js",
    "content": "/*\n * Globalize Culture ur\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ur\", \"default\", {\n\tname: \"ur\",\n\tenglishName: \"Urdu\",\n\tnativeName: \"اُردو\",\n\tlanguage: \"ur\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"Rs\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesAbbr: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesShort: [\"ا\",\"پ\",\"م\",\"ب\",\"ج\",\"ج\",\"ه\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tf: \"dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uz-Cyrl-UZ.js",
    "content": "/*\n * Globalize Culture uz-Cyrl-UZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uz-Cyrl-UZ\", \"default\", {\n\tname: \"uz-Cyrl-UZ\",\n\tenglishName: \"Uzbek (Cyrillic, Uzbekistan)\",\n\tnativeName: \"Ўзбек (Ўзбекистон)\",\n\tlanguage: \"uz-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"сўм\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"якшанба\",\"душанба\",\"сешанба\",\"чоршанба\",\"пайшанба\",\"жума\",\"шанба\"],\n\t\t\t\tnamesAbbr: [\"якш\",\"дш\",\"сш\",\"чш\",\"пш\",\"ж\",\"ш\"],\n\t\t\t\tnamesShort: [\"я\",\"д\",\"с\",\"ч\",\"п\",\"ж\",\"ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январ\",\"феврал\",\"март\",\"апрел\",\"май\",\"июн\",\"июл\",\"август\",\"сентябр\",\"октябр\",\"ноябр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'йил' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'йил' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'йил' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uz-Cyrl.js",
    "content": "/*\n * Globalize Culture uz-Cyrl\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uz-Cyrl\", \"default\", {\n\tname: \"uz-Cyrl\",\n\tenglishName: \"Uzbek (Cyrillic)\",\n\tnativeName: \"Ўзбек\",\n\tlanguage: \"uz-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"сўм\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"якшанба\",\"душанба\",\"сешанба\",\"чоршанба\",\"пайшанба\",\"жума\",\"шанба\"],\n\t\t\t\tnamesAbbr: [\"якш\",\"дш\",\"сш\",\"чш\",\"пш\",\"ж\",\"ш\"],\n\t\t\t\tnamesShort: [\"я\",\"д\",\"с\",\"ч\",\"п\",\"ж\",\"ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январ\",\"феврал\",\"март\",\"апрел\",\"май\",\"июн\",\"июл\",\"август\",\"сентябр\",\"октябр\",\"ноябр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'йил' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'йил' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'йил' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uz-Latn-UZ.js",
    "content": "/*\n * Globalize Culture uz-Latn-UZ\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uz-Latn-UZ\", \"default\", {\n\tname: \"uz-Latn-UZ\",\n\tenglishName: \"Uzbek (Latin, Uzbekistan)\",\n\tnativeName: \"U'zbek (U'zbekiston Respublikasi)\",\n\tlanguage: \"uz-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"so'm\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"yakshanba\",\"dushanba\",\"seshanba\",\"chorshanba\",\"payshanba\",\"juma\",\"shanba\"],\n\t\t\t\tnamesAbbr: [\"yak.\",\"dsh.\",\"sesh.\",\"chr.\",\"psh.\",\"jm.\",\"sh.\"],\n\t\t\t\tnamesShort: [\"ya\",\"d\",\"s\",\"ch\",\"p\",\"j\",\"sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM yyyy\",\n\t\t\t\tD: \"yyyy 'yil' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'yil' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'yil' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uz-Latn.js",
    "content": "/*\n * Globalize Culture uz-Latn\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uz-Latn\", \"default\", {\n\tname: \"uz-Latn\",\n\tenglishName: \"Uzbek (Latin)\",\n\tnativeName: \"U'zbek\",\n\tlanguage: \"uz-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"so'm\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"yakshanba\",\"dushanba\",\"seshanba\",\"chorshanba\",\"payshanba\",\"juma\",\"shanba\"],\n\t\t\t\tnamesAbbr: [\"yak.\",\"dsh.\",\"sesh.\",\"chr.\",\"psh.\",\"jm.\",\"sh.\"],\n\t\t\t\tnamesShort: [\"ya\",\"d\",\"s\",\"ch\",\"p\",\"j\",\"sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM yyyy\",\n\t\t\t\tD: \"yyyy 'yil' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'yil' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'yil' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.uz.js",
    "content": "/*\n * Globalize Culture uz\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"uz\", \"default\", {\n\tname: \"uz\",\n\tenglishName: \"Uzbek\",\n\tnativeName: \"U'zbek\",\n\tlanguage: \"uz\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"so'm\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"yakshanba\",\"dushanba\",\"seshanba\",\"chorshanba\",\"payshanba\",\"juma\",\"shanba\"],\n\t\t\t\tnamesAbbr: [\"yak.\",\"dsh.\",\"sesh.\",\"chr.\",\"psh.\",\"jm.\",\"sh.\"],\n\t\t\t\tnamesShort: [\"ya\",\"d\",\"s\",\"ch\",\"p\",\"j\",\"sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM yyyy\",\n\t\t\t\tD: \"yyyy 'yil' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'yil' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'yil' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.vi-VN.js",
    "content": "/*\n * Globalize Culture vi-VN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"vi-VN\", \"default\", {\n\tname: \"vi-VN\",\n\tenglishName: \"Vietnamese (Vietnam)\",\n\tnativeName: \"Tiếng Việt (Việt Nam)\",\n\tlanguage: \"vi\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₫\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Chủ Nhật\",\"Thứ Hai\",\"Thứ Ba\",\"Thứ Tư\",\"Thứ Năm\",\"Thứ Sáu\",\"Thứ Bảy\"],\n\t\t\t\tnamesAbbr: [\"CN\",\"Hai\",\"Ba\",\"Tư\",\"Năm\",\"Sáu\",\"Bảy\"],\n\t\t\t\tnamesShort: [\"C\",\"H\",\"B\",\"T\",\"N\",\"S\",\"B\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tháng Giêng\",\"Tháng Hai\",\"Tháng Ba\",\"Tháng Tư\",\"Tháng Năm\",\"Tháng Sáu\",\"Tháng Bảy\",\"Tháng Tám\",\"Tháng Chín\",\"Tháng Mười\",\"Tháng Mười Một\",\"Tháng Mười Hai\",\"\"],\n\t\t\t\tnamesAbbr: [\"Thg1\",\"Thg2\",\"Thg3\",\"Thg4\",\"Thg5\",\"Thg6\",\"Thg7\",\"Thg8\",\"Thg9\",\"Thg10\",\"Thg11\",\"Thg12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"SA\",\"sa\",\"SA\"],\n\t\t\tPM: [\"CH\",\"ch\",\"CH\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tf: \"dd MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.vi.js",
    "content": "/*\n * Globalize Culture vi\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"vi\", \"default\", {\n\tname: \"vi\",\n\tenglishName: \"Vietnamese\",\n\tnativeName: \"Tiếng Việt\",\n\tlanguage: \"vi\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₫\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Chủ Nhật\",\"Thứ Hai\",\"Thứ Ba\",\"Thứ Tư\",\"Thứ Năm\",\"Thứ Sáu\",\"Thứ Bảy\"],\n\t\t\t\tnamesAbbr: [\"CN\",\"Hai\",\"Ba\",\"Tư\",\"Năm\",\"Sáu\",\"Bảy\"],\n\t\t\t\tnamesShort: [\"C\",\"H\",\"B\",\"T\",\"N\",\"S\",\"B\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tháng Giêng\",\"Tháng Hai\",\"Tháng Ba\",\"Tháng Tư\",\"Tháng Năm\",\"Tháng Sáu\",\"Tháng Bảy\",\"Tháng Tám\",\"Tháng Chín\",\"Tháng Mười\",\"Tháng Mười Một\",\"Tháng Mười Hai\",\"\"],\n\t\t\t\tnamesAbbr: [\"Thg1\",\"Thg2\",\"Thg3\",\"Thg4\",\"Thg5\",\"Thg6\",\"Thg7\",\"Thg8\",\"Thg9\",\"Thg10\",\"Thg11\",\"Thg12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"SA\",\"sa\",\"SA\"],\n\t\t\tPM: [\"CH\",\"ch\",\"CH\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tf: \"dd MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.wo-SN.js",
    "content": "/*\n * Globalize Culture wo-SN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"wo-SN\", \"default\", {\n\tname: \"wo-SN\",\n\tenglishName: \"Wolof (Senegal)\",\n\tnativeName: \"Wolof (Sénégal)\",\n\tlanguage: \"wo\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"XOF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.wo.js",
    "content": "/*\n * Globalize Culture wo\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"wo\", \"default\", {\n\tname: \"wo\",\n\tenglishName: \"Wolof\",\n\tnativeName: \"Wolof\",\n\tlanguage: \"wo\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"XOF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.xh-ZA.js",
    "content": "/*\n * Globalize Culture xh-ZA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"xh-ZA\", \"default\", {\n\tname: \"xh-ZA\",\n\tenglishName: \"isiXhosa (South Africa)\",\n\tnativeName: \"isiXhosa (uMzantsi Afrika)\",\n\tlanguage: \"xh\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iCawa\",\"uMvulo\",\"uLwesibini\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesShort: [\"Ca\",\"Mv\",\"Lb\",\"Lt\",\"Ln\",\"Lh\",\"Mg\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mqungu\",\"Mdumba\",\"Kwindla\",\"Tshazimpuzi\",\"Canzibe\",\"Silimela\",\"Khala\",\"Thupha\",\"Msintsi\",\"Dwarha\",\"Nkanga\",\"Mnga\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.xh.js",
    "content": "/*\n * Globalize Culture xh\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"xh\", \"default\", {\n\tname: \"xh\",\n\tenglishName: \"isiXhosa\",\n\tnativeName: \"isiXhosa\",\n\tlanguage: \"xh\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iCawa\",\"uMvulo\",\"uLwesibini\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesShort: [\"Ca\",\"Mv\",\"Lb\",\"Lt\",\"Ln\",\"Lh\",\"Mg\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mqungu\",\"Mdumba\",\"Kwindla\",\"Tshazimpuzi\",\"Canzibe\",\"Silimela\",\"Khala\",\"Thupha\",\"Msintsi\",\"Dwarha\",\"Nkanga\",\"Mnga\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.yo-NG.js",
    "content": "/*\n * Globalize Culture yo-NG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"yo-NG\", \"default\", {\n\tname: \"yo-NG\",\n\tenglishName: \"Yoruba (Nigeria)\",\n\tnativeName: \"Yoruba (Nigeria)\",\n\tlanguage: \"yo\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Osu kinni\",\"Osu keji\",\"Osu keta\",\"Osu kerin\",\"Osu karun\",\"Osu kefa\",\"Osu keje\",\"Osu kejo\",\"Osu kesan\",\"Osu kewa\",\"Osu kokanla\",\"Osu keresi\",\"\"],\n\t\t\t\tnamesAbbr: [\"kin.\",\"kej.\",\"ket.\",\"ker.\",\"kar.\",\"kef.\",\"kej.\",\"kej.\",\"kes.\",\"kew.\",\"kok.\",\"ker.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Owuro\",\"owuro\",\"OWURO\"],\n\t\t\tPM: [\"Ale\",\"ale\",\"ALE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.yo.js",
    "content": "/*\n * Globalize Culture yo\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"yo\", \"default\", {\n\tname: \"yo\",\n\tenglishName: \"Yoruba\",\n\tnativeName: \"Yoruba\",\n\tlanguage: \"yo\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Osu kinni\",\"Osu keji\",\"Osu keta\",\"Osu kerin\",\"Osu karun\",\"Osu kefa\",\"Osu keje\",\"Osu kejo\",\"Osu kesan\",\"Osu kewa\",\"Osu kokanla\",\"Osu keresi\",\"\"],\n\t\t\t\tnamesAbbr: [\"kin.\",\"kej.\",\"ket.\",\"ker.\",\"kar.\",\"kef.\",\"kej.\",\"kej.\",\"kes.\",\"kew.\",\"kok.\",\"ker.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Owuro\",\"owuro\",\"OWURO\"],\n\t\t\tPM: [\"Ale\",\"ale\",\"ALE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-CHS.js",
    "content": "/*\n * Globalize Culture zh-CHS\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-CHS\", \"default\", {\n\tname: \"zh-CHS\",\n\tenglishName: \"Chinese (Simplified) Legacy\",\n\tnativeName: \"中文(简体) 旧版\",\n\tlanguage: \"zh-CHS\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-CHT.js",
    "content": "/*\n * Globalize Culture zh-CHT\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-CHT\", \"default\", {\n\tname: \"zh-CHT\",\n\tenglishName: \"Chinese (Traditional) Legacy\",\n\tnativeName: \"中文(繁體) 舊版\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"HK$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-CN.js",
    "content": "/*\n * Globalize Culture zh-CN\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-CN\", \"default\", {\n\tname: \"zh-CN\",\n\tenglishName: \"Chinese (Simplified, PRC)\",\n\tnativeName: \"中文(中华人民共和国)\",\n\tlanguage: \"zh-CHS\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-HK.js",
    "content": "/*\n * Globalize Culture zh-HK\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-HK\", \"default\", {\n\tname: \"zh-HK\",\n\tenglishName: \"Chinese (Traditional, Hong Kong S.A.R.)\",\n\tnativeName: \"中文(香港特別行政區)\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"HK$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-Hans.js",
    "content": "/*\n * Globalize Culture zh-Hans\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-Hans\", \"default\", {\n\tname: \"zh-Hans\",\n\tenglishName: \"Chinese (Simplified)\",\n\tnativeName: \"中文(简体)\",\n\tlanguage: \"zh-Hans\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-Hant.js",
    "content": "/*\n * Globalize Culture zh-Hant\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-Hant\", \"default\", {\n\tname: \"zh-Hant\",\n\tenglishName: \"Chinese (Traditional)\",\n\tnativeName: \"中文(繁體)\",\n\tlanguage: \"zh-Hant\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"HK$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-MO.js",
    "content": "/*\n * Globalize Culture zh-MO\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-MO\", \"default\", {\n\tname: \"zh-MO\",\n\tenglishName: \"Chinese (Traditional, Macao S.A.R.)\",\n\tnativeName: \"中文(澳門特別行政區)\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"MOP\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-SG.js",
    "content": "/*\n * Globalize Culture zh-SG\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-SG\", \"default\", {\n\tname: \"zh-SG\",\n\tenglishName: \"Chinese (Simplified, Singapore)\",\n\tnativeName: \"中文(新加坡)\",\n\tlanguage: \"zh-CHS\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' tt h:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' tt h:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh-TW.js",
    "content": "/*\n * Globalize Culture zh-TW\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh-TW\", \"default\", {\n\tname: \"zh-TW\",\n\tenglishName: \"Chinese (Traditional, Taiwan)\",\n\tnativeName: \"中文(台灣)\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"不是一個數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"NT$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"西元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' tt hh:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' tt hh:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t},\n\t\tTaiwan: {\n\t\t\tname: \"Taiwan\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"\",\"start\":null,\"offset\":1911}],\n\t\t\ttwoDigitYearMax: 99,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' tt hh:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' tt hh:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zh.js",
    "content": "/*\n * Globalize Culture zh\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zh\", \"default\", {\n\tname: \"zh\",\n\tenglishName: \"Chinese\",\n\tnativeName: \"中文\",\n\tlanguage: \"zh\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zu-ZA.js",
    "content": "/*\n * Globalize Culture zu-ZA\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zu-ZA\", \"default\", {\n\tname: \"zu-ZA\",\n\tenglishName: \"isiZulu (South Africa)\",\n\tnativeName: \"isiZulu (iNingizimu Afrika)\",\n\tlanguage: \"zu\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iSonto\",\"uMsombuluko\",\"uLwesibili\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesAbbr: [\"Son.\",\"Mso.\",\"Bi.\",\"Tha.\",\"Ne.\",\"Hla.\",\"Mgq.\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uMasingana\",\"uNhlolanja\",\"uNdasa\",\"uMbaso\",\"uNhlaba\",\"uNhlangulana\",\"uNtulikazi\",\"uNcwaba\",\"uMandulo\",\"uMfumfu\",\"uLwezi\",\"uZibandlela\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mas.\",\"Nhlo.\",\"Nda.\",\"Mba.\",\"Nhla.\",\"Nhlang.\",\"Ntu.\",\"Ncwa.\",\"Man.\",\"Mfu.\",\"Lwe.\",\"Zib.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.culture.zu.js",
    "content": "/*\n * Globalize Culture zu\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"zu\", \"default\", {\n\tname: \"zu\",\n\tenglishName: \"isiZulu\",\n\tnativeName: \"isiZulu\",\n\tlanguage: \"zu\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iSonto\",\"uMsombuluko\",\"uLwesibili\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesAbbr: [\"Son.\",\"Mso.\",\"Bi.\",\"Tha.\",\"Ne.\",\"Hla.\",\"Mgq.\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uMasingana\",\"uNhlolanja\",\"uNdasa\",\"uMbaso\",\"uNhlaba\",\"uNhlangulana\",\"uNtulikazi\",\"uNcwaba\",\"uMandulo\",\"uMfumfu\",\"uLwezi\",\"uZibandlela\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mas.\",\"Nhlo.\",\"Nda.\",\"Mba.\",\"Nhla.\",\"Nhlang.\",\"Ntu.\",\"Ncwa.\",\"Man.\",\"Mfu.\",\"Lwe.\",\"Zib.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\n}( this ));\n"
  },
  {
    "path": "test/libs/cultures/globalize.cultures.js",
    "content": "/*\n * Globalize Cultures\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * This file was generated by the Globalize Culture Generator\n * Translation: bugs found in this file need to be fixed in the generator\n */\n\n(function( window, undefined ) {\n\nvar Globalize;\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tGlobalize = require( \"globalize\" );\n} else {\n\t// Global variable\n\tGlobalize = window.Globalize;\n}\n\nGlobalize.addCultureInfo( \"ar\", \"default\", {\n\tname: \"ar\",\n\tenglishName: \"Arabic\",\n\tnativeName: \"العربية\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bg\", \"default\", {\n\tname: \"bg\",\n\tenglishName: \"Bulgarian\",\n\tnativeName: \"български\",\n\tlanguage: \"bg\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"- безкрайност\",\n\t\tpositiveInfinity: \"+ безкрайност\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"лв.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неделя\",\"понеделник\",\"вторник\",\"сряда\",\"четвъртък\",\"петък\",\"събота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"вт\",\"ср\",\"четв\",\"пет\",\"съб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"в\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"януари\",\"февруари\",\"март\",\"април\",\"май\",\"юни\",\"юли\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"ян\",\"февр\",\"март\",\"апр\",\"май\",\"юни\",\"юли\",\"авг\",\"септ\",\"окт\",\"ноември\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"след новата ера\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy 'г.'\",\n\t\t\t\tD: \"dd MMMM yyyy 'г.'\",\n\t\t\t\tt: \"HH:mm 'ч.'\",\n\t\t\t\tT: \"HH:mm:ss 'ч.'\",\n\t\t\t\tf: \"dd MMMM yyyy 'г.' HH:mm 'ч.'\",\n\t\t\t\tF: \"dd MMMM yyyy 'г.' HH:mm:ss 'ч.'\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy 'г.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ca\", \"default\", {\n\tname: \"ca\",\n\tenglishName: \"Catalan\",\n\tnativeName: \"català\",\n\tlanguage: \"ca\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"diumenge\",\"dilluns\",\"dimarts\",\"dimecres\",\"dijous\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dg.\",\"dl.\",\"dt.\",\"dc.\",\"dj.\",\"dv.\",\"ds.\"],\n\t\t\t\tnamesShort: [\"dg\",\"dl\",\"dt\",\"dc\",\"dj\",\"dv\",\"ds\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gener\",\"febrer\",\"març\",\"abril\",\"maig\",\"juny\",\"juliol\",\"agost\",\"setembre\",\"octubre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"març\",\"abr\",\"maig\",\"juny\",\"jul\",\"ag\",\"set\",\"oct\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' / 'MMMM' / 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' / 'MMMM' / 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' / 'MMMM' / 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' / 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-Hans\", \"default\", {\n\tname: \"zh-Hans\",\n\tenglishName: \"Chinese (Simplified)\",\n\tnativeName: \"中文(简体)\",\n\tlanguage: \"zh-Hans\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"cs\", \"default\", {\n\tname: \"cs\",\n\tenglishName: \"Czech\",\n\tnativeName: \"čeština\",\n\tlanguage: \"cs\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Není číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Kč\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"neděle\",\"pondělí\",\"úterý\",\"středa\",\"čtvrtek\",\"pátek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"leden\",\"únor\",\"březen\",\"duben\",\"květen\",\"červen\",\"červenec\",\"srpen\",\"září\",\"říjen\",\"listopad\",\"prosinec\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ledna\",\"února\",\"března\",\"dubna\",\"května\",\"června\",\"července\",\"srpna\",\"září\",\"října\",\"listopadu\",\"prosince\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"dop.\",\"dop.\",\"DOP.\"],\n\t\t\tPM: [\"odp.\",\"odp.\",\"ODP.\"],\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"da\", \"default\", {\n\tname: \"da\",\n\tenglishName: \"Danish\",\n\tnativeName: \"dansk\",\n\tlanguage: \"da\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marts\",\"april\",\"maj\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"de\", \"default\", {\n\tname: \"de\",\n\tenglishName: \"German\",\n\tnativeName: \"Deutsch\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"el\", \"default\", {\n\tname: \"el\",\n\tenglishName: \"Greek\",\n\tnativeName: \"Ελληνικά\",\n\tlanguage: \"el\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"μη αριθμός\",\n\t\tnegativeInfinity: \"-Άπειρο\",\n\t\tpositiveInfinity: \"Άπειρο\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Κυριακή\",\"Δευτέρα\",\"Τρίτη\",\"Τετάρτη\",\"Πέμπτη\",\"Παρασκευή\",\"Σάββατο\"],\n\t\t\t\tnamesAbbr: [\"Κυρ\",\"Δευ\",\"Τρι\",\"Τετ\",\"Πεμ\",\"Παρ\",\"Σαβ\"],\n\t\t\t\tnamesShort: [\"Κυ\",\"Δε\",\"Τρ\",\"Τε\",\"Πε\",\"Πα\",\"Σά\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ιανουάριος\",\"Φεβρουάριος\",\"Μάρτιος\",\"Απρίλιος\",\"Μάιος\",\"Ιούνιος\",\"Ιούλιος\",\"Αύγουστος\",\"Σεπτέμβριος\",\"Οκτώβριος\",\"Νοέμβριος\",\"Δεκέμβριος\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Ιανουαρίου\",\"Φεβρουαρίου\",\"Μαρτίου\",\"Απριλίου\",\"Μαΐου\",\"Ιουνίου\",\"Ιουλίου\",\"Αυγούστου\",\"Σεπτεμβρίου\",\"Οκτωβρίου\",\"Νοεμβρίου\",\"Δεκεμβρίου\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"πμ\",\"πμ\",\"ΠΜ\"],\n\t\t\tPM: [\"μμ\",\"μμ\",\"ΜΜ\"],\n\t\t\teras: [{\"name\":\"μ.Χ.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es\", \"default\", {\n\tname: \"es\",\n\tenglishName: \"Spanish\",\n\tnativeName: \"español\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fi\", \"default\", {\n\tname: \"fi\",\n\tenglishName: \"Finnish\",\n\tnativeName: \"suomi\",\n\tlanguage: \"fi\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnuntai\",\"maanantai\",\"tiistai\",\"keskiviikko\",\"torstai\",\"perjantai\",\"lauantai\"],\n\t\t\t\tnamesAbbr: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"],\n\t\t\t\tnamesShort: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tammikuu\",\"helmikuu\",\"maaliskuu\",\"huhtikuu\",\"toukokuu\",\"kesäkuu\",\"heinäkuu\",\"elokuu\",\"syyskuu\",\"lokakuu\",\"marraskuu\",\"joulukuu\",\"\"],\n\t\t\t\tnamesAbbr: [\"tammi\",\"helmi\",\"maalis\",\"huhti\",\"touko\",\"kesä\",\"heinä\",\"elo\",\"syys\",\"loka\",\"marras\",\"joulu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM'ta 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM'ta 'yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM'ta 'yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM'ta'\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr\", \"default\", {\n\tname: \"fr\",\n\tenglishName: \"French\",\n\tnativeName: \"français\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"he\", \"default\", {\n\tname: \"he\",\n\tenglishName: \"Hebrew\",\n\tnativeName: \"עברית\",\n\tlanguage: \"he\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"לא מספר\",\n\t\tnegativeInfinity: \"אינסוף שלילי\",\n\t\tpositiveInfinity: \"אינסוף חיובי\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"₪\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"יום א\",\"יום ב\",\"יום ג\",\"יום ד\",\"יום ה\",\"יום ו\",\"שבת\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ינואר\",\"פברואר\",\"מרץ\",\"אפריל\",\"מאי\",\"יוני\",\"יולי\",\"אוגוסט\",\"ספטמבר\",\"אוקטובר\",\"נובמבר\",\"דצמבר\",\"\"],\n\t\t\t\tnamesAbbr: [\"ינו\",\"פבר\",\"מרץ\",\"אפר\",\"מאי\",\"יונ\",\"יול\",\"אוג\",\"ספט\",\"אוק\",\"נוב\",\"דצמ\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"לספירה\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tHebrew: {\n\t\t\tname: \"Hebrew\",\n\t\t\t\"/\": \" \",\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"],\n\t\t\t\tnamesAbbr: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"C.E.\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 5790,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd MMMM yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hu\", \"default\", {\n\tname: \"hu\",\n\tenglishName: \"Hungarian\",\n\tnativeName: \"magyar\",\n\tlanguage: \"hu\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nem szám\",\n\t\tnegativeInfinity: \"negatív végtelen\",\n\t\tpositiveInfinity: \"végtelen\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ft\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"vasárnap\",\"hétfő\",\"kedd\",\"szerda\",\"csütörtök\",\"péntek\",\"szombat\"],\n\t\t\t\tnamesAbbr: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"],\n\t\t\t\tnamesShort: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"március\",\"április\",\"május\",\"június\",\"július\",\"augusztus\",\"szeptember\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"febr.\",\"márc.\",\"ápr.\",\"máj.\",\"jún.\",\"júl.\",\"aug.\",\"szept.\",\"okt.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"de.\",\"de.\",\"DE.\"],\n\t\t\tPM: [\"du.\",\"du.\",\"DU.\"],\n\t\t\teras: [{\"name\":\"i.sz.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"yyyy. MMMM d.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy. MMMM d. H:mm\",\n\t\t\t\tF: \"yyyy. MMMM d. H:mm:ss\",\n\t\t\t\tM: \"MMMM d.\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"is\", \"default\", {\n\tname: \"is\",\n\tenglishName: \"Icelandic\",\n\tnativeName: \"íslenska\",\n\tlanguage: \"is\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánudagur\",\"þriðjudagur\",\"miðvikudagur\",\"fimmtudagur\",\"föstudagur\",\"laugardagur\"],\n\t\t\t\tnamesAbbr: [\"sun.\",\"mán.\",\"þri.\",\"mið.\",\"fim.\",\"fös.\",\"lau.\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"þr\",\"mi\",\"fi\",\"fö\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janúar\",\"febrúar\",\"mars\",\"apríl\",\"maí\",\"júní\",\"júlí\",\"ágúst\",\"september\",\"október\",\"nóvember\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"feb.\",\"mar.\",\"apr.\",\"maí\",\"jún.\",\"júl.\",\"ágú.\",\"sep.\",\"okt.\",\"nóv.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"it\", \"default\", {\n\tname: \"it\",\n\tenglishName: \"Italian\",\n\tnativeName: \"italiano\",\n\tlanguage: \"it\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non un numero reale\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domenica\",\"lunedì\",\"martedì\",\"mercoledì\",\"giovedì\",\"venerdì\",\"sabato\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mer\",\"gio\",\"ven\",\"sab\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"me\",\"gi\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gennaio\",\"febbraio\",\"marzo\",\"aprile\",\"maggio\",\"giugno\",\"luglio\",\"agosto\",\"settembre\",\"ottobre\",\"novembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"mar\",\"apr\",\"mag\",\"giu\",\"lug\",\"ago\",\"set\",\"ott\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ja\", \"default\", {\n\tname: \"ja\",\n\tenglishName: \"Japanese\",\n\tnativeName: \"日本語\",\n\tlanguage: \"ja\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NaN (非数値)\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"+∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"西暦\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t},\n\t\tJapanese: {\n\t\t\tname: \"Japanese\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"平成\",\"start\":null,\"offset\":1867},{\"name\":\"昭和\",\"start\":-1812153600000,\"offset\":1911},{\"name\":\"大正\",\"start\":-1357603200000,\"offset\":1925},{\"name\":\"明治\",\"start\":60022080000,\"offset\":1988}],\n\t\t\ttwoDigitYearMax: 99,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg y/M/d\",\n\t\t\t\tD: \"gg y'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"gg y'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"gg y'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"gg y'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ko\", \"default\", {\n\tname: \"ko\",\n\tenglishName: \"Korean\",\n\tnativeName: \"한국어\",\n\tlanguage: \"ko\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"₩\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"서기\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"yyyy'년' M'월'\"\n\t\t\t}\n\t\t},\n\t\tKorean: {\n\t\t\tname: \"Korean\",\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"단기\",\"start\":null,\"offset\":-2333}],\n\t\t\ttwoDigitYearMax: 4362,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg yyyy-MM-dd\",\n\t\t\t\tD: \"gg yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"gg yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"gg yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"gg yyyy'년' M'월'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nl\", \"default\", {\n\tname: \"nl\",\n\tenglishName: \"Dutch\",\n\tnativeName: \"Nederlands\",\n\tlanguage: \"nl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"zondag\",\"maandag\",\"dinsdag\",\"woensdag\",\"donderdag\",\"vrijdag\",\"zaterdag\"],\n\t\t\t\tnamesAbbr: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"],\n\t\t\t\tnamesShort: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"maart\",\"april\",\"mei\",\"juni\",\"juli\",\"augustus\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mrt\",\"apr\",\"mei\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"no\", \"default\", {\n\tname: \"no\",\n\tenglishName: \"Norwegian\",\n\tnativeName: \"norsk\",\n\tlanguage: \"no\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pl\", \"default\", {\n\tname: \"pl\",\n\tenglishName: \"Polish\",\n\tnativeName: \"polski\",\n\tlanguage: \"pl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nie jest liczbą\",\n\t\tnegativeInfinity: \"-nieskończoność\",\n\t\tpositiveInfinity: \"+nieskończoność\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"zł\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"N\",\"Pn\",\"Wt\",\"Śr\",\"Cz\",\"Pt\",\"So\"],\n\t\t\t\tnamesShort: [\"N\",\"Pn\",\"Wt\",\"Śr\",\"Cz\",\"Pt\",\"So\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"stycznia\",\"lutego\",\"marca\",\"kwietnia\",\"maja\",\"czerwca\",\"lipca\",\"sierpnia\",\"września\",\"października\",\"listopada\",\"grudnia\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pt\", \"default\", {\n\tname: \"pt\",\n\tenglishName: \"Portuguese\",\n\tnativeName: \"Português\",\n\tlanguage: \"pt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Não é um número)\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"R$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"segunda-feira\",\"terça-feira\",\"quarta-feira\",\"quinta-feira\",\"sexta-feira\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"seg\",\"ter\",\"qua\",\"qui\",\"sex\",\"sáb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"T\",\"Q\",\"Q\",\"S\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janeiro\",\"fevereiro\",\"março\",\"abril\",\"maio\",\"junho\",\"julho\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"dezembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"fev\",\"mar\",\"abr\",\"mai\",\"jun\",\"jul\",\"ago\",\"set\",\"out\",\"nov\",\"dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' de 'MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' de 'MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd' de 'MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"rm\", \"default\", {\n\tname: \"rm\",\n\tenglishName: \"Romansh\",\n\tnativeName: \"Rumantsch\",\n\tlanguage: \"rm\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"betg def.\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"+infinit\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumengia\",\"glindesdi\",\"mardi\",\"mesemna\",\"gievgia\",\"venderdi\",\"sonda\"],\n\t\t\t\tnamesAbbr: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"],\n\t\t\t\tnamesShort: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"schaner\",\"favrer\",\"mars\",\"avrigl\",\"matg\",\"zercladur\",\"fanadur\",\"avust\",\"settember\",\"october\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"schan\",\"favr\",\"mars\",\"avr\",\"matg\",\"zercl\",\"fan\",\"avust\",\"sett\",\"oct\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"s. Cr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ro\", \"default\", {\n\tname: \"ro\",\n\tenglishName: \"Romanian\",\n\tnativeName: \"română\",\n\tlanguage: \"ro\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"lei\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"duminică\",\"luni\",\"marţi\",\"miercuri\",\"joi\",\"vineri\",\"sâmbătă\"],\n\t\t\t\tnamesAbbr: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ianuarie\",\"februarie\",\"martie\",\"aprilie\",\"mai\",\"iunie\",\"iulie\",\"august\",\"septembrie\",\"octombrie\",\"noiembrie\",\"decembrie\",\"\"],\n\t\t\t\tnamesAbbr: [\"ian.\",\"feb.\",\"mar.\",\"apr.\",\"mai.\",\"iun.\",\"iul.\",\"aug.\",\"sep.\",\"oct.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ru\", \"default\", {\n\tname: \"ru\",\n\tenglishName: \"Russian\",\n\tnativeName: \"русский\",\n\tlanguage: \"ru\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"воскресенье\",\"понедельник\",\"вторник\",\"среда\",\"четверг\",\"пятница\",\"суббота\"],\n\t\t\t\tnamesAbbr: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"января\",\"февраля\",\"марта\",\"апреля\",\"мая\",\"июня\",\"июля\",\"августа\",\"сентября\",\"октября\",\"ноября\",\"декабря\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'г.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'г.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'г.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hr\", \"default\", {\n\tname: \"hr\",\n\tenglishName: \"Croatian\",\n\tnativeName: \"hrvatski\",\n\tlanguage: \"hr\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kn\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"siječanj\",\"veljača\",\"ožujak\",\"travanj\",\"svibanj\",\"lipanj\",\"srpanj\",\"kolovoz\",\"rujan\",\"listopad\",\"studeni\",\"prosinac\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"siječnja\",\"veljače\",\"ožujka\",\"travnja\",\"svibnja\",\"lipnja\",\"srpnja\",\"kolovoza\",\"rujna\",\"listopada\",\"studenog\",\"prosinca\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy.\",\n\t\t\t\tD: \"d. MMMM yyyy.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy. H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy. H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sk\", \"default\", {\n\tname: \"sk\",\n\tenglishName: \"Slovak\",\n\tnativeName: \"slovenčina\",\n\tlanguage: \"sk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Nie je číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedeľa\",\"pondelok\",\"utorok\",\"streda\",\"štvrtok\",\"piatok\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"marec\",\"apríl\",\"máj\",\"jún\",\"júl\",\"august\",\"september\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januára\",\"februára\",\"marca\",\"apríla\",\"mája\",\"júna\",\"júla\",\"augusta\",\"septembra\",\"októbra\",\"novembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sq\", \"default\", {\n\tname: \"sq\",\n\tenglishName: \"Albanian\",\n\tnativeName: \"shqipe\",\n\tlanguage: \"sq\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lek\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"e diel\",\"e hënë\",\"e martë\",\"e mërkurë\",\"e enjte\",\"e premte\",\"e shtunë\"],\n\t\t\t\tnamesAbbr: [\"Die\",\"Hën\",\"Mar\",\"Mër\",\"Enj\",\"Pre\",\"Sht\"],\n\t\t\t\tnamesShort: [\"Di\",\"Hë\",\"Ma\",\"Më\",\"En\",\"Pr\",\"Sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janar\",\"shkurt\",\"mars\",\"prill\",\"maj\",\"qershor\",\"korrik\",\"gusht\",\"shtator\",\"tetor\",\"nëntor\",\"dhjetor\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Shk\",\"Mar\",\"Pri\",\"Maj\",\"Qer\",\"Kor\",\"Gsh\",\"Sht\",\"Tet\",\"Nën\",\"Dhj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"PD\",\"pd\",\"PD\"],\n\t\t\tPM: [\"MD\",\"md\",\"MD\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy-MM-dd\",\n\t\t\t\tt: \"h:mm.tt\",\n\t\t\t\tT: \"h:mm:ss.tt\",\n\t\t\t\tf: \"yyyy-MM-dd h:mm.tt\",\n\t\t\t\tF: \"yyyy-MM-dd h:mm:ss.tt\",\n\t\t\t\tY: \"yyyy-MM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sv\", \"default\", {\n\tname: \"sv\",\n\tenglishName: \"Swedish\",\n\tnativeName: \"svenska\",\n\tlanguage: \"sv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"söndag\",\"måndag\",\"tisdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lördag\"],\n\t\t\t\tnamesAbbr: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"],\n\t\t\t\tnamesShort: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"mars\",\"april\",\"maj\",\"juni\",\"juli\",\"augusti\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"'den 'd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"'den 'd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"'den 'd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'den 'd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"th\", \"default\", {\n\tname: \"th\",\n\tenglishName: \"Thai\",\n\tnativeName: \"ไทย\",\n\tlanguage: \"th\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"฿\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"ThaiBuddhist\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"พ.ศ.\",\"start\":null,\"offset\":-543}],\n\t\t\ttwoDigitYearMax: 2572,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"'วัน'dddd'ที่' d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"'วัน'dddd'ที่' d MMMM yyyy H:mm\",\n\t\t\t\tF: \"'วัน'dddd'ที่' d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tr\", \"default\", {\n\tname: \"tr\",\n\tenglishName: \"Turkish\",\n\tnativeName: \"Türkçe\",\n\tlanguage: \"tr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"TL\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Pazar\",\"Pazartesi\",\"Salı\",\"Çarşamba\",\"Perşembe\",\"Cuma\",\"Cumartesi\"],\n\t\t\t\tnamesAbbr: [\"Paz\",\"Pzt\",\"Sal\",\"Çar\",\"Per\",\"Cum\",\"Cmt\"],\n\t\t\t\tnamesShort: [\"Pz\",\"Pt\",\"Sa\",\"Ça\",\"Pe\",\"Cu\",\"Ct\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ocak\",\"Şubat\",\"Mart\",\"Nisan\",\"Mayıs\",\"Haziran\",\"Temmuz\",\"Ağustos\",\"Eylül\",\"Ekim\",\"Kasım\",\"Aralık\",\"\"],\n\t\t\t\tnamesAbbr: [\"Oca\",\"Şub\",\"Mar\",\"Nis\",\"May\",\"Haz\",\"Tem\",\"Ağu\",\"Eyl\",\"Eki\",\"Kas\",\"Ara\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ur\", \"default\", {\n\tname: \"ur\",\n\tenglishName: \"Urdu\",\n\tnativeName: \"اُردو\",\n\tlanguage: \"ur\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"Rs\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesAbbr: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesShort: [\"ا\",\"پ\",\"م\",\"ب\",\"ج\",\"ج\",\"ه\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tf: \"dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"id\", \"default\", {\n\tname: \"id\",\n\tenglishName: \"Indonesian\",\n\tnativeName: \"Bahasa Indonesia\",\n\tlanguage: \"id\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Rp\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Minggu\",\"Senin\",\"Selasa\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Minggu\",\"Sen\",\"Sel\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"M\",\"S\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Maret\",\"April\",\"Mei\",\"Juni\",\"Juli\",\"Agustus\",\"September\",\"Oktober\",\"Nopember\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Agust\",\"Sep\",\"Okt\",\"Nop\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uk\", \"default\", {\n\tname: \"uk\",\n\tenglishName: \"Ukrainian\",\n\tnativeName: \"українська\",\n\tlanguage: \"uk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-безмежність\",\n\t\tpositiveInfinity: \"безмежність\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₴\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неділя\",\"понеділок\",\"вівторок\",\"середа\",\"четвер\",\"п'ятниця\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Січень\",\"Лютий\",\"Березень\",\"Квітень\",\"Травень\",\"Червень\",\"Липень\",\"Серпень\",\"Вересень\",\"Жовтень\",\"Листопад\",\"Грудень\",\"\"],\n\t\t\t\tnamesAbbr: [\"Січ\",\"Лют\",\"Бер\",\"Кві\",\"Тра\",\"Чер\",\"Лип\",\"Сер\",\"Вер\",\"Жов\",\"Лис\",\"Гру\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"січня\",\"лютого\",\"березня\",\"квітня\",\"травня\",\"червня\",\"липня\",\"серпня\",\"вересня\",\"жовтня\",\"листопада\",\"грудня\",\"\"],\n\t\t\t\tnamesAbbr: [\"січ\",\"лют\",\"бер\",\"кві\",\"тра\",\"чер\",\"лип\",\"сер\",\"вер\",\"жов\",\"лис\",\"гру\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy' р.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy' р.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy' р.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy' р.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"be\", \"default\", {\n\tname: \"be\",\n\tenglishName: \"Belarusian\",\n\tnativeName: \"Беларускі\",\n\tlanguage: \"be\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"нядзеля\",\"панядзелак\",\"аўторак\",\"серада\",\"чацвер\",\"пятніца\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"],\n\t\t\t\tnamesShort: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Студзень\",\"Люты\",\"Сакавік\",\"Красавік\",\"Май\",\"Чэрвень\",\"Ліпень\",\"Жнівень\",\"Верасень\",\"Кастрычнік\",\"Лістапад\",\"Снежань\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"студзеня\",\"лютага\",\"сакавіка\",\"красавіка\",\"мая\",\"чэрвеня\",\"ліпеня\",\"жніўня\",\"верасня\",\"кастрычніка\",\"лістапада\",\"снежня\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sl\", \"default\", {\n\tname: \"sl\",\n\tenglishName: \"Slovenian\",\n\tnativeName: \"slovenski\",\n\tlanguage: \"sl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-neskončnost\",\n\t\tpositiveInfinity: \"neskončnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljek\",\"torek\",\"sreda\",\"četrtek\",\"petek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"tor\",\"sre\",\"čet\",\"pet\",\"sob\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"to\",\"sr\",\"če\",\"pe\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marec\",\"april\",\"maj\",\"junij\",\"julij\",\"avgust\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"et\", \"default\", {\n\tname: \"et\",\n\tenglishName: \"Estonian\",\n\tnativeName: \"eesti\",\n\tlanguage: \"et\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"avaldamatu\",\n\t\tnegativeInfinity: \"miinuslõpmatus\",\n\t\tpositiveInfinity: \"plusslõpmatus\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pühapäev\",\"esmaspäev\",\"teisipäev\",\"kolmapäev\",\"neljapäev\",\"reede\",\"laupäev\"],\n\t\t\t\tnamesAbbr: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"],\n\t\t\t\tnamesShort: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jaanuar\",\"veebruar\",\"märts\",\"aprill\",\"mai\",\"juuni\",\"juuli\",\"august\",\"september\",\"oktoober\",\"november\",\"detsember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jaan\",\"veebr\",\"märts\",\"apr\",\"mai\",\"juuni\",\"juuli\",\"aug\",\"sept\",\"okt\",\"nov\",\"dets\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"EL\",\"el\",\"EL\"],\n\t\t\tPM: [\"PL\",\"pl\",\"PL\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy'. a.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy'. a.' H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy'. a.' H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy'. a.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lv\", \"default\", {\n\tname: \"lv\",\n\tenglishName: \"Latvian\",\n\tnativeName: \"latviešu\",\n\tlanguage: \"lv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-bezgalība\",\n\t\tpositiveInfinity: \"bezgalība\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ls\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"svētdiena\",\"pirmdiena\",\"otrdiena\",\"trešdiena\",\"ceturtdiena\",\"piektdiena\",\"sestdiena\"],\n\t\t\t\tnamesAbbr: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"],\n\t\t\t\tnamesShort: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvāris\",\"februāris\",\"marts\",\"aprīlis\",\"maijs\",\"jūnijs\",\"jūlijs\",\"augusts\",\"septembris\",\"oktobris\",\"novembris\",\"decembris\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"janvārī\",\"februārī\",\"martā\",\"aprīlī\",\"maijā\",\"jūnijā\",\"jūlijā\",\"augustā\",\"septembrī\",\"oktobrī\",\"novembrī\",\"decembrī\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"dddd, yyyy'. gada 'd. MMMM\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy'. gada 'd. MMMM H:mm\",\n\t\t\t\tF: \"dddd, yyyy'. gada 'd. MMMM H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lt\", \"default\", {\n\tname: \"lt\",\n\tenglishName: \"Lithuanian\",\n\tnativeName: \"lietuvių\",\n\tlanguage: \"lt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-begalybė\",\n\t\tpositiveInfinity: \"begalybė\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lt\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sekmadienis\",\"pirmadienis\",\"antradienis\",\"trečiadienis\",\"ketvirtadienis\",\"penktadienis\",\"šeštadienis\"],\n\t\t\t\tnamesAbbr: [\"Sk\",\"Pr\",\"An\",\"Tr\",\"Kt\",\"Pn\",\"Št\"],\n\t\t\t\tnamesShort: [\"S\",\"P\",\"A\",\"T\",\"K\",\"Pn\",\"Š\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"sausis\",\"vasaris\",\"kovas\",\"balandis\",\"gegužė\",\"birželis\",\"liepa\",\"rugpjūtis\",\"rugsėjis\",\"spalis\",\"lapkritis\",\"gruodis\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"sausio\",\"vasario\",\"kovo\",\"balandžio\",\"gegužės\",\"birželio\",\"liepos\",\"rugpjūčio\",\"rugsėjo\",\"spalio\",\"lapkričio\",\"gruodžio\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd\",\n\t\t\t\tD: \"yyyy 'm.' MMMM d 'd.'\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'm.' MMMM d 'd.' HH:mm\",\n\t\t\t\tF: \"yyyy 'm.' MMMM d 'd.' HH:mm:ss\",\n\t\t\t\tM: \"MMMM d 'd.'\",\n\t\t\t\tY: \"yyyy 'm.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tg\", \"default\", {\n\tname: \"tg\",\n\tenglishName: \"Tajik\",\n\tnativeName: \"Тоҷикӣ\",\n\tlanguage: \"tg\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \";\",\n\t\t\tsymbol: \"т.р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"Яш\",\"Душанбе\",\"Сешанбе\",\"Чоршанбе\",\"Панҷшанбе\",\"Ҷумъа\",\"Шанбе\"],\n\t\t\t\tnamesAbbr: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"],\n\t\t\t\tnamesShort: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январи\",\"феврали\",\"марти\",\"апрели\",\"маи\",\"июни\",\"июли\",\"августи\",\"сентябри\",\"октябри\",\"ноябри\",\"декабри\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fa\", \"default\", {\n\tname: \"fa\",\n\tenglishName: \"Persian\",\n\tnativeName: \"فارسى\",\n\tlanguage: \"fa\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\t\".\": \"/\",\n\t\t\tsymbol: \"ريال\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy/MM/dd\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"yyyy/MM/dd hh:mm tt\",\n\t\t\t\tF: \"yyyy/MM/dd hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"vi\", \"default\", {\n\tname: \"vi\",\n\tenglishName: \"Vietnamese\",\n\tnativeName: \"Tiếng Việt\",\n\tlanguage: \"vi\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₫\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Chủ Nhật\",\"Thứ Hai\",\"Thứ Ba\",\"Thứ Tư\",\"Thứ Năm\",\"Thứ Sáu\",\"Thứ Bảy\"],\n\t\t\t\tnamesAbbr: [\"CN\",\"Hai\",\"Ba\",\"Tư\",\"Năm\",\"Sáu\",\"Bảy\"],\n\t\t\t\tnamesShort: [\"C\",\"H\",\"B\",\"T\",\"N\",\"S\",\"B\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tháng Giêng\",\"Tháng Hai\",\"Tháng Ba\",\"Tháng Tư\",\"Tháng Năm\",\"Tháng Sáu\",\"Tháng Bảy\",\"Tháng Tám\",\"Tháng Chín\",\"Tháng Mười\",\"Tháng Mười Một\",\"Tháng Mười Hai\",\"\"],\n\t\t\t\tnamesAbbr: [\"Thg1\",\"Thg2\",\"Thg3\",\"Thg4\",\"Thg5\",\"Thg6\",\"Thg7\",\"Thg8\",\"Thg9\",\"Thg10\",\"Thg11\",\"Thg12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"SA\",\"sa\",\"SA\"],\n\t\t\tPM: [\"CH\",\"ch\",\"CH\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tf: \"dd MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hy\", \"default\", {\n\tname: \"hy\",\n\tenglishName: \"Armenian\",\n\tnativeName: \"Հայերեն\",\n\tlanguage: \"hy\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"դր.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Կիրակի\",\"Երկուշաբթի\",\"Երեքշաբթի\",\"Չորեքշաբթի\",\"Հինգշաբթի\",\"ՈՒրբաթ\",\"Շաբաթ\"],\n\t\t\t\tnamesAbbr: [\"Կիր\",\"Երկ\",\"Երք\",\"Չրք\",\"Հնգ\",\"ՈՒր\",\"Շբթ\"],\n\t\t\t\tnamesShort: [\"Կ\",\"Ե\",\"Ե\",\"Չ\",\"Հ\",\"Ո\",\"Շ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Հունվար\",\"Փետրվար\",\"Մարտ\",\"Ապրիլ\",\"Մայիս\",\"Հունիս\",\"Հուլիս\",\"Օգոստոս\",\"Սեպտեմբեր\",\"Հոկտեմբեր\",\"Նոյեմբեր\",\"Դեկտեմբեր\",\"\"],\n\t\t\t\tnamesAbbr: [\"ՀՆՎ\",\"ՓՏՎ\",\"ՄՐՏ\",\"ԱՊՐ\",\"ՄՅՍ\",\"ՀՆՍ\",\"ՀԼՍ\",\"ՕԳՍ\",\"ՍԵՊ\",\"ՀՈԿ\",\"ՆՈՅ\",\"ԴԵԿ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM, yyyy H:mm\",\n\t\t\t\tF: \"d MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"az\", \"default\", {\n\tname: \"az\",\n\tenglishName: \"Azeri\",\n\tnativeName: \"Azərbaycan\\xadılı\",\n\tlanguage: \"az\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"man.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Bazar\",\"Bazar ertəsi\",\"Çərşənbə axşamı\",\"Çərşənbə\",\"Cümə axşamı\",\"Cümə\",\"Şənbə\"],\n\t\t\t\tnamesAbbr: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"],\n\t\t\t\tnamesShort: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yanvar\",\"Fevral\",\"Mart\",\"Aprel\",\"May\",\"İyun\",\"İyul\",\"Avgust\",\"Sentyabr\",\"Oktyabr\",\"Noyabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"eu\", \"default\", {\n\tname: \"eu\",\n\tenglishName: \"Basque\",\n\tnativeName: \"euskara\",\n\tlanguage: \"eu\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"EdZ\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"igandea\",\"astelehena\",\"asteartea\",\"asteazkena\",\"osteguna\",\"ostirala\",\"larunbata\"],\n\t\t\t\tnamesAbbr: [\"ig.\",\"al.\",\"as.\",\"az.\",\"og.\",\"or.\",\"lr.\"],\n\t\t\t\tnamesShort: [\"ig\",\"al\",\"as\",\"az\",\"og\",\"or\",\"lr\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"urtarrila\",\"otsaila\",\"martxoa\",\"apirila\",\"maiatza\",\"ekaina\",\"uztaila\",\"abuztua\",\"iraila\",\"urria\",\"azaroa\",\"abendua\",\"\"],\n\t\t\t\tnamesAbbr: [\"urt.\",\"ots.\",\"mar.\",\"api.\",\"mai.\",\"eka.\",\"uzt.\",\"abu.\",\"ira.\",\"urr.\",\"aza.\",\"abe.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dddd, yyyy.'eko' MMMM'k 'd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy.'eko' MMMM'k 'd HH:mm\",\n\t\t\t\tF: \"dddd, yyyy.'eko' MMMM'k 'd H:mm:ss\",\n\t\t\t\tY: \"yyyy.'eko' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hsb\", \"default\", {\n\tname: \"hsb\",\n\tenglishName: \"Upper Sorbian\",\n\tnativeName: \"hornjoserbšćina\",\n\tlanguage: \"hsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekónčne\",\n\t\tpositiveInfinity: \"+njekónčne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njedźela\",\"póndźela\",\"wutora\",\"srjeda\",\"štwórtk\",\"pjatk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pón\",\"wut\",\"srj\",\"štw\",\"pja\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"š\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"meja\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"meje\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'hodź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'hodź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mk\", \"default\", {\n\tname: \"mk\",\n\tenglishName: \"Macedonian (FYROM)\",\n\tnativeName: \"македонски јазик\",\n\tlanguage: \"mk\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ден.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недела\",\"понеделник\",\"вторник\",\"среда\",\"четврток\",\"петок\",\"сабота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"втр\",\"срд\",\"чет\",\"пет\",\"саб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"вт\",\"ср\",\"че\",\"пе\",\"са\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануари\",\"февруари\",\"март\",\"април\",\"мај\",\"јуни\",\"јули\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"фев\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"ное\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tn\", \"default\", {\n\tname: \"tn\",\n\tenglishName: \"Setswana\",\n\tnativeName: \"Setswana\",\n\tlanguage: \"tn\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Latshipi\",\"Mosupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labotlhano\",\"Lamatlhatso\"],\n\t\t\t\tnamesAbbr: [\"Ltp.\",\"Mos.\",\"Lbd.\",\"Lbr.\",\"Lbn.\",\"Lbt.\",\"Lmt.\"],\n\t\t\t\tnamesShort: [\"Lp\",\"Ms\",\"Lb\",\"Lr\",\"Ln\",\"Lt\",\"Lm\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ferikgong\",\"Tlhakole\",\"Mopitloe\",\"Moranang\",\"Motsheganong\",\"Seetebosigo\",\"Phukwi\",\"Phatwe\",\"Lwetse\",\"Diphalane\",\"Ngwanatsele\",\"Sedimothole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fer.\",\"Tlhak.\",\"Mop.\",\"Mor.\",\"Motsh.\",\"Seet.\",\"Phukw.\",\"Phatw.\",\"Lwets.\",\"Diph.\",\"Ngwan.\",\"Sed.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"xh\", \"default\", {\n\tname: \"xh\",\n\tenglishName: \"isiXhosa\",\n\tnativeName: \"isiXhosa\",\n\tlanguage: \"xh\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iCawa\",\"uMvulo\",\"uLwesibini\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesShort: [\"Ca\",\"Mv\",\"Lb\",\"Lt\",\"Ln\",\"Lh\",\"Mg\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mqungu\",\"Mdumba\",\"Kwindla\",\"Tshazimpuzi\",\"Canzibe\",\"Silimela\",\"Khala\",\"Thupha\",\"Msintsi\",\"Dwarha\",\"Nkanga\",\"Mnga\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zu\", \"default\", {\n\tname: \"zu\",\n\tenglishName: \"isiZulu\",\n\tnativeName: \"isiZulu\",\n\tlanguage: \"zu\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iSonto\",\"uMsombuluko\",\"uLwesibili\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesAbbr: [\"Son.\",\"Mso.\",\"Bi.\",\"Tha.\",\"Ne.\",\"Hla.\",\"Mgq.\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uMasingana\",\"uNhlolanja\",\"uNdasa\",\"uMbaso\",\"uNhlaba\",\"uNhlangulana\",\"uNtulikazi\",\"uNcwaba\",\"uMandulo\",\"uMfumfu\",\"uLwezi\",\"uZibandlela\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mas.\",\"Nhlo.\",\"Nda.\",\"Mba.\",\"Nhla.\",\"Nhlang.\",\"Ntu.\",\"Ncwa.\",\"Man.\",\"Mfu.\",\"Lwe.\",\"Zib.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"af\", \"default\", {\n\tname: \"af\",\n\tenglishName: \"Afrikaans\",\n\tnativeName: \"Afrikaans\",\n\tlanguage: \"af\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sondag\",\"Maandag\",\"Dinsdag\",\"Woensdag\",\"Donderdag\",\"Vrydag\",\"Saterdag\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Maan\",\"Dins\",\"Woen\",\"Dond\",\"Vry\",\"Sat\"],\n\t\t\t\tnamesShort: [\"So\",\"Ma\",\"Di\",\"Wo\",\"Do\",\"Vr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januarie\",\"Februarie\",\"Maart\",\"April\",\"Mei\",\"Junie\",\"Julie\",\"Augustus\",\"September\",\"Oktober\",\"November\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ka\", \"default\", {\n\tname: \"ka\",\n\tenglishName: \"Georgian\",\n\tnativeName: \"ქართული\",\n\tlanguage: \"ka\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lari\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesAbbr: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesShort: [\"კ\",\"ო\",\"ს\",\"ო\",\"ხ\",\"პ\",\"შ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"იანვარი\",\"თებერვალი\",\"მარტი\",\"აპრილი\",\"მაისი\",\"ივნისი\",\"ივლისი\",\"აგვისტო\",\"სექტემბერი\",\"ოქტომბერი\",\"ნოემბერი\",\"დეკემბერი\",\"\"],\n\t\t\t\tnamesAbbr: [\"იან\",\"თებ\",\"მარ\",\"აპრ\",\"მაის\",\"ივნ\",\"ივლ\",\"აგვ\",\"სექ\",\"ოქტ\",\"ნოემ\",\"დეკ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'წლის' dd MM, dddd\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'წლის' dd MM, dddd H:mm\",\n\t\t\t\tF: \"yyyy 'წლის' dd MM, dddd H:mm:ss\",\n\t\t\t\tM: \"dd MM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fo\", \"default\", {\n\tname: \"fo\",\n\tenglishName: \"Faroese\",\n\tnativeName: \"føroyskt\",\n\tlanguage: \"fo\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánadagur\",\"týsdagur\",\"mikudagur\",\"hósdagur\",\"fríggjadagur\",\"leygardagur\"],\n\t\t\t\tnamesAbbr: [\"sun\",\"mán\",\"týs\",\"mik\",\"hós\",\"frí\",\"leyg\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"tý\",\"mi\",\"hó\",\"fr\",\"ley\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"apríl\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hi\", \"default\", {\n\tname: \"hi\",\n\tenglishName: \"Hindi\",\n\tnativeName: \"हिंदी\",\n\tlanguage: \"hi\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगलवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगल.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mt\", \"default\", {\n\tname: \"mt\",\n\tenglishName: \"Maltese\",\n\tnativeName: \"Malti\",\n\tlanguage: \"mt\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Il-Ħadd\",\"It-Tnejn\",\"It-Tlieta\",\"L-Erbgħa\",\"Il-Ħamis\",\"Il-Ġimgħa\",\"Is-Sibt\"],\n\t\t\t\tnamesAbbr: [\"Ħad\",\"Tne\",\"Tli\",\"Erb\",\"Ħam\",\"Ġim\",\"Sib\"],\n\t\t\t\tnamesShort: [\"I\",\"I\",\"I\",\"L\",\"I\",\"I\",\"I\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jannar\",\"Frar\",\"Marzu\",\"April\",\"Mejju\",\"Ġunju\",\"Lulju\",\"Awissu\",\"Settembru\",\"Ottubru\",\"Novembru\",\"Diċembru\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Fra\",\"Mar\",\"Apr\",\"Mej\",\"Ġun\",\"Lul\",\"Awi\",\"Set\",\"Ott\",\"Nov\",\"Diċ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' ta\\\\' 'MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d' ta\\\\' 'MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"se\", \"default\", {\n\tname: \"se\",\n\tenglishName: \"Sami (Northern)\",\n\tnativeName: \"davvisámegiella\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"vuossárga\",\"maŋŋebárga\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"vuos\",\"maŋ\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ga\", \"default\", {\n\tname: \"ga\",\n\tenglishName: \"Irish\",\n\tnativeName: \"Gaeilge\",\n\tlanguage: \"ga\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dé Domhnaigh\",\"Dé Luain\",\"Dé Máirt\",\"Dé Céadaoin\",\"Déardaoin\",\"Dé hAoine\",\"Dé Sathairn\"],\n\t\t\t\tnamesAbbr: [\"Domh\",\"Luan\",\"Máir\",\"Céad\",\"Déar\",\"Aoi\",\"Sath\"],\n\t\t\t\tnamesShort: [\"Do\",\"Lu\",\"Má\",\"Cé\",\"De\",\"Ao\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Eanáir\",\"Feabhra\",\"Márta\",\"Aibreán\",\"Bealtaine\",\"Meitheamh\",\"Iúil\",\"Lúnasa\",\"Meán Fómhair\",\"Deireadh Fómhair\",\"Samhain\",\"Nollaig\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ean\",\"Feabh\",\"Már\",\"Aib\",\"Bealt\",\"Meith\",\"Iúil\",\"Lún\",\"M.Fómh\",\"D.Fómh\",\"Samh\",\"Noll\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"r.n.\",\"r.n.\",\"R.N.\"],\n\t\t\tPM: [\"i.n.\",\"i.n.\",\"I.N.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ms\", \"default\", {\n\tname: \"ms\",\n\tenglishName: \"Malay\",\n\tnativeName: \"Bahasa Melayu\",\n\tlanguage: \"ms\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"RM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ahad\",\"Isnin\",\"Selasa\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Ahad\",\"Isnin\",\"Sel\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"A\",\"I\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Mac\",\"April\",\"Mei\",\"Jun\",\"Julai\",\"Ogos\",\"September\",\"Oktober\",\"November\",\"Disember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ogos\",\"Sept\",\"Okt\",\"Nov\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kk\", \"default\", {\n\tname: \"kk\",\n\tenglishName: \"Kazakh\",\n\tnativeName: \"Қазақ\",\n\tlanguage: \"kk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"Т\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жексенбі\",\"Дүйсенбі\",\"Сейсенбі\",\"Сәрсенбі\",\"Бейсенбі\",\"Жұма\",\"Сенбі\"],\n\t\t\t\tnamesAbbr: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"],\n\t\t\t\tnamesShort: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"қаңтар\",\"ақпан\",\"наурыз\",\"сәуір\",\"мамыр\",\"маусым\",\"шілде\",\"тамыз\",\"қыркүйек\",\"қазан\",\"қараша\",\"желтоқсан\",\"\"],\n\t\t\t\tnamesAbbr: [\"Қаң\",\"Ақп\",\"Нау\",\"Сәу\",\"Мам\",\"Мау\",\"Шіл\",\"Там\",\"Қыр\",\"Қаз\",\"Қар\",\"Жел\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'ж.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ky\", \"default\", {\n\tname: \"ky\",\n\tenglishName: \"Kyrgyz\",\n\tnativeName: \"Кыргыз\",\n\tlanguage: \"ky\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"сом\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жекшемби\",\"Дүйшөмбү\",\"Шейшемби\",\"Шаршемби\",\"Бейшемби\",\"Жума\",\"Ишемби\"],\n\t\t\t\tnamesAbbr: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"],\n\t\t\t\tnamesShort: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d'-'MMMM yyyy'-ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d'-'MMMM yyyy'-ж.' H:mm\",\n\t\t\t\tF: \"d'-'MMMM yyyy'-ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy'-ж.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sw\", \"default\", {\n\tname: \"sw\",\n\tenglishName: \"Kiswahili\",\n\tnativeName: \"Kiswahili\",\n\tlanguage: \"sw\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"S\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Jumapili\",\"Jumatatu\",\"Jumanne\",\"Jumatano\",\"Alhamisi\",\"Ijumaa\",\"Jumamosi\"],\n\t\t\t\tnamesAbbr: [\"Jumap.\",\"Jumat.\",\"Juman.\",\"Jumat.\",\"Alh.\",\"Iju.\",\"Jumam.\"],\n\t\t\t\tnamesShort: [\"P\",\"T\",\"N\",\"T\",\"A\",\"I\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Machi\",\"Aprili\",\"Mei\",\"Juni\",\"Julai\",\"Agosti\",\"Septemba\",\"Oktoba\",\"Novemba\",\"Decemba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ago\",\"Sep\",\"Okt\",\"Nov\",\"Dec\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tk\", \"default\", {\n\tname: \"tk\",\n\tenglishName: \"Turkmen\",\n\tnativeName: \"türkmençe\",\n\tlanguage: \"tk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-üznüksizlik\",\n\t\tpositiveInfinity: \"üznüksizlik\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"m.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Duşenbe\",\"Sişenbe\",\"Çarşenbe\",\"Penşenbe\",\"Anna\",\"Şenbe\",\"Ýekşenbe\"],\n\t\t\t\tnamesAbbr: [\"Db\",\"Sb\",\"Çb\",\"Pb\",\"An\",\"Şb\",\"Ýb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"Ç\",\"P\",\"A\",\"Ş\",\"Ý\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ýanwar\",\"Fewral\",\"Mart\",\"Aprel\",\"Maý\",\"lýun\",\"lýul\",\"Awgust\",\"Sentýabr\",\"Oktýabr\",\"Noýabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ýan\",\"Few\",\"Mart\",\"Apr\",\"Maý\",\"lýun\",\"lýul\",\"Awg\",\"Sen\",\"Okt\",\"Not\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"yyyy 'ý.' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'ý.' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'ý.' MMMM d H:mm:ss\",\n\t\t\t\tY: \"yyyy 'ý.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uz\", \"default\", {\n\tname: \"uz\",\n\tenglishName: \"Uzbek\",\n\tnativeName: \"U'zbek\",\n\tlanguage: \"uz\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"so'm\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"yakshanba\",\"dushanba\",\"seshanba\",\"chorshanba\",\"payshanba\",\"juma\",\"shanba\"],\n\t\t\t\tnamesAbbr: [\"yak.\",\"dsh.\",\"sesh.\",\"chr.\",\"psh.\",\"jm.\",\"sh.\"],\n\t\t\t\tnamesShort: [\"ya\",\"d\",\"s\",\"ch\",\"p\",\"j\",\"sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM yyyy\",\n\t\t\t\tD: \"yyyy 'yil' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'yil' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'yil' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tt\", \"default\", {\n\tname: \"tt\",\n\tenglishName: \"Tatar\",\n\tnativeName: \"Татар\",\n\tlanguage: \"tt\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Якшәмбе\",\"Дүшәмбе\",\"Сишәмбе\",\"Чәршәмбе\",\"Пәнҗешәмбе\",\"Җомга\",\"Шимбә\"],\n\t\t\t\tnamesAbbr: [\"Якш\",\"Дүш\",\"Сиш\",\"Чәрш\",\"Пәнҗ\",\"Җом\",\"Шим\"],\n\t\t\t\tnamesShort: [\"Я\",\"Д\",\"С\",\"Ч\",\"П\",\"Җ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Гыйнвар\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.\",\"Фев.\",\"Мар.\",\"Апр.\",\"Май\",\"Июнь\",\"Июль\",\"Авг.\",\"Сен.\",\"Окт.\",\"Нояб.\",\"Дек.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Гыйнварның\",\"Февральнең\",\"Мартның\",\"Апрельнең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Августның\",\"Сентябрьның\",\"Октябрьның\",\"Ноябрьның\",\"Декабрьның\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.-ның\",\"Фев.-нең\",\"Мар.-ның\",\"Апр.-нең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Авг.-ның\",\"Сен.-ның\",\"Окт.-ның\",\"Нояб.-ның\",\"Дек.-ның\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bn\", \"default\", {\n\tname: \"bn\",\n\tenglishName: \"Bengali\",\n\tnativeName: \"বাংলা\",\n\tlanguage: \"bn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"টা\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"রবিবার\",\"সোমবার\",\"মঙ্গলবার\",\"বুধবার\",\"বৃহস্পতিবার\",\"শুক্রবার\",\"শনিবার\"],\n\t\t\t\tnamesAbbr: [\"রবি.\",\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহস্পতি.\",\"শুক্র.\",\"শনি.\"],\n\t\t\t\tnamesShort: [\"র\",\"স\",\"ম\",\"ব\",\"ব\",\"শ\",\"শ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুয়ারী\",\"ফেব্রুয়ারী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগস্ট\",\"সেপ্টেম্বর\",\"অক্টোবর\",\"নভেম্বর\",\"ডিসেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু.\",\"ফেব্রু.\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগ.\",\"সেপ্টে.\",\"অক্টো.\",\"নভে.\",\"ডিসে.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"পুর্বাহ্ন\",\"পুর্বাহ্ন\",\"পুর্বাহ্ন\"],\n\t\t\tPM: [\"অপরাহ্ন\",\"অপরাহ্ন\",\"অপরাহ্ন\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pa\", \"default\", {\n\tname: \"pa\",\n\tenglishName: \"Punjabi\",\n\tnativeName: \"ਪੰਜਾਬੀ\",\n\tlanguage: \"pa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ਰੁ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ਐਤਵਾਰ\",\"ਸੋਮਵਾਰ\",\"ਮੰਗਲਵਾਰ\",\"ਬੁੱਧਵਾਰ\",\"ਵੀਰਵਾਰ\",\"ਸ਼ੁੱਕਰਵਾਰ\",\"ਸ਼ਨਿੱਚਰਵਾਰ\"],\n\t\t\t\tnamesAbbr: [\"ਐਤ.\",\"ਸੋਮ.\",\"ਮੰਗਲ.\",\"ਬੁੱਧ.\",\"ਵੀਰ.\",\"ਸ਼ੁਕਰ.\",\"ਸ਼ਨਿੱਚਰ.\"],\n\t\t\t\tnamesShort: [\"ਐ\",\"ਸ\",\"ਮ\",\"ਬ\",\"ਵ\",\"ਸ਼\",\"ਸ਼\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ਸਵੇਰ\",\"ਸਵੇਰ\",\"ਸਵੇਰ\"],\n\t\t\tPM: [\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd tt hh:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd tt hh:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gu\", \"default\", {\n\tname: \"gu\",\n\tenglishName: \"Gujarati\",\n\tnativeName: \"ગુજરાતી\",\n\tlanguage: \"gu\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"રૂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"રવિવાર\",\"સોમવાર\",\"મંગળવાર\",\"બુધવાર\",\"ગુરુવાર\",\"શુક્રવાર\",\"શનિવાર\"],\n\t\t\t\tnamesAbbr: [\"રવિ\",\"સોમ\",\"મંગળ\",\"બુધ\",\"ગુરુ\",\"શુક્ર\",\"શનિ\"],\n\t\t\t\tnamesShort: [\"ર\",\"સ\",\"મ\",\"બ\",\"ગ\",\"શ\",\"શ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"જાન્યુઆરી\",\"ફેબ્રુઆરી\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટેમ્બર\",\"ઑક્ટ્બર\",\"નવેમ્બર\",\"ડિસેમ્બર\",\"\"],\n\t\t\t\tnamesAbbr: [\"જાન્યુ\",\"ફેબ્રુ\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટે\",\"ઑક્ટો\",\"નવે\",\"ડિસે\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\"],\n\t\t\tPM: [\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"or\", \"default\", {\n\tname: \"or\",\n\tenglishName: \"Oriya\",\n\tnativeName: \"ଓଡ଼ିଆ\",\n\tlanguage: \"or\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ଟ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ରବିବାର\",\"ସୋମବାର\",\"ମଙ୍ଗଳବାର\",\"ବୁଧବାର\",\"ଗୁରୁବାର\",\"ଶୁକ୍ରବାର\",\"ଶନିବାର\"],\n\t\t\t\tnamesAbbr: [\"ରବି.\",\"ସୋମ.\",\"ମଙ୍ଗଳ.\",\"ବୁଧ.\",\"ଗୁରୁ.\",\"ଶୁକ୍ର.\",\"ଶନି.\"],\n\t\t\t\tnamesShort: [\"ର\",\"ସୋ\",\"ମ\",\"ବୁ\",\"ଗୁ\",\"ଶୁ\",\"ଶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"],\n\t\t\t\tnamesAbbr: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"ଖ୍ରୀଷ୍ଟାବ୍ଦ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ta\", \"default\", {\n\tname: \"ta\",\n\tenglishName: \"Tamil\",\n\tnativeName: \"தமிழ்\",\n\tlanguage: \"ta\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ரூ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ஞாயிற்றுக்கிழமை\",\"திங்கள்கிழமை\",\"செவ்வாய்கிழமை\",\"புதன்கிழமை\",\"வியாழக்கிழமை\",\"வெள்ளிக்கிழமை\",\"சனிக்கிழமை\"],\n\t\t\t\tnamesAbbr: [\"ஞாயிறு\",\"திங்கள்\",\"செவ்வாய்\",\"புதன்\",\"வியாழன்\",\"வெள்ளி\",\"சனி\"],\n\t\t\t\tnamesShort: [\"ஞா\",\"தி\",\"செ\",\"பு\",\"வி\",\"வெ\",\"ச\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"],\n\t\t\t\tnamesAbbr: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"காலை\",\"காலை\",\"காலை\"],\n\t\t\tPM: [\"மாலை\",\"மாலை\",\"மாலை\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"te\", \"default\", {\n\tname: \"te\",\n\tenglishName: \"Telugu\",\n\tnativeName: \"తెలుగు\",\n\tlanguage: \"te\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"రూ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ఆదివారం\",\"సోమవారం\",\"మంగళవారం\",\"బుధవారం\",\"గురువారం\",\"శుక్రవారం\",\"శనివారం\"],\n\t\t\t\tnamesAbbr: [\"ఆది.\",\"సోమ.\",\"మంగళ.\",\"బుధ.\",\"గురు.\",\"శుక్ర.\",\"శని.\"],\n\t\t\t\tnamesShort: [\"ఆ\",\"సో\",\"మం\",\"బు\",\"గు\",\"శు\",\"శ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"],\n\t\t\t\tnamesAbbr: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"పూర్వాహ్న\",\"పూర్వాహ్న\",\"పూర్వాహ్న\"],\n\t\t\tPM: [\"అపరాహ్న\",\"అపరాహ్న\",\"అపరాహ్న\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kn\", \"default\", {\n\tname: \"kn\",\n\tenglishName: \"Kannada\",\n\tnativeName: \"ಕನ್ನಡ\",\n\tlanguage: \"kn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ರೂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ಭಾನುವಾರ\",\"ಸೋಮವಾರ\",\"ಮಂಗಳವಾರ\",\"ಬುಧವಾರ\",\"ಗುರುವಾರ\",\"ಶುಕ್ರವಾರ\",\"ಶನಿವಾರ\"],\n\t\t\t\tnamesAbbr: [\"ಭಾನು.\",\"ಸೋಮ.\",\"ಮಂಗಳ.\",\"ಬುಧ.\",\"ಗುರು.\",\"ಶುಕ್ರ.\",\"ಶನಿ.\"],\n\t\t\t\tnamesShort: [\"ರ\",\"ಸ\",\"ಮ\",\"ಬ\",\"ಗ\",\"ಶ\",\"ಶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"],\n\t\t\t\tnamesAbbr: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\"],\n\t\t\tPM: [\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ml\", \"default\", {\n\tname: \"ml\",\n\tenglishName: \"Malayalam\",\n\tnativeName: \"മലയാളം\",\n\tlanguage: \"ml\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ക\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ഞായറാഴ്ച\",\"തിങ്കളാഴ്ച\",\"ചൊവ്വാഴ്ച\",\"ബുധനാഴ്ച\",\"വ്യാഴാഴ്ച\",\"വെള്ളിയാഴ്ച\",\"ശനിയാഴ്ച\"],\n\t\t\t\tnamesAbbr: [\"ഞായർ.\",\"തിങ്കൾ.\",\"ചൊവ്വ.\",\"ബുധൻ.\",\"വ്യാഴം.\",\"വെള്ളി.\",\"ശനി.\"],\n\t\t\t\tnamesShort: [\"ഞ\",\"ത\",\"ച\",\"ബ\",\"വ\",\"വെ\",\"ശ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"],\n\t\t\t\tnamesAbbr: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"as\", \"default\", {\n\tname: \"as\",\n\tenglishName: \"Assamese\",\n\tnativeName: \"অসমীয়া\",\n\tlanguage: \"as\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"n$\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ট\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"সোমবাৰ\",\"মঙ্গলবাৰ\",\"বুধবাৰ\",\"বৃহস্পতিবাৰ\",\"শুক্রবাৰ\",\"শনিবাৰ\",\"ৰবিবাৰ\"],\n\t\t\t\tnamesAbbr: [\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহ.\",\"শুক্র.\",\"শনি.\",\"ৰবি.\"],\n\t\t\t\tnamesShort: [\"সো\",\"ম\",\"বু\",\"বৃ\",\"শু\",\"শ\",\"র\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুৱাৰী\",\"ফেব্রুৱাৰী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টেম্বর\",\"অক্টোবর\",\"নবেম্বর\",\"ডিচেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু\",\"ফেব্রু\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টে\",\"অক্টো\",\"নবে\",\"ডিচে\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ৰাতিপু\",\"ৰাতিপু\",\"ৰাতিপু\"],\n\t\t\tPM: [\"আবেলি\",\"আবেলি\",\"আবেলি\"],\n\t\t\teras: [{\"name\":\"খ্রীষ্টাব্দ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"yyyy,MMMM dd, dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy,MMMM dd, dddd tt h:mm\",\n\t\t\t\tF: \"yyyy,MMMM dd, dddd tt h:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM,yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mr\", \"default\", {\n\tname: \"mr\",\n\tenglishName: \"Marathi\",\n\tnativeName: \"मराठी\",\n\tlanguage: \"mr\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगळवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोव्हेंबर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जाने.\",\"फेब्रु.\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टें.\",\"ऑक्टो.\",\"नोव्हें.\",\"डिसें.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sa\", \"default\", {\n\tname: \"sa\",\n\tenglishName: \"Sanskrit\",\n\tnativeName: \"संस्कृत\",\n\tlanguage: \"sa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesAbbr: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mn\", \"default\", {\n\tname: \"mn\",\n\tenglishName: \"Mongolian\",\n\tnativeName: \"Монгол хэл\",\n\tlanguage: \"mn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₮\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ням\",\"Даваа\",\"Мягмар\",\"Лхагва\",\"Пүрэв\",\"Баасан\",\"Бямба\"],\n\t\t\t\tnamesAbbr: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"],\n\t\t\t\tnamesShort: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1 дүгээр сар\",\"2 дугаар сар\",\"3 дугаар сар\",\"4 дүгээр сар\",\"5 дугаар сар\",\"6 дугаар сар\",\"7 дугаар сар\",\"8 дугаар сар\",\"9 дүгээр сар\",\"10 дугаар сар\",\"11 дүгээр сар\",\"12 дугаар сар\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"1 дүгээр сарын\",\"2 дугаар сарын\",\"3 дугаар сарын\",\"4 дүгээр сарын\",\"5 дугаар сарын\",\"6 дугаар сарын\",\"7 дугаар сарын\",\"8 дугаар сарын\",\"9 дүгээр сарын\",\"10 дугаар сарын\",\"11 дүгээр сарын\",\"12 дугаар сарын\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yy.MM.dd\",\n\t\t\t\tD: \"yyyy 'оны' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'оны' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'оны' MMMM d H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"yyyy 'он' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bo\", \"default\", {\n\tname: \"bo\",\n\tenglishName: \"Tibetan\",\n\tnativeName: \"བོད་ཡིག\",\n\tlanguage: \"bo\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ཨང་ཀི་མིན་པ།\",\n\t\tnegativeInfinity: \"མོ་གྲངས་ཚད་མེད་ཆུང་བ།\",\n\t\tpositiveInfinity: \"ཕོ་གྲངས་ཚད་མེད་ཆེ་བ།\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"གཟའ་ཉི་མ།\",\"གཟའ་ཟླ་བ།\",\"གཟའ་མིག་དམར།\",\"གཟའ་ལྷག་པ།\",\"གཟའ་ཕུར་བུ།\",\"གཟའ་པ་སངས།\",\"གཟའ་སྤེན་པ།\"],\n\t\t\t\tnamesAbbr: [\"ཉི་མ།\",\"ཟླ་བ།\",\"མིག་དམར།\",\"ལྷག་པ།\",\"ཕུར་བུ།\",\"པ་སངས།\",\"སྤེན་པ།\"],\n\t\t\t\tnamesShort: [\"༧\",\"༡\",\"༢\",\"༣\",\"༤\",\"༥\",\"༦\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"སྤྱི་ཟླ་དང་པོ།\",\"སྤྱི་ཟླ་གཉིས་པ།\",\"སྤྱི་ཟླ་གསུམ་པ།\",\"སྤྱི་ཟླ་བཞི་པ།\",\"སྤྱི་ཟླ་ལྔ་པ།\",\"སྤྱི་ཟླ་དྲུག་པ།\",\"སྤྱི་ཟླ་བདུན་པ།\",\"སྤྱི་ཟླ་བརྒྱད་པ།\",\"སྤྱི་ཟླ་དགུ་པ།\",\"སྤྱི་ཟླ་བཅུ་པོ།\",\"སྤྱི་ཟླ་བཅུ་གཅིག་པ།\",\"སྤྱི་ཟླ་བཅུ་གཉིས་པ།\",\"\"],\n\t\t\t\tnamesAbbr: [\"ཟླ་ ༡\",\"ཟླ་ ༢\",\"ཟླ་ ༣\",\"ཟླ་ ༤\",\"ཟླ་ ༥\",\"ཟླ་ ༦\",\"ཟླ་ ༧\",\"ཟླ་ ༨\",\"ཟླ་ ༩\",\"ཟླ་ ༡༠\",\"ཟླ་ ༡༡\",\"ཟླ་ ༡༢\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"སྔ་དྲོ\",\"སྔ་དྲོ\",\"སྔ་དྲོ\"],\n\t\t\tPM: [\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\"],\n\t\t\teras: [{\"name\":\"སྤྱི་ལོ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ལོའི་ཟླ' M'ཚེས' d\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm\",\n\t\t\t\tF: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm:ss\",\n\t\t\t\tM: \"'ཟླ་' M'ཚེས'd\",\n\t\t\t\tY: \"yyyy.M\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"cy\", \"default\", {\n\tname: \"cy\",\n\tenglishName: \"Welsh\",\n\tnativeName: \"Cymraeg\",\n\tlanguage: \"cy\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dydd Sul\",\"Dydd Llun\",\"Dydd Mawrth\",\"Dydd Mercher\",\"Dydd Iau\",\"Dydd Gwener\",\"Dydd Sadwrn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Llun\",\"Maw\",\"Mer\",\"Iau\",\"Gwe\",\"Sad\"],\n\t\t\t\tnamesShort: [\"Su\",\"Ll\",\"Ma\",\"Me\",\"Ia\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ionawr\",\"Chwefror\",\"Mawrth\",\"Ebrill\",\"Mai\",\"Mehefin\",\"Gorffennaf\",\"Awst\",\"Medi\",\"Hydref\",\"Tachwedd\",\"Rhagfyr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ion\",\"Chwe\",\"Maw\",\"Ebr\",\"Mai\",\"Meh\",\"Gor\",\"Aws\",\"Med\",\"Hyd\",\"Tach\",\"Rhag\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"km\", \"default\", {\n\tname: \"km\",\n\tenglishName: \"Khmer\",\n\tnativeName: \"ខ្មែរ\",\n\tlanguage: \"km\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-- អនន្ត\",\n\t\tpositiveInfinity: \"អនន្ត\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\tsymbol: \"៛\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ថ្ងៃអាទិត្យ\",\"ថ្ងៃច័ន្ទ\",\"ថ្ងៃអង្គារ\",\"ថ្ងៃពុធ\",\"ថ្ងៃព្រហស្បតិ៍\",\"ថ្ងៃសុក្រ\",\"ថ្ងៃសៅរ៍\"],\n\t\t\t\tnamesAbbr: [\"អាទិ.\",\"ច.\",\"អ.\",\"ពុ\",\"ព្រហ.\",\"សុ.\",\"ស.\"],\n\t\t\t\tnamesShort: [\"អា\",\"ច\",\"អ\",\"ពុ\",\"ព្\",\"សុ\",\"ស\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"មករា\",\"កុម្ភៈ\",\"មិនា\",\"មេសា\",\"ឧសភា\",\"មិថុនា\",\"កក្កដា\",\"សីហា\",\"កញ្ញា\",\"តុលា\",\"វិច្ឆិកា\",\"ធ្នូ\",\"\"],\n\t\t\t\tnamesAbbr: [\"១\",\"២\",\"៣\",\"៤\",\"៥\",\"៦\",\"៧\",\"៨\",\"៩\",\"១០\",\"១១\",\"១២\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"មុនគ.ស.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'ថ្ងៃទី' dd 'ខែ' MM\",\n\t\t\t\tY: \"'ខែ' MM 'ឆ្នាំ' yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy HH:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lo\", \"default\", {\n\tname: \"lo\",\n\tenglishName: \"Lao\",\n\tnativeName: \"ລາວ\",\n\tlanguage: \"lo\",\n\tnumberFormat: {\n\t\tpattern: [\"(n)\"],\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"(n$)\",\"n$\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"₭\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ວັນອາທິດ\",\"ວັນຈັນ\",\"ວັນອັງຄານ\",\"ວັນພຸດ\",\"ວັນພະຫັດ\",\"ວັນສຸກ\",\"ວັນເສົາ\"],\n\t\t\t\tnamesAbbr: [\"ອາທິດ\",\"ຈັນ\",\"ອັງຄານ\",\"ພຸດ\",\"ພະຫັດ\",\"ສຸກ\",\"ເສົາ\"],\n\t\t\t\tnamesShort: [\"ອ\",\"ຈ\",\"ອ\",\"ພ\",\"ພ\",\"ສ\",\"ເ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ເຊົ້າ\",\"ເຊົ້າ\",\"ເຊົ້າ\"],\n\t\t\tPM: [\"ແລງ\",\"ແລງ\",\"ແລງ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gl\", \"default\", {\n\tname: \"gl\",\n\tenglishName: \"Galician\",\n\tnativeName: \"galego\",\n\tlanguage: \"gl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"luns\",\"martes\",\"mércores\",\"xoves\",\"venres\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"luns\",\"mar\",\"mér\",\"xov\",\"ven\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mé\",\"xo\",\"ve\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"xaneiro\",\"febreiro\",\"marzo\",\"abril\",\"maio\",\"xuño\",\"xullo\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"decembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"xan\",\"feb\",\"mar\",\"abr\",\"maio\",\"xuñ\",\"xull\",\"ago\",\"set\",\"out\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kok\", \"default\", {\n\tname: \"kok\",\n\tenglishName: \"Konkani\",\n\tnativeName: \"कोंकणी\",\n\tlanguage: \"kok\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"आयतार\",\"सोमार\",\"मंगळार\",\"बुधवार\",\"बिरेस्तार\",\"सुक्रार\",\"शेनवार\"],\n\t\t\t\tnamesAbbr: [\"आय.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"बिरे.\",\"सुक्र.\",\"शेन.\"],\n\t\t\t\tnamesShort: [\"आ\",\"स\",\"म\",\"ब\",\"ब\",\"स\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"syr\", \"default\", {\n\tname: \"syr\",\n\tenglishName: \"Syriac\",\n\tnativeName: \"ܣܘܪܝܝܐ\",\n\tlanguage: \"syr\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ܚܕ ܒܫܒܐ\",\"ܬܪܝܢ ܒܫܒܐ\",\"ܬܠܬܐ ܒܫܒܐ\",\"ܐܪܒܥܐ ܒܫܒܐ\",\"ܚܡܫܐ ܒܫܒܐ\",\"ܥܪܘܒܬܐ\",\"ܫܒܬܐ\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܐ \\u070fܒܫ\",\"\\u070fܒ \\u070fܒܫ\",\"\\u070fܓ \\u070fܒܫ\",\"\\u070fܕ \\u070fܒܫ\",\"\\u070fܗ \\u070fܒܫ\",\"\\u070fܥܪܘܒ\",\"\\u070fܫܒ\"],\n\t\t\t\tnamesShort: [\"ܐ\",\"ܒ\",\"ܓ\",\"ܕ\",\"ܗ\",\"ܥ\",\"ܫ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ܟܢܘܢ ܐܚܪܝ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"ܬܫܪܝ ܩܕܝܡ\",\"ܬܫܪܝ ܐܚܪܝ\",\"ܟܢܘܢ ܩܕܝܡ\",\"\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܟܢ \\u070fܒ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"\\u070fܬܫ \\u070fܐ\",\"\\u070fܬܫ \\u070fܒ\",\"\\u070fܟܢ \\u070fܐ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ܩ.ܛ\",\"ܩ.ܛ\",\"ܩ.ܛ\"],\n\t\t\tPM: [\"ܒ.ܛ\",\"ܒ.ܛ\",\"ܒ.ܛ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"si\", \"default\", {\n\tname: \"si\",\n\tenglishName: \"Sinhala\",\n\tnativeName: \"සිංහල\",\n\tlanguage: \"si\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tnegativeInfinity: \"-අනන්තය\",\n\t\tpositiveInfinity: \"අනන්තය\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tsymbol: \"රු.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ඉරිදා\",\"සඳුදා\",\"අඟහරුවාදා\",\"බදාදා\",\"බ්\\u200dරහස්පතින්දා\",\"සිකුරාදා\",\"සෙනසුරාදා\"],\n\t\t\t\tnamesAbbr: [\"ඉරිදා\",\"සඳුදා\",\"කුජදා\",\"බුදදා\",\"ගුරුදා\",\"කිවිදා\",\"ශනිදා\"],\n\t\t\t\tnamesShort: [\"ඉ\",\"ස\",\"අ\",\"බ\",\"බ්\\u200dර\",\"සි\",\"සෙ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ජනවාරි\",\"පෙබරවාරි\",\"මාර්තු\",\"අ\\u200cප්\\u200dරේල්\",\"මැයි\",\"ජූනි\",\"ජූලි\",\"අ\\u200cගෝස්තු\",\"සැප්තැම්බර්\",\"ඔක්තෝබර්\",\"නොවැම්බර්\",\"දෙසැම්බර්\",\"\"],\n\t\t\t\tnamesAbbr: [\"ජන.\",\"පෙබ.\",\"මාර්තු.\",\"අප්\\u200dරේල්.\",\"මැයි.\",\"ජූනි.\",\"ජූලි.\",\"අගෝ.\",\"සැප්.\",\"ඔක්.\",\"නොවැ.\",\"දෙසැ.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"පෙ.ව.\",\"පෙ.ව.\",\"පෙ.ව.\"],\n\t\t\tPM: [\"ප.ව.\",\"ප.ව.\",\"ප.ව.\"],\n\t\t\teras: [{\"name\":\"ක්\\u200dරි.ව.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd\",\n\t\t\t\tf: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm tt\",\n\t\t\t\tF: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm:ss tt\",\n\t\t\t\tY: \"yyyy MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"iu\", \"default\", {\n\tname: \"iu\",\n\tenglishName: \"Inuktitut\",\n\tnativeName: \"Inuktitut\",\n\tlanguage: \"iu\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Naattiinguja\",\"Naggajjau\",\"Aippiq\",\"Pingatsiq\",\"Sitammiq\",\"Tallirmiq\",\"Sivataarvik\"],\n\t\t\t\tnamesAbbr: [\"Nat\",\"Nag\",\"Aip\",\"Pi\",\"Sit\",\"Tal\",\"Siv\"],\n\t\t\t\tnamesShort: [\"N\",\"N\",\"A\",\"P\",\"S\",\"T\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jaannuari\",\"Viivvuari\",\"Maatsi\",\"Iipuri\",\"Mai\",\"Juuni\",\"Julai\",\"Aaggiisi\",\"Sitipiri\",\"Utupiri\",\"Nuvipiri\",\"Tisipiri\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Viv\",\"Mas\",\"Ipu\",\"Mai\",\"Jun\",\"Jul\",\"Agi\",\"Sii\",\"Uut\",\"Nuv\",\"Tis\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"ddd, MMMM dd,yyyy\",\n\t\t\t\tf: \"ddd, MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"ddd, MMMM dd,yyyy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"am\", \"default\", {\n\tname: \"am\",\n\tenglishName: \"Amharic\",\n\tnativeName: \"አማርኛ\",\n\tlanguage: \"am\",\n\tnumberFormat: {\n\t\tdecimals: 1,\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tdecimals: 1,\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"ETB\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"እሑድ\",\"ሰኞ\",\"ማክሰኞ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesAbbr: [\"እሑድ\",\"ሰኞ\",\"ማክሰ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesShort: [\"እ\",\"ሰ\",\"ማ\",\"ረ\",\"ሐ\",\"ዓ\",\"ቅ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ጃንዩወሪ\",\"ፌብሩወሪ\",\"ማርች\",\"ኤፕረል\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስት\",\"ሴፕቴምበር\",\"ኦክተውበር\",\"ኖቬምበር\",\"ዲሴምበር\",\"\"],\n\t\t\t\tnamesAbbr: [\"ጃንዩ\",\"ፌብሩ\",\"ማርች\",\"ኤፕረ\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስ\",\"ሴፕቴ\",\"ኦክተ\",\"ኖቬም\",\"ዲሴም\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ጡዋት\",\"ጡዋት\",\"ጡዋት\"],\n\t\t\tPM: [\"ከሰዓት\",\"ከሰዓት\",\"ከሰዓት\"],\n\t\t\teras: [{\"name\":\"ዓመተ  ምሕረት\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd '፣' MMMM d 'ቀን' yyyy\",\n\t\t\t\tf: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm tt\",\n\t\t\t\tF: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm:ss tt\",\n\t\t\t\tM: \"MMMM d ቀን\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tzm\", \"default\", {\n\tname: \"tzm\",\n\tenglishName: \"Tamazight\",\n\tnativeName: \"Tamazight\",\n\tlanguage: \"tzm\",\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"DZD\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Acer\",\"Arime\",\"Aram\",\"Ahad\",\"Amhadh\",\"Sem\",\"Sedh\"],\n\t\t\t\tnamesAbbr: [\"Ace\",\"Ari\",\"Ara\",\"Aha\",\"Amh\",\"Sem\",\"Sed\"],\n\t\t\t\tnamesShort: [\"Ac\",\"Ar\",\"Ar\",\"Ah\",\"Am\",\"Se\",\"Se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yenayer\",\"Furar\",\"Maghres\",\"Yebrir\",\"Mayu\",\"Yunyu\",\"Yulyu\",\"Ghuct\",\"Cutenber\",\"Ktuber\",\"Wambir\",\"Dujanbir\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yen\",\"Fur\",\"Mag\",\"Yeb\",\"May\",\"Yun\",\"Yul\",\"Ghu\",\"Cut\",\"Ktu\",\"Wam\",\"Duj\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ne\", \"default\", {\n\tname: \"ne\",\n\tenglishName: \"Nepali\",\n\tnativeName: \"नेपाली\",\n\tlanguage: \"ne\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"आइतवार\",\"सोमवार\",\"मङ्गलवार\",\"बुधवार\",\"बिहीवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"आइत\",\"सोम\",\"मङ्गल\",\"बुध\",\"बिही\",\"शुक्र\",\"शनि\"],\n\t\t\t\tnamesShort: [\"आ\",\"सो\",\"म\",\"बु\",\"बि\",\"शु\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फेब्रुअरी\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अगस्त\",\"सेप्टेम्बर\",\"अक्टोबर\",\"नोभेम्बर\",\"डिसेम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जन\",\"फेब\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अग\",\"सेप्ट\",\"अक्ट\",\"नोभ\",\"डिस\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"विहानी\",\"विहानी\",\"विहानी\"],\n\t\t\tPM: [\"बेलुकी\",\"बेलुकी\",\"बेलुकी\"],\n\t\t\teras: [{\"name\":\"a.d.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fy\", \"default\", {\n\tname: \"fy\",\n\tenglishName: \"Frisian\",\n\tnativeName: \"Frysk\",\n\tlanguage: \"fy\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Snein\",\"Moandei\",\"Tiisdei\",\"Woansdei\",\"Tongersdei\",\"Freed\",\"Sneon\"],\n\t\t\t\tnamesAbbr: [\"Sn\",\"Mo\",\"Ti\",\"Wo\",\"To\",\"Fr\",\"Sn\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jannewaris\",\"febrewaris\",\"maart\",\"april\",\"maaie\",\"juny\",\"july\",\"augustus\",\"septimber\",\"oktober\",\"novimber\",\"desimber\",\"\"],\n\t\t\t\tnamesAbbr: [\"jann\",\"febr\",\"mrt\",\"apr\",\"maaie\",\"jun\",\"jul\",\"aug\",\"sept\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ps\", \"default\", {\n\tname: \"ps\",\n\tenglishName: \"Pashto\",\n\tnativeName: \"پښتو\",\n\tlanguage: \"ps\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \"،\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \"،\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\t\",\": \"٬\",\n\t\t\t\".\": \"٫\",\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښزمرى\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fil\", \"default\", {\n\tname: \"fil\",\n\tenglishName: \"Filipino\",\n\tnativeName: \"Filipino\",\n\tlanguage: \"fil\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"PhP\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Linggo\",\"Lunes\",\"Martes\",\"Mierkoles\",\"Huebes\",\"Biernes\",\"Sabado\"],\n\t\t\t\tnamesAbbr: [\"Lin\",\"Lun\",\"Mar\",\"Mier\",\"Hueb\",\"Bier\",\"Saba\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"M\",\"M\",\"H\",\"B\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Enero\",\"Pebrero\",\"Marso\",\"Abril\",\"Mayo\",\"Hunyo\",\"Hulyo\",\"Agosto\",\"Septyembre\",\"Oktubre\",\"Nobyembre\",\"Disyembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"En\",\"Peb\",\"Mar\",\"Abr\",\"Mayo\",\"Hun\",\"Hul\",\"Agos\",\"Sept\",\"Okt\",\"Nob\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"Anno Domini\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"dv\", \"default\", {\n\tname: \"dv\",\n\tenglishName: \"Divehi\",\n\tnativeName: \"ދިވެހިބަސް\",\n\tlanguage: \"dv\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"n $-\",\"n $\"],\n\t\t\tsymbol: \"ރ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"],\n\t\t\t\tnamesAbbr: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy HH:mm\",\n\t\t\t\tF: \"dd/MM/yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"މީލާދީ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"ddd, yyyy MMMM dd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"ddd, yyyy MMMM dd HH:mm\",\n\t\t\t\tF: \"ddd, yyyy MMMM dd HH:mm:ss\",\n\t\t\t\tY: \"yyyy, MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ha\", \"default\", {\n\tname: \"ha\",\n\tenglishName: \"Hausa\",\n\tnativeName: \"Hausa\",\n\tlanguage: \"ha\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lahadi\",\"Litinin\",\"Talata\",\"Laraba\",\"Alhamis\",\"Juma'a\",\"Asabar\"],\n\t\t\t\tnamesAbbr: [\"Lah\",\"Lit\",\"Tal\",\"Lar\",\"Alh\",\"Jum\",\"Asa\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"T\",\"L\",\"A\",\"J\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januwaru\",\"Febreru\",\"Maris\",\"Afrilu\",\"Mayu\",\"Yuni\",\"Yuli\",\"Agusta\",\"Satumba\",\"Oktocba\",\"Nuwamba\",\"Disamba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Afr\",\"May\",\"Yun\",\"Yul\",\"Agu\",\"Sat\",\"Okt\",\"Nuw\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Safe\",\"safe\",\"SAFE\"],\n\t\t\tPM: [\"Yamma\",\"yamma\",\"YAMMA\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"yo\", \"default\", {\n\tname: \"yo\",\n\tenglishName: \"Yoruba\",\n\tnativeName: \"Yoruba\",\n\tlanguage: \"yo\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Osu kinni\",\"Osu keji\",\"Osu keta\",\"Osu kerin\",\"Osu karun\",\"Osu kefa\",\"Osu keje\",\"Osu kejo\",\"Osu kesan\",\"Osu kewa\",\"Osu kokanla\",\"Osu keresi\",\"\"],\n\t\t\t\tnamesAbbr: [\"kin.\",\"kej.\",\"ket.\",\"ker.\",\"kar.\",\"kef.\",\"kej.\",\"kej.\",\"kes.\",\"kew.\",\"kok.\",\"ker.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Owuro\",\"owuro\",\"OWURO\"],\n\t\t\tPM: [\"Ale\",\"ale\",\"ALE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"quz\", \"default\", {\n\tname: \"quz\",\n\tenglishName: \"Quechua\",\n\tnativeName: \"runasimi\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$b\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nso\", \"default\", {\n\tname: \"nso\",\n\tenglishName: \"Sesotho sa Leboa\",\n\tnativeName: \"Sesotho sa Leboa\",\n\tlanguage: \"nso\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lamorena\",\"Mošupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labohlano\",\"Mokibelo\"],\n\t\t\t\tnamesAbbr: [\"Lam\",\"Moš\",\"Lbb\",\"Lbr\",\"Lbn\",\"Lbh\",\"Mok\"],\n\t\t\t\tnamesShort: [\"L\",\"M\",\"L\",\"L\",\"L\",\"L\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Pherekgong\",\"Hlakola\",\"Mopitlo\",\"Moranang\",\"Mosegamanye\",\"Ngoatobošego\",\"Phuphu\",\"Phato\",\"Lewedi\",\"Diphalana\",\"Dibatsela\",\"Manthole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Pher\",\"Hlak\",\"Mop\",\"Mor\",\"Mos\",\"Ngwat\",\"Phup\",\"Phat\",\"Lew\",\"Dip\",\"Dib\",\"Man\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ba\", \"default\", {\n\tname: \"ba\",\n\tenglishName: \"Bashkir\",\n\tnativeName: \"Башҡорт\",\n\tlanguage: \"ba\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"һ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Йәкшәмбе\",\"Дүшәмбе\",\"Шишәмбе\",\"Шаршамбы\",\"Кесаҙна\",\"Йома\",\"Шәмбе\"],\n\t\t\t\tnamesAbbr: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"],\n\t\t\t\tnamesShort: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ғинуар\",\"февраль\",\"март\",\"апрель\",\"май\",\"июнь\",\"июль\",\"август\",\"сентябрь\",\"октябрь\",\"ноябрь\",\"декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"ғин\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy 'й'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'й' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'й' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lb\", \"default\", {\n\tname: \"lb\",\n\tenglishName: \"Luxembourgish\",\n\tnativeName: \"Lëtzebuergesch\",\n\tlanguage: \"lb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. num.\",\n\t\tnegativeInfinity: \"-onendlech\",\n\t\tpositiveInfinity: \"+onendlech\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonndeg\",\"Méindeg\",\"Dënschdeg\",\"Mëttwoch\",\"Donneschdeg\",\"Freideg\",\"Samschdeg\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Méi\",\"Dën\",\"Mët\",\"Don\",\"Fre\",\"Sam\"],\n\t\t\t\tnamesShort: [\"So\",\"Mé\",\"Dë\",\"Më\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"Mäerz\",\"Abrëll\",\"Mee\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mäe\",\"Abr\",\"Mee\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kl\", \"default\", {\n\tname: \"kl\",\n\tenglishName: \"Greenlandic\",\n\tnativeName: \"kalaallisut\",\n\tlanguage: \"kl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sapaat\",\"ataasinngorneq\",\"marlunngorneq\",\"pingasunngorneq\",\"sisamanngorneq\",\"tallimanngorneq\",\"arfininngorneq\"],\n\t\t\t\tnamesAbbr: [\"sap\",\"ata\",\"mar\",\"ping\",\"sis\",\"tal\",\"arf\"],\n\t\t\t\tnamesShort: [\"sa\",\"at\",\"ma\",\"pi\",\"si\",\"ta\",\"ar\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"martsi\",\"apriili\",\"maaji\",\"juni\",\"juli\",\"aggusti\",\"septembari\",\"oktobari\",\"novembari\",\"decembari\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ig\", \"default\", {\n\tname: \"ig\",\n\tenglishName: \"Igbo\",\n\tnativeName: \"Igbo\",\n\tlanguage: \"ig\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Onwa mbu\",\"Onwa ibua\",\"Onwa ato\",\"Onwa ano\",\"Onwa ise\",\"Onwa isi\",\"Onwa asa\",\"Onwa asato\",\"Onwa itolu\",\"Onwa iri\",\"Onwa iri n'ofu\",\"Onwa iri n'ibua\",\"\"],\n\t\t\t\tnamesAbbr: [\"mbu.\",\"ibu.\",\"ato.\",\"ano.\",\"ise\",\"isi\",\"asa\",\"asa.\",\"ito.\",\"iri.\",\"n'of.\",\"n'ib.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Ututu\",\"ututu\",\"UTUTU\"],\n\t\t\tPM: [\"Efifie\",\"efifie\",\"EFIFIE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ii\", \"default\", {\n\tname: \"ii\",\n\tenglishName: \"Yi\",\n\tnativeName: \"ꆈꌠꁱꂷ\",\n\tlanguage: \"ii\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ꌗꂷꀋꉬ\",\n\t\tnegativeInfinity: \"ꀄꊭꌐꀋꉆ\",\n\t\tpositiveInfinity: \"ꈤꇁꑖꀋꉬ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ꑭꆏꑍ\",\"ꆏꊂ꒔\",\"ꆏꊂꑍ\",\"ꆏꊂꌕ\",\"ꆏꊂꇖ\",\"ꆏꊂꉬ\",\"ꆏꊂꃘ\"],\n\t\t\t\tnamesAbbr: [\"ꑭꆏ\",\"ꆏ꒔\",\"ꆏꑍ\",\"ꆏꌕ\",\"ꆏꇖ\",\"ꆏꉬ\",\"ꆏꃘ\"],\n\t\t\t\tnamesShort: [\"ꆏ\",\"꒔\",\"ꑍ\",\"ꌕ\",\"ꇖ\",\"ꉬ\",\"ꃘ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\"],\n\t\t\tPM: [\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\"],\n\t\t\teras: [{\"name\":\"ꇬꑼ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ꈎ' M'ꆪ' d'ꑍ'\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' tt h:mm\",\n\t\t\t\tF: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' H:mm:ss\",\n\t\t\t\tM: \"M'ꆪ' d'ꑍ'\",\n\t\t\t\tY: \"yyyy'ꈎ' M'ꆪ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"arn\", \"default\", {\n\tname: \"arn\",\n\tenglishName: \"Mapudungun\",\n\tnativeName: \"Mapudungun\",\n\tlanguage: \"arn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"moh\", \"default\", {\n\tname: \"moh\",\n\tenglishName: \"Mohawk\",\n\tnativeName: \"Kanien'kéha\",\n\tlanguage: \"moh\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Awentatokentì:ke\",\"Awentataón'ke\",\"Ratironhia'kehronòn:ke\",\"Soséhne\",\"Okaristiiáhne\",\"Ronwaia'tanentaktonhne\",\"Entákta\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tsothohrkó:Wa\",\"Enniska\",\"Enniskó:Wa\",\"Onerahtókha\",\"Onerahtohkó:Wa\",\"Ohiari:Ha\",\"Ohiarihkó:Wa\",\"Seskéha\",\"Seskehkó:Wa\",\"Kenténha\",\"Kentenhkó:Wa\",\"Tsothóhrha\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"br\", \"default\", {\n\tname: \"br\",\n\tenglishName: \"Breton\",\n\tnativeName: \"brezhoneg\",\n\tlanguage: \"br\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NkN\",\n\t\tnegativeInfinity: \"-Anfin\",\n\t\tpositiveInfinity: \"+Anfin\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sul\",\"Lun\",\"Meurzh\",\"Merc'her\",\"Yaou\",\"Gwener\",\"Sadorn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Lun\",\"Meu.\",\"Mer.\",\"Yaou\",\"Gwe.\",\"Sad.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Lu\",\"Mz\",\"Mc\",\"Ya\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Genver\",\"C'hwevrer\",\"Meurzh\",\"Ebrel\",\"Mae\",\"Mezheven\",\"Gouere\",\"Eost\",\"Gwengolo\",\"Here\",\"Du\",\"Kerzu\",\"\"],\n\t\t\t\tnamesAbbr: [\"Gen.\",\"C'hwe.\",\"Meur.\",\"Ebr.\",\"Mae\",\"Mezh.\",\"Goue.\",\"Eost\",\"Gwen.\",\"Here\",\"Du\",\"Kzu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"g. J.-K.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ug\", \"default\", {\n\tname: \"ug\",\n\tenglishName: \"Uyghur\",\n\tnativeName: \"ئۇيغۇرچە\",\n\tlanguage: \"ug\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"سان ئەمەس\",\n\t\tnegativeInfinity: \"مەنپىي چەكسىزلىك\",\n\t\tpositiveInfinity: \"مۇسبەت چەكسىزلىك\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"يەكشەنبە\",\"دۈشەنبە\",\"سەيشەنبە\",\"چارشەنبە\",\"پەيشەنبە\",\"جۈمە\",\"شەنبە\"],\n\t\t\t\tnamesAbbr: [\"يە\",\"دۈ\",\"سە\",\"چا\",\"پە\",\"جۈ\",\"شە\"],\n\t\t\t\tnamesShort: [\"ي\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"],\n\t\t\t\tnamesAbbr: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\"],\n\t\t\tPM: [\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\"],\n\t\t\teras: [{\"name\":\"مىلادى\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-M-d\",\n\t\t\t\tD: \"yyyy-'يىلى' MMMM d-'كۈنى،'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm\",\n\t\t\t\tF: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm:ss\",\n\t\t\t\tM: \"MMMM d'-كۈنى'\",\n\t\t\t\tY: \"yyyy-'يىلى' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mi\", \"default\", {\n\tname: \"mi\",\n\tenglishName: \"Maori\",\n\tnativeName: \"Reo Māori\",\n\tlanguage: \"mi\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Rātapu\",\"Rāhina\",\"Rātū\",\"Rāapa\",\"Rāpare\",\"Rāmere\",\"Rāhoroi\"],\n\t\t\t\tnamesAbbr: [\"Ta\",\"Hi\",\"Tū\",\"Apa\",\"Pa\",\"Me\",\"Ho\"],\n\t\t\t\tnamesShort: [\"Ta\",\"Hi\",\"Tū\",\"Aa\",\"Pa\",\"Me\",\"Ho\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Kohi-tātea\",\"Hui-tanguru\",\"Poutū-te-rangi\",\"Paenga-whāwhā\",\"Haratua\",\"Pipiri\",\"Hōngongoi\",\"Here-turi-kōkā\",\"Mahuru\",\"Whiringa-ā-nuku\",\"Whiringa-ā-rangi\",\"Hakihea\",\"\"],\n\t\t\t\tnamesAbbr: [\"Kohi\",\"Hui\",\"Pou\",\"Pae\",\"Hara\",\"Pipi\",\"Hōngo\",\"Here\",\"Mahu\",\"Nuku\",\"Rangi\",\"Haki\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM, yyyy\",\n\t\t\t\tf: \"dddd, dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM, yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"oc\", \"default\", {\n\tname: \"oc\",\n\tenglishName: \"Occitan\",\n\tnativeName: \"Occitan\",\n\tlanguage: \"oc\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numeric\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"+Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimenge\",\"diluns\",\"dimars\",\"dimècres\",\"dijòus\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mèc.\",\"jòu.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"mè\",\"jò\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"genier\",\"febrier\",\"març\",\"abril\",\"mai\",\"junh\",\"julh\",\"agost\",\"setembre\",\"octobre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"de genier\",\"de febrier\",\"de març\",\"d'abril\",\"de mai\",\"de junh\",\"de julh\",\"d'agost\",\"de setembre\",\"d'octobre\",\"de novembre\",\"de desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"après Jèsus-Crist\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd,' lo 'd MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"co\", \"default\", {\n\tname: \"co\",\n\tenglishName: \"Corsican\",\n\tnativeName: \"Corsu\",\n\tlanguage: \"co\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Mica numericu\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"+Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumenica\",\"luni\",\"marti\",\"mercuri\",\"ghjovi\",\"venderi\",\"sabbatu\"],\n\t\t\t\tnamesAbbr: [\"dum.\",\"lun.\",\"mar.\",\"mer.\",\"ghj.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"du\",\"lu\",\"ma\",\"me\",\"gh\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ghjennaghju\",\"ferraghju\",\"marzu\",\"aprile\",\"maghju\",\"ghjunghju\",\"lugliu\",\"aostu\",\"settembre\",\"ottobre\",\"nuvembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ghje\",\"ferr\",\"marz\",\"apri\",\"magh\",\"ghju\",\"lugl\",\"aost\",\"sett\",\"otto\",\"nuve\",\"dice\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"dopu J-C\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gsw\", \"default\", {\n\tname: \"gsw\",\n\tenglishName: \"Alsatian\",\n\tnativeName: \"Elsässisch\",\n\tlanguage: \"gsw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Ohne Nummer\",\n\t\tnegativeInfinity: \"-Unendlich\",\n\t\tpositiveInfinity: \"+Unendlich\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sundàà\",\"Mondàà\",\"Dienschdàà\",\"Mittwuch\",\"Dunnerschdàà\",\"Fridàà\",\"Sàmschdàà\"],\n\t\t\t\tnamesAbbr: [\"Su.\",\"Mo.\",\"Di.\",\"Mi.\",\"Du.\",\"Fr.\",\"Sà.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Mo\",\"Di\",\"Mi\",\"Du\",\"Fr\",\"Sà\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jänner\",\"Feverje\",\"März\",\"Àpril\",\"Mai\",\"Jüni\",\"Jüli\",\"Augscht\",\"September\",\"Oktower\",\"Nowember\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jän.\",\"Fev.\",\"März\",\"Apr.\",\"Mai\",\"Jüni\",\"Jüli\",\"Aug.\",\"Sept.\",\"Okt.\",\"Now.\",\"Dez.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"Vor J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sah\", \"default\", {\n\tname: \"sah\",\n\tenglishName: \"Yakut\",\n\tnativeName: \"саха\",\n\tlanguage: \"sah\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"с.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"баскыһыанньа\",\"бэнидиэнньик\",\"оптуорунньук\",\"сэрэдэ\",\"чэппиэр\",\"бээтинсэ\",\"субуота\"],\n\t\t\t\tnamesAbbr: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Тохсунньу\",\"Олунньу\",\"Кулун тутар\",\"Муус устар\",\"Ыам ыйа\",\"Бэс ыйа\",\"От ыйа\",\"Атырдьах ыйа\",\"Балаҕан ыйа\",\"Алтынньы\",\"Сэтинньи\",\"Ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"тохсунньу\",\"олунньу\",\"кулун тутар\",\"муус устар\",\"ыам ыйын\",\"бэс ыйын\",\"от ыйын\",\"атырдьах ыйын\",\"балаҕан ыйын\",\"алтынньы\",\"сэтинньи\",\"ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"MM.dd.yyyy\",\n\t\t\t\tD: \"MMMM d yyyy 'с.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d yyyy 'с.' H:mm\",\n\t\t\t\tF: \"MMMM d yyyy 'с.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy 'с.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"qut\", \"default\", {\n\tname: \"qut\",\n\tenglishName: \"K'iche\",\n\tnativeName: \"K'iche\",\n\tlanguage: \"qut\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"Q\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"juq'ij\",\"kaq'ij\",\"oxq'ij\",\"kajq'ij\",\"joq'ij\",\"waqq'ij\",\"wuqq'ij\"],\n\t\t\t\tnamesAbbr: [\"juq\",\"kaq\",\"oxq\",\"kajq\",\"joq\",\"waqq\",\"wuqq\"],\n\t\t\t\tnamesShort: [\"ju\",\"ka\",\"ox\",\"ka\",\"jo\",\"wa\",\"wu\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"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'\",\"\"],\n\t\t\t\tnamesAbbr: [\"nab'e\",\"ukab\",\"rox\",\"ukaj\",\"uro\",\"uwaq\",\"uwuq\",\"uwajxaq\",\"ub'elej\",\"ulaj\",\"ujulaj\",\"ukab'laj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"rw\", \"default\", {\n\tname: \"rw\",\n\tenglishName: \"Kinyarwanda\",\n\tnativeName: \"Kinyarwanda\",\n\tlanguage: \"rw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"RWF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ku wa mbere\",\"Ku wa kabiri\",\"Ku wa gatatu\",\"Ku wa kane\",\"Ku wa gatanu\",\"Ku wa gatandatu\",\"Ku cyumweru\"],\n\t\t\t\tnamesAbbr: [\"mbe.\",\"kab.\",\"gat.\",\"kan.\",\"gat.\",\"gat.\",\"cyu.\"],\n\t\t\t\tnamesShort: [\"mb\",\"ka\",\"ga\",\"ka\",\"ga\",\"ga\",\"cy\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mutarama\",\"Gashyantare\",\"Werurwe\",\"Mata\",\"Gicurasi\",\"Kamena\",\"Nyakanga\",\"Kanama\",\"Nzeli\",\"Ukwakira\",\"Ugushyingo\",\"Ukuboza\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mut\",\"Gas\",\"Wer\",\"Mat\",\"Gic\",\"Kam\",\"Nya\",\"Kan\",\"Nze\",\"Ukwa\",\"Ugu\",\"Uku\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"saa moya z.m.\",\"saa moya z.m.\",\"SAA MOYA Z.M.\"],\n\t\t\tPM: [\"saa moya z.n.\",\"saa moya z.n.\",\"SAA MOYA Z.N.\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"wo\", \"default\", {\n\tname: \"wo\",\n\tenglishName: \"Wolof\",\n\tnativeName: \"Wolof\",\n\tlanguage: \"wo\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"XOF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"prs\", \"default\", {\n\tname: \"prs\",\n\tenglishName: \"Dari\",\n\tnativeName: \"درى\",\n\tlanguage: \"prs\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gd\", \"default\", {\n\tname: \"gd\",\n\tenglishName: \"Scottish Gaelic\",\n\tnativeName: \"Gàidhlig\",\n\tlanguage: \"gd\",\n\tnumberFormat: {\n\t\tnegativeInfinity: \"-Neo-chrìochnachd\",\n\t\tpositiveInfinity: \"Neo-chrìochnachd\",\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Didòmhnaich\",\"Diluain\",\"Dimàirt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],\n\t\t\t\tnamesAbbr: [\"Dòm\",\"Lua\",\"Mài\",\"Cia\",\"Ard\",\"Hao\",\"Sat\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"M\",\"C\",\"A\",\"H\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Am Faoilleach\",\"An Gearran\",\"Am Màrt\",\"An Giblean\",\"An Cèitean\",\"An t-Ògmhios\",\"An t-Iuchar\",\"An Lùnastal\",\"An t-Sultain\",\"An Dàmhair\",\"An t-Samhain\",\"An Dùbhlachd\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fao\",\"Gea\",\"Màr\",\"Gib\",\"Cèi\",\"Ògm\",\"Iuc\",\"Lùn\",\"Sul\",\"Dàm\",\"Sam\",\"Dùb\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"m\",\"m\",\"M\"],\n\t\t\tPM: [\"f\",\"f\",\"F\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-SA\", \"default\", {\n\tname: \"ar-SA\",\n\tenglishName: \"Arabic (Saudi Arabia)\",\n\tnativeName: \"العربية (المملكة العربية السعودية)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bg-BG\", \"default\", {\n\tname: \"bg-BG\",\n\tenglishName: \"Bulgarian (Bulgaria)\",\n\tnativeName: \"български (България)\",\n\tlanguage: \"bg\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"- безкрайност\",\n\t\tpositiveInfinity: \"+ безкрайност\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"лв.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неделя\",\"понеделник\",\"вторник\",\"сряда\",\"четвъртък\",\"петък\",\"събота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"вт\",\"ср\",\"четв\",\"пет\",\"съб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"в\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"януари\",\"февруари\",\"март\",\"април\",\"май\",\"юни\",\"юли\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"ян\",\"февр\",\"март\",\"апр\",\"май\",\"юни\",\"юли\",\"авг\",\"септ\",\"окт\",\"ноември\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"след новата ера\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy 'г.'\",\n\t\t\t\tD: \"dd MMMM yyyy 'г.'\",\n\t\t\t\tt: \"HH:mm 'ч.'\",\n\t\t\t\tT: \"HH:mm:ss 'ч.'\",\n\t\t\t\tf: \"dd MMMM yyyy 'г.' HH:mm 'ч.'\",\n\t\t\t\tF: \"dd MMMM yyyy 'г.' HH:mm:ss 'ч.'\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy 'г.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ca-ES\", \"default\", {\n\tname: \"ca-ES\",\n\tenglishName: \"Catalan (Catalan)\",\n\tnativeName: \"català (català)\",\n\tlanguage: \"ca\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"diumenge\",\"dilluns\",\"dimarts\",\"dimecres\",\"dijous\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dg.\",\"dl.\",\"dt.\",\"dc.\",\"dj.\",\"dv.\",\"ds.\"],\n\t\t\t\tnamesShort: [\"dg\",\"dl\",\"dt\",\"dc\",\"dj\",\"dv\",\"ds\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gener\",\"febrer\",\"març\",\"abril\",\"maig\",\"juny\",\"juliol\",\"agost\",\"setembre\",\"octubre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"març\",\"abr\",\"maig\",\"juny\",\"jul\",\"ag\",\"set\",\"oct\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' / 'MMMM' / 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' / 'MMMM' / 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' / 'MMMM' / 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' / 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-TW\", \"default\", {\n\tname: \"zh-TW\",\n\tenglishName: \"Chinese (Traditional, Taiwan)\",\n\tnativeName: \"中文(台灣)\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"不是一個數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"NT$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"西元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' tt hh:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' tt hh:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t},\n\t\tTaiwan: {\n\t\t\tname: \"Taiwan\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"\",\"start\":null,\"offset\":1911}],\n\t\t\ttwoDigitYearMax: 99,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' tt hh:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' tt hh:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"cs-CZ\", \"default\", {\n\tname: \"cs-CZ\",\n\tenglishName: \"Czech (Czech Republic)\",\n\tnativeName: \"čeština (Česká republika)\",\n\tlanguage: \"cs\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Není číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Kč\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"neděle\",\"pondělí\",\"úterý\",\"středa\",\"čtvrtek\",\"pátek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"út\",\"st\",\"čt\",\"pá\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"leden\",\"únor\",\"březen\",\"duben\",\"květen\",\"červen\",\"červenec\",\"srpen\",\"září\",\"říjen\",\"listopad\",\"prosinec\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ledna\",\"února\",\"března\",\"dubna\",\"května\",\"června\",\"července\",\"srpna\",\"září\",\"října\",\"listopadu\",\"prosince\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"dop.\",\"dop.\",\"DOP.\"],\n\t\t\tPM: [\"odp.\",\"odp.\",\"ODP.\"],\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"da-DK\", \"default\", {\n\tname: \"da-DK\",\n\tenglishName: \"Danish (Denmark)\",\n\tnativeName: \"dansk (Danmark)\",\n\tlanguage: \"da\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marts\",\"april\",\"maj\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"de-DE\", \"default\", {\n\tname: \"de-DE\",\n\tenglishName: \"German (Germany)\",\n\tnativeName: \"Deutsch (Deutschland)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"el-GR\", \"default\", {\n\tname: \"el-GR\",\n\tenglishName: \"Greek (Greece)\",\n\tnativeName: \"Ελληνικά (Ελλάδα)\",\n\tlanguage: \"el\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"μη αριθμός\",\n\t\tnegativeInfinity: \"-Άπειρο\",\n\t\tpositiveInfinity: \"Άπειρο\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Κυριακή\",\"Δευτέρα\",\"Τρίτη\",\"Τετάρτη\",\"Πέμπτη\",\"Παρασκευή\",\"Σάββατο\"],\n\t\t\t\tnamesAbbr: [\"Κυρ\",\"Δευ\",\"Τρι\",\"Τετ\",\"Πεμ\",\"Παρ\",\"Σαβ\"],\n\t\t\t\tnamesShort: [\"Κυ\",\"Δε\",\"Τρ\",\"Τε\",\"Πε\",\"Πα\",\"Σά\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ιανουάριος\",\"Φεβρουάριος\",\"Μάρτιος\",\"Απρίλιος\",\"Μάιος\",\"Ιούνιος\",\"Ιούλιος\",\"Αύγουστος\",\"Σεπτέμβριος\",\"Οκτώβριος\",\"Νοέμβριος\",\"Δεκέμβριος\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Ιανουαρίου\",\"Φεβρουαρίου\",\"Μαρτίου\",\"Απριλίου\",\"Μαΐου\",\"Ιουνίου\",\"Ιουλίου\",\"Αυγούστου\",\"Σεπτεμβρίου\",\"Οκτωβρίου\",\"Νοεμβρίου\",\"Δεκεμβρίου\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ιαν\",\"Φεβ\",\"Μαρ\",\"Απρ\",\"Μαϊ\",\"Ιουν\",\"Ιουλ\",\"Αυγ\",\"Σεπ\",\"Οκτ\",\"Νοε\",\"Δεκ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"πμ\",\"πμ\",\"ΠΜ\"],\n\t\t\tPM: [\"μμ\",\"μμ\",\"ΜΜ\"],\n\t\t\teras: [{\"name\":\"μ.Χ.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-US\", \"default\", {\n\tname: \"en-US\",\n\tenglishName: \"English (United States)\"\n});\n\nGlobalize.addCultureInfo( \"fi-FI\", \"default\", {\n\tname: \"fi-FI\",\n\tenglishName: \"Finnish (Finland)\",\n\tnativeName: \"suomi (Suomi)\",\n\tlanguage: \"fi\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnuntai\",\"maanantai\",\"tiistai\",\"keskiviikko\",\"torstai\",\"perjantai\",\"lauantai\"],\n\t\t\t\tnamesAbbr: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"],\n\t\t\t\tnamesShort: [\"su\",\"ma\",\"ti\",\"ke\",\"to\",\"pe\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tammikuu\",\"helmikuu\",\"maaliskuu\",\"huhtikuu\",\"toukokuu\",\"kesäkuu\",\"heinäkuu\",\"elokuu\",\"syyskuu\",\"lokakuu\",\"marraskuu\",\"joulukuu\",\"\"],\n\t\t\t\tnamesAbbr: [\"tammi\",\"helmi\",\"maalis\",\"huhti\",\"touko\",\"kesä\",\"heinä\",\"elo\",\"syys\",\"loka\",\"marras\",\"joulu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM'ta 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM'ta 'yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM'ta 'yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM'ta'\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr-FR\", \"default\", {\n\tname: \"fr-FR\",\n\tenglishName: \"French (France)\",\n\tnativeName: \"français (France)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"he-IL\", \"default\", {\n\tname: \"he-IL\",\n\tenglishName: \"Hebrew (Israel)\",\n\tnativeName: \"עברית (ישראל)\",\n\tlanguage: \"he\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"לא מספר\",\n\t\tnegativeInfinity: \"אינסוף שלילי\",\n\t\tpositiveInfinity: \"אינסוף חיובי\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"₪\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"יום א\",\"יום ב\",\"יום ג\",\"יום ד\",\"יום ה\",\"יום ו\",\"שבת\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ינואר\",\"פברואר\",\"מרץ\",\"אפריל\",\"מאי\",\"יוני\",\"יולי\",\"אוגוסט\",\"ספטמבר\",\"אוקטובר\",\"נובמבר\",\"דצמבר\",\"\"],\n\t\t\t\tnamesAbbr: [\"ינו\",\"פבר\",\"מרץ\",\"אפר\",\"מאי\",\"יונ\",\"יול\",\"אוג\",\"ספט\",\"אוק\",\"נוב\",\"דצמ\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"לספירה\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tHebrew: {\n\t\t\tname: \"Hebrew\",\n\t\t\t\"/\": \" \",\n\t\t\tdays: {\n\t\t\t\tnames: [\"יום ראשון\",\"יום שני\",\"יום שלישי\",\"יום רביעי\",\"יום חמישי\",\"יום שישי\",\"שבת\"],\n\t\t\t\tnamesAbbr: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"],\n\t\t\t\tnamesShort: [\"א\",\"ב\",\"ג\",\"ד\",\"ה\",\"ו\",\"ש\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"],\n\t\t\t\tnamesAbbr: [\"תשרי\",\"חשון\",\"כסלו\",\"טבת\",\"שבט\",\"אדר\",\"אדר ב\",\"ניסן\",\"אייר\",\"סיון\",\"תמוז\",\"אב\",\"אלול\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"C.E.\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 5790,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd MMMM yyyy\",\n\t\t\t\tD: \"dddd dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hu-HU\", \"default\", {\n\tname: \"hu-HU\",\n\tenglishName: \"Hungarian (Hungary)\",\n\tnativeName: \"magyar (Magyarország)\",\n\tlanguage: \"hu\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nem szám\",\n\t\tnegativeInfinity: \"negatív végtelen\",\n\t\tpositiveInfinity: \"végtelen\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ft\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"vasárnap\",\"hétfő\",\"kedd\",\"szerda\",\"csütörtök\",\"péntek\",\"szombat\"],\n\t\t\t\tnamesAbbr: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"],\n\t\t\t\tnamesShort: [\"V\",\"H\",\"K\",\"Sze\",\"Cs\",\"P\",\"Szo\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"március\",\"április\",\"május\",\"június\",\"július\",\"augusztus\",\"szeptember\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"febr.\",\"márc.\",\"ápr.\",\"máj.\",\"jún.\",\"júl.\",\"aug.\",\"szept.\",\"okt.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"de.\",\"de.\",\"DE.\"],\n\t\t\tPM: [\"du.\",\"du.\",\"DU.\"],\n\t\t\teras: [{\"name\":\"i.sz.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"yyyy. MMMM d.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy. MMMM d. H:mm\",\n\t\t\t\tF: \"yyyy. MMMM d. H:mm:ss\",\n\t\t\t\tM: \"MMMM d.\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"is-IS\", \"default\", {\n\tname: \"is-IS\",\n\tenglishName: \"Icelandic (Iceland)\",\n\tnativeName: \"íslenska (Ísland)\",\n\tlanguage: \"is\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánudagur\",\"þriðjudagur\",\"miðvikudagur\",\"fimmtudagur\",\"föstudagur\",\"laugardagur\"],\n\t\t\t\tnamesAbbr: [\"sun.\",\"mán.\",\"þri.\",\"mið.\",\"fim.\",\"fös.\",\"lau.\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"þr\",\"mi\",\"fi\",\"fö\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janúar\",\"febrúar\",\"mars\",\"apríl\",\"maí\",\"júní\",\"júlí\",\"ágúst\",\"september\",\"október\",\"nóvember\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan.\",\"feb.\",\"mar.\",\"apr.\",\"maí\",\"jún.\",\"júl.\",\"ágú.\",\"sep.\",\"okt.\",\"nóv.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"it-IT\", \"default\", {\n\tname: \"it-IT\",\n\tenglishName: \"Italian (Italy)\",\n\tnativeName: \"italiano (Italia)\",\n\tlanguage: \"it\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non un numero reale\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domenica\",\"lunedì\",\"martedì\",\"mercoledì\",\"giovedì\",\"venerdì\",\"sabato\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mer\",\"gio\",\"ven\",\"sab\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"me\",\"gi\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gennaio\",\"febbraio\",\"marzo\",\"aprile\",\"maggio\",\"giugno\",\"luglio\",\"agosto\",\"settembre\",\"ottobre\",\"novembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"mar\",\"apr\",\"mag\",\"giu\",\"lug\",\"ago\",\"set\",\"ott\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ja-JP\", \"default\", {\n\tname: \"ja-JP\",\n\tenglishName: \"Japanese (Japan)\",\n\tnativeName: \"日本語 (日本)\",\n\tlanguage: \"ja\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NaN (非数値)\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"+∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"西暦\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t},\n\t\tJapanese: {\n\t\t\tname: \"Japanese\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"日曜日\",\"月曜日\",\"火曜日\",\"水曜日\",\"木曜日\",\"金曜日\",\"土曜日\"],\n\t\t\t\tnamesAbbr: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"],\n\t\t\t\tnamesShort: [\"日\",\"月\",\"火\",\"水\",\"木\",\"金\",\"土\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"午前\",\"午前\",\"午前\"],\n\t\t\tPM: [\"午後\",\"午後\",\"午後\"],\n\t\t\teras: [{\"name\":\"平成\",\"start\":null,\"offset\":1867},{\"name\":\"昭和\",\"start\":-1812153600000,\"offset\":1911},{\"name\":\"大正\",\"start\":-1357603200000,\"offset\":1925},{\"name\":\"明治\",\"start\":60022080000,\"offset\":1988}],\n\t\t\ttwoDigitYearMax: 99,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg y/M/d\",\n\t\t\t\tD: \"gg y'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"gg y'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"gg y'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"gg y'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ko-KR\", \"default\", {\n\tname: \"ko-KR\",\n\tenglishName: \"Korean (Korea)\",\n\tnativeName: \"한국어 (대한민국)\",\n\tlanguage: \"ko\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"₩\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"서기\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"yyyy'년' M'월'\"\n\t\t\t}\n\t\t},\n\t\tKorean: {\n\t\t\tname: \"Korean\",\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"일요일\",\"월요일\",\"화요일\",\"수요일\",\"목요일\",\"금요일\",\"토요일\"],\n\t\t\t\tnamesAbbr: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"],\n\t\t\t\tnamesShort: [\"일\",\"월\",\"화\",\"수\",\"목\",\"금\",\"토\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1월\",\"2월\",\"3월\",\"4월\",\"5월\",\"6월\",\"7월\",\"8월\",\"9월\",\"10월\",\"11월\",\"12월\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"오전\",\"오전\",\"오전\"],\n\t\t\tPM: [\"오후\",\"오후\",\"오후\"],\n\t\t\teras: [{\"name\":\"단기\",\"start\":null,\"offset\":-2333}],\n\t\t\ttwoDigitYearMax: 4362,\n\t\t\tpatterns: {\n\t\t\t\td: \"gg yyyy-MM-dd\",\n\t\t\t\tD: \"gg yyyy'년' M'월' d'일' dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"gg yyyy'년' M'월' d'일' dddd tt h:mm\",\n\t\t\t\tF: \"gg yyyy'년' M'월' d'일' dddd tt h:mm:ss\",\n\t\t\t\tM: \"M'월' d'일'\",\n\t\t\t\tY: \"gg yyyy'년' M'월'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nl-NL\", \"default\", {\n\tname: \"nl-NL\",\n\tenglishName: \"Dutch (Netherlands)\",\n\tnativeName: \"Nederlands (Nederland)\",\n\tlanguage: \"nl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"zondag\",\"maandag\",\"dinsdag\",\"woensdag\",\"donderdag\",\"vrijdag\",\"zaterdag\"],\n\t\t\t\tnamesAbbr: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"],\n\t\t\t\tnamesShort: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"maart\",\"april\",\"mei\",\"juni\",\"juli\",\"augustus\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mrt\",\"apr\",\"mei\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nb-NO\", \"default\", {\n\tname: \"nb-NO\",\n\tenglishName: \"Norwegian, Bokmål (Norway)\",\n\tnativeName: \"norsk, bokmål (Norge)\",\n\tlanguage: \"nb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pl-PL\", \"default\", {\n\tname: \"pl-PL\",\n\tenglishName: \"Polish (Poland)\",\n\tnativeName: \"polski (Polska)\",\n\tlanguage: \"pl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"nie jest liczbą\",\n\t\tnegativeInfinity: \"-nieskończoność\",\n\t\tpositiveInfinity: \"+nieskończoność\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"zł\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"N\",\"Pn\",\"Wt\",\"Śr\",\"Cz\",\"Pt\",\"So\"],\n\t\t\t\tnamesShort: [\"N\",\"Pn\",\"Wt\",\"Śr\",\"Cz\",\"Pt\",\"So\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"stycznia\",\"lutego\",\"marca\",\"kwietnia\",\"maja\",\"czerwca\",\"lipca\",\"sierpnia\",\"września\",\"października\",\"listopada\",\"grudnia\",\"\"],\n\t\t\t\tnamesAbbr: [\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pt-BR\", \"default\", {\n\tname: \"pt-BR\",\n\tenglishName: \"Portuguese (Brazil)\",\n\tnativeName: \"Português (Brasil)\",\n\tlanguage: \"pt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Não é um número)\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"R$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"segunda-feira\",\"terça-feira\",\"quarta-feira\",\"quinta-feira\",\"sexta-feira\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"seg\",\"ter\",\"qua\",\"qui\",\"sex\",\"sáb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"T\",\"Q\",\"Q\",\"S\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janeiro\",\"fevereiro\",\"março\",\"abril\",\"maio\",\"junho\",\"julho\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"dezembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"fev\",\"mar\",\"abr\",\"mai\",\"jun\",\"jul\",\"ago\",\"set\",\"out\",\"nov\",\"dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' de 'MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' de 'MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd' de 'MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"rm-CH\", \"default\", {\n\tname: \"rm-CH\",\n\tenglishName: \"Romansh (Switzerland)\",\n\tnativeName: \"Rumantsch (Svizra)\",\n\tlanguage: \"rm\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"betg def.\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"+infinit\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumengia\",\"glindesdi\",\"mardi\",\"mesemna\",\"gievgia\",\"venderdi\",\"sonda\"],\n\t\t\t\tnamesAbbr: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"],\n\t\t\t\tnamesShort: [\"du\",\"gli\",\"ma\",\"me\",\"gie\",\"ve\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"schaner\",\"favrer\",\"mars\",\"avrigl\",\"matg\",\"zercladur\",\"fanadur\",\"avust\",\"settember\",\"october\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"schan\",\"favr\",\"mars\",\"avr\",\"matg\",\"zercl\",\"fan\",\"avust\",\"sett\",\"oct\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"s. Cr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ro-RO\", \"default\", {\n\tname: \"ro-RO\",\n\tenglishName: \"Romanian (Romania)\",\n\tnativeName: \"română (România)\",\n\tlanguage: \"ro\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"lei\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"duminică\",\"luni\",\"marţi\",\"miercuri\",\"joi\",\"vineri\",\"sâmbătă\"],\n\t\t\t\tnamesAbbr: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"Ma\",\"Mi\",\"J\",\"V\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ianuarie\",\"februarie\",\"martie\",\"aprilie\",\"mai\",\"iunie\",\"iulie\",\"august\",\"septembrie\",\"octombrie\",\"noiembrie\",\"decembrie\",\"\"],\n\t\t\t\tnamesAbbr: [\"ian.\",\"feb.\",\"mar.\",\"apr.\",\"mai.\",\"iun.\",\"iul.\",\"aug.\",\"sep.\",\"oct.\",\"nov.\",\"dec.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ru-RU\", \"default\", {\n\tname: \"ru-RU\",\n\tenglishName: \"Russian (Russia)\",\n\tnativeName: \"русский (Россия)\",\n\tlanguage: \"ru\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"воскресенье\",\"понедельник\",\"вторник\",\"среда\",\"четверг\",\"пятница\",\"суббота\"],\n\t\t\t\tnamesAbbr: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"января\",\"февраля\",\"марта\",\"апреля\",\"мая\",\"июня\",\"июля\",\"августа\",\"сентября\",\"октября\",\"ноября\",\"декабря\",\"\"],\n\t\t\t\tnamesAbbr: [\"янв\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'г.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'г.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'г.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hr-HR\", \"default\", {\n\tname: \"hr-HR\",\n\tenglishName: \"Croatian (Croatia)\",\n\tnativeName: \"hrvatski (Hrvatska)\",\n\tlanguage: \"hr\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kn\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"siječanj\",\"veljača\",\"ožujak\",\"travanj\",\"svibanj\",\"lipanj\",\"srpanj\",\"kolovoz\",\"rujan\",\"listopad\",\"studeni\",\"prosinac\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"siječnja\",\"veljače\",\"ožujka\",\"travnja\",\"svibnja\",\"lipnja\",\"srpnja\",\"kolovoza\",\"rujna\",\"listopada\",\"studenog\",\"prosinca\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy.\",\n\t\t\t\tD: \"d. MMMM yyyy.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy. H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy. H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sk-SK\", \"default\", {\n\tname: \"sk-SK\",\n\tenglishName: \"Slovak (Slovakia)\",\n\tnativeName: \"slovenčina (Slovenská republika)\",\n\tlanguage: \"sk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Nie je číslo\",\n\t\tnegativeInfinity: \"-nekonečno\",\n\t\tpositiveInfinity: \"+nekonečno\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedeľa\",\"pondelok\",\"utorok\",\"streda\",\"štvrtok\",\"piatok\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"st\",\"št\",\"pi\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"január\",\"február\",\"marec\",\"apríl\",\"máj\",\"jún\",\"júl\",\"august\",\"september\",\"október\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januára\",\"februára\",\"marca\",\"apríla\",\"mája\",\"júna\",\"júla\",\"augusta\",\"septembra\",\"októbra\",\"novembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. l.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sq-AL\", \"default\", {\n\tname: \"sq-AL\",\n\tenglishName: \"Albanian (Albania)\",\n\tnativeName: \"shqipe (Shqipëria)\",\n\tlanguage: \"sq\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-infinit\",\n\t\tpositiveInfinity: \"infinit\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lek\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"e diel\",\"e hënë\",\"e martë\",\"e mërkurë\",\"e enjte\",\"e premte\",\"e shtunë\"],\n\t\t\t\tnamesAbbr: [\"Die\",\"Hën\",\"Mar\",\"Mër\",\"Enj\",\"Pre\",\"Sht\"],\n\t\t\t\tnamesShort: [\"Di\",\"Hë\",\"Ma\",\"Më\",\"En\",\"Pr\",\"Sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janar\",\"shkurt\",\"mars\",\"prill\",\"maj\",\"qershor\",\"korrik\",\"gusht\",\"shtator\",\"tetor\",\"nëntor\",\"dhjetor\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Shk\",\"Mar\",\"Pri\",\"Maj\",\"Qer\",\"Kor\",\"Gsh\",\"Sht\",\"Tet\",\"Nën\",\"Dhj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"PD\",\"pd\",\"PD\"],\n\t\t\tPM: [\"MD\",\"md\",\"MD\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy-MM-dd\",\n\t\t\t\tt: \"h:mm.tt\",\n\t\t\t\tT: \"h:mm:ss.tt\",\n\t\t\t\tf: \"yyyy-MM-dd h:mm.tt\",\n\t\t\t\tF: \"yyyy-MM-dd h:mm:ss.tt\",\n\t\t\t\tY: \"yyyy-MM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sv-SE\", \"default\", {\n\tname: \"sv-SE\",\n\tenglishName: \"Swedish (Sweden)\",\n\tnativeName: \"svenska (Sverige)\",\n\tlanguage: \"sv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"söndag\",\"måndag\",\"tisdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lördag\"],\n\t\t\t\tnamesAbbr: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"],\n\t\t\t\tnamesShort: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"mars\",\"april\",\"maj\",\"juni\",\"juli\",\"augusti\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"'den 'd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"'den 'd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"'den 'd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'den 'd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"th-TH\", \"default\", {\n\tname: \"th-TH\",\n\tenglishName: \"Thai (Thailand)\",\n\tnativeName: \"ไทย (ไทย)\",\n\tlanguage: \"th\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"฿\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"ThaiBuddhist\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"พ.ศ.\",\"start\":null,\"offset\":-543}],\n\t\t\ttwoDigitYearMax: 2572,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"อาทิตย์\",\"จันทร์\",\"อังคาร\",\"พุธ\",\"พฤหัสบดี\",\"ศุกร์\",\"เสาร์\"],\n\t\t\t\tnamesAbbr: [\"อา.\",\"จ.\",\"อ.\",\"พ.\",\"พฤ.\",\"ศ.\",\"ส.\"],\n\t\t\t\tnamesShort: [\"อ\",\"จ\",\"อ\",\"พ\",\"พ\",\"ศ\",\"ส\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"มกราคม\",\"กุมภาพันธ์\",\"มีนาคม\",\"เมษายน\",\"พฤษภาคม\",\"มิถุนายน\",\"กรกฎาคม\",\"สิงหาคม\",\"กันยายน\",\"ตุลาคม\",\"พฤศจิกายน\",\"ธันวาคม\",\"\"],\n\t\t\t\tnamesAbbr: [\"ม.ค.\",\"ก.พ.\",\"มี.ค.\",\"เม.ย.\",\"พ.ค.\",\"มิ.ย.\",\"ก.ค.\",\"ส.ค.\",\"ก.ย.\",\"ต.ค.\",\"พ.ย.\",\"ธ.ค.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"'วัน'dddd'ที่' d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"'วัน'dddd'ที่' d MMMM yyyy H:mm\",\n\t\t\t\tF: \"'วัน'dddd'ที่' d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tr-TR\", \"default\", {\n\tname: \"tr-TR\",\n\tenglishName: \"Turkish (Turkey)\",\n\tnativeName: \"Türkçe (Türkiye)\",\n\tlanguage: \"tr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"TL\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Pazar\",\"Pazartesi\",\"Salı\",\"Çarşamba\",\"Perşembe\",\"Cuma\",\"Cumartesi\"],\n\t\t\t\tnamesAbbr: [\"Paz\",\"Pzt\",\"Sal\",\"Çar\",\"Per\",\"Cum\",\"Cmt\"],\n\t\t\t\tnamesShort: [\"Pz\",\"Pt\",\"Sa\",\"Ça\",\"Pe\",\"Cu\",\"Ct\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ocak\",\"Şubat\",\"Mart\",\"Nisan\",\"Mayıs\",\"Haziran\",\"Temmuz\",\"Ağustos\",\"Eylül\",\"Ekim\",\"Kasım\",\"Aralık\",\"\"],\n\t\t\t\tnamesAbbr: [\"Oca\",\"Şub\",\"Mar\",\"Nis\",\"May\",\"Haz\",\"Tem\",\"Ağu\",\"Eyl\",\"Eki\",\"Kas\",\"Ara\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ur-PK\", \"default\", {\n\tname: \"ur-PK\",\n\tenglishName: \"Urdu (Islamic Republic of Pakistan)\",\n\tnativeName: \"اُردو (پاکستان)\",\n\tlanguage: \"ur\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"Rs\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesAbbr: [\"اتوار\",\"پير\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعه\",\"هفته\"],\n\t\t\t\tnamesShort: [\"ا\",\"پ\",\"م\",\"ب\",\"ج\",\"ج\",\"ه\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tf: \"dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"id-ID\", \"default\", {\n\tname: \"id-ID\",\n\tenglishName: \"Indonesian (Indonesia)\",\n\tnativeName: \"Bahasa Indonesia (Indonesia)\",\n\tlanguage: \"id\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Rp\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Minggu\",\"Senin\",\"Selasa\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Minggu\",\"Sen\",\"Sel\",\"Rabu\",\"Kamis\",\"Jumat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"M\",\"S\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Maret\",\"April\",\"Mei\",\"Juni\",\"Juli\",\"Agustus\",\"September\",\"Oktober\",\"Nopember\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Agust\",\"Sep\",\"Okt\",\"Nop\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uk-UA\", \"default\", {\n\tname: \"uk-UA\",\n\tenglishName: \"Ukrainian (Ukraine)\",\n\tnativeName: \"українська (Україна)\",\n\tlanguage: \"uk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-безмежність\",\n\t\tpositiveInfinity: \"безмежність\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₴\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"неділя\",\"понеділок\",\"вівторок\",\"середа\",\"четвер\",\"п'ятниця\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Нд\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Січень\",\"Лютий\",\"Березень\",\"Квітень\",\"Травень\",\"Червень\",\"Липень\",\"Серпень\",\"Вересень\",\"Жовтень\",\"Листопад\",\"Грудень\",\"\"],\n\t\t\t\tnamesAbbr: [\"Січ\",\"Лют\",\"Бер\",\"Кві\",\"Тра\",\"Чер\",\"Лип\",\"Сер\",\"Вер\",\"Жов\",\"Лис\",\"Гру\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"січня\",\"лютого\",\"березня\",\"квітня\",\"травня\",\"червня\",\"липня\",\"серпня\",\"вересня\",\"жовтня\",\"листопада\",\"грудня\",\"\"],\n\t\t\t\tnamesAbbr: [\"січ\",\"лют\",\"бер\",\"кві\",\"тра\",\"чер\",\"лип\",\"сер\",\"вер\",\"жов\",\"лис\",\"гру\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy' р.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy' р.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy' р.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy' р.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"be-BY\", \"default\", {\n\tname: \"be-BY\",\n\tenglishName: \"Belarusian (Belarus)\",\n\tnativeName: \"Беларускі (Беларусь)\",\n\tlanguage: \"be\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"нядзеля\",\"панядзелак\",\"аўторак\",\"серада\",\"чацвер\",\"пятніца\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"],\n\t\t\t\tnamesShort: [\"нд\",\"пн\",\"аў\",\"ср\",\"чц\",\"пт\",\"сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Студзень\",\"Люты\",\"Сакавік\",\"Красавік\",\"Май\",\"Чэрвень\",\"Ліпень\",\"Жнівень\",\"Верасень\",\"Кастрычнік\",\"Лістапад\",\"Снежань\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"студзеня\",\"лютага\",\"сакавіка\",\"красавіка\",\"мая\",\"чэрвеня\",\"ліпеня\",\"жніўня\",\"верасня\",\"кастрычніка\",\"лістапада\",\"снежня\",\"\"],\n\t\t\t\tnamesAbbr: [\"Сту\",\"Лют\",\"Сак\",\"Кра\",\"Май\",\"Чэр\",\"Ліп\",\"Жні\",\"Вер\",\"Кас\",\"Ліс\",\"Сне\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sl-SI\", \"default\", {\n\tname: \"sl-SI\",\n\tenglishName: \"Slovenian (Slovenia)\",\n\tnativeName: \"slovenski (Slovenija)\",\n\tlanguage: \"sl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-neskončnost\",\n\t\tpositiveInfinity: \"neskončnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljek\",\"torek\",\"sreda\",\"četrtek\",\"petek\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"tor\",\"sre\",\"čet\",\"pet\",\"sob\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"to\",\"sr\",\"če\",\"pe\",\"so\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"marec\",\"april\",\"maj\",\"junij\",\"julij\",\"avgust\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"et-EE\", \"default\", {\n\tname: \"et-EE\",\n\tenglishName: \"Estonian (Estonia)\",\n\tnativeName: \"eesti (Eesti)\",\n\tlanguage: \"et\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"avaldamatu\",\n\t\tnegativeInfinity: \"miinuslõpmatus\",\n\t\tpositiveInfinity: \"plusslõpmatus\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pühapäev\",\"esmaspäev\",\"teisipäev\",\"kolmapäev\",\"neljapäev\",\"reede\",\"laupäev\"],\n\t\t\t\tnamesAbbr: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"],\n\t\t\t\tnamesShort: [\"P\",\"E\",\"T\",\"K\",\"N\",\"R\",\"L\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jaanuar\",\"veebruar\",\"märts\",\"aprill\",\"mai\",\"juuni\",\"juuli\",\"august\",\"september\",\"oktoober\",\"november\",\"detsember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jaan\",\"veebr\",\"märts\",\"apr\",\"mai\",\"juuni\",\"juuli\",\"aug\",\"sept\",\"okt\",\"nov\",\"dets\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"EL\",\"el\",\"EL\"],\n\t\t\tPM: [\"PL\",\"pl\",\"PL\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy'. a.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy'. a.' H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy'. a.' H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy'. a.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lv-LV\", \"default\", {\n\tname: \"lv-LV\",\n\tenglishName: \"Latvian (Latvia)\",\n\tnativeName: \"latviešu (Latvija)\",\n\tlanguage: \"lv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-bezgalība\",\n\t\tpositiveInfinity: \"bezgalība\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Ls\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"svētdiena\",\"pirmdiena\",\"otrdiena\",\"trešdiena\",\"ceturtdiena\",\"piektdiena\",\"sestdiena\"],\n\t\t\t\tnamesAbbr: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"],\n\t\t\t\tnamesShort: [\"sv\",\"pr\",\"ot\",\"tr\",\"ce\",\"pk\",\"se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvāris\",\"februāris\",\"marts\",\"aprīlis\",\"maijs\",\"jūnijs\",\"jūlijs\",\"augusts\",\"septembris\",\"oktobris\",\"novembris\",\"decembris\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"janvārī\",\"februārī\",\"martā\",\"aprīlī\",\"maijā\",\"jūnijā\",\"jūlijā\",\"augustā\",\"septembrī\",\"oktobrī\",\"novembrī\",\"decembrī\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jūn\",\"jūl\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd.\",\n\t\t\t\tD: \"dddd, yyyy'. gada 'd. MMMM\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy'. gada 'd. MMMM H:mm\",\n\t\t\t\tF: \"dddd, yyyy'. gada 'd. MMMM H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"yyyy. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lt-LT\", \"default\", {\n\tname: \"lt-LT\",\n\tenglishName: \"Lithuanian (Lithuania)\",\n\tnativeName: \"lietuvių (Lietuva)\",\n\tlanguage: \"lt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-begalybė\",\n\t\tpositiveInfinity: \"begalybė\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lt\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sekmadienis\",\"pirmadienis\",\"antradienis\",\"trečiadienis\",\"ketvirtadienis\",\"penktadienis\",\"šeštadienis\"],\n\t\t\t\tnamesAbbr: [\"Sk\",\"Pr\",\"An\",\"Tr\",\"Kt\",\"Pn\",\"Št\"],\n\t\t\t\tnamesShort: [\"S\",\"P\",\"A\",\"T\",\"K\",\"Pn\",\"Š\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"sausis\",\"vasaris\",\"kovas\",\"balandis\",\"gegužė\",\"birželis\",\"liepa\",\"rugpjūtis\",\"rugsėjis\",\"spalis\",\"lapkritis\",\"gruodis\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"sausio\",\"vasario\",\"kovo\",\"balandžio\",\"gegužės\",\"birželio\",\"liepos\",\"rugpjūčio\",\"rugsėjo\",\"spalio\",\"lapkričio\",\"gruodžio\",\"\"],\n\t\t\t\tnamesAbbr: [\"Sau\",\"Vas\",\"Kov\",\"Bal\",\"Geg\",\"Bir\",\"Lie\",\"Rgp\",\"Rgs\",\"Spl\",\"Lap\",\"Grd\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy.MM.dd\",\n\t\t\t\tD: \"yyyy 'm.' MMMM d 'd.'\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'm.' MMMM d 'd.' HH:mm\",\n\t\t\t\tF: \"yyyy 'm.' MMMM d 'd.' HH:mm:ss\",\n\t\t\t\tM: \"MMMM d 'd.'\",\n\t\t\t\tY: \"yyyy 'm.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tg-Cyrl-TJ\", \"default\", {\n\tname: \"tg-Cyrl-TJ\",\n\tenglishName: \"Tajik (Cyrillic, Tajikistan)\",\n\tnativeName: \"Тоҷикӣ (Тоҷикистон)\",\n\tlanguage: \"tg-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \";\",\n\t\t\tsymbol: \"т.р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"Яш\",\"Душанбе\",\"Сешанбе\",\"Чоршанбе\",\"Панҷшанбе\",\"Ҷумъа\",\"Шанбе\"],\n\t\t\t\tnamesAbbr: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"],\n\t\t\t\tnamesShort: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январи\",\"феврали\",\"марти\",\"апрели\",\"маи\",\"июни\",\"июли\",\"августи\",\"сентябри\",\"октябри\",\"ноябри\",\"декабри\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fa-IR\", \"default\", {\n\tname: \"fa-IR\",\n\tenglishName: \"Persian\",\n\tnativeName: \"فارسى (ایران)\",\n\tlanguage: \"fa\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\t\".\": \"/\",\n\t\t\tsymbol: \"ريال\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"يكشنبه\",\"دوشنبه\",\"سه شنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"ژانويه\",\"فوريه\",\"مارس\",\"آوريل\",\"مى\",\"ژوئن\",\"ژوئيه\",\"اوت\",\"سپتامبر\",\"اُكتبر\",\"نوامبر\",\"دسامبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"yyyy/MM/dd\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"yyyy/MM/dd hh:mm tt\",\n\t\t\t\tF: \"yyyy/MM/dd hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ق.ظ\",\"ق.ظ\",\"ق.ظ\"],\n\t\t\tPM: [\"ب.ظ\",\"ب.ظ\",\"ب.ظ\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"vi-VN\", \"default\", {\n\tname: \"vi-VN\",\n\tenglishName: \"Vietnamese (Vietnam)\",\n\tnativeName: \"Tiếng Việt (Việt Nam)\",\n\tlanguage: \"vi\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₫\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Chủ Nhật\",\"Thứ Hai\",\"Thứ Ba\",\"Thứ Tư\",\"Thứ Năm\",\"Thứ Sáu\",\"Thứ Bảy\"],\n\t\t\t\tnamesAbbr: [\"CN\",\"Hai\",\"Ba\",\"Tư\",\"Năm\",\"Sáu\",\"Bảy\"],\n\t\t\t\tnamesShort: [\"C\",\"H\",\"B\",\"T\",\"N\",\"S\",\"B\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tháng Giêng\",\"Tháng Hai\",\"Tháng Ba\",\"Tháng Tư\",\"Tháng Năm\",\"Tháng Sáu\",\"Tháng Bảy\",\"Tháng Tám\",\"Tháng Chín\",\"Tháng Mười\",\"Tháng Mười Một\",\"Tháng Mười Hai\",\"\"],\n\t\t\t\tnamesAbbr: [\"Thg1\",\"Thg2\",\"Thg3\",\"Thg4\",\"Thg5\",\"Thg6\",\"Thg7\",\"Thg8\",\"Thg9\",\"Thg10\",\"Thg11\",\"Thg12\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"SA\",\"sa\",\"SA\"],\n\t\t\tPM: [\"CH\",\"ch\",\"CH\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tf: \"dd MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hy-AM\", \"default\", {\n\tname: \"hy-AM\",\n\tenglishName: \"Armenian (Armenia)\",\n\tnativeName: \"Հայերեն (Հայաստան)\",\n\tlanguage: \"hy\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"դր.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Կիրակի\",\"Երկուշաբթի\",\"Երեքշաբթի\",\"Չորեքշաբթի\",\"Հինգշաբթի\",\"ՈՒրբաթ\",\"Շաբաթ\"],\n\t\t\t\tnamesAbbr: [\"Կիր\",\"Երկ\",\"Երք\",\"Չրք\",\"Հնգ\",\"ՈՒր\",\"Շբթ\"],\n\t\t\t\tnamesShort: [\"Կ\",\"Ե\",\"Ե\",\"Չ\",\"Հ\",\"Ո\",\"Շ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Հունվար\",\"Փետրվար\",\"Մարտ\",\"Ապրիլ\",\"Մայիս\",\"Հունիս\",\"Հուլիս\",\"Օգոստոս\",\"Սեպտեմբեր\",\"Հոկտեմբեր\",\"Նոյեմբեր\",\"Դեկտեմբեր\",\"\"],\n\t\t\t\tnamesAbbr: [\"ՀՆՎ\",\"ՓՏՎ\",\"ՄՐՏ\",\"ԱՊՐ\",\"ՄՅՍ\",\"ՀՆՍ\",\"ՀԼՍ\",\"ՕԳՍ\",\"ՍԵՊ\",\"ՀՈԿ\",\"ՆՈՅ\",\"ԴԵԿ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM, yyyy H:mm\",\n\t\t\t\tF: \"d MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"az-Latn-AZ\", \"default\", {\n\tname: \"az-Latn-AZ\",\n\tenglishName: \"Azeri (Latin, Azerbaijan)\",\n\tnativeName: \"Azərbaycan\\xadılı (Azərbaycan)\",\n\tlanguage: \"az-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"man.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Bazar\",\"Bazar ertəsi\",\"Çərşənbə axşamı\",\"Çərşənbə\",\"Cümə axşamı\",\"Cümə\",\"Şənbə\"],\n\t\t\t\tnamesAbbr: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"],\n\t\t\t\tnamesShort: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yanvar\",\"Fevral\",\"Mart\",\"Aprel\",\"May\",\"İyun\",\"İyul\",\"Avgust\",\"Sentyabr\",\"Oktyabr\",\"Noyabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"eu-ES\", \"default\", {\n\tname: \"eu-ES\",\n\tenglishName: \"Basque (Basque)\",\n\tnativeName: \"euskara (euskara)\",\n\tlanguage: \"eu\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"EdZ\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"igandea\",\"astelehena\",\"asteartea\",\"asteazkena\",\"osteguna\",\"ostirala\",\"larunbata\"],\n\t\t\t\tnamesAbbr: [\"ig.\",\"al.\",\"as.\",\"az.\",\"og.\",\"or.\",\"lr.\"],\n\t\t\t\tnamesShort: [\"ig\",\"al\",\"as\",\"az\",\"og\",\"or\",\"lr\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"urtarrila\",\"otsaila\",\"martxoa\",\"apirila\",\"maiatza\",\"ekaina\",\"uztaila\",\"abuztua\",\"iraila\",\"urria\",\"azaroa\",\"abendua\",\"\"],\n\t\t\t\tnamesAbbr: [\"urt.\",\"ots.\",\"mar.\",\"api.\",\"mai.\",\"eka.\",\"uzt.\",\"abu.\",\"ira.\",\"urr.\",\"aza.\",\"abe.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dddd, yyyy.'eko' MMMM'k 'd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, yyyy.'eko' MMMM'k 'd HH:mm\",\n\t\t\t\tF: \"dddd, yyyy.'eko' MMMM'k 'd H:mm:ss\",\n\t\t\t\tY: \"yyyy.'eko' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hsb-DE\", \"default\", {\n\tname: \"hsb-DE\",\n\tenglishName: \"Upper Sorbian (Germany)\",\n\tnativeName: \"hornjoserbšćina (Němska)\",\n\tlanguage: \"hsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekónčne\",\n\t\tpositiveInfinity: \"+njekónčne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njedźela\",\"póndźela\",\"wutora\",\"srjeda\",\"štwórtk\",\"pjatk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pón\",\"wut\",\"srj\",\"štw\",\"pja\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"š\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"meja\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"meje\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"mej\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'hodź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'hodź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mk-MK\", \"default\", {\n\tname: \"mk-MK\",\n\tenglishName: \"Macedonian (Former Yugoslav Republic of Macedonia)\",\n\tnativeName: \"македонски јазик (Македонија)\",\n\tlanguage: \"mk\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ден.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недела\",\"понеделник\",\"вторник\",\"среда\",\"четврток\",\"петок\",\"сабота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"втр\",\"срд\",\"чет\",\"пет\",\"саб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"вт\",\"ср\",\"че\",\"пе\",\"са\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануари\",\"февруари\",\"март\",\"април\",\"мај\",\"јуни\",\"јули\",\"август\",\"септември\",\"октомври\",\"ноември\",\"декември\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"фев\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"ное\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tn-ZA\", \"default\", {\n\tname: \"tn-ZA\",\n\tenglishName: \"Setswana (South Africa)\",\n\tnativeName: \"Setswana (Aforika Borwa)\",\n\tlanguage: \"tn\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Latshipi\",\"Mosupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labotlhano\",\"Lamatlhatso\"],\n\t\t\t\tnamesAbbr: [\"Ltp.\",\"Mos.\",\"Lbd.\",\"Lbr.\",\"Lbn.\",\"Lbt.\",\"Lmt.\"],\n\t\t\t\tnamesShort: [\"Lp\",\"Ms\",\"Lb\",\"Lr\",\"Ln\",\"Lt\",\"Lm\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ferikgong\",\"Tlhakole\",\"Mopitloe\",\"Moranang\",\"Motsheganong\",\"Seetebosigo\",\"Phukwi\",\"Phatwe\",\"Lwetse\",\"Diphalane\",\"Ngwanatsele\",\"Sedimothole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fer.\",\"Tlhak.\",\"Mop.\",\"Mor.\",\"Motsh.\",\"Seet.\",\"Phukw.\",\"Phatw.\",\"Lwets.\",\"Diph.\",\"Ngwan.\",\"Sed.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"xh-ZA\", \"default\", {\n\tname: \"xh-ZA\",\n\tenglishName: \"isiXhosa (South Africa)\",\n\tnativeName: \"isiXhosa (uMzantsi Afrika)\",\n\tlanguage: \"xh\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iCawa\",\"uMvulo\",\"uLwesibini\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesShort: [\"Ca\",\"Mv\",\"Lb\",\"Lt\",\"Ln\",\"Lh\",\"Mg\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mqungu\",\"Mdumba\",\"Kwindla\",\"Tshazimpuzi\",\"Canzibe\",\"Silimela\",\"Khala\",\"Thupha\",\"Msintsi\",\"Dwarha\",\"Nkanga\",\"Mnga\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zu-ZA\", \"default\", {\n\tname: \"zu-ZA\",\n\tenglishName: \"isiZulu (South Africa)\",\n\tnativeName: \"isiZulu (iNingizimu Afrika)\",\n\tlanguage: \"zu\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"iSonto\",\"uMsombuluko\",\"uLwesibili\",\"uLwesithathu\",\"uLwesine\",\"uLwesihlanu\",\"uMgqibelo\"],\n\t\t\t\tnamesAbbr: [\"Son.\",\"Mso.\",\"Bi.\",\"Tha.\",\"Ne.\",\"Hla.\",\"Mgq.\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uMasingana\",\"uNhlolanja\",\"uNdasa\",\"uMbaso\",\"uNhlaba\",\"uNhlangulana\",\"uNtulikazi\",\"uNcwaba\",\"uMandulo\",\"uMfumfu\",\"uLwezi\",\"uZibandlela\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mas.\",\"Nhlo.\",\"Nda.\",\"Mba.\",\"Nhla.\",\"Nhlang.\",\"Ntu.\",\"Ncwa.\",\"Man.\",\"Mfu.\",\"Lwe.\",\"Zib.\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"af-ZA\", \"default\", {\n\tname: \"af-ZA\",\n\tenglishName: \"Afrikaans (South Africa)\",\n\tnativeName: \"Afrikaans (Suid Afrika)\",\n\tlanguage: \"af\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sondag\",\"Maandag\",\"Dinsdag\",\"Woensdag\",\"Donderdag\",\"Vrydag\",\"Saterdag\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Maan\",\"Dins\",\"Woen\",\"Dond\",\"Vry\",\"Sat\"],\n\t\t\t\tnamesShort: [\"So\",\"Ma\",\"Di\",\"Wo\",\"Do\",\"Vr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januarie\",\"Februarie\",\"Maart\",\"April\",\"Mei\",\"Junie\",\"Julie\",\"Augustus\",\"September\",\"Oktober\",\"November\",\"Desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Des\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ka-GE\", \"default\", {\n\tname: \"ka-GE\",\n\tenglishName: \"Georgian (Georgia)\",\n\tnativeName: \"ქართული (საქართველო)\",\n\tlanguage: \"ka\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Lari\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesAbbr: [\"კვირა\",\"ორშაბათი\",\"სამშაბათი\",\"ოთხშაბათი\",\"ხუთშაბათი\",\"პარასკევი\",\"შაბათი\"],\n\t\t\t\tnamesShort: [\"კ\",\"ო\",\"ს\",\"ო\",\"ხ\",\"პ\",\"შ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"იანვარი\",\"თებერვალი\",\"მარტი\",\"აპრილი\",\"მაისი\",\"ივნისი\",\"ივლისი\",\"აგვისტო\",\"სექტემბერი\",\"ოქტომბერი\",\"ნოემბერი\",\"დეკემბერი\",\"\"],\n\t\t\t\tnamesAbbr: [\"იან\",\"თებ\",\"მარ\",\"აპრ\",\"მაის\",\"ივნ\",\"ივლ\",\"აგვ\",\"სექ\",\"ოქტ\",\"ნოემ\",\"დეკ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'წლის' dd MM, dddd\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'წლის' dd MM, dddd H:mm\",\n\t\t\t\tF: \"yyyy 'წლის' dd MM, dddd H:mm:ss\",\n\t\t\t\tM: \"dd MM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fo-FO\", \"default\", {\n\tname: \"fo-FO\",\n\tenglishName: \"Faroese (Faroe Islands)\",\n\tnativeName: \"føroyskt (Føroyar)\",\n\tlanguage: \"fo\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sunnudagur\",\"mánadagur\",\"týsdagur\",\"mikudagur\",\"hósdagur\",\"fríggjadagur\",\"leygardagur\"],\n\t\t\t\tnamesAbbr: [\"sun\",\"mán\",\"týs\",\"mik\",\"hós\",\"frí\",\"leyg\"],\n\t\t\t\tnamesShort: [\"su\",\"má\",\"tý\",\"mi\",\"hó\",\"fr\",\"ley\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"apríl\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hi-IN\", \"default\", {\n\tname: \"hi-IN\",\n\tenglishName: \"Hindi (India)\",\n\tnativeName: \"हिंदी (भारत)\",\n\tlanguage: \"hi\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगलवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगल.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mt-MT\", \"default\", {\n\tname: \"mt-MT\",\n\tenglishName: \"Maltese (Malta)\",\n\tnativeName: \"Malti (Malta)\",\n\tlanguage: \"mt\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Il-Ħadd\",\"It-Tnejn\",\"It-Tlieta\",\"L-Erbgħa\",\"Il-Ħamis\",\"Il-Ġimgħa\",\"Is-Sibt\"],\n\t\t\t\tnamesAbbr: [\"Ħad\",\"Tne\",\"Tli\",\"Erb\",\"Ħam\",\"Ġim\",\"Sib\"],\n\t\t\t\tnamesShort: [\"I\",\"I\",\"I\",\"L\",\"I\",\"I\",\"I\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jannar\",\"Frar\",\"Marzu\",\"April\",\"Mejju\",\"Ġunju\",\"Lulju\",\"Awissu\",\"Settembru\",\"Ottubru\",\"Novembru\",\"Diċembru\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Fra\",\"Mar\",\"Apr\",\"Mej\",\"Ġun\",\"Lul\",\"Awi\",\"Set\",\"Ott\",\"Nov\",\"Diċ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, d' ta\\\\' 'MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' ta\\\\' 'MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d' ta\\\\' 'MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"se-NO\", \"default\", {\n\tname: \"se-NO\",\n\tenglishName: \"Sami, Northern (Norway)\",\n\tnativeName: \"davvisámegiella (Norga)\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"vuossárga\",\"maŋŋebárga\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"vuos\",\"maŋ\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ms-MY\", \"default\", {\n\tname: \"ms-MY\",\n\tenglishName: \"Malay (Malaysia)\",\n\tnativeName: \"Bahasa Melayu (Malaysia)\",\n\tlanguage: \"ms\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\tsymbol: \"RM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ahad\",\"Isnin\",\"Selasa\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Ahad\",\"Isnin\",\"Sel\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"A\",\"I\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Mac\",\"April\",\"Mei\",\"Jun\",\"Julai\",\"Ogos\",\"September\",\"Oktober\",\"November\",\"Disember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ogos\",\"Sept\",\"Okt\",\"Nov\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kk-KZ\", \"default\", {\n\tname: \"kk-KZ\",\n\tenglishName: \"Kazakh (Kazakhstan)\",\n\tnativeName: \"Қазақ (Қазақстан)\",\n\tlanguage: \"kk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"Т\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жексенбі\",\"Дүйсенбі\",\"Сейсенбі\",\"Сәрсенбі\",\"Бейсенбі\",\"Жұма\",\"Сенбі\"],\n\t\t\t\tnamesAbbr: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"],\n\t\t\t\tnamesShort: [\"Жк\",\"Дс\",\"Сс\",\"Ср\",\"Бс\",\"Жм\",\"Сн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"қаңтар\",\"ақпан\",\"наурыз\",\"сәуір\",\"мамыр\",\"маусым\",\"шілде\",\"тамыз\",\"қыркүйек\",\"қазан\",\"қараша\",\"желтоқсан\",\"\"],\n\t\t\t\tnamesAbbr: [\"Қаң\",\"Ақп\",\"Нау\",\"Сәу\",\"Мам\",\"Мау\",\"Шіл\",\"Там\",\"Қыр\",\"Қаз\",\"Қар\",\"Жел\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy 'ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'ж.' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ky-KG\", \"default\", {\n\tname: \"ky-KG\",\n\tenglishName: \"Kyrgyz (Kyrgyzstan)\",\n\tnativeName: \"Кыргыз (Кыргызстан)\",\n\tlanguage: \"ky\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \"-\",\n\t\t\tsymbol: \"сом\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Жекшемби\",\"Дүйшөмбү\",\"Шейшемби\",\"Шаршемби\",\"Бейшемби\",\"Жума\",\"Ишемби\"],\n\t\t\t\tnamesAbbr: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"],\n\t\t\t\tnamesShort: [\"Жш\",\"Дш\",\"Шш\",\"Шр\",\"Бш\",\"Жм\",\"Иш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январь\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d'-'MMMM yyyy'-ж.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d'-'MMMM yyyy'-ж.' H:mm\",\n\t\t\t\tF: \"d'-'MMMM yyyy'-ж.' H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy'-ж.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sw-KE\", \"default\", {\n\tname: \"sw-KE\",\n\tenglishName: \"Kiswahili (Kenya)\",\n\tnativeName: \"Kiswahili (Kenya)\",\n\tlanguage: \"sw\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"S\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Jumapili\",\"Jumatatu\",\"Jumanne\",\"Jumatano\",\"Alhamisi\",\"Ijumaa\",\"Jumamosi\"],\n\t\t\t\tnamesAbbr: [\"Jumap.\",\"Jumat.\",\"Juman.\",\"Jumat.\",\"Alh.\",\"Iju.\",\"Jumam.\"],\n\t\t\t\tnamesShort: [\"P\",\"T\",\"N\",\"T\",\"A\",\"I\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Machi\",\"Aprili\",\"Mei\",\"Juni\",\"Julai\",\"Agosti\",\"Septemba\",\"Oktoba\",\"Novemba\",\"Decemba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ago\",\"Sep\",\"Okt\",\"Nov\",\"Dec\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tk-TM\", \"default\", {\n\tname: \"tk-TM\",\n\tenglishName: \"Turkmen (Turkmenistan)\",\n\tnativeName: \"türkmençe (Türkmenistan)\",\n\tlanguage: \"tk\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-üznüksizlik\",\n\t\tpositiveInfinity: \"üznüksizlik\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"m.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Duşenbe\",\"Sişenbe\",\"Çarşenbe\",\"Penşenbe\",\"Anna\",\"Şenbe\",\"Ýekşenbe\"],\n\t\t\t\tnamesAbbr: [\"Db\",\"Sb\",\"Çb\",\"Pb\",\"An\",\"Şb\",\"Ýb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"Ç\",\"P\",\"A\",\"Ş\",\"Ý\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ýanwar\",\"Fewral\",\"Mart\",\"Aprel\",\"Maý\",\"lýun\",\"lýul\",\"Awgust\",\"Sentýabr\",\"Oktýabr\",\"Noýabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ýan\",\"Few\",\"Mart\",\"Apr\",\"Maý\",\"lýun\",\"lýul\",\"Awg\",\"Sen\",\"Okt\",\"Not\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"yyyy 'ý.' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'ý.' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'ý.' MMMM d H:mm:ss\",\n\t\t\t\tY: \"yyyy 'ý.' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uz-Latn-UZ\", \"default\", {\n\tname: \"uz-Latn-UZ\",\n\tenglishName: \"Uzbek (Latin, Uzbekistan)\",\n\tnativeName: \"U'zbek (U'zbekiston Respublikasi)\",\n\tlanguage: \"uz-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"so'm\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"yakshanba\",\"dushanba\",\"seshanba\",\"chorshanba\",\"payshanba\",\"juma\",\"shanba\"],\n\t\t\t\tnamesAbbr: [\"yak.\",\"dsh.\",\"sesh.\",\"chr.\",\"psh.\",\"jm.\",\"sh.\"],\n\t\t\t\tnamesShort: [\"ya\",\"d\",\"s\",\"ch\",\"p\",\"j\",\"sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM yyyy\",\n\t\t\t\tD: \"yyyy 'yil' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'yil' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'yil' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tt-RU\", \"default\", {\n\tname: \"tt-RU\",\n\tenglishName: \"Tatar (Russia)\",\n\tnativeName: \"Татар (Россия)\",\n\tlanguage: \"tt\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Якшәмбе\",\"Дүшәмбе\",\"Сишәмбе\",\"Чәршәмбе\",\"Пәнҗешәмбе\",\"Җомга\",\"Шимбә\"],\n\t\t\t\tnamesAbbr: [\"Якш\",\"Дүш\",\"Сиш\",\"Чәрш\",\"Пәнҗ\",\"Җом\",\"Шим\"],\n\t\t\t\tnamesShort: [\"Я\",\"Д\",\"С\",\"Ч\",\"П\",\"Җ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Гыйнвар\",\"Февраль\",\"Март\",\"Апрель\",\"Май\",\"Июнь\",\"Июль\",\"Август\",\"Сентябрь\",\"Октябрь\",\"Ноябрь\",\"Декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.\",\"Фев.\",\"Мар.\",\"Апр.\",\"Май\",\"Июнь\",\"Июль\",\"Авг.\",\"Сен.\",\"Окт.\",\"Нояб.\",\"Дек.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"Гыйнварның\",\"Февральнең\",\"Мартның\",\"Апрельнең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Августның\",\"Сентябрьның\",\"Октябрьның\",\"Ноябрьның\",\"Декабрьның\",\"\"],\n\t\t\t\tnamesAbbr: [\"Гыйн.-ның\",\"Фев.-нең\",\"Мар.-ның\",\"Апр.-нең\",\"Майның\",\"Июньнең\",\"Июльнең\",\"Авг.-ның\",\"Сен.-ның\",\"Окт.-ның\",\"Нояб.-ның\",\"Дек.-ның\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bn-IN\", \"default\", {\n\tname: \"bn-IN\",\n\tenglishName: \"Bengali (India)\",\n\tnativeName: \"বাংলা (ভারত)\",\n\tlanguage: \"bn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"টা\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"রবিবার\",\"সোমবার\",\"মঙ্গলবার\",\"বুধবার\",\"বৃহস্পতিবার\",\"শুক্রবার\",\"শনিবার\"],\n\t\t\t\tnamesAbbr: [\"রবি.\",\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহস্পতি.\",\"শুক্র.\",\"শনি.\"],\n\t\t\t\tnamesShort: [\"র\",\"স\",\"ম\",\"ব\",\"ব\",\"শ\",\"শ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুয়ারী\",\"ফেব্রুয়ারী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগস্ট\",\"সেপ্টেম্বর\",\"অক্টোবর\",\"নভেম্বর\",\"ডিসেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু.\",\"ফেব্রু.\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগ.\",\"সেপ্টে.\",\"অক্টো.\",\"নভে.\",\"ডিসে.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"পুর্বাহ্ন\",\"পুর্বাহ্ন\",\"পুর্বাহ্ন\"],\n\t\t\tPM: [\"অপরাহ্ন\",\"অপরাহ্ন\",\"অপরাহ্ন\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pa-IN\", \"default\", {\n\tname: \"pa-IN\",\n\tenglishName: \"Punjabi (India)\",\n\tnativeName: \"ਪੰਜਾਬੀ (ਭਾਰਤ)\",\n\tlanguage: \"pa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ਰੁ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ਐਤਵਾਰ\",\"ਸੋਮਵਾਰ\",\"ਮੰਗਲਵਾਰ\",\"ਬੁੱਧਵਾਰ\",\"ਵੀਰਵਾਰ\",\"ਸ਼ੁੱਕਰਵਾਰ\",\"ਸ਼ਨਿੱਚਰਵਾਰ\"],\n\t\t\t\tnamesAbbr: [\"ਐਤ.\",\"ਸੋਮ.\",\"ਮੰਗਲ.\",\"ਬੁੱਧ.\",\"ਵੀਰ.\",\"ਸ਼ੁਕਰ.\",\"ਸ਼ਨਿੱਚਰ.\"],\n\t\t\t\tnamesShort: [\"ਐ\",\"ਸ\",\"ਮ\",\"ਬ\",\"ਵ\",\"ਸ਼\",\"ਸ਼\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ਜਨਵਰੀ\",\"ਫ਼ਰਵਰੀ\",\"ਮਾਰਚ\",\"ਅਪ੍ਰੈਲ\",\"ਮਈ\",\"ਜੂਨ\",\"ਜੁਲਾਈ\",\"ਅਗਸਤ\",\"ਸਤੰਬਰ\",\"ਅਕਤੂਬਰ\",\"ਨਵੰਬਰ\",\"ਦਸੰਬਰ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ਸਵੇਰ\",\"ਸਵੇਰ\",\"ਸਵੇਰ\"],\n\t\t\tPM: [\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\",\"ਸ਼ਾਮ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"tt hh:mm\",\n\t\t\t\tT: \"tt hh:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd tt hh:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd tt hh:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gu-IN\", \"default\", {\n\tname: \"gu-IN\",\n\tenglishName: \"Gujarati (India)\",\n\tnativeName: \"ગુજરાતી (ભારત)\",\n\tlanguage: \"gu\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"રૂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"રવિવાર\",\"સોમવાર\",\"મંગળવાર\",\"બુધવાર\",\"ગુરુવાર\",\"શુક્રવાર\",\"શનિવાર\"],\n\t\t\t\tnamesAbbr: [\"રવિ\",\"સોમ\",\"મંગળ\",\"બુધ\",\"ગુરુ\",\"શુક્ર\",\"શનિ\"],\n\t\t\t\tnamesShort: [\"ર\",\"સ\",\"મ\",\"બ\",\"ગ\",\"શ\",\"શ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"જાન્યુઆરી\",\"ફેબ્રુઆરી\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટેમ્બર\",\"ઑક્ટ્બર\",\"નવેમ્બર\",\"ડિસેમ્બર\",\"\"],\n\t\t\t\tnamesAbbr: [\"જાન્યુ\",\"ફેબ્રુ\",\"માર્ચ\",\"એપ્રિલ\",\"મે\",\"જૂન\",\"જુલાઈ\",\"ઑગસ્ટ\",\"સપ્ટે\",\"ઑક્ટો\",\"નવે\",\"ડિસે\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\",\"પૂર્વ મધ્યાહ્ન\"],\n\t\t\tPM: [\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\",\"ઉત્તર મધ્યાહ્ન\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"or-IN\", \"default\", {\n\tname: \"or-IN\",\n\tenglishName: \"Oriya (India)\",\n\tnativeName: \"ଓଡ଼ିଆ (ଭାରତ)\",\n\tlanguage: \"or\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ଟ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ରବିବାର\",\"ସୋମବାର\",\"ମଙ୍ଗଳବାର\",\"ବୁଧବାର\",\"ଗୁରୁବାର\",\"ଶୁକ୍ରବାର\",\"ଶନିବାର\"],\n\t\t\t\tnamesAbbr: [\"ରବି.\",\"ସୋମ.\",\"ମଙ୍ଗଳ.\",\"ବୁଧ.\",\"ଗୁରୁ.\",\"ଶୁକ୍ର.\",\"ଶନି.\"],\n\t\t\t\tnamesShort: [\"ର\",\"ସୋ\",\"ମ\",\"ବୁ\",\"ଗୁ\",\"ଶୁ\",\"ଶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"],\n\t\t\t\tnamesAbbr: [\"ଜାନୁୟାରୀ\",\"ଫ୍ରେବୃୟାରୀ\",\"ମାର୍ଚ୍ଚ\",\"ଏପ୍ରିଲ୍\\u200c\",\"ମେ\",\"ଜୁନ୍\\u200c\",\"ଜୁଲାଇ\",\"ଅଗଷ୍ଟ\",\"ସେପ୍ଟେମ୍ବର\",\"ଅକ୍ଟୋବର\",\"ନଭେମ୍ବର\",\"(ଡିସେମ୍ବର\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"ଖ୍ରୀଷ୍ଟାବ୍ଦ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ta-IN\", \"default\", {\n\tname: \"ta-IN\",\n\tenglishName: \"Tamil (India)\",\n\tnativeName: \"தமிழ் (இந்தியா)\",\n\tlanguage: \"ta\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ரூ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ஞாயிற்றுக்கிழமை\",\"திங்கள்கிழமை\",\"செவ்வாய்கிழமை\",\"புதன்கிழமை\",\"வியாழக்கிழமை\",\"வெள்ளிக்கிழமை\",\"சனிக்கிழமை\"],\n\t\t\t\tnamesAbbr: [\"ஞாயிறு\",\"திங்கள்\",\"செவ்வாய்\",\"புதன்\",\"வியாழன்\",\"வெள்ளி\",\"சனி\"],\n\t\t\t\tnamesShort: [\"ஞா\",\"தி\",\"செ\",\"பு\",\"வி\",\"வெ\",\"ச\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"],\n\t\t\t\tnamesAbbr: [\"ஜனவரி\",\"பிப்ரவரி\",\"மார்ச்\",\"ஏப்ரல்\",\"மே\",\"ஜூன்\",\"ஜூலை\",\"ஆகஸ்ட்\",\"செப்டம்பர்\",\"அக்டோபர்\",\"நவம்பர்\",\"டிசம்பர்\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"காலை\",\"காலை\",\"காலை\"],\n\t\t\tPM: [\"மாலை\",\"மாலை\",\"மாலை\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"te-IN\", \"default\", {\n\tname: \"te-IN\",\n\tenglishName: \"Telugu (India)\",\n\tnativeName: \"తెలుగు (భారత దేశం)\",\n\tlanguage: \"te\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"రూ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ఆదివారం\",\"సోమవారం\",\"మంగళవారం\",\"బుధవారం\",\"గురువారం\",\"శుక్రవారం\",\"శనివారం\"],\n\t\t\t\tnamesAbbr: [\"ఆది.\",\"సోమ.\",\"మంగళ.\",\"బుధ.\",\"గురు.\",\"శుక్ర.\",\"శని.\"],\n\t\t\t\tnamesShort: [\"ఆ\",\"సో\",\"మం\",\"బు\",\"గు\",\"శు\",\"శ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"],\n\t\t\t\tnamesAbbr: [\"జనవరి\",\"ఫిబ్రవరి\",\"మార్చి\",\"ఏప్రిల్\",\"మే\",\"జూన్\",\"జూలై\",\"ఆగస్టు\",\"సెప్టెంబర్\",\"అక్టోబర్\",\"నవంబర్\",\"డిసెంబర్\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"పూర్వాహ్న\",\"పూర్వాహ్న\",\"పూర్వాహ్న\"],\n\t\t\tPM: [\"అపరాహ్న\",\"అపరాహ్న\",\"అపరాహ్న\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kn-IN\", \"default\", {\n\tname: \"kn-IN\",\n\tenglishName: \"Kannada (India)\",\n\tnativeName: \"ಕನ್ನಡ (ಭಾರತ)\",\n\tlanguage: \"kn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ರೂ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ಭಾನುವಾರ\",\"ಸೋಮವಾರ\",\"ಮಂಗಳವಾರ\",\"ಬುಧವಾರ\",\"ಗುರುವಾರ\",\"ಶುಕ್ರವಾರ\",\"ಶನಿವಾರ\"],\n\t\t\t\tnamesAbbr: [\"ಭಾನು.\",\"ಸೋಮ.\",\"ಮಂಗಳ.\",\"ಬುಧ.\",\"ಗುರು.\",\"ಶುಕ್ರ.\",\"ಶನಿ.\"],\n\t\t\t\tnamesShort: [\"ರ\",\"ಸ\",\"ಮ\",\"ಬ\",\"ಗ\",\"ಶ\",\"ಶ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"],\n\t\t\t\tnamesAbbr: [\"ಜನವರಿ\",\"ಫೆಬ್ರವರಿ\",\"ಮಾರ್ಚ್\",\"ಎಪ್ರಿಲ್\",\"ಮೇ\",\"ಜೂನ್\",\"ಜುಲೈ\",\"ಆಗಸ್ಟ್\",\"ಸೆಪ್ಟಂಬರ್\",\"ಅಕ್ಟೋಬರ್\",\"ನವೆಂಬರ್\",\"ಡಿಸೆಂಬರ್\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\",\"ಪೂರ್ವಾಹ್ನ\"],\n\t\t\tPM: [\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\",\"ಅಪರಾಹ್ನ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ml-IN\", \"default\", {\n\tname: \"ml-IN\",\n\tenglishName: \"Malayalam (India)\",\n\tnativeName: \"മലയാളം (ഭാരതം)\",\n\tlanguage: \"ml\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ക\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ഞായറാഴ്ച\",\"തിങ്കളാഴ്ച\",\"ചൊവ്വാഴ്ച\",\"ബുധനാഴ്ച\",\"വ്യാഴാഴ്ച\",\"വെള്ളിയാഴ്ച\",\"ശനിയാഴ്ച\"],\n\t\t\t\tnamesAbbr: [\"ഞായർ.\",\"തിങ്കൾ.\",\"ചൊവ്വ.\",\"ബുധൻ.\",\"വ്യാഴം.\",\"വെള്ളി.\",\"ശനി.\"],\n\t\t\t\tnamesShort: [\"ഞ\",\"ത\",\"ച\",\"ബ\",\"വ\",\"വെ\",\"ശ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"],\n\t\t\t\tnamesAbbr: [\"ജനുവരി\",\"ഫെബ്റുവരി\",\"മാറ്ച്ച്\",\"ഏപ്റില്\",\"മെയ്\",\"ജൂണ്\",\"ജൂലൈ\",\"ഓഗസ്ററ്\",\"സെപ്ററംബറ്\",\"ഒക്ടോബറ്\",\"നവംബറ്\",\"ഡിസംബറ്\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"as-IN\", \"default\", {\n\tname: \"as-IN\",\n\tenglishName: \"Assamese (India)\",\n\tnativeName: \"অসমীয়া (ভাৰত)\",\n\tlanguage: \"as\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"n$\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"ট\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"সোমবাৰ\",\"মঙ্গলবাৰ\",\"বুধবাৰ\",\"বৃহস্পতিবাৰ\",\"শুক্রবাৰ\",\"শনিবাৰ\",\"ৰবিবাৰ\"],\n\t\t\t\tnamesAbbr: [\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহ.\",\"শুক্র.\",\"শনি.\",\"ৰবি.\"],\n\t\t\t\tnamesShort: [\"সো\",\"ম\",\"বু\",\"বৃ\",\"শু\",\"শ\",\"র\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুৱাৰী\",\"ফেব্রুৱাৰী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টেম্বর\",\"অক্টোবর\",\"নবেম্বর\",\"ডিচেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু\",\"ফেব্রু\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগষ্ট\",\"চেপ্টে\",\"অক্টো\",\"নবে\",\"ডিচে\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ৰাতিপু\",\"ৰাতিপু\",\"ৰাতিপু\"],\n\t\t\tPM: [\"আবেলি\",\"আবেলি\",\"আবেলি\"],\n\t\t\teras: [{\"name\":\"খ্রীষ্টাব্দ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"yyyy,MMMM dd, dddd\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy,MMMM dd, dddd tt h:mm\",\n\t\t\t\tF: \"yyyy,MMMM dd, dddd tt h:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM,yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mr-IN\", \"default\", {\n\tname: \"mr-IN\",\n\tenglishName: \"Marathi (India)\",\n\tnativeName: \"मराठी (भारत)\",\n\tlanguage: \"mr\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवार\",\"सोमवार\",\"मंगळवार\",\"बुधवार\",\"गुरुवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"रवि.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"गुरु.\",\"शुक्र.\",\"शनि.\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोव्हेंबर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जाने.\",\"फेब्रु.\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टें.\",\"ऑक्टो.\",\"नोव्हें.\",\"डिसें.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sa-IN\", \"default\", {\n\tname: \"sa-IN\",\n\tenglishName: \"Sanskrit (India)\",\n\tnativeName: \"संस्कृत (भारतम्)\",\n\tlanguage: \"sa\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesAbbr: [\"रविवासरः\",\"सोमवासरः\",\"मङ्गलवासरः\",\"बुधवासरः\",\"गुरुवासरः\",\"शुक्रवासरः\",\"शनिवासरः\"],\n\t\t\t\tnamesShort: [\"र\",\"स\",\"म\",\"ब\",\"ग\",\"श\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जनवरी\",\"फरवरी\",\"मार्च\",\"अप्रैल\",\"मई\",\"जून\",\"जुलाई\",\"अगस्त\",\"सितम्बर\",\"अक्तूबर\",\"नवम्बर\",\"दिसम्बर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"पूर्वाह्न\",\"पूर्वाह्न\",\"पूर्वाह्न\"],\n\t\t\tPM: [\"अपराह्न\",\"अपराह्न\",\"अपराह्न\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy dddd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy dddd HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy dddd HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mn-MN\", \"default\", {\n\tname: \"mn-MN\",\n\tenglishName: \"Mongolian (Cyrillic, Mongolia)\",\n\tnativeName: \"Монгол хэл (Монгол улс)\",\n\tlanguage: \"mn-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₮\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ням\",\"Даваа\",\"Мягмар\",\"Лхагва\",\"Пүрэв\",\"Баасан\",\"Бямба\"],\n\t\t\t\tnamesAbbr: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"],\n\t\t\t\tnamesShort: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1 дүгээр сар\",\"2 дугаар сар\",\"3 дугаар сар\",\"4 дүгээр сар\",\"5 дугаар сар\",\"6 дугаар сар\",\"7 дугаар сар\",\"8 дугаар сар\",\"9 дүгээр сар\",\"10 дугаар сар\",\"11 дүгээр сар\",\"12 дугаар сар\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"1 дүгээр сарын\",\"2 дугаар сарын\",\"3 дугаар сарын\",\"4 дүгээр сарын\",\"5 дугаар сарын\",\"6 дугаар сарын\",\"7 дугаар сарын\",\"8 дугаар сарын\",\"9 дүгээр сарын\",\"10 дугаар сарын\",\"11 дүгээр сарын\",\"12 дугаар сарын\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yy.MM.dd\",\n\t\t\t\tD: \"yyyy 'оны' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'оны' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'оны' MMMM d H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"yyyy 'он' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bo-CN\", \"default\", {\n\tname: \"bo-CN\",\n\tenglishName: \"Tibetan (PRC)\",\n\tnativeName: \"བོད་ཡིག (ཀྲུང་ཧྭ་མི་དམངས་སྤྱི་མཐུན་རྒྱལ་ཁབ།)\",\n\tlanguage: \"bo\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ཨང་ཀི་མིན་པ།\",\n\t\tnegativeInfinity: \"མོ་གྲངས་ཚད་མེད་ཆུང་བ།\",\n\t\tpositiveInfinity: \"ཕོ་གྲངས་ཚད་མེད་ཆེ་བ།\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"གཟའ་ཉི་མ།\",\"གཟའ་ཟླ་བ།\",\"གཟའ་མིག་དམར།\",\"གཟའ་ལྷག་པ།\",\"གཟའ་ཕུར་བུ།\",\"གཟའ་པ་སངས།\",\"གཟའ་སྤེན་པ།\"],\n\t\t\t\tnamesAbbr: [\"ཉི་མ།\",\"ཟླ་བ།\",\"མིག་དམར།\",\"ལྷག་པ།\",\"ཕུར་བུ།\",\"པ་སངས།\",\"སྤེན་པ།\"],\n\t\t\t\tnamesShort: [\"༧\",\"༡\",\"༢\",\"༣\",\"༤\",\"༥\",\"༦\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"སྤྱི་ཟླ་དང་པོ།\",\"སྤྱི་ཟླ་གཉིས་པ།\",\"སྤྱི་ཟླ་གསུམ་པ།\",\"སྤྱི་ཟླ་བཞི་པ།\",\"སྤྱི་ཟླ་ལྔ་པ།\",\"སྤྱི་ཟླ་དྲུག་པ།\",\"སྤྱི་ཟླ་བདུན་པ།\",\"སྤྱི་ཟླ་བརྒྱད་པ།\",\"སྤྱི་ཟླ་དགུ་པ།\",\"སྤྱི་ཟླ་བཅུ་པོ།\",\"སྤྱི་ཟླ་བཅུ་གཅིག་པ།\",\"སྤྱི་ཟླ་བཅུ་གཉིས་པ།\",\"\"],\n\t\t\t\tnamesAbbr: [\"ཟླ་ ༡\",\"ཟླ་ ༢\",\"ཟླ་ ༣\",\"ཟླ་ ༤\",\"ཟླ་ ༥\",\"ཟླ་ ༦\",\"ཟླ་ ༧\",\"ཟླ་ ༨\",\"ཟླ་ ༩\",\"ཟླ་ ༡༠\",\"ཟླ་ ༡༡\",\"ཟླ་ ༡༢\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"སྔ་དྲོ\",\"སྔ་དྲོ\",\"སྔ་དྲོ\"],\n\t\t\tPM: [\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\",\"ཕྱི་དྲོ\"],\n\t\t\teras: [{\"name\":\"སྤྱི་ལོ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ལོའི་ཟླ' M'ཚེས' d\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm\",\n\t\t\t\tF: \"yyyy'ལོའི་ཟླ' M'ཚེས' d HH:mm:ss\",\n\t\t\t\tM: \"'ཟླ་' M'ཚེས'd\",\n\t\t\t\tY: \"yyyy.M\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"cy-GB\", \"default\", {\n\tname: \"cy-GB\",\n\tenglishName: \"Welsh (United Kingdom)\",\n\tnativeName: \"Cymraeg (y Deyrnas Unedig)\",\n\tlanguage: \"cy\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dydd Sul\",\"Dydd Llun\",\"Dydd Mawrth\",\"Dydd Mercher\",\"Dydd Iau\",\"Dydd Gwener\",\"Dydd Sadwrn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Llun\",\"Maw\",\"Mer\",\"Iau\",\"Gwe\",\"Sad\"],\n\t\t\t\tnamesShort: [\"Su\",\"Ll\",\"Ma\",\"Me\",\"Ia\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Ionawr\",\"Chwefror\",\"Mawrth\",\"Ebrill\",\"Mai\",\"Mehefin\",\"Gorffennaf\",\"Awst\",\"Medi\",\"Hydref\",\"Tachwedd\",\"Rhagfyr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ion\",\"Chwe\",\"Maw\",\"Ebr\",\"Mai\",\"Meh\",\"Gor\",\"Aws\",\"Med\",\"Hyd\",\"Tach\",\"Rhag\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"km-KH\", \"default\", {\n\tname: \"km-KH\",\n\tenglishName: \"Khmer (Cambodia)\",\n\tnativeName: \"ខ្មែរ (កម្ពុជា)\",\n\tlanguage: \"km\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-- អនន្ត\",\n\t\tpositiveInfinity: \"អនន្ត\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\tsymbol: \"៛\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"ថ្ងៃអាទិត្យ\",\"ថ្ងៃច័ន្ទ\",\"ថ្ងៃអង្គារ\",\"ថ្ងៃពុធ\",\"ថ្ងៃព្រហស្បតិ៍\",\"ថ្ងៃសុក្រ\",\"ថ្ងៃសៅរ៍\"],\n\t\t\t\tnamesAbbr: [\"អាទិ.\",\"ច.\",\"អ.\",\"ពុ\",\"ព្រហ.\",\"សុ.\",\"ស.\"],\n\t\t\t\tnamesShort: [\"អា\",\"ច\",\"អ\",\"ពុ\",\"ព្\",\"សុ\",\"ស\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"មករា\",\"កុម្ភៈ\",\"មិនា\",\"មេសា\",\"ឧសភា\",\"មិថុនា\",\"កក្កដា\",\"សីហា\",\"កញ្ញា\",\"តុលា\",\"វិច្ឆិកា\",\"ធ្នូ\",\"\"],\n\t\t\t\tnamesAbbr: [\"១\",\"២\",\"៣\",\"៤\",\"៥\",\"៦\",\"៧\",\"៨\",\"៩\",\"១០\",\"១១\",\"១២\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"មុនគ.ស.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'ថ្ងៃទី' dd 'ខែ' MM\",\n\t\t\t\tY: \"'ខែ' MM 'ឆ្នាំ' yyyy\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ព្រឹក\",\"ព្រឹក\",\"ព្រឹក\"],\n\t\t\tPM: [\"ល្ងាច\",\"ល្ងាច\",\"ល្ងាច\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy HH:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lo-LA\", \"default\", {\n\tname: \"lo-LA\",\n\tenglishName: \"Lao (Lao P.D.R.)\",\n\tnativeName: \"ລາວ (ສ.ປ.ປ. ລາວ)\",\n\tlanguage: \"lo\",\n\tnumberFormat: {\n\t\tpattern: [\"(n)\"],\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"(n$)\",\"n$\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"₭\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ວັນອາທິດ\",\"ວັນຈັນ\",\"ວັນອັງຄານ\",\"ວັນພຸດ\",\"ວັນພະຫັດ\",\"ວັນສຸກ\",\"ວັນເສົາ\"],\n\t\t\t\tnamesAbbr: [\"ອາທິດ\",\"ຈັນ\",\"ອັງຄານ\",\"ພຸດ\",\"ພະຫັດ\",\"ສຸກ\",\"ເສົາ\"],\n\t\t\t\tnamesShort: [\"ອ\",\"ຈ\",\"ອ\",\"ພ\",\"ພ\",\"ສ\",\"ເ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ມັງກອນ\",\"ກຸມພາ\",\"ມີນາ\",\"ເມສາ\",\"ພຶດສະພາ\",\"ມິຖຸນາ\",\"ກໍລະກົດ\",\"ສິງຫາ\",\"ກັນຍາ\",\"ຕຸລາ\",\"ພະຈິກ\",\"ທັນວາ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ເຊົ້າ\",\"ເຊົ້າ\",\"ເຊົ້າ\"],\n\t\t\tPM: [\"ແລງ\",\"ແລງ\",\"ແລງ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm tt\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gl-ES\", \"default\", {\n\tname: \"gl-ES\",\n\tenglishName: \"Galician (Galician)\",\n\tnativeName: \"galego (galego)\",\n\tlanguage: \"gl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"luns\",\"martes\",\"mércores\",\"xoves\",\"venres\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"luns\",\"mar\",\"mér\",\"xov\",\"ven\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mé\",\"xo\",\"ve\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"xaneiro\",\"febreiro\",\"marzo\",\"abril\",\"maio\",\"xuño\",\"xullo\",\"agosto\",\"setembro\",\"outubro\",\"novembro\",\"decembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"xan\",\"feb\",\"mar\",\"abr\",\"maio\",\"xuñ\",\"xull\",\"ago\",\"set\",\"out\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kok-IN\", \"default\", {\n\tname: \"kok-IN\",\n\tenglishName: \"Konkani (India)\",\n\tnativeName: \"कोंकणी (भारत)\",\n\tlanguage: \"kok\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"आयतार\",\"सोमार\",\"मंगळार\",\"बुधवार\",\"बिरेस्तार\",\"सुक्रार\",\"शेनवार\"],\n\t\t\t\tnamesAbbr: [\"आय.\",\"सोम.\",\"मंगळ.\",\"बुध.\",\"बिरे.\",\"सुक्र.\",\"शेन.\"],\n\t\t\t\tnamesShort: [\"आ\",\"स\",\"म\",\"ब\",\"ब\",\"स\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जानेवारी\",\"फेब्रुवारी\",\"मार्च\",\"एप्रिल\",\"मे\",\"जून\",\"जुलै\",\"ऑगस्ट\",\"सप्टेंबर\",\"ऑक्टोबर\",\"नोवेम्बर\",\"डिसेंबर\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"म.पू.\",\"म.पू.\",\"म.पू.\"],\n\t\t\tPM: [\"म.नं.\",\"म.नं.\",\"म.नं.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"syr-SY\", \"default\", {\n\tname: \"syr-SY\",\n\tenglishName: \"Syriac (Syria)\",\n\tnativeName: \"ܣܘܪܝܝܐ (سوريا)\",\n\tlanguage: \"syr\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ܚܕ ܒܫܒܐ\",\"ܬܪܝܢ ܒܫܒܐ\",\"ܬܠܬܐ ܒܫܒܐ\",\"ܐܪܒܥܐ ܒܫܒܐ\",\"ܚܡܫܐ ܒܫܒܐ\",\"ܥܪܘܒܬܐ\",\"ܫܒܬܐ\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܐ \\u070fܒܫ\",\"\\u070fܒ \\u070fܒܫ\",\"\\u070fܓ \\u070fܒܫ\",\"\\u070fܕ \\u070fܒܫ\",\"\\u070fܗ \\u070fܒܫ\",\"\\u070fܥܪܘܒ\",\"\\u070fܫܒ\"],\n\t\t\t\tnamesShort: [\"ܐ\",\"ܒ\",\"ܓ\",\"ܕ\",\"ܗ\",\"ܥ\",\"ܫ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ܟܢܘܢ ܐܚܪܝ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"ܬܫܪܝ ܩܕܝܡ\",\"ܬܫܪܝ ܐܚܪܝ\",\"ܟܢܘܢ ܩܕܝܡ\",\"\"],\n\t\t\t\tnamesAbbr: [\"\\u070fܟܢ \\u070fܒ\",\"ܫܒܛ\",\"ܐܕܪ\",\"ܢܝܣܢ\",\"ܐܝܪ\",\"ܚܙܝܪܢ\",\"ܬܡܘܙ\",\"ܐܒ\",\"ܐܝܠܘܠ\",\"\\u070fܬܫ \\u070fܐ\",\"\\u070fܬܫ \\u070fܒ\",\"\\u070fܟܢ \\u070fܐ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ܩ.ܛ\",\"ܩ.ܛ\",\"ܩ.ܛ\"],\n\t\t\tPM: [\"ܒ.ܛ\",\"ܒ.ܛ\",\"ܒ.ܛ\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"si-LK\", \"default\", {\n\tname: \"si-LK\",\n\tenglishName: \"Sinhala (Sri Lanka)\",\n\tnativeName: \"සිංහල (ශ්\\u200dරී ලංකා)\",\n\tlanguage: \"si\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tnegativeInfinity: \"-අනන්තය\",\n\t\tpositiveInfinity: \"අනන්තය\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tsymbol: \"රු.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ඉරිදා\",\"සඳුදා\",\"අඟහරුවාදා\",\"බදාදා\",\"බ්\\u200dරහස්පතින්දා\",\"සිකුරාදා\",\"සෙනසුරාදා\"],\n\t\t\t\tnamesAbbr: [\"ඉරිදා\",\"සඳුදා\",\"කුජදා\",\"බුදදා\",\"ගුරුදා\",\"කිවිදා\",\"ශනිදා\"],\n\t\t\t\tnamesShort: [\"ඉ\",\"ස\",\"අ\",\"බ\",\"බ්\\u200dර\",\"සි\",\"සෙ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ජනවාරි\",\"පෙබරවාරි\",\"මාර්තු\",\"අ\\u200cප්\\u200dරේල්\",\"මැයි\",\"ජූනි\",\"ජූලි\",\"අ\\u200cගෝස්තු\",\"සැප්තැම්බර්\",\"ඔක්තෝබර්\",\"නොවැම්බර්\",\"දෙසැම්බර්\",\"\"],\n\t\t\t\tnamesAbbr: [\"ජන.\",\"පෙබ.\",\"මාර්තු.\",\"අප්\\u200dරේල්.\",\"මැයි.\",\"ජූනි.\",\"ජූලි.\",\"අගෝ.\",\"සැප්.\",\"ඔක්.\",\"නොවැ.\",\"දෙසැ.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"පෙ.ව.\",\"පෙ.ව.\",\"පෙ.ව.\"],\n\t\t\tPM: [\"ප.ව.\",\"ප.ව.\",\"ප.ව.\"],\n\t\t\teras: [{\"name\":\"ක්\\u200dරි.ව.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd\",\n\t\t\t\tf: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm tt\",\n\t\t\t\tF: \"yyyy MMMM' මස 'dd' වැනිදා 'dddd h:mm:ss tt\",\n\t\t\t\tY: \"yyyy MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"iu-Cans-CA\", \"default\", {\n\tname: \"iu-Cans-CA\",\n\tenglishName: \"Inuktitut (Syllabics, Canada)\",\n\tnativeName: \"ᐃᓄᒃᑎᑐᑦ (ᑲᓇᑕᒥ)\",\n\tlanguage: \"iu-Cans\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᓈᑦᑏᖑᔭ\",\"ᓇᒡᒐᔾᔭᐅ\",\"ᐊᐃᑉᐱᖅ\",\"ᐱᖓᑦᓯᖅ\",\"ᓯᑕᒻᒥᖅ\",\"ᑕᓪᓕᕐᒥᖅ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesAbbr: [\"ᓈᑦᑏ\",\"ᓇᒡᒐ\",\"ᐊᐃᑉᐱ\",\"ᐱᖓᑦᓯ\",\"ᓯᑕ\",\"ᑕᓪᓕ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesShort: [\"ᓈ\",\"ᓇ\",\"ᐊ\",\"ᐱ\",\"ᓯ\",\"ᑕ\",\"ᓯ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᔮᓐᓄᐊᕆ\",\"ᕖᕝᕗᐊᕆ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌᓯ\",\"ᓯᑎᐱᕆ\",\"ᐅᑐᐱᕆ\",\"ᓄᕕᐱᕆ\",\"ᑎᓯᐱᕆ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᔮᓐᓄ\",\"ᕖᕝᕗ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌ\",\"ᓯᑎᐱ\",\"ᐅᑐᐱ\",\"ᓄᕕᐱ\",\"ᑎᓯᐱ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd,MMMM dd,yyyy\",\n\t\t\t\tf: \"dddd,MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"dddd,MMMM dd,yyyy h:mm:ss tt\",\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"am-ET\", \"default\", {\n\tname: \"am-ET\",\n\tenglishName: \"Amharic (Ethiopia)\",\n\tnativeName: \"አማርኛ (ኢትዮጵያ)\",\n\tlanguage: \"am\",\n\tnumberFormat: {\n\t\tdecimals: 1,\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NAN\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tdecimals: 1,\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"ETB\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"እሑድ\",\"ሰኞ\",\"ማክሰኞ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesAbbr: [\"እሑድ\",\"ሰኞ\",\"ማክሰ\",\"ረቡዕ\",\"ሐሙስ\",\"ዓርብ\",\"ቅዳሜ\"],\n\t\t\t\tnamesShort: [\"እ\",\"ሰ\",\"ማ\",\"ረ\",\"ሐ\",\"ዓ\",\"ቅ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ጃንዩወሪ\",\"ፌብሩወሪ\",\"ማርች\",\"ኤፕረል\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስት\",\"ሴፕቴምበር\",\"ኦክተውበር\",\"ኖቬምበር\",\"ዲሴምበር\",\"\"],\n\t\t\t\tnamesAbbr: [\"ጃንዩ\",\"ፌብሩ\",\"ማርች\",\"ኤፕረ\",\"ሜይ\",\"ጁን\",\"ጁላይ\",\"ኦገስ\",\"ሴፕቴ\",\"ኦክተ\",\"ኖቬም\",\"ዲሴም\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ጡዋት\",\"ጡዋት\",\"ጡዋት\"],\n\t\t\tPM: [\"ከሰዓት\",\"ከሰዓት\",\"ከሰዓት\"],\n\t\t\teras: [{\"name\":\"ዓመተ  ምሕረት\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd '፣' MMMM d 'ቀን' yyyy\",\n\t\t\t\tf: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm tt\",\n\t\t\t\tF: \"dddd '፣' MMMM d 'ቀን' yyyy h:mm:ss tt\",\n\t\t\t\tM: \"MMMM d ቀን\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ne-NP\", \"default\", {\n\tname: \"ne-NP\",\n\tenglishName: \"Nepali (Nepal)\",\n\tnativeName: \"नेपाली (नेपाल)\",\n\tlanguage: \"ne\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\t\"NaN\": \"nan\",\n\t\tnegativeInfinity: \"-infinity\",\n\t\tpositiveInfinity: \"infinity\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"रु\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"आइतवार\",\"सोमवार\",\"मङ्गलवार\",\"बुधवार\",\"बिहीवार\",\"शुक्रवार\",\"शनिवार\"],\n\t\t\t\tnamesAbbr: [\"आइत\",\"सोम\",\"मङ्गल\",\"बुध\",\"बिही\",\"शुक्र\",\"शनि\"],\n\t\t\t\tnamesShort: [\"आ\",\"सो\",\"म\",\"बु\",\"बि\",\"शु\",\"श\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"जनवरी\",\"फेब्रुअरी\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अगस्त\",\"सेप्टेम्बर\",\"अक्टोबर\",\"नोभेम्बर\",\"डिसेम्बर\",\"\"],\n\t\t\t\tnamesAbbr: [\"जन\",\"फेब\",\"मार्च\",\"अप्रिल\",\"मे\",\"जून\",\"जुलाई\",\"अग\",\"सेप्ट\",\"अक्ट\",\"नोभ\",\"डिस\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"विहानी\",\"विहानी\",\"विहानी\"],\n\t\t\tPM: [\"बेलुकी\",\"बेलुकी\",\"बेलुकी\"],\n\t\t\teras: [{\"name\":\"a.d.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fy-NL\", \"default\", {\n\tname: \"fy-NL\",\n\tenglishName: \"Frisian (Netherlands)\",\n\tnativeName: \"Frysk (Nederlân)\",\n\tlanguage: \"fy\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Snein\",\"Moandei\",\"Tiisdei\",\"Woansdei\",\"Tongersdei\",\"Freed\",\"Sneon\"],\n\t\t\t\tnamesAbbr: [\"Sn\",\"Mo\",\"Ti\",\"Wo\",\"To\",\"Fr\",\"Sn\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"jannewaris\",\"febrewaris\",\"maart\",\"april\",\"maaie\",\"juny\",\"july\",\"augustus\",\"septimber\",\"oktober\",\"novimber\",\"desimber\",\"\"],\n\t\t\t\tnamesAbbr: [\"jann\",\"febr\",\"mrt\",\"apr\",\"maaie\",\"jun\",\"jul\",\"aug\",\"sept\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d-M-yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ps-AF\", \"default\", {\n\tname: \"ps-AF\",\n\tenglishName: \"Pashto (Afghanistan)\",\n\tnativeName: \"پښتو (افغانستان)\",\n\tlanguage: \"ps\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \"،\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \"،\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\t\",\": \"٬\",\n\t\t\t\".\": \"٫\",\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښزمرى\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګا ښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"لنڈ ۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fil-PH\", \"default\", {\n\tname: \"fil-PH\",\n\tenglishName: \"Filipino (Philippines)\",\n\tnativeName: \"Filipino (Pilipinas)\",\n\tlanguage: \"fil\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"PhP\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Linggo\",\"Lunes\",\"Martes\",\"Mierkoles\",\"Huebes\",\"Biernes\",\"Sabado\"],\n\t\t\t\tnamesAbbr: [\"Lin\",\"Lun\",\"Mar\",\"Mier\",\"Hueb\",\"Bier\",\"Saba\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"M\",\"M\",\"H\",\"B\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Enero\",\"Pebrero\",\"Marso\",\"Abril\",\"Mayo\",\"Hunyo\",\"Hulyo\",\"Agosto\",\"Septyembre\",\"Oktubre\",\"Nobyembre\",\"Disyembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"En\",\"Peb\",\"Mar\",\"Abr\",\"Mayo\",\"Hun\",\"Hul\",\"Agos\",\"Sept\",\"Okt\",\"Nob\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"Anno Domini\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"dv-MV\", \"default\", {\n\tname: \"dv-MV\",\n\tenglishName: \"Divehi (Maldives)\",\n\tnativeName: \"ދިވެހިބަސް (ދިވެހި ރާއްޖެ)\",\n\tlanguage: \"dv\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"n $-\",\"n $\"],\n\t\t\tsymbol: \"ރ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"],\n\t\t\t\tnamesAbbr: [\"މުޙައްރަމް\",\"ޞަފަރު\",\"ރަބީޢުލްއައްވަލް\",\"ރަބީޢުލްއާޚިރު\",\"ޖުމާދަލްއޫލާ\",\"ޖުމާދަލްއާޚިރާ\",\"ރަޖަބް\",\"ޝަޢްބާން\",\"ރަމަޟާން\",\"ޝައްވާލް\",\"ޛުލްޤަޢިދާ\",\"ޛުލްޙިއްޖާ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"ހިޖްރީ\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy HH:mm\",\n\t\t\t\tF: \"dd/MM/yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesAbbr: [\"އާދީއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"],\n\t\t\t\tnamesShort: [\"އާ\",\"ހޯ\",\"އަ\",\"ބު\",\"ބު\",\"ހު\",\"ހޮ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ޖަނަވަރީ\",\"ފެބްރުއަރީ\",\"މާޗް\",\"އޭޕްރިލް\",\"މެއި\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓް\",\"ސެޕްޓެމްބަރ\",\"އޮކްޓޯބަރ\",\"ނޮވެމްބަރ\",\"ޑިސެމްބަރ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"މކ\",\"މކ\",\"މކ\"],\n\t\t\tPM: [\"މފ\",\"މފ\",\"މފ\"],\n\t\t\teras: [{\"name\":\"މީލާދީ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"ddd, yyyy MMMM dd\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"ddd, yyyy MMMM dd HH:mm\",\n\t\t\t\tF: \"ddd, yyyy MMMM dd HH:mm:ss\",\n\t\t\t\tY: \"yyyy, MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ha-Latn-NG\", \"default\", {\n\tname: \"ha-Latn-NG\",\n\tenglishName: \"Hausa (Latin, Nigeria)\",\n\tnativeName: \"Hausa (Nigeria)\",\n\tlanguage: \"ha-Latn\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lahadi\",\"Litinin\",\"Talata\",\"Laraba\",\"Alhamis\",\"Juma'a\",\"Asabar\"],\n\t\t\t\tnamesAbbr: [\"Lah\",\"Lit\",\"Tal\",\"Lar\",\"Alh\",\"Jum\",\"Asa\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"T\",\"L\",\"A\",\"J\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januwaru\",\"Febreru\",\"Maris\",\"Afrilu\",\"Mayu\",\"Yuni\",\"Yuli\",\"Agusta\",\"Satumba\",\"Oktocba\",\"Nuwamba\",\"Disamba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Afr\",\"May\",\"Yun\",\"Yul\",\"Agu\",\"Sat\",\"Okt\",\"Nuw\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Safe\",\"safe\",\"SAFE\"],\n\t\t\tPM: [\"Yamma\",\"yamma\",\"YAMMA\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"yo-NG\", \"default\", {\n\tname: \"yo-NG\",\n\tenglishName: \"Yoruba (Nigeria)\",\n\tnativeName: \"Yoruba (Nigeria)\",\n\tlanguage: \"yo\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Osu kinni\",\"Osu keji\",\"Osu keta\",\"Osu kerin\",\"Osu karun\",\"Osu kefa\",\"Osu keje\",\"Osu kejo\",\"Osu kesan\",\"Osu kewa\",\"Osu kokanla\",\"Osu keresi\",\"\"],\n\t\t\t\tnamesAbbr: [\"kin.\",\"kej.\",\"ket.\",\"ker.\",\"kar.\",\"kef.\",\"kej.\",\"kej.\",\"kes.\",\"kew.\",\"kok.\",\"ker.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Owuro\",\"owuro\",\"OWURO\"],\n\t\t\tPM: [\"Ale\",\"ale\",\"ALE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"quz-BO\", \"default\", {\n\tname: \"quz-BO\",\n\tenglishName: \"Quechua (Bolivia)\",\n\tnativeName: \"runasimi (Qullasuyu)\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$b\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nso-ZA\", \"default\", {\n\tname: \"nso-ZA\",\n\tenglishName: \"Sesotho sa Leboa (South Africa)\",\n\tnativeName: \"Sesotho sa Leboa (Afrika Borwa)\",\n\tlanguage: \"nso\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lamorena\",\"Mošupologo\",\"Labobedi\",\"Laboraro\",\"Labone\",\"Labohlano\",\"Mokibelo\"],\n\t\t\t\tnamesAbbr: [\"Lam\",\"Moš\",\"Lbb\",\"Lbr\",\"Lbn\",\"Lbh\",\"Mok\"],\n\t\t\t\tnamesShort: [\"L\",\"M\",\"L\",\"L\",\"L\",\"L\",\"M\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Pherekgong\",\"Hlakola\",\"Mopitlo\",\"Moranang\",\"Mosegamanye\",\"Ngoatobošego\",\"Phuphu\",\"Phato\",\"Lewedi\",\"Diphalana\",\"Dibatsela\",\"Manthole\",\"\"],\n\t\t\t\tnamesAbbr: [\"Pher\",\"Hlak\",\"Mop\",\"Mor\",\"Mos\",\"Ngwat\",\"Phup\",\"Phat\",\"Lew\",\"Dip\",\"Dib\",\"Man\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ba-RU\", \"default\", {\n\tname: \"ba-RU\",\n\tenglishName: \"Bashkir (Russia)\",\n\tnativeName: \"Башҡорт (Россия)\",\n\tlanguage: \"ba\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"һ.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Йәкшәмбе\",\"Дүшәмбе\",\"Шишәмбе\",\"Шаршамбы\",\"Кесаҙна\",\"Йома\",\"Шәмбе\"],\n\t\t\t\tnamesAbbr: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"],\n\t\t\t\tnamesShort: [\"Йш\",\"Дш\",\"Шш\",\"Шр\",\"Кс\",\"Йм\",\"Шб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ғинуар\",\"февраль\",\"март\",\"апрель\",\"май\",\"июнь\",\"июль\",\"август\",\"сентябрь\",\"октябрь\",\"ноябрь\",\"декабрь\",\"\"],\n\t\t\t\tnamesAbbr: [\"ғин\",\"фев\",\"мар\",\"апр\",\"май\",\"июн\",\"июл\",\"авг\",\"сен\",\"окт\",\"ноя\",\"дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy 'й'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy 'й' H:mm\",\n\t\t\t\tF: \"d MMMM yyyy 'й' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"lb-LU\", \"default\", {\n\tname: \"lb-LU\",\n\tenglishName: \"Luxembourgish (Luxembourg)\",\n\tnativeName: \"Lëtzebuergesch (Luxembourg)\",\n\tlanguage: \"lb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. num.\",\n\t\tnegativeInfinity: \"-onendlech\",\n\t\tpositiveInfinity: \"+onendlech\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonndeg\",\"Méindeg\",\"Dënschdeg\",\"Mëttwoch\",\"Donneschdeg\",\"Freideg\",\"Samschdeg\"],\n\t\t\t\tnamesAbbr: [\"Son\",\"Méi\",\"Dën\",\"Mët\",\"Don\",\"Fre\",\"Sam\"],\n\t\t\t\tnamesShort: [\"So\",\"Mé\",\"Dë\",\"Më\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"Mäerz\",\"Abrëll\",\"Mee\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mäe\",\"Abr\",\"Mee\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"kl-GL\", \"default\", {\n\tname: \"kl-GL\",\n\tenglishName: \"Greenlandic (Greenland)\",\n\tnativeName: \"kalaallisut (Kalaallit Nunaat)\",\n\tlanguage: \"kl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sapaat\",\"ataasinngorneq\",\"marlunngorneq\",\"pingasunngorneq\",\"sisamanngorneq\",\"tallimanngorneq\",\"arfininngorneq\"],\n\t\t\t\tnamesAbbr: [\"sap\",\"ata\",\"mar\",\"ping\",\"sis\",\"tal\",\"arf\"],\n\t\t\t\tnamesShort: [\"sa\",\"at\",\"ma\",\"pi\",\"si\",\"ta\",\"ar\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"martsi\",\"apriili\",\"maaji\",\"juni\",\"juli\",\"aggusti\",\"septembari\",\"oktobari\",\"novembari\",\"decembari\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ig-NG\", \"default\", {\n\tname: \"ig-NG\",\n\tenglishName: \"Igbo (Nigeria)\",\n\tnativeName: \"Igbo (Nigeria)\",\n\tlanguage: \"ig\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Aiku\",\"Aje\",\"Isegun\",\"Ojo'ru\",\"Ojo'bo\",\"Eti\",\"Abameta\"],\n\t\t\t\tnamesAbbr: [\"Aik\",\"Aje\",\"Ise\",\"Ojo\",\"Ojo\",\"Eti\",\"Aba\"],\n\t\t\t\tnamesShort: [\"A\",\"A\",\"I\",\"O\",\"O\",\"E\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Onwa mbu\",\"Onwa ibua\",\"Onwa ato\",\"Onwa ano\",\"Onwa ise\",\"Onwa isi\",\"Onwa asa\",\"Onwa asato\",\"Onwa itolu\",\"Onwa iri\",\"Onwa iri n'ofu\",\"Onwa iri n'ibua\",\"\"],\n\t\t\t\tnamesAbbr: [\"mbu.\",\"ibu.\",\"ato.\",\"ano.\",\"ise\",\"isi\",\"asa\",\"asa.\",\"ito.\",\"iri.\",\"n'of.\",\"n'ib.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Ututu\",\"ututu\",\"UTUTU\"],\n\t\t\tPM: [\"Efifie\",\"efifie\",\"EFIFIE\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ii-CN\", \"default\", {\n\tname: \"ii-CN\",\n\tenglishName: \"Yi (PRC)\",\n\tnativeName: \"ꆈꌠꁱꂷ (ꍏꉸꏓꂱꇭꉼꇩ)\",\n\tlanguage: \"ii\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ꌗꂷꀋꉬ\",\n\t\tnegativeInfinity: \"ꀄꊭꌐꀋꉆ\",\n\t\tpositiveInfinity: \"ꈤꇁꑖꀋꉬ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ꑭꆏꑍ\",\"ꆏꊂ꒔\",\"ꆏꊂꑍ\",\"ꆏꊂꌕ\",\"ꆏꊂꇖ\",\"ꆏꊂꉬ\",\"ꆏꊂꃘ\"],\n\t\t\t\tnamesAbbr: [\"ꑭꆏ\",\"ꆏ꒔\",\"ꆏꑍ\",\"ꆏꌕ\",\"ꆏꇖ\",\"ꆏꉬ\",\"ꆏꃘ\"],\n\t\t\t\tnamesShort: [\"ꆏ\",\"꒔\",\"ꑍ\",\"ꌕ\",\"ꇖ\",\"ꉬ\",\"ꃘ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ꋍꆪ\",\"ꑍꆪ\",\"ꌕꆪ\",\"ꇖꆪ\",\"ꉬꆪ\",\"ꃘꆪ\",\"ꏃꆪ\",\"ꉆꆪ\",\"ꈬꆪ\",\"ꊰꆪ\",\"ꊯꊪꆪ\",\"ꊰꑋꆪ\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\",\"ꂵꆪꈌꈐ\"],\n\t\t\tPM: [\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\",\"ꂵꆪꈌꉈ\"],\n\t\t\teras: [{\"name\":\"ꇬꑼ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ꈎ' M'ꆪ' d'ꑍ'\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' tt h:mm\",\n\t\t\t\tF: \"yyyy'ꈎ' M'ꆪ' d'ꑍ' H:mm:ss\",\n\t\t\t\tM: \"M'ꆪ' d'ꑍ'\",\n\t\t\t\tY: \"yyyy'ꈎ' M'ꆪ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"arn-CL\", \"default\", {\n\tname: \"arn-CL\",\n\tenglishName: \"Mapudungun (Chile)\",\n\tnativeName: \"Mapudungun (Chile)\",\n\tlanguage: \"arn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"moh-CA\", \"default\", {\n\tname: \"moh-CA\",\n\tenglishName: \"Mohawk (Mohawk)\",\n\tnativeName: \"Kanien'kéha\",\n\tlanguage: \"moh\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Awentatokentì:ke\",\"Awentataón'ke\",\"Ratironhia'kehronòn:ke\",\"Soséhne\",\"Okaristiiáhne\",\"Ronwaia'tanentaktonhne\",\"Entákta\"],\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Tsothohrkó:Wa\",\"Enniska\",\"Enniskó:Wa\",\"Onerahtókha\",\"Onerahtohkó:Wa\",\"Ohiari:Ha\",\"Ohiarihkó:Wa\",\"Seskéha\",\"Seskehkó:Wa\",\"Kenténha\",\"Kentenhkó:Wa\",\"Tsothóhrha\",\"\"]\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"br-FR\", \"default\", {\n\tname: \"br-FR\",\n\tenglishName: \"Breton (France)\",\n\tnativeName: \"brezhoneg (Frañs)\",\n\tlanguage: \"br\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NkN\",\n\t\tnegativeInfinity: \"-Anfin\",\n\t\tpositiveInfinity: \"+Anfin\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sul\",\"Lun\",\"Meurzh\",\"Merc'her\",\"Yaou\",\"Gwener\",\"Sadorn\"],\n\t\t\t\tnamesAbbr: [\"Sul\",\"Lun\",\"Meu.\",\"Mer.\",\"Yaou\",\"Gwe.\",\"Sad.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Lu\",\"Mz\",\"Mc\",\"Ya\",\"Gw\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Genver\",\"C'hwevrer\",\"Meurzh\",\"Ebrel\",\"Mae\",\"Mezheven\",\"Gouere\",\"Eost\",\"Gwengolo\",\"Here\",\"Du\",\"Kerzu\",\"\"],\n\t\t\t\tnamesAbbr: [\"Gen.\",\"C'hwe.\",\"Meur.\",\"Ebr.\",\"Mae\",\"Mezh.\",\"Goue.\",\"Eost\",\"Gwen.\",\"Here\",\"Du\",\"Kzu\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"g. J.-K.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ug-CN\", \"default\", {\n\tname: \"ug-CN\",\n\tenglishName: \"Uyghur (PRC)\",\n\tnativeName: \"ئۇيغۇرچە (جۇڭخۇا خەلق جۇمھۇرىيىتى)\",\n\tlanguage: \"ug\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\t\"NaN\": \"سان ئەمەس\",\n\t\tnegativeInfinity: \"مەنپىي چەكسىزلىك\",\n\t\tpositiveInfinity: \"مۇسبەت چەكسىزلىك\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"يەكشەنبە\",\"دۈشەنبە\",\"سەيشەنبە\",\"چارشەنبە\",\"پەيشەنبە\",\"جۈمە\",\"شەنبە\"],\n\t\t\t\tnamesAbbr: [\"يە\",\"دۈ\",\"سە\",\"چا\",\"پە\",\"جۈ\",\"شە\"],\n\t\t\t\tnamesShort: [\"ي\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"],\n\t\t\t\tnamesAbbr: [\"1-ئاي\",\"2-ئاي\",\"3-ئاي\",\"4-ئاي\",\"5-ئاي\",\"6-ئاي\",\"7-ئاي\",\"8-ئاي\",\"9-ئاي\",\"10-ئاي\",\"11-ئاي\",\"12-ئاي\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\",\"چۈشتىن بۇرۇن\"],\n\t\t\tPM: [\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\",\"چۈشتىن كېيىن\"],\n\t\t\teras: [{\"name\":\"مىلادى\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-M-d\",\n\t\t\t\tD: \"yyyy-'يىلى' MMMM d-'كۈنى،'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm\",\n\t\t\t\tF: \"yyyy-'يىلى' MMMM d-'كۈنى،' H:mm:ss\",\n\t\t\t\tM: \"MMMM d'-كۈنى'\",\n\t\t\t\tY: \"yyyy-'يىلى' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mi-NZ\", \"default\", {\n\tname: \"mi-NZ\",\n\tenglishName: \"Maori (New Zealand)\",\n\tnativeName: \"Reo Māori (Aotearoa)\",\n\tlanguage: \"mi\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Rātapu\",\"Rāhina\",\"Rātū\",\"Rāapa\",\"Rāpare\",\"Rāmere\",\"Rāhoroi\"],\n\t\t\t\tnamesAbbr: [\"Ta\",\"Hi\",\"Tū\",\"Apa\",\"Pa\",\"Me\",\"Ho\"],\n\t\t\t\tnamesShort: [\"Ta\",\"Hi\",\"Tū\",\"Aa\",\"Pa\",\"Me\",\"Ho\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Kohi-tātea\",\"Hui-tanguru\",\"Poutū-te-rangi\",\"Paenga-whāwhā\",\"Haratua\",\"Pipiri\",\"Hōngongoi\",\"Here-turi-kōkā\",\"Mahuru\",\"Whiringa-ā-nuku\",\"Whiringa-ā-rangi\",\"Hakihea\",\"\"],\n\t\t\t\tnamesAbbr: [\"Kohi\",\"Hui\",\"Pou\",\"Pae\",\"Hara\",\"Pipi\",\"Hōngo\",\"Here\",\"Mahu\",\"Nuku\",\"Rangi\",\"Haki\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM, yyyy\",\n\t\t\t\tf: \"dddd, dd MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM, yy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"oc-FR\", \"default\", {\n\tname: \"oc-FR\",\n\tenglishName: \"Occitan (France)\",\n\tnativeName: \"Occitan (França)\",\n\tlanguage: \"oc\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numeric\",\n\t\tnegativeInfinity: \"-Infinit\",\n\t\tpositiveInfinity: \"+Infinit\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimenge\",\"diluns\",\"dimars\",\"dimècres\",\"dijòus\",\"divendres\",\"dissabte\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mèc.\",\"jòu.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"mè\",\"jò\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"genier\",\"febrier\",\"març\",\"abril\",\"mai\",\"junh\",\"julh\",\"agost\",\"setembre\",\"octobre\",\"novembre\",\"desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"de genier\",\"de febrier\",\"de març\",\"d'abril\",\"de mai\",\"de junh\",\"de julh\",\"d'agost\",\"de setembre\",\"d'octobre\",\"de novembre\",\"de desembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen.\",\"feb.\",\"mar.\",\"abr.\",\"mai.\",\"jun.\",\"jul.\",\"ag.\",\"set.\",\"oct.\",\"nov.\",\"des.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"après Jèsus-Crist\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd,' lo 'd MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd,' lo 'd MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"co-FR\", \"default\", {\n\tname: \"co-FR\",\n\tenglishName: \"Corsican (France)\",\n\tnativeName: \"Corsu (France)\",\n\tlanguage: \"co\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Mica numericu\",\n\t\tnegativeInfinity: \"-Infinitu\",\n\t\tpositiveInfinity: \"+Infinitu\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dumenica\",\"luni\",\"marti\",\"mercuri\",\"ghjovi\",\"venderi\",\"sabbatu\"],\n\t\t\t\tnamesAbbr: [\"dum.\",\"lun.\",\"mar.\",\"mer.\",\"ghj.\",\"ven.\",\"sab.\"],\n\t\t\t\tnamesShort: [\"du\",\"lu\",\"ma\",\"me\",\"gh\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ghjennaghju\",\"ferraghju\",\"marzu\",\"aprile\",\"maghju\",\"ghjunghju\",\"lugliu\",\"aostu\",\"settembre\",\"ottobre\",\"nuvembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ghje\",\"ferr\",\"marz\",\"apri\",\"magh\",\"ghju\",\"lugl\",\"aost\",\"sett\",\"otto\",\"nuve\",\"dice\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"dopu J-C\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gsw-FR\", \"default\", {\n\tname: \"gsw-FR\",\n\tenglishName: \"Alsatian (France)\",\n\tnativeName: \"Elsässisch (Frànkrisch)\",\n\tlanguage: \"gsw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Ohne Nummer\",\n\t\tnegativeInfinity: \"-Unendlich\",\n\t\tpositiveInfinity: \"+Unendlich\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sundàà\",\"Mondàà\",\"Dienschdàà\",\"Mittwuch\",\"Dunnerschdàà\",\"Fridàà\",\"Sàmschdàà\"],\n\t\t\t\tnamesAbbr: [\"Su.\",\"Mo.\",\"Di.\",\"Mi.\",\"Du.\",\"Fr.\",\"Sà.\"],\n\t\t\t\tnamesShort: [\"Su\",\"Mo\",\"Di\",\"Mi\",\"Du\",\"Fr\",\"Sà\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jänner\",\"Feverje\",\"März\",\"Àpril\",\"Mai\",\"Jüni\",\"Jüli\",\"Augscht\",\"September\",\"Oktower\",\"Nowember\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jän.\",\"Fev.\",\"März\",\"Apr.\",\"Mai\",\"Jüni\",\"Jüli\",\"Aug.\",\"Sept.\",\"Okt.\",\"Now.\",\"Dez.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"Vor J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sah-RU\", \"default\", {\n\tname: \"sah-RU\",\n\tenglishName: \"Yakut (Russia)\",\n\tnativeName: \"саха (Россия)\",\n\tlanguage: \"sah\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NAN\",\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"с.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"баскыһыанньа\",\"бэнидиэнньик\",\"оптуорунньук\",\"сэрэдэ\",\"чэппиэр\",\"бээтинсэ\",\"субуота\"],\n\t\t\t\tnamesAbbr: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"],\n\t\t\t\tnamesShort: [\"Бс\",\"Бн\",\"Оп\",\"Ср\",\"Чп\",\"Бт\",\"Сб\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Тохсунньу\",\"Олунньу\",\"Кулун тутар\",\"Муус устар\",\"Ыам ыйа\",\"Бэс ыйа\",\"От ыйа\",\"Атырдьах ыйа\",\"Балаҕан ыйа\",\"Алтынньы\",\"Сэтинньи\",\"Ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"тохсунньу\",\"олунньу\",\"кулун тутар\",\"муус устар\",\"ыам ыйын\",\"бэс ыйын\",\"от ыйын\",\"атырдьах ыйын\",\"балаҕан ыйын\",\"алтынньы\",\"сэтинньи\",\"ахсынньы\",\"\"],\n\t\t\t\tnamesAbbr: [\"тхс\",\"олн\",\"кул\",\"мст\",\"ыам\",\"бэс\",\"отй\",\"атр\",\"блҕ\",\"алт\",\"стн\",\"ахс\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"MM.dd.yyyy\",\n\t\t\t\tD: \"MMMM d yyyy 'с.'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d yyyy 'с.' H:mm\",\n\t\t\t\tF: \"MMMM d yyyy 'с.' H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy 'с.'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"qut-GT\", \"default\", {\n\tname: \"qut-GT\",\n\tenglishName: \"K'iche (Guatemala)\",\n\tnativeName: \"K'iche (Guatemala)\",\n\tlanguage: \"qut\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"Q\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"juq'ij\",\"kaq'ij\",\"oxq'ij\",\"kajq'ij\",\"joq'ij\",\"waqq'ij\",\"wuqq'ij\"],\n\t\t\t\tnamesAbbr: [\"juq\",\"kaq\",\"oxq\",\"kajq\",\"joq\",\"waqq\",\"wuqq\"],\n\t\t\t\tnamesShort: [\"ju\",\"ka\",\"ox\",\"ka\",\"jo\",\"wa\",\"wu\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"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'\",\"\"],\n\t\t\t\tnamesAbbr: [\"nab'e\",\"ukab\",\"rox\",\"ukaj\",\"uro\",\"uwaq\",\"uwuq\",\"uwajxaq\",\"ub'elej\",\"ulaj\",\"ujulaj\",\"ukab'laj\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"rw-RW\", \"default\", {\n\tname: \"rw-RW\",\n\tenglishName: \"Kinyarwanda (Rwanda)\",\n\tnativeName: \"Kinyarwanda (Rwanda)\",\n\tlanguage: \"rw\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"RWF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ku wa mbere\",\"Ku wa kabiri\",\"Ku wa gatatu\",\"Ku wa kane\",\"Ku wa gatanu\",\"Ku wa gatandatu\",\"Ku cyumweru\"],\n\t\t\t\tnamesAbbr: [\"mbe.\",\"kab.\",\"gat.\",\"kan.\",\"gat.\",\"gat.\",\"cyu.\"],\n\t\t\t\tnamesShort: [\"mb\",\"ka\",\"ga\",\"ka\",\"ga\",\"ga\",\"cy\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Mutarama\",\"Gashyantare\",\"Werurwe\",\"Mata\",\"Gicurasi\",\"Kamena\",\"Nyakanga\",\"Kanama\",\"Nzeli\",\"Ukwakira\",\"Ugushyingo\",\"Ukuboza\",\"\"],\n\t\t\t\tnamesAbbr: [\"Mut\",\"Gas\",\"Wer\",\"Mat\",\"Gic\",\"Kam\",\"Nya\",\"Kan\",\"Nze\",\"Ukwa\",\"Ugu\",\"Uku\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"saa moya z.m.\",\"saa moya z.m.\",\"SAA MOYA Z.M.\"],\n\t\t\tPM: [\"saa moya z.n.\",\"saa moya z.n.\",\"SAA MOYA Z.N.\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}]\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"wo-SN\", \"default\", {\n\tname: \"wo-SN\",\n\tenglishName: \"Wolof (Senegal)\",\n\tnativeName: \"Wolof (Sénégal)\",\n\tlanguage: \"wo\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"XOF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"prs-AF\", \"default\", {\n\tname: \"prs-AF\",\n\tenglishName: \"Dari (Afghanistan)\",\n\tnativeName: \"درى (افغانستان)\",\n\tlanguage: \"prs\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"غ ع\",\n\t\tnegativeInfinity: \"-∞\",\n\t\tpositiveInfinity: \"∞\",\n\t\tpercent: {\n\t\t\tpattern: [\"%n-\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tsymbol: \"؋\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tf: \"dd/MM/yyyy h:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_Localized: {\n\t\t\tfirstDay: 5,\n\t\t\tdays: {\n\t\t\t\tnames: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesAbbr: [\"یکشنبه\",\"دوشنبه\",\"سه\\u200cشنبه\",\"چهارشنبه\",\"پنجشنبه\",\"جمعه\",\"شنبه\"],\n\t\t\t\tnamesShort: [\"ی\",\"د\",\"س\",\"چ\",\"پ\",\"ج\",\"ش\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"],\n\t\t\t\tnamesAbbr: [\"سلواغه\",\"كب\",\"ورى\",\"غويى\",\"غبرګولى\",\"چنګاښ\",\"زمرى\",\"وږى\",\"تله\",\"لړم\",\"ليندۍ\",\"مرغومى\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"غ.م\",\"غ.م\",\"غ.م\"],\n\t\t\tPM: [\"غ.و\",\"غ.و\",\"غ.و\"],\n\t\t\teras: [{\"name\":\"ل.ه\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy, dd, MMMM, dddd\",\n\t\t\t\tf: \"yyyy, dd, MMMM, dddd h:mm tt\",\n\t\t\t\tF: \"yyyy, dd, MMMM, dddd h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"gd-GB\", \"default\", {\n\tname: \"gd-GB\",\n\tenglishName: \"Scottish Gaelic (United Kingdom)\",\n\tnativeName: \"Gàidhlig (An Rìoghachd Aonaichte)\",\n\tlanguage: \"gd\",\n\tnumberFormat: {\n\t\tnegativeInfinity: \"-Neo-chrìochnachd\",\n\t\tpositiveInfinity: \"Neo-chrìochnachd\",\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Didòmhnaich\",\"Diluain\",\"Dimàirt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],\n\t\t\t\tnamesAbbr: [\"Dòm\",\"Lua\",\"Mài\",\"Cia\",\"Ard\",\"Hao\",\"Sat\"],\n\t\t\t\tnamesShort: [\"D\",\"L\",\"M\",\"C\",\"A\",\"H\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Am Faoilleach\",\"An Gearran\",\"Am Màrt\",\"An Giblean\",\"An Cèitean\",\"An t-Ògmhios\",\"An t-Iuchar\",\"An Lùnastal\",\"An t-Sultain\",\"An Dàmhair\",\"An t-Samhain\",\"An Dùbhlachd\",\"\"],\n\t\t\t\tnamesAbbr: [\"Fao\",\"Gea\",\"Màr\",\"Gib\",\"Cèi\",\"Ògm\",\"Iuc\",\"Lùn\",\"Sul\",\"Dàm\",\"Sam\",\"Dùb\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"m\",\"m\",\"M\"],\n\t\t\tPM: [\"f\",\"f\",\"F\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-IQ\", \"default\", {\n\tname: \"ar-IQ\",\n\tenglishName: \"Arabic (Iraq)\",\n\tnativeName: \"العربية (العراق)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.ع.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-CN\", \"default\", {\n\tname: \"zh-CN\",\n\tenglishName: \"Chinese (Simplified, PRC)\",\n\tnativeName: \"中文(中华人民共和国)\",\n\tlanguage: \"zh-CHS\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"de-CH\", \"default\", {\n\tname: \"de-CH\",\n\tenglishName: \"German (Switzerland)\",\n\tnativeName: \"Deutsch (Schweiz)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"Fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-GB\", \"default\", {\n\tname: \"en-GB\",\n\tenglishName: \"English (United Kingdom)\",\n\tnativeName: \"English (United Kingdom)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"£\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-MX\", \"default\", {\n\tname: \"es-MX\",\n\tenglishName: \"Spanish (Mexico)\",\n\tnativeName: \"Español (México)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr-BE\", \"default\", {\n\tname: \"fr-BE\",\n\tenglishName: \"French (Belgium)\",\n\tnativeName: \"français (Belgique)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"it-CH\", \"default\", {\n\tname: \"it-CH\",\n\tenglishName: \"Italian (Switzerland)\",\n\tnativeName: \"italiano (Svizzera)\",\n\tlanguage: \"it\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"Non un numero reale\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domenica\",\"lunedì\",\"martedì\",\"mercoledì\",\"giovedì\",\"venerdì\",\"sabato\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mer\",\"gio\",\"ven\",\"sab\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"me\",\"gi\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"gennaio\",\"febbraio\",\"marzo\",\"aprile\",\"maggio\",\"giugno\",\"luglio\",\"agosto\",\"settembre\",\"ottobre\",\"novembre\",\"dicembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"gen\",\"feb\",\"mar\",\"apr\",\"mag\",\"giu\",\"lug\",\"ago\",\"set\",\"ott\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nl-BE\", \"default\", {\n\tname: \"nl-BE\",\n\tenglishName: \"Dutch (Belgium)\",\n\tnativeName: \"Nederlands (België)\",\n\tlanguage: \"nl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Niet-een-getal)\",\n\t\tnegativeInfinity: \"-oneindig\",\n\t\tpositiveInfinity: \"oneindig\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"zondag\",\"maandag\",\"dinsdag\",\"woensdag\",\"donderdag\",\"vrijdag\",\"zaterdag\"],\n\t\t\t\tnamesAbbr: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"],\n\t\t\t\tnamesShort: [\"zo\",\"ma\",\"di\",\"wo\",\"do\",\"vr\",\"za\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"maart\",\"april\",\"mei\",\"juni\",\"juli\",\"augustus\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mrt\",\"apr\",\"mei\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy H:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nn-NO\", \"default\", {\n\tname: \"nn-NO\",\n\tenglishName: \"Norwegian, Nynorsk (Norway)\",\n\tnativeName: \"norsk, nynorsk (Noreg)\",\n\tlanguage: \"nn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"måndag\",\"tysdag\",\"onsdag\",\"torsdag\",\"fredag\",\"laurdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"],\n\t\t\t\tnamesShort: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"pt-PT\", \"default\", {\n\tname: \"pt-PT\",\n\tenglishName: \"Portuguese (Portugal)\",\n\tnativeName: \"português (Portugal)\",\n\tlanguage: \"pt\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NaN (Não é um número)\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"+Infinito\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"segunda-feira\",\"terça-feira\",\"quarta-feira\",\"quinta-feira\",\"sexta-feira\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"seg\",\"ter\",\"qua\",\"qui\",\"sex\",\"sáb\"],\n\t\t\t\tnamesShort: [\"D\",\"S\",\"T\",\"Q\",\"Q\",\"S\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Janeiro\",\"Fevereiro\",\"Março\",\"Abril\",\"Maio\",\"Junho\",\"Julho\",\"Agosto\",\"Setembro\",\"Outubro\",\"Novembro\",\"Dezembro\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Fev\",\"Mar\",\"Abr\",\"Mai\",\"Jun\",\"Jul\",\"Ago\",\"Set\",\"Out\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, d' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d' de 'MMMM' de 'yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d' de 'MMMM' de 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"d/M\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Latn-CS\", \"default\", {\n\tname: \"sr-Latn-CS\",\n\tenglishName: \"Serbian (Latin, Serbia and Montenegro (Former))\",\n\tnativeName: \"srpski (Srbija i Crna Gora (Prethodno))\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sv-FI\", \"default\", {\n\tname: \"sv-FI\",\n\tenglishName: \"Swedish (Finland)\",\n\tnativeName: \"svenska (Finland)\",\n\tlanguage: \"sv\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"söndag\",\"måndag\",\"tisdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lördag\"],\n\t\t\t\tnamesAbbr: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"],\n\t\t\t\tnamesShort: [\"sö\",\"må\",\"ti\",\"on\",\"to\",\"fr\",\"lö\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januari\",\"februari\",\"mars\",\"april\",\"maj\",\"juni\",\"juli\",\"augusti\",\"september\",\"oktober\",\"november\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"'den 'd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"'den 'd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"'den 'd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"'den 'd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"az-Cyrl-AZ\", \"default\", {\n\tname: \"az-Cyrl-AZ\",\n\tenglishName: \"Azeri (Cyrillic, Azerbaijan)\",\n\tnativeName: \"Азәрбајҹан (Азәрбајҹан)\",\n\tlanguage: \"az-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ман.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Базар\",\"Базар ертәси\",\"Чәршәнбә ахшамы\",\"Чәршәнбә\",\"Ҹүмә ахшамы\",\"Ҹүмә\",\"Шәнбә\"],\n\t\t\t\tnamesAbbr: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"],\n\t\t\t\tnamesShort: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Јанвар\",\"Феврал\",\"Март\",\"Апрел\",\"Мај\",\"Ијун\",\"Ијул\",\"Август\",\"Сентјабр\",\"Октјабр\",\"Нојабр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"Мај\",\"Ијун\",\"Ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"јанвар\",\"феврал\",\"март\",\"апрел\",\"мај\",\"ијун\",\"ијул\",\"август\",\"сентјабр\",\"октјабр\",\"нојабр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"ијун\",\"ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"dsb-DE\", \"default\", {\n\tname: \"dsb-DE\",\n\tenglishName: \"Lower Sorbian (Germany)\",\n\tnativeName: \"dolnoserbšćina (Nimska)\",\n\tlanguage: \"dsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekońcne\",\n\t\tpositiveInfinity: \"+njekońcne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njeźela\",\"ponjeźele\",\"wałtora\",\"srjoda\",\"stwortk\",\"pětk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pon\",\"wał\",\"srj\",\"stw\",\"pět\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"s\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"maj\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"maja\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'goź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'goź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"se-SE\", \"default\", {\n\tname: \"se-SE\",\n\tenglishName: \"Sami, Northern (Sweden)\",\n\tnativeName: \"davvisámegiella (Ruoŧŧa)\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"mánnodat\",\"disdat\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"mán\",\"dis\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ga-IE\", \"default\", {\n\tname: \"ga-IE\",\n\tenglishName: \"Irish (Ireland)\",\n\tnativeName: \"Gaeilge (Éire)\",\n\tlanguage: \"ga\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Dé Domhnaigh\",\"Dé Luain\",\"Dé Máirt\",\"Dé Céadaoin\",\"Déardaoin\",\"Dé hAoine\",\"Dé Sathairn\"],\n\t\t\t\tnamesAbbr: [\"Domh\",\"Luan\",\"Máir\",\"Céad\",\"Déar\",\"Aoi\",\"Sath\"],\n\t\t\t\tnamesShort: [\"Do\",\"Lu\",\"Má\",\"Cé\",\"De\",\"Ao\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Eanáir\",\"Feabhra\",\"Márta\",\"Aibreán\",\"Bealtaine\",\"Meitheamh\",\"Iúil\",\"Lúnasa\",\"Meán Fómhair\",\"Deireadh Fómhair\",\"Samhain\",\"Nollaig\",\"\"],\n\t\t\t\tnamesAbbr: [\"Ean\",\"Feabh\",\"Már\",\"Aib\",\"Bealt\",\"Meith\",\"Iúil\",\"Lún\",\"M.Fómh\",\"D.Fómh\",\"Samh\",\"Noll\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"r.n.\",\"r.n.\",\"R.N.\"],\n\t\t\tPM: [\"i.n.\",\"i.n.\",\"I.N.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ms-BN\", \"default\", {\n\tname: \"ms-BN\",\n\tenglishName: \"Malay (Brunei Darussalam)\",\n\tnativeName: \"Bahasa Melayu (Brunei Darussalam)\",\n\tlanguage: \"ms\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tdecimals: 0,\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ahad\",\"Isnin\",\"Selasa\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesAbbr: [\"Ahad\",\"Isnin\",\"Sel\",\"Rabu\",\"Khamis\",\"Jumaat\",\"Sabtu\"],\n\t\t\t\tnamesShort: [\"A\",\"I\",\"S\",\"R\",\"K\",\"J\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januari\",\"Februari\",\"Mac\",\"April\",\"Mei\",\"Jun\",\"Julai\",\"Ogos\",\"September\",\"Oktober\",\"November\",\"Disember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mac\",\"Apr\",\"Mei\",\"Jun\",\"Jul\",\"Ogos\",\"Sept\",\"Okt\",\"Nov\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uz-Cyrl-UZ\", \"default\", {\n\tname: \"uz-Cyrl-UZ\",\n\tenglishName: \"Uzbek (Cyrillic, Uzbekistan)\",\n\tnativeName: \"Ўзбек (Ўзбекистон)\",\n\tlanguage: \"uz-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"сўм\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"якшанба\",\"душанба\",\"сешанба\",\"чоршанба\",\"пайшанба\",\"жума\",\"шанба\"],\n\t\t\t\tnamesAbbr: [\"якш\",\"дш\",\"сш\",\"чш\",\"пш\",\"ж\",\"ш\"],\n\t\t\t\tnamesShort: [\"я\",\"д\",\"с\",\"ч\",\"п\",\"ж\",\"ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январ\",\"феврал\",\"март\",\"апрел\",\"май\",\"июн\",\"июл\",\"август\",\"сентябр\",\"октябр\",\"ноябр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'йил' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'йил' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'йил' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bn-BD\", \"default\", {\n\tname: \"bn-BD\",\n\tenglishName: \"Bengali (Bangladesh)\",\n\tnativeName: \"বাংলা (বাংলাদেশ)\",\n\tlanguage: \"bn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"৳\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\t\":\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"রবিবার\",\"সোমবার\",\"মঙ্গলবার\",\"বুধবার\",\"বৃহস্পতিবার\",\"শুক্রবার\",\"শনিবার\"],\n\t\t\t\tnamesAbbr: [\"রবি.\",\"সোম.\",\"মঙ্গল.\",\"বুধ.\",\"বৃহস্পতি.\",\"শুক্র.\",\"শনি.\"],\n\t\t\t\tnamesShort: [\"র\",\"স\",\"ম\",\"ব\",\"ব\",\"শ\",\"শ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"জানুয়ারী\",\"ফেব্রুয়ারী\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগস্ট\",\"সেপ্টেম্বর\",\"অক্টোবর\",\"নভেম্বর\",\"ডিসেম্বর\",\"\"],\n\t\t\t\tnamesAbbr: [\"জানু.\",\"ফেব্রু.\",\"মার্চ\",\"এপ্রিল\",\"মে\",\"জুন\",\"জুলাই\",\"আগ.\",\"সেপ্টে.\",\"অক্টো.\",\"নভে.\",\"ডিসে.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"পুর্বাহ্ন\",\"পুর্বাহ্ন\",\"পুর্বাহ্ন\"],\n\t\t\tPM: [\"অপরাহ্ন\",\"অপরাহ্ন\",\"অপরাহ্ন\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH.mm\",\n\t\t\t\tT: \"HH.mm.ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH.mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH.mm.ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mn-Mong-CN\", \"default\", {\n\tname: \"mn-Mong-CN\",\n\tenglishName: \"Mongolian (Traditional Mongolian, PRC)\",\n\tnativeName: \"ᠮᠤᠨᠭᠭᠤᠯ ᠬᠡᠯᠡ (ᠪᠦᠭᠦᠳᠡ ᠨᠠᠢᠷᠠᠮᠳᠠᠬᠤ ᠳᠤᠮᠳᠠᠳᠤ ᠠᠷᠠᠳ ᠣᠯᠣᠰ)\",\n\tlanguage: \"mn-Mong\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ᠲᠤᠭᠠᠠ ᠪᠤᠰᠤ\",\n\t\tnegativeInfinity: \"ᠰᠦᠬᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠡᠬᠡ\",\n\t\tpositiveInfinity: \"ᠡᠶ᠋ᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠠᠬᠡ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesAbbr: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesShort: [\"ᠡ\\u200d\",\"ᠨᠢ\\u200d\",\"ᠬᠣ\\u200d\",\"ᠭᠤ\\u200d\",\"ᠳᠥ\\u200d\",\"ᠲᠠ\\u200d\",\"ᠵᠢ\\u200d\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ᠣᠨ ᠲᠣᠭᠠᠯᠠᠯ ᠤᠨ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm\",\n\t\t\t\tF: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm:ss\",\n\t\t\t\tM: \"M'ᠰᠠᠷ᠎ᠠ' d'ᠡᠳᠦᠷ'\",\n\t\t\t\tY: \"yyyy'ᠣᠨ' M'ᠰᠠᠷ᠎ᠠ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"iu-Latn-CA\", \"default\", {\n\tname: \"iu-Latn-CA\",\n\tenglishName: \"Inuktitut (Latin, Canada)\",\n\tnativeName: \"Inuktitut (Kanatami)\",\n\tlanguage: \"iu-Latn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Naattiinguja\",\"Naggajjau\",\"Aippiq\",\"Pingatsiq\",\"Sitammiq\",\"Tallirmiq\",\"Sivataarvik\"],\n\t\t\t\tnamesAbbr: [\"Nat\",\"Nag\",\"Aip\",\"Pi\",\"Sit\",\"Tal\",\"Siv\"],\n\t\t\t\tnamesShort: [\"N\",\"N\",\"A\",\"P\",\"S\",\"T\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jaannuari\",\"Viivvuari\",\"Maatsi\",\"Iipuri\",\"Mai\",\"Juuni\",\"Julai\",\"Aaggiisi\",\"Sitipiri\",\"Utupiri\",\"Nuvipiri\",\"Tisipiri\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Viv\",\"Mas\",\"Ipu\",\"Mai\",\"Jun\",\"Jul\",\"Agi\",\"Sii\",\"Uut\",\"Nuv\",\"Tis\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"ddd, MMMM dd,yyyy\",\n\t\t\t\tf: \"ddd, MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"ddd, MMMM dd,yyyy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tzm-Latn-DZ\", \"default\", {\n\tname: \"tzm-Latn-DZ\",\n\tenglishName: \"Tamazight (Latin, Algeria)\",\n\tnativeName: \"Tamazight (Djazaïr)\",\n\tlanguage: \"tzm-Latn\",\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"DZD\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Acer\",\"Arime\",\"Aram\",\"Ahad\",\"Amhadh\",\"Sem\",\"Sedh\"],\n\t\t\t\tnamesAbbr: [\"Ace\",\"Ari\",\"Ara\",\"Aha\",\"Amh\",\"Sem\",\"Sed\"],\n\t\t\t\tnamesShort: [\"Ac\",\"Ar\",\"Ar\",\"Ah\",\"Am\",\"Se\",\"Se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yenayer\",\"Furar\",\"Maghres\",\"Yebrir\",\"Mayu\",\"Yunyu\",\"Yulyu\",\"Ghuct\",\"Cutenber\",\"Ktuber\",\"Wambir\",\"Dujanbir\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yen\",\"Fur\",\"Mag\",\"Yeb\",\"May\",\"Yun\",\"Yul\",\"Ghu\",\"Cut\",\"Ktu\",\"Wam\",\"Duj\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"quz-EC\", \"default\", {\n\tname: \"quz-EC\",\n\tenglishName: \"Quechua (Ecuador)\",\n\tnativeName: \"runasimi (Ecuador)\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-EG\", \"default\", {\n\tname: \"ar-EG\",\n\tenglishName: \"Arabic (Egypt)\",\n\tnativeName: \"العربية (مصر)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ج.م.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-HK\", \"default\", {\n\tname: \"zh-HK\",\n\tenglishName: \"Chinese (Traditional, Hong Kong S.A.R.)\",\n\tnativeName: \"中文(香港特別行政區)\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"HK$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"de-AT\", \"default\", {\n\tname: \"de-AT\",\n\tenglishName: \"German (Austria)\",\n\tnativeName: \"Deutsch (Österreich)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jänner\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jän\",\"Feb\",\"Mär\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, dd. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, dd. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, dd. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-AU\", \"default\", {\n\tname: \"en-AU\",\n\tenglishName: \"English (Australia)\",\n\tnativeName: \"English (Australia)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-ES\", \"default\", {\n\tname: \"es-ES\",\n\tenglishName: \"Spanish (Spain, International Sort)\",\n\tnativeName: \"Español (España, alfabetización internacional)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr-CA\", \"default\", {\n\tname: \"fr-CA\",\n\tenglishName: \"French (Canada)\",\n\tnativeName: \"français (Canada)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"(n $)\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Cyrl-CS\", \"default\", {\n\tname: \"sr-Cyrl-CS\",\n\tenglishName: \"Serbian (Cyrillic, Serbia and Montenegro (Former))\",\n\tnativeName: \"српски (Србија и Црна Гора (Претходно))\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Дин.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"se-FI\", \"default\", {\n\tname: \"se-FI\",\n\tenglishName: \"Sami, Northern (Finland)\",\n\tnativeName: \"davvisámegiella (Suopma)\",\n\tlanguage: \"se\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sotnabeaivi\",\"vuossárga\",\"maŋŋebárga\",\"gaskavahkku\",\"duorastat\",\"bearjadat\",\"lávvardat\"],\n\t\t\t\tnamesAbbr: [\"sotn\",\"vuos\",\"maŋ\",\"gask\",\"duor\",\"bear\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđajagemánnu\",\"guovvamánnu\",\"njukčamánnu\",\"cuoŋománnu\",\"miessemánnu\",\"geassemánnu\",\"suoidnemánnu\",\"borgemánnu\",\"čakčamánnu\",\"golggotmánnu\",\"skábmamánnu\",\"juovlamánnu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđajagimánu\",\"guovvamánu\",\"njukčamánu\",\"cuoŋománu\",\"miessemánu\",\"geassemánu\",\"suoidnemánu\",\"borgemánu\",\"čakčamánu\",\"golggotmánu\",\"skábmamánu\",\"juovlamánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođđj\",\"guov\",\"njuk\",\"cuo\",\"mies\",\"geas\",\"suoi\",\"borg\",\"čakč\",\"golg\",\"skáb\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"quz-PE\", \"default\", {\n\tname: \"quz-PE\",\n\tenglishName: \"Quechua (Peru)\",\n\tnativeName: \"runasimi (Piruw)\",\n\tlanguage: \"quz\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tsymbol: \"S/.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"intichaw\",\"killachaw\",\"atipachaw\",\"quyllurchaw\",\"Ch' askachaw\",\"Illapachaw\",\"k'uychichaw\"],\n\t\t\t\tnamesAbbr: [\"int\",\"kil\",\"ati\",\"quy\",\"Ch'\",\"Ill\",\"k'u\"],\n\t\t\t\tnamesShort: [\"d\",\"k\",\"a\",\"m\",\"h\",\"b\",\"k\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Qulla puquy\",\"Hatun puquy\",\"Pauqar waray\",\"ayriwa\",\"Aymuray\",\"Inti raymi\",\"Anta Sitwa\",\"Qhapaq Sitwa\",\"Uma raymi\",\"Kantaray\",\"Ayamarq'a\",\"Kapaq Raymi\",\"\"],\n\t\t\t\tnamesAbbr: [\"Qul\",\"Hat\",\"Pau\",\"ayr\",\"Aym\",\"Int\",\"Ant\",\"Qha\",\"Uma\",\"Kan\",\"Aya\",\"Kap\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-LY\", \"default\", {\n\tname: \"ar-LY\",\n\tenglishName: \"Arabic (Libya)\",\n\tnativeName: \"العربية (ليبيا)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ل.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-SG\", \"default\", {\n\tname: \"zh-SG\",\n\tenglishName: \"Chinese (Simplified, Singapore)\",\n\tnativeName: \"中文(新加坡)\",\n\tlanguage: \"zh-CHS\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"tt h:mm\",\n\t\t\t\tT: \"tt h:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' tt h:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' tt h:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"de-LU\", \"default\", {\n\tname: \"de-LU\",\n\tenglishName: \"German (Luxembourg)\",\n\tnativeName: \"Deutsch (Luxemburg)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-CA\", \"default\", {\n\tname: \"en-CA\",\n\tenglishName: \"English (Canada)\",\n\tnativeName: \"English (Canada)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"MMMM-dd-yy\",\n\t\t\t\tf: \"MMMM-dd-yy h:mm tt\",\n\t\t\t\tF: \"MMMM-dd-yy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-GT\", \"default\", {\n\tname: \"es-GT\",\n\tenglishName: \"Spanish (Guatemala)\",\n\tnativeName: \"Español (Guatemala)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"Q\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr-CH\", \"default\", {\n\tname: \"fr-CH\",\n\tenglishName: \"French (Switzerland)\",\n\tnativeName: \"français (Suisse)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"fr.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"hr-BA\", \"default\", {\n\tname: \"hr-BA\",\n\tenglishName: \"Croatian (Latin, Bosnia and Herzegovina)\",\n\tnativeName: \"hrvatski (Bosna i Hercegovina)\",\n\tlanguage: \"hr\",\n\tnumberFormat: {\n\t\tpattern: [\"- n\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"siječanj\",\"veljača\",\"ožujak\",\"travanj\",\"svibanj\",\"lipanj\",\"srpanj\",\"kolovoz\",\"rujan\",\"listopad\",\"studeni\",\"prosinac\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"siječnja\",\"veljače\",\"ožujka\",\"travnja\",\"svibnja\",\"lipnja\",\"srpnja\",\"kolovoza\",\"rujna\",\"listopada\",\"studenog\",\"prosinca\",\"\"],\n\t\t\t\tnamesAbbr: [\"sij\",\"vlj\",\"ožu\",\"tra\",\"svi\",\"lip\",\"srp\",\"kol\",\"ruj\",\"lis\",\"stu\",\"pro\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy.\",\n\t\t\t\tD: \"d. MMMM yyyy.\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy. H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy. H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"smj-NO\", \"default\", {\n\tname: \"smj-NO\",\n\tenglishName: \"Sami, Lule (Norway)\",\n\tnativeName: \"julevusámegiella (Vuodna)\",\n\tlanguage: \"smj\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"sådnåbiejvve\",\"mánnodahka\",\"dijstahka\",\"gasskavahkko\",\"duorastahka\",\"bierjjedahka\",\"lávvodahka\"],\n\t\t\t\tnamesAbbr: [\"såd\",\"mán\",\"dis\",\"gas\",\"duor\",\"bier\",\"láv\"],\n\t\t\t\tnamesShort: [\"s\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ådåjakmánno\",\"guovvamánno\",\"sjnjuktjamánno\",\"vuoratjismánno\",\"moarmesmánno\",\"biehtsemánno\",\"sjnjilltjamánno\",\"bårggemánno\",\"ragátmánno\",\"gålgådismánno\",\"basádismánno\",\"javllamánno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ådåjakmáno\",\"guovvamáno\",\"sjnjuktjamáno\",\"vuoratjismáno\",\"moarmesmáno\",\"biehtsemáno\",\"sjnjilltjamáno\",\"bårggemáno\",\"ragátmáno\",\"gålgådismáno\",\"basádismáno\",\"javllamáno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-DZ\", \"default\", {\n\tname: \"ar-DZ\",\n\tenglishName: \"Arabic (Algeria)\",\n\tnativeName: \"العربية (الجزائر)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.ج.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MMMM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MMMM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-MO\", \"default\", {\n\tname: \"zh-MO\",\n\tenglishName: \"Chinese (Traditional, Macao S.A.R.)\",\n\tnativeName: \"中文(澳門特別行政區)\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"MOP\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"de-LI\", \"default\", {\n\tname: \"de-LI\",\n\tenglishName: \"German (Liechtenstein)\",\n\tnativeName: \"Deutsch (Liechtenstein)\",\n\tlanguage: \"de\",\n\tnumberFormat: {\n\t\t\",\": \"'\",\n\t\t\"NaN\": \"n. def.\",\n\t\tnegativeInfinity: \"-unendlich\",\n\t\tpositiveInfinity: \"+unendlich\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \"'\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \"'\",\n\t\t\tsymbol: \"CHF\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Sonntag\",\"Montag\",\"Dienstag\",\"Mittwoch\",\"Donnerstag\",\"Freitag\",\"Samstag\"],\n\t\t\t\tnamesAbbr: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],\n\t\t\t\tnamesShort: [\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mrz\",\"Apr\",\"Mai\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Okt\",\"Nov\",\"Dez\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n. Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"dddd, d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd, d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd, d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-NZ\", \"default\", {\n\tname: \"en-NZ\",\n\tenglishName: \"English (New Zealand)\",\n\tnativeName: \"English (New Zealand)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM yyyy\",\n\t\t\t\tf: \"dddd, d MMMM yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM yyyy h:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-CR\", \"default\", {\n\tname: \"es-CR\",\n\tenglishName: \"Spanish (Costa Rica)\",\n\tnativeName: \"Español (Costa Rica)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₡\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr-LU\", \"default\", {\n\tname: \"fr-LU\",\n\tenglishName: \"French (Luxembourg)\",\n\tnativeName: \"français (Luxembourg)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bs-Latn-BA\", \"default\", {\n\tname: \"bs-Latn-BA\",\n\tenglishName: \"Bosnian (Latin, Bosnia and Herzegovina)\",\n\tnativeName: \"bosanski (Bosna i Hercegovina)\",\n\tlanguage: \"bs-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"juni\",\"juli\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"smj-SE\", \"default\", {\n\tname: \"smj-SE\",\n\tenglishName: \"Sami, Lule (Sweden)\",\n\tnativeName: \"julevusámegiella (Svierik)\",\n\tlanguage: \"smj\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ájllek\",\"mánnodahka\",\"dijstahka\",\"gasskavahkko\",\"duorastahka\",\"bierjjedahka\",\"lávvodahka\"],\n\t\t\t\tnamesAbbr: [\"ájl\",\"mán\",\"dis\",\"gas\",\"duor\",\"bier\",\"láv\"],\n\t\t\t\tnamesShort: [\"á\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ådåjakmánno\",\"guovvamánno\",\"sjnjuktjamánno\",\"vuoratjismánno\",\"moarmesmánno\",\"biehtsemánno\",\"sjnjilltjamánno\",\"bårggemánno\",\"ragátmánno\",\"gålgådismánno\",\"basádismánno\",\"javllamánno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ådåjakmáno\",\"guovvamáno\",\"sjnjuktjamáno\",\"vuoratjismáno\",\"moarmesmáno\",\"biehtsemáno\",\"sjnjilltjamáno\",\"bårggemáno\",\"ragátmáno\",\"gålgådismáno\",\"basádismáno\",\"javllamáno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-MA\", \"default\", {\n\tname: \"ar-MA\",\n\tenglishName: \"Arabic (Morocco)\",\n\tnativeName: \"العربية (المملكة المغربية)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.م.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"ماي\",\"يونيو\",\"يوليوز\",\"غشت\",\"شتنبر\",\"أكتوبر\",\"نونبر\",\"دجنبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"ماي\",\"يونيو\",\"يوليوز\",\"غشت\",\"شتنبر\",\"أكتوبر\",\"نونبر\",\"دجنبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MMMM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MMMM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-IE\", \"default\", {\n\tname: \"en-IE\",\n\tenglishName: \"English (Ireland)\",\n\tnativeName: \"English (Ireland)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-PA\", \"default\", {\n\tname: \"es-PA\",\n\tenglishName: \"Spanish (Panama)\",\n\tnativeName: \"Español (Panamá)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tsymbol: \"B/.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"fr-MC\", \"default\", {\n\tname: \"fr-MC\",\n\tenglishName: \"French (Monaco)\",\n\tnativeName: \"français (Principauté de Monaco)\",\n\tlanguage: \"fr\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd d MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dddd d MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dddd d MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Latn-BA\", \"default\", {\n\tname: \"sr-Latn-BA\",\n\tenglishName: \"Serbian (Latin, Bosnia and Herzegovina)\",\n\tnativeName: \"srpski (Bosna i Hercegovina)\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sma-NO\", \"default\", {\n\tname: \"sma-NO\",\n\tenglishName: \"Sami, Southern (Norway)\",\n\tnativeName: \"åarjelsaemiengiele (Nöörje)\",\n\tlanguage: \"sma\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-%n\",\"%n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"aejlege\",\"måanta\",\"dæjsta\",\"gaskevåhkoe\",\"duarsta\",\"bearjadahke\",\"laavvardahke\"],\n\t\t\t\tnamesAbbr: [\"aej\",\"måa\",\"dæj\",\"gask\",\"duar\",\"bearj\",\"laav\"],\n\t\t\t\tnamesShort: [\"a\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tsïengele\",\"goevte\",\"njoktje\",\"voerhtje\",\"suehpede\",\"ruffie\",\"snjaltje\",\"mïetske\",\"skïerede\",\"golke\",\"rahka\",\"goeve\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"tsïengelen\",\"goevten\",\"njoktjen\",\"voerhtjen\",\"suehpeden\",\"ruffien\",\"snjaltjen\",\"mïetsken\",\"skïereden\",\"golken\",\"rahkan\",\"goeven\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-TN\", \"default\", {\n\tname: \"ar-TN\",\n\tenglishName: \"Arabic (Tunisia)\",\n\tnativeName: \"العربية (تونس)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ت.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd/MMMM/yyyy H:mm\",\n\t\t\t\tF: \"dd/MMMM/yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy H:mm\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy H:mm:ss\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-ZA\", \"default\", {\n\tname: \"en-ZA\",\n\tenglishName: \"English (South Africa)\",\n\tnativeName: \"English (South Africa)\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"R\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/MM/dd\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-DO\", \"default\", {\n\tname: \"es-DO\",\n\tenglishName: \"Spanish (Dominican Republic)\",\n\tnativeName: \"Español (República Dominicana)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tsymbol: \"RD$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Cyrl-BA\", \"default\", {\n\tname: \"sr-Cyrl-BA\",\n\tenglishName: \"Serbian (Cyrillic, Bosnia and Herzegovina)\",\n\tnativeName: \"српски (Босна и Херцеговина)\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"КМ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"у\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sma-SE\", \"default\", {\n\tname: \"sma-SE\",\n\tenglishName: \"Sami, Southern (Sweden)\",\n\tnativeName: \"åarjelsaemiengiele (Sveerje)\",\n\tlanguage: \"sma\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"aejlege\",\"måanta\",\"dæjsta\",\"gaskevåhkoe\",\"duarsta\",\"bearjadahke\",\"laavvardahke\"],\n\t\t\t\tnamesAbbr: [\"aej\",\"måa\",\"dæj\",\"gask\",\"duar\",\"bearj\",\"laav\"],\n\t\t\t\tnamesShort: [\"a\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tsïengele\",\"goevte\",\"njoktje\",\"voerhtje\",\"suehpede\",\"ruffie\",\"snjaltje\",\"mïetske\",\"skïerede\",\"golke\",\"rahka\",\"goeve\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"tsïengelen\",\"goevten\",\"njoktjen\",\"voerhtjen\",\"suehpeden\",\"ruffien\",\"snjaltjen\",\"mïetsken\",\"skïereden\",\"golken\",\"rahkan\",\"goeven\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-OM\", \"default\", {\n\tname: \"ar-OM\",\n\tenglishName: \"Arabic (Oman)\",\n\tnativeName: \"العربية (عمان)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"ر.ع.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-JM\", \"default\", {\n\tname: \"en-JM\",\n\tenglishName: \"English (Jamaica)\",\n\tnativeName: \"English (Jamaica)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"],\n\t\t\tsymbol: \"J$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-VE\", \"default\", {\n\tname: \"es-VE\",\n\tenglishName: \"Spanish (Bolivarian Republic of Venezuela)\",\n\tnativeName: \"Español (Republica Bolivariana de Venezuela)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Bs. F.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bs-Cyrl-BA\", \"default\", {\n\tname: \"bs-Cyrl-BA\",\n\tenglishName: \"Bosnian (Cyrillic, Bosnia and Herzegovina)\",\n\tnativeName: \"босански (Босна и Херцеговина)\",\n\tlanguage: \"bs-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"КМ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недјеља\",\"понедјељак\",\"уторак\",\"сриједа\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"у\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sms-FI\", \"default\", {\n\tname: \"sms-FI\",\n\tenglishName: \"Sami, Skolt (Finland)\",\n\tnativeName: \"sääm´ǩiõll (Lää´ddjânnam)\",\n\tlanguage: \"sms\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pâ´sspei´vv\",\"vuõssargg\",\"mââibargg\",\"seärad\",\"nelljdpei´vv\",\"piâtnâc\",\"sue´vet\"],\n\t\t\t\tnamesAbbr: [\"pâ\",\"vu\",\"mâ\",\"se\",\"ne\",\"pi\",\"su\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"s\",\"n\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđee´jjmään\",\"tä´lvvmään\",\"pâ´zzlâšttammään\",\"njuhččmään\",\"vue´ssmään\",\"ǩie´ssmään\",\"suei´nnmään\",\"på´rǧǧmään\",\"čõhččmään\",\"kålggmään\",\"skamm´mään\",\"rosttovmään\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđee´jjmannu\",\"tä´lvvmannu\",\"pâ´zzlâšttammannu\",\"njuhččmannu\",\"vue´ssmannu\",\"ǩie´ssmannu\",\"suei´nnmannu\",\"på´rǧǧmannu\",\"čõhččmannu\",\"kålggmannu\",\"skamm´mannu\",\"rosttovmannu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-YE\", \"default\", {\n\tname: \"ar-YE\",\n\tenglishName: \"Arabic (Yemen)\",\n\tnativeName: \"العربية (اليمن)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.ي.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-029\", \"default\", {\n\tname: \"en-029\",\n\tenglishName: \"English (Caribbean)\",\n\tnativeName: \"English (Caribbean)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"-$n\",\"$n\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-CO\", \"default\", {\n\tname: \"es-CO\",\n\tenglishName: \"Spanish (Colombia)\",\n\tnativeName: \"Español (Colombia)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Latn-RS\", \"default\", {\n\tname: \"sr-Latn-RS\",\n\tenglishName: \"Serbian (Latin, Serbia)\",\n\tnativeName: \"srpski (Srbija)\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"smn-FI\", \"default\", {\n\tname: \"smn-FI\",\n\tenglishName: \"Sami, Inari (Finland)\",\n\tnativeName: \"sämikielâ (Suomâ)\",\n\tlanguage: \"smn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pasepeivi\",\"vuossargâ\",\"majebargâ\",\"koskokko\",\"tuorâstâh\",\"vástuppeivi\",\"lávárdâh\"],\n\t\t\t\tnamesAbbr: [\"pa\",\"vu\",\"ma\",\"ko\",\"tu\",\"vá\",\"lá\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"k\",\"t\",\"v\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uđđâivemáánu\",\"kuovâmáánu\",\"njuhčâmáánu\",\"cuáŋuimáánu\",\"vyesimáánu\",\"kesimáánu\",\"syeinimáánu\",\"porgemáánu\",\"čohčâmáánu\",\"roovvâdmáánu\",\"skammâmáánu\",\"juovlâmáánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"uđiv\",\"kuov\",\"njuh\",\"cuoŋ\",\"vyes\",\"kesi\",\"syei\",\"porg\",\"čoh\",\"roov\",\"ska\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-SY\", \"default\", {\n\tname: \"ar-SY\",\n\tenglishName: \"Arabic (Syria)\",\n\tnativeName: \"العربية (سوريا)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.س.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-BZ\", \"default\", {\n\tname: \"en-BZ\",\n\tenglishName: \"English (Belize)\",\n\tnativeName: \"English (Belize)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"BZ$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-PE\", \"default\", {\n\tname: \"es-PE\",\n\tenglishName: \"Spanish (Peru)\",\n\tnativeName: \"Español (Perú)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tsymbol: \"S/.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Cyrl-RS\", \"default\", {\n\tname: \"sr-Cyrl-RS\",\n\tenglishName: \"Serbian (Cyrillic, Serbia)\",\n\tnativeName: \"српски (Србија)\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Дин.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-JO\", \"default\", {\n\tname: \"ar-JO\",\n\tenglishName: \"Arabic (Jordan)\",\n\tnativeName: \"العربية (الأردن)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ا.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-TT\", \"default\", {\n\tname: \"en-TT\",\n\tenglishName: \"English (Trinidad and Tobago)\",\n\tnativeName: \"English (Trinidad y Tobago)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"TT$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd MMMM yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd MMMM yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd MMMM yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-AR\", \"default\", {\n\tname: \"es-AR\",\n\tenglishName: \"Spanish (Argentina)\",\n\tnativeName: \"Español (Argentina)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Latn-ME\", \"default\", {\n\tname: \"sr-Latn-ME\",\n\tenglishName: \"Serbian (Latin, Montenegro)\",\n\tnativeName: \"srpski (Crna Gora)\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-LB\", \"default\", {\n\tname: \"ar-LB\",\n\tenglishName: \"Arabic (Lebanon)\",\n\tnativeName: \"العربية (لبنان)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ل.ل.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedEnglish: {\n\t\t\tname: \"Gregorian_TransliteratedEnglish\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"أ\",\"ا\",\"ث\",\"أ\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-ZW\", \"default\", {\n\tname: \"en-ZW\",\n\tenglishName: \"English (Zimbabwe)\",\n\tnativeName: \"English (Zimbabwe)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"Z$\"\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-EC\", \"default\", {\n\tname: \"es-EC\",\n\tenglishName: \"Spanish (Ecuador)\",\n\tnativeName: \"Español (Ecuador)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Cyrl-ME\", \"default\", {\n\tname: \"sr-Cyrl-ME\",\n\tenglishName: \"Serbian (Cyrillic, Montenegro)\",\n\tnativeName: \"српски (Црна Гора)\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-KW\", \"default\", {\n\tname: \"ar-KW\",\n\tenglishName: \"Arabic (Kuwait)\",\n\tnativeName: \"العربية (الكويت)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ك.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-PH\", \"default\", {\n\tname: \"en-PH\",\n\tenglishName: \"English (Republic of the Philippines)\",\n\tnativeName: \"English (Philippines)\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tsymbol: \"Php\"\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-CL\", \"default\", {\n\tname: \"es-CL\",\n\tenglishName: \"Spanish (Chile)\",\n\tnativeName: \"Español (Chile)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-$ n\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy H:mm\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-AE\", \"default\", {\n\tname: \"ar-AE\",\n\tenglishName: \"Arabic (U.A.E.)\",\n\tnativeName: \"العربية (الإمارات العربية المتحدة)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"د.إ.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-UY\", \"default\", {\n\tname: \"es-UY\",\n\tenglishName: \"Spanish (Uruguay)\",\n\tnativeName: \"Español (Uruguay)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$U\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-BH\", \"default\", {\n\tname: \"ar-BH\",\n\tenglishName: \"Arabic (Bahrain)\",\n\tnativeName: \"العربية (البحرين)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\tdecimals: 3,\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tpercent: {\n\t\t\tdecimals: 3\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tdecimals: 3,\n\t\t\tsymbol: \"د.ب.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"ابريل\",\"مايو\",\"يونيو\",\"يوليو\",\"اغسطس\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-PY\", \"default\", {\n\tname: \"es-PY\",\n\tenglishName: \"Spanish (Paraguay)\",\n\tnativeName: \"Español (Paraguay)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Gs\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ar-QA\", \"default\", {\n\tname: \"ar-QA\",\n\tenglishName: \"Arabic (Qatar)\",\n\tnativeName: \"العربية (قطر)\",\n\tlanguage: \"ar\",\n\tisRTL: true,\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\"NaN\": \"ليس برقم\",\n\t\tnegativeInfinity: \"-لا نهاية\",\n\t\tpositiveInfinity: \"+لا نهاية\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$n-\",\"$ n\"],\n\t\t\tsymbol: \"ر.ق.\\u200f\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd MMMM, yyyy hh:mm tt\",\n\t\t\t\tF: \"dd MMMM, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tUmAlQura: {\n\t\t\tname: \"UmAlQura\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MMMM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MMMM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MMMM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    _yearInfo: [\n                        // MonthLengthFlags, Gregorian Date\n                        [746, -2198707200000],\n                        [1769, -2168121600000],\n                        [3794, -2137449600000],\n                        [3748, -2106777600000],\n                        [3402, -2076192000000],\n                        [2710, -2045606400000],\n                        [1334, -2015020800000],\n                        [2741, -1984435200000],\n                        [3498, -1953763200000],\n                        [2980, -1923091200000],\n                        [2889, -1892505600000],\n                        [2707, -1861920000000],\n                        [1323, -1831334400000],\n                        [2647, -1800748800000],\n                        [1206, -1770076800000],\n                        [2741, -1739491200000],\n                        [1450, -1708819200000],\n                        [3413, -1678233600000],\n                        [3370, -1647561600000],\n                        [2646, -1616976000000],\n                        [1198, -1586390400000],\n                        [2397, -1555804800000],\n                        [748, -1525132800000],\n                        [1749, -1494547200000],\n                        [1706, -1463875200000],\n                        [1365, -1433289600000],\n                        [1195, -1402704000000],\n                        [2395, -1372118400000],\n                        [698, -1341446400000],\n                        [1397, -1310860800000],\n                        [2994, -1280188800000],\n                        [1892, -1249516800000],\n                        [1865, -1218931200000],\n                        [1621, -1188345600000],\n                        [683, -1157760000000],\n                        [1371, -1127174400000],\n                        [2778, -1096502400000],\n                        [1748, -1065830400000],\n                        [3785, -1035244800000],\n                        [3474, -1004572800000],\n                        [3365, -973987200000],\n                        [2637, -943401600000],\n                        [685, -912816000000],\n                        [1389, -882230400000],\n                        [2922, -851558400000],\n                        [2898, -820886400000],\n                        [2725, -790300800000],\n                        [2635, -759715200000],\n                        [1175, -729129600000],\n                        [2359, -698544000000],\n                        [694, -667872000000],\n                        [1397, -637286400000],\n                        [3434, -606614400000],\n                        [3410, -575942400000],\n                        [2710, -545356800000],\n                        [2349, -514771200000],\n                        [605, -484185600000],\n                        [1245, -453600000000],\n                        [2778, -422928000000],\n                        [1492, -392256000000],\n                        [3497, -361670400000],\n                        [3410, -330998400000],\n                        [2730, -300412800000],\n                        [1238, -269827200000],\n                        [2486, -239241600000],\n                        [884, -208569600000],\n                        [1897, -177984000000],\n                        [1874, -147312000000],\n                        [1701, -116726400000],\n                        [1355, -86140800000],\n                        [2731, -55555200000],\n                        [1370, -24883200000],\n                        [2773, 5702400000],\n                        [3538, 36374400000],\n                        [3492, 67046400000],\n                        [3401, 97632000000],\n                        [2709, 128217600000],\n                        [1325, 158803200000],\n                        [2653, 189388800000],\n                        [1370, 220060800000],\n                        [2773, 250646400000],\n                        [1706, 281318400000],\n                        [1685, 311904000000],\n                        [1323, 342489600000],\n                        [2647, 373075200000],\n                        [1198, 403747200000],\n                        [2422, 434332800000],\n                        [1388, 465004800000],\n                        [2901, 495590400000],\n                        [2730, 526262400000],\n                        [2645, 556848000000],\n                        [1197, 587433600000],\n                        [2397, 618019200000],\n                        [730, 648691200000],\n                        [1497, 679276800000],\n                        [3506, 709948800000],\n                        [2980, 740620800000],\n                        [2890, 771206400000],\n                        [2645, 801792000000],\n                        [693, 832377600000],\n                        [1397, 862963200000],\n                        [2922, 893635200000],\n                        [3026, 924307200000],\n                        [3012, 954979200000],\n                        [2953, 985564800000],\n                        [2709, 1016150400000],\n                        [1325, 1046736000000],\n                        [1453, 1077321600000],\n                        [2922, 1107993600000],\n                        [1748, 1138665600000],\n                        [3529, 1169251200000],\n                        [3474, 1199923200000],\n                        [2726, 1230508800000],\n                        [2390, 1261094400000],\n                        [686, 1291680000000],\n                        [1389, 1322265600000],\n                        [874, 1352937600000],\n                        [2901, 1383523200000],\n                        [2730, 1414195200000],\n                        [2381, 1444780800000],\n                        [1181, 1475366400000],\n                        [2397, 1505952000000],\n                        [698, 1536624000000],\n                        [1461, 1567209600000],\n                        [1450, 1597881600000],\n                        [3413, 1628467200000],\n                        [2714, 1659139200000],\n                        [2350, 1689724800000],\n                        [622, 1720310400000],\n                        [1373, 1750896000000],\n                        [2778, 1781568000000],\n                        [1748, 1812240000000],\n                        [1701, 1842825600000],\n                        [0, 1873411200000]\n                    ],\n                    minDate: -2198707200000,\n                    maxDate: 1873411199999,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var days = hday - 1,\n                            gyear = hyear - 1318;\n                        if (gyear < 0 || gyear >= this._yearInfo.length) return null;\n                        var info = this._yearInfo[gyear],\n                            gdate = new Date(info[1]),\n                            monthLength = info[0];\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the gregorian date in the same timezone,\n                        // not what the gregorian date was at GMT time, so we adjust for the offset.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        for (var i = 0; i < hmonth; i++) {\n                            days += 29 + (monthLength & 1);\n                            monthLength = monthLength >> 1;\n                        }\n                        gdate.setDate(gdate.getDate() + days);\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        // Date's ticks in javascript are always from the GMT time,\n                        // but we are interested in the hijri date in the same timezone,\n                        // not what the hijri date was at GMT time, so we adjust for the offset.\n                        var ticks = gdate - gdate.getTimezoneOffset() * 60000;\n                        if (ticks < this.minDate || ticks > this.maxDate) return null;\n                        var hyear = 0,\n                            hmonth = 1;\n                        // find the earliest gregorian date in the array that is greater than or equal to the given date\n                        while (ticks > this._yearInfo[++hyear][1]) { }\n                        if (ticks !== this._yearInfo[hyear][1]) {\n                            hyear--;\n                        }\n                        var info = this._yearInfo[hyear],\n                            // how many days has it been since the date we found in the array?\n                            // 86400000 = ticks per day\n                            days = Math.floor((ticks - info[1]) / 86400000),\n                            monthLength = info[0];\n                        hyear += 1318; // the Nth array entry corresponds to hijri year 1318+N\n                        // now increment day/month based on the total days, considering\n                        // how many days are in each month. We cannot run past the year\n                        // mark since we would have found a different array entry in that case.\n                        var daysInMonth = 29 + (monthLength & 1);\n                        while (days >= daysInMonth) {\n                            days -= daysInMonth;\n                            monthLength = monthLength >> 1;\n                            daysInMonth = 29 + (monthLength & 1);\n                            hmonth++;\n                        }\n                        // remaining days is less than is in one month, thus is the day of the month we landed on\n                        // hmonth-1 because in javascript months are zero based, stay consistent with that.\n                        return [hyear, hmonth - 1, days + 1];\n                    }\n\t\t\t}\n\t\t},\n\t\tHijri: {\n\t\t\tname: \"Hijri\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"],\n\t\t\t\tnamesAbbr: [\"محرم\",\"صفر\",\"ربيع الأول\",\"ربيع الثاني\",\"جمادى الأولى\",\"جمادى الثانية\",\"رجب\",\"شعبان\",\"رمضان\",\"شوال\",\"ذو القعدة\",\"ذو الحجة\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"بعد الهجرة\",\"start\":null,\"offset\":0}],\n\t\t\ttwoDigitYearMax: 1451,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yy\",\n\t\t\t\tD: \"dd/MM/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dd/MM/yyyy hh:mm tt\",\n\t\t\t\tF: \"dd/MM/yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t},\n\t\t\tconvert: {\n                    // Adapted to Script from System.Globalization.HijriCalendar\n                    ticks1970: 62135596800000,\n                    // number of days leading up to each month\n                    monthDays: [0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325, 355],\n                    minDate: -42521673600000,\n                    maxDate: 253402300799999,\n                    // The number of days to add or subtract from the calendar to accommodate the variances\n                    // in the start and the end of Ramadan and to accommodate the date difference between\n                    // countries/regions. May be dynamically adjusted based on user preference, but should\n                    // remain in the range of -2 to 2, inclusive.\n                    hijriAdjustment: 0,\n                    toGregorian: function(hyear, hmonth, hday) {\n                        var daysSinceJan0101 = this.daysToYear(hyear) + this.monthDays[hmonth] + hday - 1 - this.hijriAdjustment;\n                        // 86400000 = ticks per day\n                        var gdate = new Date(daysSinceJan0101 * 86400000 - this.ticks1970);\n                        // adjust for timezone, because we are interested in the gregorian date for the same timezone\n                        // but ticks in javascript is always from GMT, unlike the server were ticks counts from the base\n                        // date in the current timezone.\n                        gdate.setMinutes(gdate.getMinutes() + gdate.getTimezoneOffset());\n                        return gdate;\n                    },\n                    fromGregorian: function(gdate) {\n                        if ((gdate < this.minDate) || (gdate > this.maxDate)) return null;\n                        var ticks = this.ticks1970 + (gdate-0) - gdate.getTimezoneOffset() * 60000,\n                            daysSinceJan0101 = Math.floor(ticks / 86400000) + 1 + this.hijriAdjustment;\n                        // very particular formula determined by someone smart, adapted from the server-side implementation.\n                        // it approximates the hijri year.\n                        var hday, hmonth, hyear = Math.floor(((daysSinceJan0101 - 227013) * 30) / 10631) + 1,\n                            absDays = this.daysToYear(hyear),\n                            daysInYear = this.isLeapYear(hyear) ? 355 : 354;\n                        // hyear is just approximate, it may need adjustment up or down by 1.\n                        if (daysSinceJan0101 < absDays) {\n                            hyear--;\n                            absDays -= daysInYear;\n                        }\n                        else if (daysSinceJan0101 === absDays) {\n                            hyear--;\n                            absDays = this.daysToYear(hyear);\n                        }\n                        else {\n                            if (daysSinceJan0101 > (absDays + daysInYear)) {\n                                absDays += daysInYear;\n                                hyear++;\n                            }\n                        }\n                        // determine month by looking at how many days into the hyear we are\n                        // monthDays contains the number of days up to each month.\n                        hmonth = 0;\n                        var daysIntoYear = daysSinceJan0101 - absDays;\n                        while (hmonth <= 11 && daysIntoYear > this.monthDays[hmonth]) {\n                            hmonth++;\n                        }\n                        hmonth--;\n                        hday = daysIntoYear - this.monthDays[hmonth];\n                        return [hyear, hmonth, hday];\n                    },\n                    daysToYear: function(year) {\n                        // calculates how many days since Jan 1, 0001\n                        var yearsToYear30 = Math.floor((year - 1) / 30) * 30,\n                            yearsInto30 = year - yearsToYear30 - 1,\n                            days = Math.floor((yearsToYear30 * 10631) / 30) + 227013;\n                        while (yearsInto30 > 0) {\n                            days += (this.isLeapYear(yearsInto30) ? 355 : 354);\n                            yearsInto30--;\n                        }\n                        return days;\n                    },\n                    isLeapYear: function(year) {\n                        return ((((year * 11) + 14) % 30) < 11);\n                    }\n\t\t\t}\n\t\t},\n\t\tGregorian_MiddleEastFrench: {\n\t\t\tname: \"Gregorian_MiddleEastFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\n\t\t\t\tnamesAbbr: [\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\n\t\t\t\tnamesShort: [\"di\",\"lu\",\"ma\",\"me\",\"je\",\"ve\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juil.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"ap. J.-C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t},\n\t\tGregorian_Arabic: {\n\t\t\tname: \"Gregorian_Arabic\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"],\n\t\t\t\tnamesAbbr: [\"كانون الثاني\",\"شباط\",\"آذار\",\"نيسان\",\"أيار\",\"حزيران\",\"تموز\",\"آب\",\"أيلول\",\"تشرين الأول\",\"تشرين الثاني\",\"كانون الأول\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t},\n\t\tGregorian_TransliteratedFrench: {\n\t\t\tname: \"Gregorian_TransliteratedFrench\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesAbbr: [\"الأحد\",\"الإثنين\",\"الثلاثاء\",\"الأربعاء\",\"الخميس\",\"الجمعة\",\"السبت\"],\n\t\t\t\tnamesShort: [\"ح\",\"ن\",\"ث\",\"ر\",\"خ\",\"ج\",\"س\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"],\n\t\t\t\tnamesAbbr: [\"جانفييه\",\"فيفرييه\",\"مارس\",\"أفريل\",\"مي\",\"جوان\",\"جوييه\",\"أوت\",\"سبتمبر\",\"اكتوبر\",\"نوفمبر\",\"ديسمبر\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"ص\",\"ص\",\"ص\"],\n\t\t\tPM: [\"م\",\"م\",\"م\"],\n\t\t\teras: [{\"name\":\"م\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"MM/dd/yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, MMMM dd, yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, MMMM dd, yyyy hh:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-IN\", \"default\", {\n\tname: \"en-IN\",\n\tenglishName: \"English (India)\",\n\tnativeName: \"English (India)\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,2],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,2]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,2],\n\t\t\tsymbol: \"Rs.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"dd MMMM yyyy HH:mm\",\n\t\t\t\tF: \"dd MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-BO\", \"default\", {\n\tname: \"es-BO\",\n\tenglishName: \"Spanish (Bolivia)\",\n\tnativeName: \"Español (Bolivia)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"$b\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-MY\", \"default\", {\n\tname: \"en-MY\",\n\tenglishName: \"English (Malaysia)\",\n\tnativeName: \"English (Malaysia)\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"RM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM, yyyy\",\n\t\t\t\tf: \"dddd, d MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-SV\", \"default\", {\n\tname: \"es-SV\",\n\tenglishName: \"Spanish (El Salvador)\",\n\tnativeName: \"Español (El Salvador)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"en-SG\", \"default\", {\n\tname: \"en-SG\",\n\tenglishName: \"English (Singapore)\",\n\tnativeName: \"English (Singapore)\",\n\tnumberFormat: {\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnamesShort: [\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd, d MMMM, yyyy\",\n\t\t\t\tf: \"dddd, d MMMM, yyyy h:mm tt\",\n\t\t\t\tF: \"dddd, d MMMM, yyyy h:mm:ss tt\",\n\t\t\t\tM: \"d MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-HN\", \"default\", {\n\tname: \"es-HN\",\n\tenglishName: \"Spanish (Honduras)\",\n\tnativeName: \"Español (Honduras)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"L.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-NI\", \"default\", {\n\tname: \"es-NI\",\n\tenglishName: \"Spanish (Nicaragua)\",\n\tnativeName: \"Español (Nicaragua)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"C$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-PR\", \"default\", {\n\tname: \"es-PR\",\n\tenglishName: \"Spanish (Puerto Rico)\",\n\tnativeName: \"Español (Puerto Rico)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tcurrency: {\n\t\t\tpattern: [\"($ n)\",\"$ n\"],\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sá\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"a.m.\",\"a.m.\",\"A.M.\"],\n\t\t\tPM: [\"p.m.\",\"p.m.\",\"P.M.\"],\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM/yyyy\",\n\t\t\t\tD: \"dddd, dd' de 'MMMM' de 'yyyy\",\n\t\t\t\tt: \"hh:mm tt\",\n\t\t\t\tT: \"hh:mm:ss tt\",\n\t\t\t\tf: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm tt\",\n\t\t\t\tF: \"dddd, dd' de 'MMMM' de 'yyyy hh:mm:ss tt\",\n\t\t\t\tM: \"dd MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"es-US\", \"default\", {\n\tname: \"es-US\",\n\tenglishName: \"Spanish (United States)\",\n\tnativeName: \"Español (Estados Unidos)\",\n\tlanguage: \"es\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"NeuN\",\n\t\tnegativeInfinity: \"-Infinito\",\n\t\tpositiveInfinity: \"Infinito\",\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"domingo\",\"lunes\",\"martes\",\"miércoles\",\"jueves\",\"viernes\",\"sábado\"],\n\t\t\t\tnamesAbbr: [\"dom\",\"lun\",\"mar\",\"mié\",\"jue\",\"vie\",\"sáb\"],\n\t\t\t\tnamesShort: [\"do\",\"lu\",\"ma\",\"mi\",\"ju\",\"vi\",\"sa\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"enero\",\"febrero\",\"marzo\",\"abril\",\"mayo\",\"junio\",\"julio\",\"agosto\",\"septiembre\",\"octubre\",\"noviembre\",\"diciembre\",\"\"],\n\t\t\t\tnamesAbbr: [\"ene\",\"feb\",\"mar\",\"abr\",\"may\",\"jun\",\"jul\",\"ago\",\"sep\",\"oct\",\"nov\",\"dic\",\"\"]\n\t\t\t},\n\t\t\teras: [{\"name\":\"d.C.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\tM: \"dd' de 'MMMM\",\n\t\t\t\tY: \"MMMM' de 'yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bs-Cyrl\", \"default\", {\n\tname: \"bs-Cyrl\",\n\tenglishName: \"Bosnian (Cyrillic)\",\n\tnativeName: \"босански\",\n\tlanguage: \"bs-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"КМ\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недјеља\",\"понедјељак\",\"уторак\",\"сриједа\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"н\",\"п\",\"у\",\"с\",\"ч\",\"п\",\"с\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bs-Latn\", \"default\", {\n\tname: \"bs-Latn\",\n\tenglishName: \"Bosnian (Latin)\",\n\tnativeName: \"bosanski\",\n\tlanguage: \"bs-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"juni\",\"juli\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Cyrl\", \"default\", {\n\tname: \"sr-Cyrl\",\n\tenglishName: \"Serbian (Cyrillic)\",\n\tnativeName: \"српски\",\n\tlanguage: \"sr-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-бесконачност\",\n\t\tpositiveInfinity: \"+бесконачност\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Дин.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"недеља\",\"понедељак\",\"уторак\",\"среда\",\"четвртак\",\"петак\",\"субота\"],\n\t\t\t\tnamesAbbr: [\"нед\",\"пон\",\"уто\",\"сре\",\"чет\",\"пет\",\"суб\"],\n\t\t\t\tnamesShort: [\"не\",\"по\",\"ут\",\"ср\",\"че\",\"пе\",\"су\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"јануар\",\"фебруар\",\"март\",\"април\",\"мај\",\"јун\",\"јул\",\"август\",\"септембар\",\"октобар\",\"новембар\",\"децембар\",\"\"],\n\t\t\t\tnamesAbbr: [\"јан\",\"феб\",\"мар\",\"апр\",\"мај\",\"јун\",\"јул\",\"авг\",\"сеп\",\"окт\",\"нов\",\"дец\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"н.е.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr-Latn\", \"default\", {\n\tname: \"sr-Latn\",\n\tenglishName: \"Serbian (Latin)\",\n\tnativeName: \"srpski\",\n\tlanguage: \"sr-Latn\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"smn\", \"default\", {\n\tname: \"smn\",\n\tenglishName: \"Sami (Inari)\",\n\tnativeName: \"sämikielâ\",\n\tlanguage: \"smn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pasepeivi\",\"vuossargâ\",\"majebargâ\",\"koskokko\",\"tuorâstâh\",\"vástuppeivi\",\"lávárdâh\"],\n\t\t\t\tnamesAbbr: [\"pa\",\"vu\",\"ma\",\"ko\",\"tu\",\"vá\",\"lá\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"k\",\"t\",\"v\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"uđđâivemáánu\",\"kuovâmáánu\",\"njuhčâmáánu\",\"cuáŋuimáánu\",\"vyesimáánu\",\"kesimáánu\",\"syeinimáánu\",\"porgemáánu\",\"čohčâmáánu\",\"roovvâdmáánu\",\"skammâmáánu\",\"juovlâmáánu\",\"\"],\n\t\t\t\tnamesAbbr: [\"uđiv\",\"kuov\",\"njuh\",\"cuoŋ\",\"vyes\",\"kesi\",\"syei\",\"porg\",\"čoh\",\"roov\",\"ska\",\"juov\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"az-Cyrl\", \"default\", {\n\tname: \"az-Cyrl\",\n\tenglishName: \"Azeri (Cyrillic)\",\n\tnativeName: \"Азәрбајҹан дили\",\n\tlanguage: \"az-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"ман.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Базар\",\"Базар ертәси\",\"Чәршәнбә ахшамы\",\"Чәршәнбә\",\"Ҹүмә ахшамы\",\"Ҹүмә\",\"Шәнбә\"],\n\t\t\t\tnamesAbbr: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"],\n\t\t\t\tnamesShort: [\"Б\",\"Бе\",\"Ча\",\"Ч\",\"Ҹа\",\"Ҹ\",\"Ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Јанвар\",\"Феврал\",\"Март\",\"Апрел\",\"Мај\",\"Ијун\",\"Ијул\",\"Август\",\"Сентјабр\",\"Октјабр\",\"Нојабр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"Мај\",\"Ијун\",\"Ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"јанвар\",\"феврал\",\"март\",\"апрел\",\"мај\",\"ијун\",\"ијул\",\"август\",\"сентјабр\",\"октјабр\",\"нојабр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Јан\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"ијун\",\"ијул\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sms\", \"default\", {\n\tname: \"sms\",\n\tenglishName: \"Sami (Skolt)\",\n\tnativeName: \"sääm´ǩiõll\",\n\tlanguage: \"sms\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"pâ´sspei´vv\",\"vuõssargg\",\"mââibargg\",\"seärad\",\"nelljdpei´vv\",\"piâtnâc\",\"sue´vet\"],\n\t\t\t\tnamesAbbr: [\"pâ\",\"vu\",\"mâ\",\"se\",\"ne\",\"pi\",\"su\"],\n\t\t\t\tnamesShort: [\"p\",\"v\",\"m\",\"s\",\"n\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ođđee´jjmään\",\"tä´lvvmään\",\"pâ´zzlâšttammään\",\"njuhččmään\",\"vue´ssmään\",\"ǩie´ssmään\",\"suei´nnmään\",\"på´rǧǧmään\",\"čõhččmään\",\"kålggmään\",\"skamm´mään\",\"rosttovmään\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ođđee´jjmannu\",\"tä´lvvmannu\",\"pâ´zzlâšttammannu\",\"njuhččmannu\",\"vue´ssmannu\",\"ǩie´ssmannu\",\"suei´nnmannu\",\"på´rǧǧmannu\",\"čõhččmannu\",\"kålggmannu\",\"skamm´mannu\",\"rosttovmannu\",\"\"],\n\t\t\t\tnamesAbbr: [\"ođjm\",\"tä´lvv\",\"pâzl\",\"njuh\",\"vue\",\"ǩie\",\"suei\",\"på´r\",\"čõh\",\"kålg\",\"ska\",\"rost\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"MMMM d'. p. 'yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"MMMM d'. p. 'yyyy H:mm\",\n\t\t\t\tF: \"MMMM d'. p. 'yyyy H:mm:ss\",\n\t\t\t\tM: \"MMMM d'. p. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh\", \"default\", {\n\tname: \"zh\",\n\tenglishName: \"Chinese\",\n\tnativeName: \"中文\",\n\tlanguage: \"zh\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nn\", \"default\", {\n\tname: \"nn\",\n\tenglishName: \"Norwegian (Nynorsk)\",\n\tnativeName: \"norsk (nynorsk)\",\n\tlanguage: \"nn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"måndag\",\"tysdag\",\"onsdag\",\"torsdag\",\"fredag\",\"laurdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"],\n\t\t\t\tnamesShort: [\"sø\",\"må\",\"ty\",\"on\",\"to\",\"fr\",\"la\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"bs\", \"default\", {\n\tname: \"bs\",\n\tenglishName: \"Bosnian\",\n\tnativeName: \"bosanski\",\n\tlanguage: \"bs\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"KM\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedjelja\",\"ponedjeljak\",\"utorak\",\"srijeda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sri\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"juni\",\"juli\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"az-Latn\", \"default\", {\n\tname: \"az-Latn\",\n\tenglishName: \"Azeri (Latin)\",\n\tnativeName: \"Azərbaycan\\xadılı\",\n\tlanguage: \"az-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"man.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Bazar\",\"Bazar ertəsi\",\"Çərşənbə axşamı\",\"Çərşənbə\",\"Cümə axşamı\",\"Cümə\",\"Şənbə\"],\n\t\t\t\tnamesAbbr: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"],\n\t\t\t\tnamesShort: [\"B\",\"Be\",\"Ça\",\"Ç\",\"Ca\",\"C\",\"Ş\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yanvar\",\"Fevral\",\"Mart\",\"Aprel\",\"May\",\"İyun\",\"İyul\",\"Avgust\",\"Sentyabr\",\"Oktyabr\",\"Noyabr\",\"Dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yan\",\"Fev\",\"Mar\",\"Apr\",\"May\",\"İyun\",\"İyul\",\"Avg\",\"Sen\",\"Okt\",\"Noy\",\"Dek\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sma\", \"default\", {\n\tname: \"sma\",\n\tenglishName: \"Sami (Southern)\",\n\tnativeName: \"åarjelsaemiengiele\",\n\tlanguage: \"sma\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"aejlege\",\"måanta\",\"dæjsta\",\"gaskevåhkoe\",\"duarsta\",\"bearjadahke\",\"laavvardahke\"],\n\t\t\t\tnamesAbbr: [\"aej\",\"måa\",\"dæj\",\"gask\",\"duar\",\"bearj\",\"laav\"],\n\t\t\t\tnamesShort: [\"a\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"tsïengele\",\"goevte\",\"njoktje\",\"voerhtje\",\"suehpede\",\"ruffie\",\"snjaltje\",\"mïetske\",\"skïerede\",\"golke\",\"rahka\",\"goeve\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"tsïengelen\",\"goevten\",\"njoktjen\",\"voerhtjen\",\"suehpeden\",\"ruffien\",\"snjaltjen\",\"mïetsken\",\"skïereden\",\"golken\",\"rahkan\",\"goeven\",\"\"],\n\t\t\t\tnamesAbbr: [\"tsïen\",\"goevt\",\"njok\",\"voer\",\"sueh\",\"ruff\",\"snja\",\"mïet\",\"skïer\",\"golk\",\"rahk\",\"goev\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uz-Cyrl\", \"default\", {\n\tname: \"uz-Cyrl\",\n\tenglishName: \"Uzbek (Cyrillic)\",\n\tnativeName: \"Ўзбек\",\n\tlanguage: \"uz-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"сўм\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"якшанба\",\"душанба\",\"сешанба\",\"чоршанба\",\"пайшанба\",\"жума\",\"шанба\"],\n\t\t\t\tnamesAbbr: [\"якш\",\"дш\",\"сш\",\"чш\",\"пш\",\"ж\",\"ш\"],\n\t\t\t\tnamesShort: [\"я\",\"д\",\"с\",\"ч\",\"п\",\"ж\",\"ш\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январ\",\"феврал\",\"март\",\"апрел\",\"май\",\"июн\",\"июл\",\"август\",\"сентябр\",\"октябр\",\"ноябр\",\"декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"мая\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"yyyy 'йил' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'йил' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'йил' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mn-Cyrl\", \"default\", {\n\tname: \"mn-Cyrl\",\n\tenglishName: \"Mongolian (Cyrillic)\",\n\tnativeName: \"Монгол хэл\",\n\tlanguage: \"mn-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n$\",\"n$\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"₮\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Ням\",\"Даваа\",\"Мягмар\",\"Лхагва\",\"Пүрэв\",\"Баасан\",\"Бямба\"],\n\t\t\t\tnamesAbbr: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"],\n\t\t\t\tnamesShort: [\"Ня\",\"Да\",\"Мя\",\"Лх\",\"Пү\",\"Ба\",\"Бя\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"1 дүгээр сар\",\"2 дугаар сар\",\"3 дугаар сар\",\"4 дүгээр сар\",\"5 дугаар сар\",\"6 дугаар сар\",\"7 дугаар сар\",\"8 дугаар сар\",\"9 дүгээр сар\",\"10 дугаар сар\",\"11 дүгээр сар\",\"12 дугаар сар\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"1 дүгээр сарын\",\"2 дугаар сарын\",\"3 дугаар сарын\",\"4 дүгээр сарын\",\"5 дугаар сарын\",\"6 дугаар сарын\",\"7 дугаар сарын\",\"8 дугаар сарын\",\"9 дүгээр сарын\",\"10 дугаар сарын\",\"11 дүгээр сарын\",\"12 дугаар сарын\",\"\"],\n\t\t\t\tnamesAbbr: [\"I\",\"II\",\"III\",\"IV\",\"V\",\"VI\",\"VII\",\"VIII\",\"IX\",\"X\",\"XI\",\"XII\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yy.MM.dd\",\n\t\t\t\tD: \"yyyy 'оны' MMMM d\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy 'оны' MMMM d H:mm\",\n\t\t\t\tF: \"yyyy 'оны' MMMM d H:mm:ss\",\n\t\t\t\tM: \"d MMMM\",\n\t\t\t\tY: \"yyyy 'он' MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"iu-Cans\", \"default\", {\n\tname: \"iu-Cans\",\n\tenglishName: \"Inuktitut (Syllabics)\",\n\tnativeName: \"ᐃᓄᒃᑎᑐᑦ\",\n\tlanguage: \"iu-Cans\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᓈᑦᑏᖑᔭ\",\"ᓇᒡᒐᔾᔭᐅ\",\"ᐊᐃᑉᐱᖅ\",\"ᐱᖓᑦᓯᖅ\",\"ᓯᑕᒻᒥᖅ\",\"ᑕᓪᓕᕐᒥᖅ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesAbbr: [\"ᓈᑦᑏ\",\"ᓇᒡᒐ\",\"ᐊᐃᑉᐱ\",\"ᐱᖓᑦᓯ\",\"ᓯᑕ\",\"ᑕᓪᓕ\",\"ᓯᕙᑖᕐᕕᒃ\"],\n\t\t\t\tnamesShort: [\"ᓈ\",\"ᓇ\",\"ᐊ\",\"ᐱ\",\"ᓯ\",\"ᑕ\",\"ᓯ\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᔮᓐᓄᐊᕆ\",\"ᕖᕝᕗᐊᕆ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌᓯ\",\"ᓯᑎᐱᕆ\",\"ᐅᑐᐱᕆ\",\"ᓄᕕᐱᕆ\",\"ᑎᓯᐱᕆ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᔮᓐᓄ\",\"ᕖᕝᕗ\",\"ᒫᑦᓯ\",\"ᐄᐳᕆ\",\"ᒪᐃ\",\"ᔫᓂ\",\"ᔪᓚᐃ\",\"ᐋᒡᒌ\",\"ᓯᑎᐱ\",\"ᐅᑐᐱ\",\"ᓄᕕᐱ\",\"ᑎᓯᐱ\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"dddd,MMMM dd,yyyy\",\n\t\t\t\tf: \"dddd,MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"dddd,MMMM dd,yyyy h:mm:ss tt\",\n\t\t\t\tY: \"MMMM,yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-Hant\", \"default\", {\n\tname: \"zh-Hant\",\n\tenglishName: \"Chinese (Traditional)\",\n\tnativeName: \"中文(繁體)\",\n\tlanguage: \"zh-Hant\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"HK$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"nb\", \"default\", {\n\tname: \"nb\",\n\tenglishName: \"Norwegian (Bokmål)\",\n\tnativeName: \"norsk (bokmål)\",\n\tlanguage: \"nb\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-INF\",\n\t\tpositiveInfinity: \"INF\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$ -n\",\"$ n\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"søndag\",\"mandag\",\"tirsdag\",\"onsdag\",\"torsdag\",\"fredag\",\"lørdag\"],\n\t\t\t\tnamesAbbr: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"],\n\t\t\t\tnamesShort: [\"sø\",\"ma\",\"ti\",\"on\",\"to\",\"fr\",\"lø\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"mai\",\"jun\",\"jul\",\"aug\",\"sep\",\"okt\",\"nov\",\"des\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy HH:mm\",\n\t\t\t\tF: \"d. MMMM yyyy HH:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"sr\", \"default\", {\n\tname: \"sr\",\n\tenglishName: \"Serbian\",\n\tnativeName: \"srpski\",\n\tlanguage: \"sr\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\tnegativeInfinity: \"-beskonačnost\",\n\t\tpositiveInfinity: \"+beskonačnost\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"Din.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"nedelja\",\"ponedeljak\",\"utorak\",\"sreda\",\"četvrtak\",\"petak\",\"subota\"],\n\t\t\t\tnamesAbbr: [\"ned\",\"pon\",\"uto\",\"sre\",\"čet\",\"pet\",\"sub\"],\n\t\t\t\tnamesShort: [\"ne\",\"po\",\"ut\",\"sr\",\"če\",\"pe\",\"su\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"mart\",\"april\",\"maj\",\"jun\",\"jul\",\"avgust\",\"septembar\",\"oktobar\",\"novembar\",\"decembar\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"mar\",\"apr\",\"maj\",\"jun\",\"jul\",\"avg\",\"sep\",\"okt\",\"nov\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"n.e.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d.M.yyyy\",\n\t\t\t\tD: \"d. MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d. MMMM yyyy H:mm\",\n\t\t\t\tF: \"d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tg-Cyrl\", \"default\", {\n\tname: \"tg-Cyrl\",\n\tenglishName: \"Tajik (Cyrillic)\",\n\tnativeName: \"Тоҷикӣ\",\n\tlanguage: \"tg-Cyrl\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tgroupSizes: [3,0],\n\t\tnegativeInfinity: \"-бесконечность\",\n\t\tpositiveInfinity: \"бесконечность\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \";\",\n\t\t\tsymbol: \"т.р.\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \".\",\n\t\t\tdays: {\n\t\t\t\tnames: [\"Яш\",\"Душанбе\",\"Сешанбе\",\"Чоршанбе\",\"Панҷшанбе\",\"Ҷумъа\",\"Шанбе\"],\n\t\t\t\tnamesAbbr: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"],\n\t\t\t\tnamesShort: [\"Яш\",\"Дш\",\"Сш\",\"Чш\",\"Пш\",\"Ҷм\",\"Шн\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Январ\",\"Феврал\",\"Март\",\"Апрел\",\"Май\",\"Июн\",\"Июл\",\"Август\",\"Сентябр\",\"Октябр\",\"Ноябр\",\"Декабр\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"январи\",\"феврали\",\"марти\",\"апрели\",\"маи\",\"июни\",\"июли\",\"августи\",\"сентябри\",\"октябри\",\"ноябри\",\"декабри\",\"\"],\n\t\t\t\tnamesAbbr: [\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd.MM.yy\",\n\t\t\t\tD: \"d MMMM yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"d MMMM yyyy H:mm\",\n\t\t\t\tF: \"d MMMM yyyy H:mm:ss\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"dsb\", \"default\", {\n\tname: \"dsb\",\n\tenglishName: \"Lower Sorbian\",\n\tnativeName: \"dolnoserbšćina\",\n\tlanguage: \"dsb\",\n\tnumberFormat: {\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"njedefinowane\",\n\t\tnegativeInfinity: \"-njekońcne\",\n\t\tpositiveInfinity: \"+njekońcne\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"€\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \". \",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"njeźela\",\"ponjeźele\",\"wałtora\",\"srjoda\",\"stwortk\",\"pětk\",\"sobota\"],\n\t\t\t\tnamesAbbr: [\"nje\",\"pon\",\"wał\",\"srj\",\"stw\",\"pět\",\"sob\"],\n\t\t\t\tnamesShort: [\"n\",\"p\",\"w\",\"s\",\"s\",\"p\",\"s\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"januar\",\"februar\",\"měrc\",\"apryl\",\"maj\",\"junij\",\"julij\",\"awgust\",\"september\",\"oktober\",\"nowember\",\"december\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"januara\",\"februara\",\"měrca\",\"apryla\",\"maja\",\"junija\",\"julija\",\"awgusta\",\"septembra\",\"oktobra\",\"nowembra\",\"decembra\",\"\"],\n\t\t\t\tnamesAbbr: [\"jan\",\"feb\",\"měr\",\"apr\",\"maj\",\"jun\",\"jul\",\"awg\",\"sep\",\"okt\",\"now\",\"dec\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"po Chr.\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d. M. yyyy\",\n\t\t\t\tD: \"dddd, 'dnja' d. MMMM yyyy\",\n\t\t\t\tt: \"H.mm 'goź.'\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dddd, 'dnja' d. MMMM yyyy H.mm 'goź.'\",\n\t\t\t\tF: \"dddd, 'dnja' d. MMMM yyyy H:mm:ss\",\n\t\t\t\tM: \"d. MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"smj\", \"default\", {\n\tname: \"smj\",\n\tenglishName: \"Sami (Lule)\",\n\tnativeName: \"julevusámegiella\",\n\tlanguage: \"smj\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"kr\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ájllek\",\"mánnodahka\",\"dijstahka\",\"gasskavahkko\",\"duorastahka\",\"bierjjedahka\",\"lávvodahka\"],\n\t\t\t\tnamesAbbr: [\"ájl\",\"mán\",\"dis\",\"gas\",\"duor\",\"bier\",\"láv\"],\n\t\t\t\tnamesShort: [\"á\",\"m\",\"d\",\"g\",\"d\",\"b\",\"l\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ådåjakmánno\",\"guovvamánno\",\"sjnjuktjamánno\",\"vuoratjismánno\",\"moarmesmánno\",\"biehtsemánno\",\"sjnjilltjamánno\",\"bårggemánno\",\"ragátmánno\",\"gålgådismánno\",\"basádismánno\",\"javllamánno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tmonthsGenitive: {\n\t\t\t\tnames: [\"ådåjakmáno\",\"guovvamáno\",\"sjnjuktjamáno\",\"vuoratjismáno\",\"moarmesmáno\",\"biehtsemáno\",\"sjnjilltjamáno\",\"bårggemáno\",\"ragátmáno\",\"gålgådismáno\",\"basádismáno\",\"javllamáno\",\"\"],\n\t\t\t\tnamesAbbr: [\"ådåj\",\"guov\",\"snju\",\"vuor\",\"moar\",\"bieh\",\"snji\",\"bårg\",\"ragá\",\"gålg\",\"basá\",\"javl\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy-MM-dd\",\n\t\t\t\tD: \"MMMM d'. b. 'yyyy\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"MMMM d'. b. 'yyyy HH:mm\",\n\t\t\t\tF: \"MMMM d'. b. 'yyyy HH:mm:ss\",\n\t\t\t\tM: \"MMMM d'. b. '\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"uz-Latn\", \"default\", {\n\tname: \"uz-Latn\",\n\tenglishName: \"Uzbek (Latin)\",\n\tnativeName: \"U'zbek\",\n\tlanguage: \"uz-Latn\",\n\tnumberFormat: {\n\t\t\",\": \" \",\n\t\t\".\": \",\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tdecimals: 0,\n\t\t\t\",\": \" \",\n\t\t\t\".\": \",\",\n\t\t\tsymbol: \"so'm\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"yakshanba\",\"dushanba\",\"seshanba\",\"chorshanba\",\"payshanba\",\"juma\",\"shanba\"],\n\t\t\t\tnamesAbbr: [\"yak.\",\"dsh.\",\"sesh.\",\"chr.\",\"psh.\",\"jm.\",\"sh.\"],\n\t\t\t\tnamesShort: [\"ya\",\"d\",\"s\",\"ch\",\"p\",\"j\",\"sh\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"],\n\t\t\t\tnamesAbbr: [\"yanvar\",\"fevral\",\"mart\",\"aprel\",\"may\",\"iyun\",\"iyul\",\"avgust\",\"sentyabr\",\"oktyabr\",\"noyabr\",\"dekabr\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd/MM yyyy\",\n\t\t\t\tD: \"yyyy 'yil' d-MMMM\",\n\t\t\t\tt: \"HH:mm\",\n\t\t\t\tT: \"HH:mm:ss\",\n\t\t\t\tf: \"yyyy 'yil' d-MMMM HH:mm\",\n\t\t\t\tF: \"yyyy 'yil' d-MMMM HH:mm:ss\",\n\t\t\t\tM: \"d-MMMM\",\n\t\t\t\tY: \"MMMM yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"mn-Mong\", \"default\", {\n\tname: \"mn-Mong\",\n\tenglishName: \"Mongolian (Traditional Mongolian)\",\n\tnativeName: \"ᠮᠤᠨᠭᠭᠤᠯ ᠬᠡᠯᠡ\",\n\tlanguage: \"mn-Mong\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\t\"NaN\": \"ᠲᠤᠭᠠᠠ ᠪᠤᠰᠤ\",\n\t\tnegativeInfinity: \"ᠰᠦᠬᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠡᠬᠡ\",\n\t\tpositiveInfinity: \"ᠡᠶ᠋ᠡᠷᠬᠦ ᠬᠢᠵᠠᠭᠠᠷᠭᠦᠢ ᠶᠠᠬᠡ\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"],\n\t\t\tgroupSizes: [3,0]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tgroupSizes: [3,0],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tfirstDay: 1,\n\t\t\tdays: {\n\t\t\t\tnames: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesAbbr: [\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠡᠳᠦᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠨᠢᠭᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠬᠣᠶᠠᠷ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠭᠤᠷᠪᠠᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠳᠥᠷᠪᠡᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠲᠠᠪᠤᠨ\",\"ᠭᠠᠷᠠᠭ\\u202fᠤᠨ ᠵᠢᠷᠭᠤᠭᠠᠨ\"],\n\t\t\t\tnamesShort: [\"ᠡ\\u200d\",\"ᠨᠢ\\u200d\",\"ᠬᠣ\\u200d\",\"ᠭᠤ\\u200d\",\"ᠳᠥ\\u200d\",\"ᠲᠠ\\u200d\",\"ᠵᠢ\\u200d\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"],\n\t\t\t\tnamesAbbr: [\"ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠭᠤᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠦᠷᠪᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠠᠪᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠵᠢᠷᠭᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠲᠤᠯᠤᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠨᠠᠢᠮᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠶᠢᠰᠦᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠨᠢᠭᠡᠳᠦᠭᠡᠷ ᠰᠠᠷ᠎ᠠ\",\"ᠠᠷᠪᠠᠨ ᠬᠤᠶ᠋ᠠᠳᠤᠭᠠᠷ ᠰᠠᠷ᠎ᠠ\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\teras: [{\"name\":\"ᠣᠨ ᠲᠣᠭᠠᠯᠠᠯ ᠤᠨ\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm\",\n\t\t\t\tF: \"yyyy'ᠣᠨ ᠤ᠋' M'ᠰᠠᠷ᠎ᠠ \\u202fᠢᠢᠨ 'd' ᠤ᠋ ᠡᠳᠦᠷ' H:mm:ss\",\n\t\t\t\tM: \"M'ᠰᠠᠷ᠎ᠠ' d'ᠡᠳᠦᠷ'\",\n\t\t\t\tY: \"yyyy'ᠣᠨ' M'ᠰᠠᠷ᠎ᠠ'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"iu-Latn\", \"default\", {\n\tname: \"iu-Latn\",\n\tenglishName: \"Inuktitut (Latin)\",\n\tnativeName: \"Inuktitut\",\n\tlanguage: \"iu-Latn\",\n\tnumberFormat: {\n\t\tgroupSizes: [3,0],\n\t\tpercent: {\n\t\t\tgroupSizes: [3,0]\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Naattiinguja\",\"Naggajjau\",\"Aippiq\",\"Pingatsiq\",\"Sitammiq\",\"Tallirmiq\",\"Sivataarvik\"],\n\t\t\t\tnamesAbbr: [\"Nat\",\"Nag\",\"Aip\",\"Pi\",\"Sit\",\"Tal\",\"Siv\"],\n\t\t\t\tnamesShort: [\"N\",\"N\",\"A\",\"P\",\"S\",\"T\",\"S\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Jaannuari\",\"Viivvuari\",\"Maatsi\",\"Iipuri\",\"Mai\",\"Juuni\",\"Julai\",\"Aaggiisi\",\"Sitipiri\",\"Utupiri\",\"Nuvipiri\",\"Tisipiri\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Viv\",\"Mas\",\"Ipu\",\"Mai\",\"Jun\",\"Jul\",\"Agi\",\"Sii\",\"Uut\",\"Nuv\",\"Tis\",\"\"]\n\t\t\t},\n\t\t\tpatterns: {\n\t\t\t\td: \"d/MM/yyyy\",\n\t\t\t\tD: \"ddd, MMMM dd,yyyy\",\n\t\t\t\tf: \"ddd, MMMM dd,yyyy h:mm tt\",\n\t\t\t\tF: \"ddd, MMMM dd,yyyy h:mm:ss tt\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"tzm-Latn\", \"default\", {\n\tname: \"tzm-Latn\",\n\tenglishName: \"Tamazight (Latin)\",\n\tnativeName: \"Tamazight\",\n\tlanguage: \"tzm-Latn\",\n\tnumberFormat: {\n\t\tpattern: [\"n-\"],\n\t\t\",\": \".\",\n\t\t\".\": \",\",\n\t\t\"NaN\": \"Non Numérique\",\n\t\tnegativeInfinity: \"-Infini\",\n\t\tpositiveInfinity: \"+Infini\",\n\t\tpercent: {\n\t\t\t\",\": \".\",\n\t\t\t\".\": \",\"\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"-n $\",\"n $\"],\n\t\t\tsymbol: \"DZD\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\t\"/\": \"-\",\n\t\t\tfirstDay: 6,\n\t\t\tdays: {\n\t\t\t\tnames: [\"Acer\",\"Arime\",\"Aram\",\"Ahad\",\"Amhadh\",\"Sem\",\"Sedh\"],\n\t\t\t\tnamesAbbr: [\"Ace\",\"Ari\",\"Ara\",\"Aha\",\"Amh\",\"Sem\",\"Sed\"],\n\t\t\t\tnamesShort: [\"Ac\",\"Ar\",\"Ar\",\"Ah\",\"Am\",\"Se\",\"Se\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Yenayer\",\"Furar\",\"Maghres\",\"Yebrir\",\"Mayu\",\"Yunyu\",\"Yulyu\",\"Ghuct\",\"Cutenber\",\"Ktuber\",\"Wambir\",\"Dujanbir\",\"\"],\n\t\t\t\tnamesAbbr: [\"Yen\",\"Fur\",\"Mag\",\"Yeb\",\"May\",\"Yun\",\"Yul\",\"Ghu\",\"Cut\",\"Ktu\",\"Wam\",\"Duj\",\"\"]\n\t\t\t},\n\t\t\tAM: null,\n\t\t\tPM: null,\n\t\t\tpatterns: {\n\t\t\t\td: \"dd-MM-yyyy\",\n\t\t\t\tD: \"dd MMMM, yyyy\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"dd MMMM, yyyy H:mm\",\n\t\t\t\tF: \"dd MMMM, yyyy H:mm:ss\",\n\t\t\t\tM: \"dd MMMM\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"ha-Latn\", \"default\", {\n\tname: \"ha-Latn\",\n\tenglishName: \"Hausa (Latin)\",\n\tnativeName: \"Hausa\",\n\tlanguage: \"ha-Latn\",\n\tnumberFormat: {\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$ n\"],\n\t\t\tsymbol: \"N\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"Lahadi\",\"Litinin\",\"Talata\",\"Laraba\",\"Alhamis\",\"Juma'a\",\"Asabar\"],\n\t\t\t\tnamesAbbr: [\"Lah\",\"Lit\",\"Tal\",\"Lar\",\"Alh\",\"Jum\",\"Asa\"],\n\t\t\t\tnamesShort: [\"L\",\"L\",\"T\",\"L\",\"A\",\"J\",\"A\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"Januwaru\",\"Febreru\",\"Maris\",\"Afrilu\",\"Mayu\",\"Yuni\",\"Yuli\",\"Agusta\",\"Satumba\",\"Oktocba\",\"Nuwamba\",\"Disamba\",\"\"],\n\t\t\t\tnamesAbbr: [\"Jan\",\"Feb\",\"Mar\",\"Afr\",\"May\",\"Yun\",\"Yul\",\"Agu\",\"Sat\",\"Okt\",\"Nuw\",\"Dis\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"Safe\",\"safe\",\"SAFE\"],\n\t\t\tPM: [\"Yamma\",\"yamma\",\"YAMMA\"],\n\t\t\teras: [{\"name\":\"AD\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-CHS\", \"default\", {\n\tname: \"zh-CHS\",\n\tenglishName: \"Chinese (Simplified) Legacy\",\n\tnativeName: \"中文(简体) 旧版\",\n\tlanguage: \"zh-CHS\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非数字\",\n\t\tnegativeInfinity: \"负无穷大\",\n\t\tpositiveInfinity: \"正无穷大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tpattern: [\"$-n\",\"$n\"],\n\t\t\tsymbol: \"¥\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"周日\",\"周一\",\"周二\",\"周三\",\"周四\",\"周五\",\"周六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"yyyy/M/d\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\nGlobalize.addCultureInfo( \"zh-CHT\", \"default\", {\n\tname: \"zh-CHT\",\n\tenglishName: \"Chinese (Traditional) Legacy\",\n\tnativeName: \"中文(繁體) 舊版\",\n\tlanguage: \"zh-CHT\",\n\tnumberFormat: {\n\t\t\"NaN\": \"非數字\",\n\t\tnegativeInfinity: \"負無窮大\",\n\t\tpositiveInfinity: \"正無窮大\",\n\t\tpercent: {\n\t\t\tpattern: [\"-n%\",\"n%\"]\n\t\t},\n\t\tcurrency: {\n\t\t\tsymbol: \"HK$\"\n\t\t}\n\t},\n\tcalendars: {\n\t\tstandard: {\n\t\t\tdays: {\n\t\t\t\tnames: [\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\"],\n\t\t\t\tnamesAbbr: [\"週日\",\"週一\",\"週二\",\"週三\",\"週四\",\"週五\",\"週六\"],\n\t\t\t\tnamesShort: [\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\tnames: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"],\n\t\t\t\tnamesAbbr: [\"一月\",\"二月\",\"三月\",\"四月\",\"五月\",\"六月\",\"七月\",\"八月\",\"九月\",\"十月\",\"十一月\",\"十二月\",\"\"]\n\t\t\t},\n\t\t\tAM: [\"上午\",\"上午\",\"上午\"],\n\t\t\tPM: [\"下午\",\"下午\",\"下午\"],\n\t\t\teras: [{\"name\":\"公元\",\"start\":null,\"offset\":0}],\n\t\t\tpatterns: {\n\t\t\t\td: \"d/M/yyyy\",\n\t\t\t\tD: \"yyyy'年'M'月'd'日'\",\n\t\t\t\tt: \"H:mm\",\n\t\t\t\tT: \"H:mm:ss\",\n\t\t\t\tf: \"yyyy'年'M'月'd'日' H:mm\",\n\t\t\t\tF: \"yyyy'年'M'月'd'日' H:mm:ss\",\n\t\t\t\tM: \"M'月'd'日'\",\n\t\t\t\tY: \"yyyy'年'M'月'\"\n\t\t\t}\n\t\t}\n\t}\n});\n\r\n}( this ));\r\n"
  },
  {
    "path": "test/libs/globalize.js",
    "content": "/*!\n * Globalize\n *\n * http://github.com/jquery/globalize\n *\n * Copyright Software Freedom Conservancy, Inc.\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n */\n\n(function( window, undefined ) {\n\nvar Globalize,\n\t// private variables\n\tregexHex,\n\tregexInfinity,\n\tregexParseFloat,\n\tregexTrim,\n\t// private JavaScript utility functions\n\tarrayIndexOf,\n\tendsWith,\n\textend,\n\tisArray,\n\tisFunction,\n\tisObject,\n\tstartsWith,\n\ttrim,\n\ttruncate,\n\tzeroPad,\n\t// private Globalization utility functions\n\tappendPreOrPostMatch,\n\texpandFormat,\n\tformatDate,\n\tformatNumber,\n\tgetTokenRegExp,\n\tgetEra,\n\tgetEraYear,\n\tparseExact,\n\tparseNegativePattern;\n\n// Global variable (Globalize) or CommonJS module (globalize)\nGlobalize = function( cultureSelector ) {\n\treturn new Globalize.prototype.init( cultureSelector );\n};\n\nif ( typeof require !== \"undefined\" &&\n\ttypeof exports !== \"undefined\" &&\n\ttypeof module !== \"undefined\" ) {\n\t// Assume CommonJS\n\tmodule.exports = Globalize;\n} else {\n\t// Export as global variable\n\twindow.Globalize = Globalize;\n}\n\nGlobalize.cultures = {};\n\nGlobalize.prototype = {\n\tconstructor: Globalize,\n\tinit: function( cultureSelector ) {\n\t\tthis.cultures = Globalize.cultures;\n\t\tthis.cultureSelector = cultureSelector;\n\n\t\treturn this;\n\t}\n};\nGlobalize.prototype.init.prototype = Globalize.prototype;\n\n// 1. When defining a culture, all fields are required except the ones stated as optional.\n// 2. Each culture should have a \".calendars\" object with at least one calendar named \"standard\"\n//    which serves as the default calendar in use by that culture.\n// 3. Each culture should have a \".calendar\" object which is the current calendar being used,\n//    it may be dynamically changed at any time to one of the calendars in \".calendars\".\nGlobalize.cultures[ \"default\" ] = {\n\t// A unique name for the culture in the form <language code>-<country/region code>\n\tname: \"en\",\n\t// the name of the culture in the english language\n\tenglishName: \"English\",\n\t// the name of the culture in its own language\n\tnativeName: \"English\",\n\t// whether the culture uses right-to-left text\n\tisRTL: false,\n\t// \"language\" is used for so-called \"specific\" cultures.\n\t// For example, the culture \"es-CL\" means \"Spanish, in Chili\".\n\t// It represents the Spanish-speaking culture as it is in Chili,\n\t// which might have different formatting rules or even translations\n\t// than Spanish in Spain. A \"neutral\" culture is one that is not\n\t// specific to a region. For example, the culture \"es\" is the generic\n\t// Spanish culture, which may be a more generalized version of the language\n\t// that may or may not be what a specific culture expects.\n\t// For a specific culture like \"es-CL\", the \"language\" field refers to the\n\t// neutral, generic culture information for the language it is using.\n\t// This is not always a simple matter of the string before the dash.\n\t// For example, the \"zh-Hans\" culture is netural (Simplified Chinese).\n\t// And the \"zh-SG\" culture is Simplified Chinese in Singapore, whose lanugage\n\t// field is \"zh-CHS\", not \"zh\".\n\t// This field should be used to navigate from a specific culture to it's\n\t// more general, neutral culture. If a culture is already as general as it\n\t// can get, the language may refer to itself.\n\tlanguage: \"en\",\n\t// numberFormat defines general number formatting rules, like the digits in\n\t// each grouping, the group separator, and how negative numbers are displayed.\n\tnumberFormat: {\n\t\t// [negativePattern]\n\t\t// Note, numberFormat.pattern has no \"positivePattern\" unlike percent and currency,\n\t\t// but is still defined as an array for consistency with them.\n\t\t//   negativePattern: one of \"(n)|-n|- n|n-|n -\"\n\t\tpattern: [ \"-n\" ],\n\t\t// number of decimal places normally shown\n\t\tdecimals: 2,\n\t\t// string that separates number groups, as in 1,000,000\n\t\t\",\": \",\",\n\t\t// string that separates a number from the fractional portion, as in 1.99\n\t\t\".\": \".\",\n\t\t// array of numbers indicating the size of each number group.\n\t\t// TODO: more detailed description and example\n\t\tgroupSizes: [ 3 ],\n\t\t// symbol used for positive numbers\n\t\t\"+\": \"+\",\n\t\t// symbol used for negative numbers\n\t\t\"-\": \"-\",\n\t\t// symbol used for NaN (Not-A-Number)\n\t\t\"NaN\": \"NaN\",\n\t\t// symbol used for Negative Infinity\n\t\tnegativeInfinity: \"-Infinity\",\n\t\t// symbol used for Positive Infinity\n\t\tpositiveInfinity: \"Infinity\",\n\t\tpercent: {\n\t\t\t// [negativePattern, positivePattern]\n\t\t\t//   negativePattern: one of \"-n %|-n%|-%n|%-n|%n-|n-%|n%-|-% n|n %-|% n-|% -n|n- %\"\n\t\t\t//   positivePattern: one of \"n %|n%|%n|% n\"\n\t\t\tpattern: [ \"-n %\", \"n %\" ],\n\t\t\t// number of decimal places normally shown\n\t\t\tdecimals: 2,\n\t\t\t// array of numbers indicating the size of each number group.\n\t\t\t// TODO: more detailed description and example\n\t\t\tgroupSizes: [ 3 ],\n\t\t\t// string that separates number groups, as in 1,000,000\n\t\t\t\",\": \",\",\n\t\t\t// string that separates a number from the fractional portion, as in 1.99\n\t\t\t\".\": \".\",\n\t\t\t// symbol used to represent a percentage\n\t\t\tsymbol: \"%\"\n\t\t},\n\t\tcurrency: {\n\t\t\t// [negativePattern, positivePattern]\n\t\t\t//   negativePattern: one of \"($n)|-$n|$-n|$n-|(n$)|-n$|n-$|n$-|-n $|-$ n|n $-|$ n-|$ -n|n- $|($ n)|(n $)\"\n\t\t\t//   positivePattern: one of \"$n|n$|$ n|n $\"\n\t\t\tpattern: [ \"($n)\", \"$n\" ],\n\t\t\t// number of decimal places normally shown\n\t\t\tdecimals: 2,\n\t\t\t// array of numbers indicating the size of each number group.\n\t\t\t// TODO: more detailed description and example\n\t\t\tgroupSizes: [ 3 ],\n\t\t\t// string that separates number groups, as in 1,000,000\n\t\t\t\",\": \",\",\n\t\t\t// string that separates a number from the fractional portion, as in 1.99\n\t\t\t\".\": \".\",\n\t\t\t// symbol used to represent currency\n\t\t\tsymbol: \"$\"\n\t\t}\n\t},\n\t// calendars defines all the possible calendars used by this culture.\n\t// There should be at least one defined with name \"standard\", and is the default\n\t// calendar used by the culture.\n\t// A calendar contains information about how dates are formatted, information about\n\t// the calendar's eras, a standard set of the date formats,\n\t// translations for day and month names, and if the calendar is not based on the Gregorian\n\t// calendar, conversion functions to and from the Gregorian calendar.\n\tcalendars: {\n\t\tstandard: {\n\t\t\t// name that identifies the type of calendar this is\n\t\t\tname: \"Gregorian_USEnglish\",\n\t\t\t// separator of parts of a date (e.g. \"/\" in 11/05/1955)\n\t\t\t\"/\": \"/\",\n\t\t\t// separator of parts of a time (e.g. \":\" in 05:44 PM)\n\t\t\t\":\": \":\",\n\t\t\t// the first day of the week (0 = Sunday, 1 = Monday, etc)\n\t\t\tfirstDay: 0,\n\t\t\tdays: {\n\t\t\t\t// full day names\n\t\t\t\tnames: [ \"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\" ],\n\t\t\t\t// abbreviated day names\n\t\t\t\tnamesAbbr: [ \"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\" ],\n\t\t\t\t// shortest day names\n\t\t\t\tnamesShort: [ \"Su\", \"Mo\", \"Tu\", \"We\", \"Th\", \"Fr\", \"Sa\" ]\n\t\t\t},\n\t\t\tmonths: {\n\t\t\t\t// full month names (13 months for lunar calendards -- 13th month should be \"\" if not lunar)\n\t\t\t\tnames: [ \"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\", \"\" ],\n\t\t\t\t// abbreviated month names\n\t\t\t\tnamesAbbr: [ \"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\", \"\" ]\n\t\t\t},\n\t\t\t// AM and PM designators in one of these forms:\n\t\t\t// The usual view, and the upper and lower case versions\n\t\t\t//   [ standard, lowercase, uppercase ]\n\t\t\t// The culture does not use AM or PM (likely all standard date formats use 24 hour time)\n\t\t\t//   null\n\t\t\tAM: [ \"AM\", \"am\", \"AM\" ],\n\t\t\tPM: [ \"PM\", \"pm\", \"PM\" ],\n\t\t\teras: [\n\t\t\t\t// eras in reverse chronological order.\n\t\t\t\t// name: the name of the era in this culture (e.g. A.D., C.E.)\n\t\t\t\t// start: when the era starts in ticks (gregorian, gmt), null if it is the earliest supported era.\n\t\t\t\t// offset: offset in years from gregorian calendar\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"A.D.\",\n\t\t\t\t\t\"start\": null,\n\t\t\t\t\t\"offset\": 0\n\t\t\t\t}\n\t\t\t],\n\t\t\t// when a two digit year is given, it will never be parsed as a four digit\n\t\t\t// year greater than this year (in the appropriate era for the culture)\n\t\t\t// Set it as a full year (e.g. 2029) or use an offset format starting from\n\t\t\t// the current year: \"+19\" would correspond to 2029 if the current year 2010.\n\t\t\ttwoDigitYearMax: 2029,\n\t\t\t// set of predefined date and time patterns used by the culture\n\t\t\t// these represent the format someone in this culture would expect\n\t\t\t// to see given the portions of the date that are shown.\n\t\t\tpatterns: {\n\t\t\t\t// short date pattern\n\t\t\t\td: \"M/d/yyyy\",\n\t\t\t\t// long date pattern\n\t\t\t\tD: \"dddd, MMMM dd, yyyy\",\n\t\t\t\t// short time pattern\n\t\t\t\tt: \"h:mm tt\",\n\t\t\t\t// long time pattern\n\t\t\t\tT: \"h:mm:ss tt\",\n\t\t\t\t// long date, short time pattern\n\t\t\t\tf: \"dddd, MMMM dd, yyyy h:mm tt\",\n\t\t\t\t// long date, long time pattern\n\t\t\t\tF: \"dddd, MMMM dd, yyyy h:mm:ss tt\",\n\t\t\t\t// month/day pattern\n\t\t\t\tM: \"MMMM dd\",\n\t\t\t\t// month/year pattern\n\t\t\t\tY: \"yyyy MMMM\",\n\t\t\t\t// S is a sortable format that does not vary by culture\n\t\t\t\tS: \"yyyy\\u0027-\\u0027MM\\u0027-\\u0027dd\\u0027T\\u0027HH\\u0027:\\u0027mm\\u0027:\\u0027ss\"\n\t\t\t}\n\t\t\t// optional fields for each calendar:\n\t\t\t/*\n\t\t\tmonthsGenitive:\n\t\t\t\tSame as months but used when the day preceeds the month.\n\t\t\t\tOmit if the culture has no genitive distinction in month names.\n\t\t\t\tFor an explaination of genitive months, see http://blogs.msdn.com/michkap/archive/2004/12/25/332259.aspx\n\t\t\tconvert:\n\t\t\t\tAllows for the support of non-gregorian based calendars. This convert object is used to\n\t\t\t\tto convert a date to and from a gregorian calendar date to handle parsing and formatting.\n\t\t\t\tThe two functions:\n\t\t\t\t\tfromGregorian( date )\n\t\t\t\t\t\tGiven the date as a parameter, return an array with parts [ year, month, day ]\n\t\t\t\t\t\tcorresponding to the non-gregorian based year, month, and day for the calendar.\n\t\t\t\t\ttoGregorian( year, month, day )\n\t\t\t\t\t\tGiven the non-gregorian year, month, and day, return a new Date() object\n\t\t\t\t\t\tset to the corresponding date in the gregorian calendar.\n\t\t\t*/\n\t\t}\n\t},\n\t// For localized strings\n\tmessages: {}\n};\n\nGlobalize.cultures[ \"default\" ].calendar = Globalize.cultures[ \"default\" ].calendars.standard;\n\nGlobalize.cultures.en = Globalize.cultures[ \"default\" ];\n\nGlobalize.cultureSelector = \"en\";\n\n//\n// private variables\n//\n\nregexHex = /^0x[a-f0-9]+$/i;\nregexInfinity = /^[+\\-]?infinity$/i;\nregexParseFloat = /^[+\\-]?\\d*\\.?\\d*(e[+\\-]?\\d+)?$/;\nregexTrim = /^\\s+|\\s+$/g;\n\n//\n// private JavaScript utility functions\n//\n\narrayIndexOf = function( array, item ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( item );\n\t}\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[i] === item ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\treturn -1;\n};\n\nendsWith = function( value, pattern ) {\n\treturn value.substr( value.length - pattern.length ) === pattern;\n};\n\nextend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[0] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\t\ttarget = arguments[1] || {};\n\t\t// skip the boolean and the target\n\t\ti = 2;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction(target) ) {\n\t\ttarget = {};\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\t\t// Only deal with non-null/undefined values\n\t\tif ( (options = arguments[ i ]) != null ) {\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( isObject(copy) || (copyIsArray = isArray(copy)) ) ) {\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && isArray(src) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && isObject(src) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\nisArray = Array.isArray || function( obj ) {\n\treturn Object.prototype.toString.call( obj ) === \"[object Array]\";\n};\n\nisFunction = function( obj ) {\n\treturn Object.prototype.toString.call( obj ) === \"[object Function]\";\n};\n\nisObject = function( obj ) {\n\treturn Object.prototype.toString.call( obj ) === \"[object Object]\";\n};\n\nstartsWith = function( value, pattern ) {\n\treturn value.indexOf( pattern ) === 0;\n};\n\ntrim = function( value ) {\n\treturn ( value + \"\" ).replace( regexTrim, \"\" );\n};\n\ntruncate = function( value ) {\n\tif ( isNaN( value ) ) {\n\t\treturn NaN;\n\t}\n\treturn Math[ value < 0 ? \"ceil\" : \"floor\" ]( value );\n};\n\nzeroPad = function( str, count, left ) {\n\tvar l;\n\tfor ( l = str.length; l < count; l += 1 ) {\n\t\tstr = ( left ? (\"0\" + str) : (str + \"0\") );\n\t}\n\treturn str;\n};\n\n//\n// private Globalization utility functions\n//\n\nappendPreOrPostMatch = function( preMatch, strings ) {\n\t// appends pre- and post- token match strings while removing escaped characters.\n\t// Returns a single quote count which is used to determine if the token occurs\n\t// in a string literal.\n\tvar quoteCount = 0,\n\t\tescaped = false;\n\tfor ( var i = 0, il = preMatch.length; i < il; i++ ) {\n\t\tvar c = preMatch.charAt( i );\n\t\tswitch ( c ) {\n\t\t\tcase \"\\'\":\n\t\t\t\tif ( escaped ) {\n\t\t\t\t\tstrings.push( \"\\'\" );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tquoteCount++;\n\t\t\t\t}\n\t\t\t\tescaped = false;\n\t\t\t\tbreak;\n\t\t\tcase \"\\\\\":\n\t\t\t\tif ( escaped ) {\n\t\t\t\t\tstrings.push( \"\\\\\" );\n\t\t\t\t}\n\t\t\t\tescaped = !escaped;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tstrings.push( c );\n\t\t\t\tescaped = false;\n\t\t\t\tbreak;\n\t\t}\n\t}\n\treturn quoteCount;\n};\n\nexpandFormat = function( cal, format ) {\n\t// expands unspecified or single character date formats into the full pattern.\n\tformat = format || \"F\";\n\tvar pattern,\n\t\tpatterns = cal.patterns,\n\t\tlen = format.length;\n\tif ( len === 1 ) {\n\t\tpattern = patterns[ format ];\n\t\tif ( !pattern ) {\n\t\t\tthrow \"Invalid date format string \\'\" + format + \"\\'.\";\n\t\t}\n\t\tformat = pattern;\n\t}\n\telse if ( len === 2 && format.charAt(0) === \"%\" ) {\n\t\t// %X escape format -- intended as a custom format string that is only one character, not a built-in format.\n\t\tformat = format.charAt( 1 );\n\t}\n\treturn format;\n};\n\nformatDate = function( value, format, culture ) {\n\tvar cal = culture.calendar,\n\t\tconvert = cal.convert,\n\t\tret;\n\n\tif ( !format || !format.length || format === \"i\" ) {\n\t\tif ( culture && culture.name.length ) {\n\t\t\tif ( convert ) {\n\t\t\t\t// non-gregorian calendar, so we cannot use built-in toLocaleString()\n\t\t\t\tret = formatDate( value, cal.patterns.F, culture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tvar eraDate = new Date( value.getTime() ),\n\t\t\t\t\tera = getEra( value, cal.eras );\n\t\t\t\teraDate.setFullYear( getEraYear(value, cal, era) );\n\t\t\t\tret = eraDate.toLocaleString();\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tret = value.toString();\n\t\t}\n\t\treturn ret;\n\t}\n\n\tvar eras = cal.eras,\n\t\tsortable = format === \"s\";\n\tformat = expandFormat( cal, format );\n\n\t// Start with an empty string\n\tret = [];\n\tvar hour,\n\t\tzeros = [ \"0\", \"00\", \"000\" ],\n\t\tfoundDay,\n\t\tcheckedDay,\n\t\tdayPartRegExp = /([^d]|^)(d|dd)([^d]|$)/g,\n\t\tquoteCount = 0,\n\t\ttokenRegExp = getTokenRegExp(),\n\t\tconverted;\n\n\tfunction padZeros( num, c ) {\n\t\tvar r, s = num + \"\";\n\t\tif ( c > 1 && s.length < c ) {\n\t\t\tr = ( zeros[c - 2] + s);\n\t\t\treturn r.substr( r.length - c, c );\n\t\t}\n\t\telse {\n\t\t\tr = s;\n\t\t}\n\t\treturn r;\n\t}\n\n\tfunction hasDay() {\n\t\tif ( foundDay || checkedDay ) {\n\t\t\treturn foundDay;\n\t\t}\n\t\tfoundDay = dayPartRegExp.test( format );\n\t\tcheckedDay = true;\n\t\treturn foundDay;\n\t}\n\n\tfunction getPart( date, part ) {\n\t\tif ( converted ) {\n\t\t\treturn converted[ part ];\n\t\t}\n\t\tswitch ( part ) {\n\t\t\tcase 0:\n\t\t\t\treturn date.getFullYear();\n\t\t\tcase 1:\n\t\t\t\treturn date.getMonth();\n\t\t\tcase 2:\n\t\t\t\treturn date.getDate();\n\t\t\tdefault:\n\t\t\t\tthrow \"Invalid part value \" + part;\n\t\t}\n\t}\n\n\tif ( !sortable && convert ) {\n\t\tconverted = convert.fromGregorian( value );\n\t}\n\n\tfor ( ; ; ) {\n\t\t// Save the current index\n\t\tvar index = tokenRegExp.lastIndex,\n\t\t\t// Look for the next pattern\n\t\t\tar = tokenRegExp.exec( format );\n\n\t\t// Append the text before the pattern (or the end of the string if not found)\n\t\tvar preMatch = format.slice( index, ar ? ar.index : format.length );\n\t\tquoteCount += appendPreOrPostMatch( preMatch, ret );\n\n\t\tif ( !ar ) {\n\t\t\tbreak;\n\t\t}\n\n\t\t// do not replace any matches that occur inside a string literal.\n\t\tif ( quoteCount % 2 ) {\n\t\t\tret.push( ar[0] );\n\t\t\tcontinue;\n\t\t}\n\n\t\tvar current = ar[ 0 ],\n\t\t\tclength = current.length;\n\n\t\tswitch ( current ) {\n\t\t\tcase \"ddd\":\n\t\t\t\t//Day of the week, as a three-letter abbreviation\n\t\t\tcase \"dddd\":\n\t\t\t\t// Day of the week, using the full name\n\t\t\t\tvar names = ( clength === 3 ) ? cal.days.namesAbbr : cal.days.names;\n\t\t\t\tret.push( names[value.getDay()] );\n\t\t\t\tbreak;\n\t\t\tcase \"d\":\n\t\t\t\t// Day of month, without leading zero for single-digit days\n\t\t\tcase \"dd\":\n\t\t\t\t// Day of month, with leading zero for single-digit days\n\t\t\t\tfoundDay = true;\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( getPart(value, 2), clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"MMM\":\n\t\t\t\t// Month, as a three-letter abbreviation\n\t\t\tcase \"MMMM\":\n\t\t\t\t// Month, using the full name\n\t\t\t\tvar part = getPart( value, 1 );\n\t\t\t\tret.push(\n\t\t\t\t\t( cal.monthsGenitive && hasDay() ) ?\n\t\t\t\t\t( cal.monthsGenitive[ clength === 3 ? \"namesAbbr\" : \"names\" ][ part ] ) :\n\t\t\t\t\t( cal.months[ clength === 3 ? \"namesAbbr\" : \"names\" ][ part ] )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"M\":\n\t\t\t\t// Month, as digits, with no leading zero for single-digit months\n\t\t\tcase \"MM\":\n\t\t\t\t// Month, as digits, with leading zero for single-digit months\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( getPart(value, 1) + 1, clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"y\":\n\t\t\t\t// Year, as two digits, but with no leading zero for years less than 10\n\t\t\tcase \"yy\":\n\t\t\t\t// Year, as two digits, with leading zero for years less than 10\n\t\t\tcase \"yyyy\":\n\t\t\t\t// Year represented by four full digits\n\t\t\t\tpart = converted ? converted[ 0 ] : getEraYear( value, cal, getEra(value, eras), sortable );\n\t\t\t\tif ( clength < 4 ) {\n\t\t\t\t\tpart = part % 100;\n\t\t\t\t}\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( part, clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"h\":\n\t\t\t\t// Hours with no leading zero for single-digit hours, using 12-hour clock\n\t\t\tcase \"hh\":\n\t\t\t\t// Hours with leading zero for single-digit hours, using 12-hour clock\n\t\t\t\thour = value.getHours() % 12;\n\t\t\t\tif ( hour === 0 ) hour = 12;\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( hour, clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"H\":\n\t\t\t\t// Hours with no leading zero for single-digit hours, using 24-hour clock\n\t\t\tcase \"HH\":\n\t\t\t\t// Hours with leading zero for single-digit hours, using 24-hour clock\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( value.getHours(), clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"m\":\n\t\t\t\t// Minutes with no leading zero for single-digit minutes\n\t\t\tcase \"mm\":\n\t\t\t\t// Minutes with leading zero for single-digit minutes\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( value.getMinutes(), clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"s\":\n\t\t\t\t// Seconds with no leading zero for single-digit seconds\n\t\t\tcase \"ss\":\n\t\t\t\t// Seconds with leading zero for single-digit seconds\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( value.getSeconds(), clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"t\":\n\t\t\t\t// One character am/pm indicator (\"a\" or \"p\")\n\t\t\tcase \"tt\":\n\t\t\t\t// Multicharacter am/pm indicator\n\t\t\t\tpart = value.getHours() < 12 ? ( cal.AM ? cal.AM[0] : \" \" ) : ( cal.PM ? cal.PM[0] : \" \" );\n\t\t\t\tret.push( clength === 1 ? part.charAt(0) : part );\n\t\t\t\tbreak;\n\t\t\tcase \"f\":\n\t\t\t\t// Deciseconds\n\t\t\tcase \"ff\":\n\t\t\t\t// Centiseconds\n\t\t\tcase \"fff\":\n\t\t\t\t// Milliseconds\n\t\t\t\tret.push(\n\t\t\t\t\tpadZeros( value.getMilliseconds(), 3 ).substr( 0, clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"z\":\n\t\t\t\t// Time zone offset, no leading zero\n\t\t\tcase \"zz\":\n\t\t\t\t// Time zone offset with leading zero\n\t\t\t\thour = value.getTimezoneOffset() / 60;\n\t\t\t\tret.push(\n\t\t\t\t\t( hour <= 0 ? \"+\" : \"-\" ) + padZeros( Math.floor(Math.abs(hour)), clength )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"zzz\":\n\t\t\t\t// Time zone offset with leading zero\n\t\t\t\thour = value.getTimezoneOffset() / 60;\n\t\t\t\tret.push(\n\t\t\t\t\t( hour <= 0 ? \"+\" : \"-\" ) + padZeros( Math.floor(Math.abs(hour)), 2 ) +\n\t\t\t\t\t// Hard coded \":\" separator, rather than using cal.TimeSeparator\n\t\t\t\t\t// Repeated here for consistency, plus \":\" was already assumed in date parsing.\n\t\t\t\t\t\":\" + padZeros( Math.abs(value.getTimezoneOffset() % 60), 2 )\n\t\t\t\t);\n\t\t\t\tbreak;\n\t\t\tcase \"g\":\n\t\t\tcase \"gg\":\n\t\t\t\tif ( cal.eras ) {\n\t\t\t\t\tret.push(\n\t\t\t\t\t\tcal.eras[ getEra(value, eras) ].name\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\tcase \"/\":\n\t\t\tret.push( cal[\"/\"] );\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tthrow \"Invalid date format pattern \\'\" + current + \"\\'.\";\n\t\t}\n\t}\n\treturn ret.join( \"\" );\n};\n\n// formatNumber\n(function() {\n\tvar expandNumber;\n\n\texpandNumber = function( number, precision, formatInfo ) {\n\t\tvar groupSizes = formatInfo.groupSizes,\n\t\t\tcurSize = groupSizes[ 0 ],\n\t\t\tcurGroupIndex = 1,\n\t\t\tfactor = Math.pow( 10, precision ),\n\t\t\trounded = Math.round( number * factor ) / factor;\n\n\t\tif ( !isFinite(rounded) ) {\n\t\t\trounded = number;\n\t\t}\n\t\tnumber = rounded;\n\n\t\tvar numberString = number+\"\",\n\t\t\tright = \"\",\n\t\t\tsplit = numberString.split( /e/i ),\n\t\t\texponent = split.length > 1 ? parseInt( split[1], 10 ) : 0;\n\t\tnumberString = split[ 0 ];\n\t\tsplit = numberString.split( \".\" );\n\t\tnumberString = split[ 0 ];\n\t\tright = split.length > 1 ? split[ 1 ] : \"\";\n\n\t\tvar l;\n\t\tif ( exponent > 0 ) {\n\t\t\tright = zeroPad( right, exponent, false );\n\t\t\tnumberString += right.slice( 0, exponent );\n\t\t\tright = right.substr( exponent );\n\t\t}\n\t\telse if ( exponent < 0 ) {\n\t\t\texponent = -exponent;\n\t\t\tnumberString = zeroPad( numberString, exponent + 1, true );\n\t\t\tright = numberString.slice( -exponent, numberString.length ) + right;\n\t\t\tnumberString = numberString.slice( 0, -exponent );\n\t\t}\n\n\t\tif ( precision > 0 ) {\n\t\t\tright = formatInfo[ \".\" ] +\n\t\t\t\t( (right.length > precision) ? right.slice(0, precision) : zeroPad(right, precision) );\n\t\t}\n\t\telse {\n\t\t\tright = \"\";\n\t\t}\n\n\t\tvar stringIndex = numberString.length - 1,\n\t\t\tsep = formatInfo[ \",\" ],\n\t\t\tret = \"\";\n\n\t\twhile ( stringIndex >= 0 ) {\n\t\t\tif ( curSize === 0 || curSize > stringIndex ) {\n\t\t\t\treturn numberString.slice( 0, stringIndex + 1 ) + ( ret.length ? (sep + ret + right) : right );\n\t\t\t}\n\t\t\tret = numberString.slice( stringIndex - curSize + 1, stringIndex + 1 ) + ( ret.length ? (sep + ret) : \"\" );\n\n\t\t\tstringIndex -= curSize;\n\n\t\t\tif ( curGroupIndex < groupSizes.length ) {\n\t\t\t\tcurSize = groupSizes[ curGroupIndex ];\n\t\t\t\tcurGroupIndex++;\n\t\t\t}\n\t\t}\n\n\t\treturn numberString.slice( 0, stringIndex + 1 ) + sep + ret + right;\n\t};\n\n\tformatNumber = function( value, format, culture ) {\n\t\tif ( !isFinite(value) ) {\n\t\t\tif ( value === Infinity ) {\n\t\t\t\treturn culture.numberFormat.positiveInfinity;\n\t\t\t}\n\t\t\tif ( value === -Infinity ) {\n\t\t\t\treturn culture.numberFormat.negativeInfinity;\n\t\t\t}\n\t\t\treturn culture.numberFormat[ \"NaN\" ];\n\t\t}\n\t\tif ( !format || format === \"i\" ) {\n\t\t\treturn culture.name.length ? value.toLocaleString() : value.toString();\n\t\t}\n\t\tformat = format || \"D\";\n\n\t\tvar nf = culture.numberFormat,\n\t\t\tnumber = Math.abs( value ),\n\t\t\tprecision = -1,\n\t\t\tpattern;\n\t\tif ( format.length > 1 ) precision = parseInt( format.slice(1), 10 );\n\n\t\tvar current = format.charAt( 0 ).toUpperCase(),\n\t\t\tformatInfo;\n\n\t\tswitch ( current ) {\n\t\t\tcase \"D\":\n\t\t\t\tpattern = \"n\";\n\t\t\t\tnumber = truncate( number );\n\t\t\t\tif ( precision !== -1 ) {\n\t\t\t\t\tnumber = zeroPad( \"\" + number, precision, true );\n\t\t\t\t}\n\t\t\t\tif ( value < 0 ) number = \"-\" + number;\n\t\t\t\tbreak;\n\t\t\tcase \"N\":\n\t\t\t\tformatInfo = nf;\n\t\t\t\t/* falls through */\n\t\t\tcase \"C\":\n\t\t\t\tformatInfo = formatInfo || nf.currency;\n\t\t\t\t/* falls through */\n\t\t\tcase \"P\":\n\t\t\t\tformatInfo = formatInfo || nf.percent;\n\t\t\t\tpattern = value < 0 ? formatInfo.pattern[ 0 ] : ( formatInfo.pattern[1] || \"n\" );\n\t\t\t\tif ( precision === -1 ) precision = formatInfo.decimals;\n\t\t\t\tnumber = expandNumber( number * (current === \"P\" ? 100 : 1), precision, formatInfo );\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tthrow \"Bad number format specifier: \" + current;\n\t\t}\n\n\t\tvar patternParts = /n|\\$|-|%/g,\n\t\t\tret = \"\";\n\t\tfor ( ; ; ) {\n\t\t\tvar index = patternParts.lastIndex,\n\t\t\t\tar = patternParts.exec( pattern );\n\n\t\t\tret += pattern.slice( index, ar ? ar.index : pattern.length );\n\n\t\t\tif ( !ar ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tswitch ( ar[0] ) {\n\t\t\t\tcase \"n\":\n\t\t\t\t\tret += number;\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"$\":\n\t\t\t\t\tret += nf.currency.symbol;\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"-\":\n\t\t\t\t\t// don't make 0 negative\n\t\t\t\t\tif ( /[1-9]/.test(number) ) {\n\t\t\t\t\t\tret += nf[ \"-\" ];\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"%\":\n\t\t\t\t\tret += nf.percent.symbol;\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n\n}());\n\ngetTokenRegExp = function() {\n\t// regular expression for matching date and time tokens in format strings.\n\treturn (/\\/|dddd|ddd|dd|d|MMMM|MMM|MM|M|yyyy|yy|y|hh|h|HH|H|mm|m|ss|s|tt|t|fff|ff|f|zzz|zz|z|gg|g/g);\n};\n\ngetEra = function( date, eras ) {\n\tif ( !eras ) return 0;\n\tvar start, ticks = date.getTime();\n\tfor ( var i = 0, l = eras.length; i < l; i++ ) {\n\t\tstart = eras[ i ].start;\n\t\tif ( start === null || ticks >= start ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\treturn 0;\n};\n\ngetEraYear = function( date, cal, era, sortable ) {\n\tvar year = date.getFullYear();\n\tif ( !sortable && cal.eras ) {\n\t\t// convert normal gregorian year to era-shifted gregorian\n\t\t// year by subtracting the era offset\n\t\tyear -= cal.eras[ era ].offset;\n\t}\n\treturn year;\n};\n\n// parseExact\n(function() {\n\tvar expandYear,\n\t\tgetDayIndex,\n\t\tgetMonthIndex,\n\t\tgetParseRegExp,\n\t\toutOfRange,\n\t\ttoUpper,\n\t\ttoUpperArray;\n\n\texpandYear = function( cal, year ) {\n\t\t// expands 2-digit year into 4 digits.\n\t\tif ( year < 100 ) {\n\t\t\tvar now = new Date(),\n\t\t\t\tera = getEra( now ),\n\t\t\t\tcurr = getEraYear( now, cal, era ),\n\t\t\t\ttwoDigitYearMax = cal.twoDigitYearMax;\n\t\t\ttwoDigitYearMax = typeof twoDigitYearMax === \"string\" ? new Date().getFullYear() % 100 + parseInt( twoDigitYearMax, 10 ) : twoDigitYearMax;\n\t\t\tyear += curr - ( curr % 100 );\n\t\t\tif ( year > twoDigitYearMax ) {\n\t\t\t\tyear -= 100;\n\t\t\t}\n\t\t}\n\t\treturn year;\n\t};\n\n\tgetDayIndex = function\t( cal, value, abbr ) {\n\t\tvar ret,\n\t\t\tdays = cal.days,\n\t\t\tupperDays = cal._upperDays;\n\t\tif ( !upperDays ) {\n\t\t\tcal._upperDays = upperDays = [\n\t\t\t\ttoUpperArray( days.names ),\n\t\t\t\ttoUpperArray( days.namesAbbr ),\n\t\t\t\ttoUpperArray( days.namesShort )\n\t\t\t];\n\t\t}\n\t\tvalue = toUpper( value );\n\t\tif ( abbr ) {\n\t\t\tret = arrayIndexOf( upperDays[1], value );\n\t\t\tif ( ret === -1 ) {\n\t\t\t\tret = arrayIndexOf( upperDays[2], value );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tret = arrayIndexOf( upperDays[0], value );\n\t\t}\n\t\treturn ret;\n\t};\n\n\tgetMonthIndex = function( cal, value, abbr ) {\n\t\tvar months = cal.months,\n\t\t\tmonthsGen = cal.monthsGenitive || cal.months,\n\t\t\tupperMonths = cal._upperMonths,\n\t\t\tupperMonthsGen = cal._upperMonthsGen;\n\t\tif ( !upperMonths ) {\n\t\t\tcal._upperMonths = upperMonths = [\n\t\t\t\ttoUpperArray( months.names ),\n\t\t\t\ttoUpperArray( months.namesAbbr )\n\t\t\t];\n\t\t\tcal._upperMonthsGen = upperMonthsGen = [\n\t\t\t\ttoUpperArray( monthsGen.names ),\n\t\t\t\ttoUpperArray( monthsGen.namesAbbr )\n\t\t\t];\n\t\t}\n\t\tvalue = toUpper( value );\n\t\tvar i = arrayIndexOf( abbr ? upperMonths[1] : upperMonths[0], value );\n\t\tif ( i < 0 ) {\n\t\t\ti = arrayIndexOf( abbr ? upperMonthsGen[1] : upperMonthsGen[0], value );\n\t\t}\n\t\treturn i;\n\t};\n\n\tgetParseRegExp = function( cal, format ) {\n\t\t// converts a format string into a regular expression with groups that\n\t\t// can be used to extract date fields from a date string.\n\t\t// check for a cached parse regex.\n\t\tvar re = cal._parseRegExp;\n\t\tif ( !re ) {\n\t\t\tcal._parseRegExp = re = {};\n\t\t}\n\t\telse {\n\t\t\tvar reFormat = re[ format ];\n\t\t\tif ( reFormat ) {\n\t\t\t\treturn reFormat;\n\t\t\t}\n\t\t}\n\n\t\t// expand single digit formats, then escape regular expression characters.\n\t\tvar expFormat = expandFormat( cal, format ).replace( /([\\^\\$\\.\\*\\+\\?\\|\\[\\]\\(\\)\\{\\}])/g, \"\\\\\\\\$1\" ),\n\t\t\tregexp = [ \"^\" ],\n\t\t\tgroups = [],\n\t\t\tindex = 0,\n\t\t\tquoteCount = 0,\n\t\t\ttokenRegExp = getTokenRegExp(),\n\t\t\tmatch;\n\n\t\t// iterate through each date token found.\n\t\twhile ( (match = tokenRegExp.exec(expFormat)) !== null ) {\n\t\t\tvar preMatch = expFormat.slice( index, match.index );\n\t\t\tindex = tokenRegExp.lastIndex;\n\n\t\t\t// don't replace any matches that occur inside a string literal.\n\t\t\tquoteCount += appendPreOrPostMatch( preMatch, regexp );\n\t\t\tif ( quoteCount % 2 ) {\n\t\t\t\tregexp.push( match[0] );\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// add a regex group for the token.\n\t\t\tvar m = match[ 0 ],\n\t\t\t\tlen = m.length,\n\t\t\t\tadd;\n\t\t\tswitch ( m ) {\n\t\t\t\tcase \"dddd\": case \"ddd\":\n\t\t\t\tcase \"MMMM\": case \"MMM\":\n\t\t\t\tcase \"gg\": case \"g\":\n\t\t\t\t\tadd = \"(\\\\D+)\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"tt\": case \"t\":\n\t\t\t\t\tadd = \"(\\\\D*)\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"yyyy\":\n\t\t\t\tcase \"fff\":\n\t\t\t\tcase \"ff\":\n\t\t\t\tcase \"f\":\n\t\t\t\t\tadd = \"(\\\\d{\" + len + \"})\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"dd\": case \"d\":\n\t\t\t\tcase \"MM\": case \"M\":\n\t\t\t\tcase \"yy\": case \"y\":\n\t\t\t\tcase \"HH\": case \"H\":\n\t\t\t\tcase \"hh\": case \"h\":\n\t\t\t\tcase \"mm\": case \"m\":\n\t\t\t\tcase \"ss\": case \"s\":\n\t\t\t\t\tadd = \"(\\\\d\\\\d?)\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"zzz\":\n\t\t\t\t\tadd = \"([+-]?\\\\d\\\\d?:\\\\d{2})\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"zz\": case \"z\":\n\t\t\t\t\tadd = \"([+-]?\\\\d\\\\d?)\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"/\":\n\t\t\t\t\tadd = \"(\\\\/)\";\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tthrow \"Invalid date format pattern \\'\" + m + \"\\'.\";\n\t\t\t}\n\t\t\tif ( add ) {\n\t\t\t\tregexp.push( add );\n\t\t\t}\n\t\t\tgroups.push( match[0] );\n\t\t}\n\t\tappendPreOrPostMatch( expFormat.slice(index), regexp );\n\t\tregexp.push( \"$\" );\n\n\t\t// allow whitespace to differ when matching formats.\n\t\tvar regexpStr = regexp.join( \"\" ).replace( /\\s+/g, \"\\\\s+\" ),\n\t\t\tparseRegExp = { \"regExp\": regexpStr, \"groups\": groups };\n\n\t\t// cache the regex for this format.\n\t\treturn re[ format ] = parseRegExp;\n\t};\n\n\toutOfRange = function( value, low, high ) {\n\t\treturn value < low || value > high;\n\t};\n\n\ttoUpper = function( value ) {\n\t\t// \"he-IL\" has non-breaking space in weekday names.\n\t\treturn value.split( \"\\u00A0\" ).join( \" \" ).toUpperCase();\n\t};\n\n\ttoUpperArray = function( arr ) {\n\t\tvar results = [];\n\t\tfor ( var i = 0, l = arr.length; i < l; i++ ) {\n\t\t\tresults[ i ] = toUpper( arr[i] );\n\t\t}\n\t\treturn results;\n\t};\n\n\tparseExact = function( value, format, culture ) {\n\t\t// try to parse the date string by matching against the format string\n\t\t// while using the specified culture for date field names.\n\t\tvalue = trim( value );\n\t\tvar cal = culture.calendar,\n\t\t\t// convert date formats into regular expressions with groupings.\n\t\t\t// use the regexp to determine the input format and extract the date fields.\n\t\t\tparseInfo = getParseRegExp( cal, format ),\n\t\t\tmatch = new RegExp( parseInfo.regExp ).exec( value );\n\t\tif ( match === null ) {\n\t\t\treturn null;\n\t\t}\n\t\t// found a date format that matches the input.\n\t\tvar groups = parseInfo.groups,\n\t\t\tera = null, year = null, month = null, date = null, weekDay = null,\n\t\t\thour = 0, hourOffset, min = 0, sec = 0, msec = 0, tzMinOffset = null,\n\t\t\tpmHour = false;\n\t\t// iterate the format groups to extract and set the date fields.\n\t\tfor ( var j = 0, jl = groups.length; j < jl; j++ ) {\n\t\t\tvar matchGroup = match[ j + 1 ];\n\t\t\tif ( matchGroup ) {\n\t\t\t\tvar current = groups[ j ],\n\t\t\t\t\tclength = current.length,\n\t\t\t\t\tmatchInt = parseInt( matchGroup, 10 );\n\t\t\t\tswitch ( current ) {\n\t\t\t\t\tcase \"dd\": case \"d\":\n\t\t\t\t\t\t// Day of month.\n\t\t\t\t\t\tdate = matchInt;\n\t\t\t\t\t\t// check that date is generally in valid range, also checking overflow below.\n\t\t\t\t\t\tif ( outOfRange(date, 1, 31) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"MMM\": case \"MMMM\":\n\t\t\t\t\t\tmonth = getMonthIndex( cal, matchGroup, clength === 3 );\n\t\t\t\t\t\tif ( outOfRange(month, 0, 11) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"M\": case \"MM\":\n\t\t\t\t\t\t// Month.\n\t\t\t\t\t\tmonth = matchInt - 1;\n\t\t\t\t\t\tif ( outOfRange(month, 0, 11) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"y\": case \"yy\":\n\t\t\t\t\tcase \"yyyy\":\n\t\t\t\t\t\tyear = clength < 4 ? expandYear( cal, matchInt ) : matchInt;\n\t\t\t\t\t\tif ( outOfRange(year, 0, 9999) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"h\": case \"hh\":\n\t\t\t\t\t\t// Hours (12-hour clock).\n\t\t\t\t\t\thour = matchInt;\n\t\t\t\t\t\tif ( hour === 12 ) hour = 0;\n\t\t\t\t\t\tif ( outOfRange(hour, 0, 11) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"H\": case \"HH\":\n\t\t\t\t\t\t// Hours (24-hour clock).\n\t\t\t\t\t\thour = matchInt;\n\t\t\t\t\t\tif ( outOfRange(hour, 0, 23) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"m\": case \"mm\":\n\t\t\t\t\t\t// Minutes.\n\t\t\t\t\t\tmin = matchInt;\n\t\t\t\t\t\tif ( outOfRange(min, 0, 59) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"s\": case \"ss\":\n\t\t\t\t\t\t// Seconds.\n\t\t\t\t\t\tsec = matchInt;\n\t\t\t\t\t\tif ( outOfRange(sec, 0, 59) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"tt\": case \"t\":\n\t\t\t\t\t\t// AM/PM designator.\n\t\t\t\t\t\t// see if it is standard, upper, or lower case PM. If not, ensure it is at least one of\n\t\t\t\t\t\t// the AM tokens. If not, fail the parse for this format.\n\t\t\t\t\t\tpmHour = cal.PM && ( matchGroup === cal.PM[0] || matchGroup === cal.PM[1] || matchGroup === cal.PM[2] );\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t!pmHour && (\n\t\t\t\t\t\t\t\t!cal.AM || ( matchGroup !== cal.AM[0] && matchGroup !== cal.AM[1] && matchGroup !== cal.AM[2] )\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"f\":\n\t\t\t\t\t\t// Deciseconds.\n\t\t\t\t\tcase \"ff\":\n\t\t\t\t\t\t// Centiseconds.\n\t\t\t\t\tcase \"fff\":\n\t\t\t\t\t\t// Milliseconds.\n\t\t\t\t\t\tmsec = matchInt * Math.pow( 10, 3 - clength );\n\t\t\t\t\t\tif ( outOfRange(msec, 0, 999) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"ddd\":\n\t\t\t\t\t\t// Day of week.\n\t\t\t\t\tcase \"dddd\":\n\t\t\t\t\t\t// Day of week.\n\t\t\t\t\t\tweekDay = getDayIndex( cal, matchGroup, clength === 3 );\n\t\t\t\t\t\tif ( outOfRange(weekDay, 0, 6) ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"zzz\":\n\t\t\t\t\t\t// Time zone offset in +/- hours:min.\n\t\t\t\t\t\tvar offsets = matchGroup.split( /:/ );\n\t\t\t\t\t\tif ( offsets.length !== 2 ) return null;\n\t\t\t\t\t\thourOffset = parseInt( offsets[0], 10 );\n\t\t\t\t\t\tif ( outOfRange(hourOffset, -12, 13) ) return null;\n\t\t\t\t\t\tvar minOffset = parseInt( offsets[1], 10 );\n\t\t\t\t\t\tif ( outOfRange(minOffset, 0, 59) ) return null;\n\t\t\t\t\t\ttzMinOffset = ( hourOffset * 60 ) + ( startsWith(matchGroup, \"-\") ? -minOffset : minOffset );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"z\": case \"zz\":\n\t\t\t\t\t\t// Time zone offset in +/- hours.\n\t\t\t\t\t\thourOffset = matchInt;\n\t\t\t\t\t\tif ( outOfRange(hourOffset, -12, 13) ) return null;\n\t\t\t\t\t\ttzMinOffset = hourOffset * 60;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"g\": case \"gg\":\n\t\t\t\t\t\tvar eraName = matchGroup;\n\t\t\t\t\t\tif ( !eraName || !cal.eras ) return null;\n\t\t\t\t\t\teraName = trim( eraName.toLowerCase() );\n\t\t\t\t\t\tfor ( var i = 0, l = cal.eras.length; i < l; i++ ) {\n\t\t\t\t\t\t\tif ( eraName === cal.eras[i].name.toLowerCase() ) {\n\t\t\t\t\t\t\t\tera = i;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// could not find an era with that name\n\t\t\t\t\t\tif ( era === null ) return null;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tvar result = new Date(), defaultYear, convert = cal.convert;\n\t\tdefaultYear = convert ? convert.fromGregorian( result )[ 0 ] : result.getFullYear();\n\t\tif ( year === null ) {\n\t\t\tyear = defaultYear;\n\t\t}\n\t\telse if ( cal.eras ) {\n\t\t\t// year must be shifted to normal gregorian year\n\t\t\t// but not if year was not specified, its already normal gregorian\n\t\t\t// per the main if clause above.\n\t\t\tyear += cal.eras[( era || 0 )].offset;\n\t\t}\n\t\t// set default day and month to 1 and January, so if unspecified, these are the defaults\n\t\t// instead of the current day/month.\n\t\tif ( month === null ) {\n\t\t\tmonth = 0;\n\t\t}\n\t\tif ( date === null ) {\n\t\t\tdate = 1;\n\t\t}\n\t\t// now have year, month, and date, but in the culture's calendar.\n\t\t// convert to gregorian if necessary\n\t\tif ( convert ) {\n\t\t\tresult = convert.toGregorian( year, month, date );\n\t\t\t// conversion failed, must be an invalid match\n\t\t\tif ( result === null ) return null;\n\t\t}\n\t\telse {\n\t\t\t// have to set year, month and date together to avoid overflow based on current date.\n\t\t\tresult.setFullYear( year, month, date );\n\t\t\t// check to see if date overflowed for specified month (only checked 1-31 above).\n\t\t\tif ( result.getDate() !== date ) return null;\n\t\t\t// invalid day of week.\n\t\t\tif ( weekDay !== null && result.getDay() !== weekDay ) {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t}\n\t\t// if pm designator token was found make sure the hours fit the 24-hour clock.\n\t\tif ( pmHour && hour < 12 ) {\n\t\t\thour += 12;\n\t\t}\n\t\tresult.setHours( hour, min, sec, msec );\n\t\tif ( tzMinOffset !== null ) {\n\t\t\t// adjust timezone to utc before applying local offset.\n\t\t\tvar adjustedMin = result.getMinutes() - ( tzMinOffset + result.getTimezoneOffset() );\n\t\t\t// Safari limits hours and minutes to the range of -127 to 127.  We need to use setHours\n\t\t\t// to ensure both these fields will not exceed this range.\tadjustedMin will range\n\t\t\t// somewhere between -1440 and 1500, so we only need to split this into hours.\n\t\t\tresult.setHours( result.getHours() + parseInt(adjustedMin / 60, 10), adjustedMin % 60 );\n\t\t}\n\t\treturn result;\n\t};\n}());\n\nparseNegativePattern = function( value, nf, negativePattern ) {\n\tvar neg = nf[ \"-\" ],\n\t\tpos = nf[ \"+\" ],\n\t\tret;\n\tswitch ( negativePattern ) {\n\t\tcase \"n -\":\n\t\t\tneg = \" \" + neg;\n\t\t\tpos = \" \" + pos;\n\t\t\t/* falls through */\n\t\tcase \"n-\":\n\t\t\tif ( endsWith(value, neg) ) {\n\t\t\t\tret = [ \"-\", value.substr(0, value.length - neg.length) ];\n\t\t\t}\n\t\t\telse if ( endsWith(value, pos) ) {\n\t\t\t\tret = [ \"+\", value.substr(0, value.length - pos.length) ];\n\t\t\t}\n\t\t\tbreak;\n\t\tcase \"- n\":\n\t\t\tneg += \" \";\n\t\t\tpos += \" \";\n\t\t\t/* falls through */\n\t\tcase \"-n\":\n\t\t\tif ( startsWith(value, neg) ) {\n\t\t\t\tret = [ \"-\", value.substr(neg.length) ];\n\t\t\t}\n\t\t\telse if ( startsWith(value, pos) ) {\n\t\t\t\tret = [ \"+\", value.substr(pos.length) ];\n\t\t\t}\n\t\t\tbreak;\n\t\tcase \"(n)\":\n\t\t\tif ( startsWith(value, \"(\") && endsWith(value, \")\") ) {\n\t\t\t\tret = [ \"-\", value.substr(1, value.length - 2) ];\n\t\t\t}\n\t\t\tbreak;\n\t}\n\treturn ret || [ \"\", value ];\n};\n\n//\n// public instance functions\n//\n\nGlobalize.prototype.findClosestCulture = function( cultureSelector ) {\n\treturn Globalize.findClosestCulture.call( this, cultureSelector );\n};\n\nGlobalize.prototype.format = function( value, format, cultureSelector ) {\n\treturn Globalize.format.call( this, value, format, cultureSelector );\n};\n\nGlobalize.prototype.localize = function( key, cultureSelector ) {\n\treturn Globalize.localize.call( this, key, cultureSelector );\n};\n\nGlobalize.prototype.parseInt = function( value, radix, cultureSelector ) {\n\treturn Globalize.parseInt.call( this, value, radix, cultureSelector );\n};\n\nGlobalize.prototype.parseFloat = function( value, radix, cultureSelector ) {\n\treturn Globalize.parseFloat.call( this, value, radix, cultureSelector );\n};\n\nGlobalize.prototype.culture = function( cultureSelector ) {\n\treturn Globalize.culture.call( this, cultureSelector );\n};\n\n//\n// public singleton functions\n//\n\nGlobalize.addCultureInfo = function( cultureName, baseCultureName, info ) {\n\n\tvar base = {},\n\t\tisNew = false;\n\n\tif ( typeof cultureName !== \"string\" ) {\n\t\t// cultureName argument is optional string. If not specified, assume info is first\n\t\t// and only argument. Specified info deep-extends current culture.\n\t\tinfo = cultureName;\n\t\tcultureName = this.culture().name;\n\t\tbase = this.cultures[ cultureName ];\n\t} else if ( typeof baseCultureName !== \"string\" ) {\n\t\t// baseCultureName argument is optional string. If not specified, assume info is second\n\t\t// argument. Specified info deep-extends specified culture.\n\t\t// If specified culture does not exist, create by deep-extending default\n\t\tinfo = baseCultureName;\n\t\tisNew = ( this.cultures[ cultureName ] == null );\n\t\tbase = this.cultures[ cultureName ] || this.cultures[ \"default\" ];\n\t} else {\n\t\t// cultureName and baseCultureName specified. Assume a new culture is being created\n\t\t// by deep-extending an specified base culture\n\t\tisNew = true;\n\t\tbase = this.cultures[ baseCultureName ];\n\t}\n\n\tthis.cultures[ cultureName ] = extend(true, {},\n\t\tbase,\n\t\tinfo\n\t);\n\t// Make the standard calendar the current culture if it's a new culture\n\tif ( isNew ) {\n\t\tthis.cultures[ cultureName ].calendar = this.cultures[ cultureName ].calendars.standard;\n\t}\n};\n\nGlobalize.findClosestCulture = function( name ) {\n\tvar match;\n\tif ( !name ) {\n\t\treturn this.findClosestCulture( this.cultureSelector ) || this.cultures[ \"default\" ];\n\t}\n\tif ( typeof name === \"string\" ) {\n\t\tname = name.split( \",\" );\n\t}\n\tif ( isArray(name) ) {\n\t\tvar lang,\n\t\t\tcultures = this.cultures,\n\t\t\tlist = name,\n\t\t\ti, l = list.length,\n\t\t\tprioritized = [];\n\t\tfor ( i = 0; i < l; i++ ) {\n\t\t\tname = trim( list[i] );\n\t\t\tvar pri, parts = name.split( \";\" );\n\t\t\tlang = trim( parts[0] );\n\t\t\tif ( parts.length === 1 ) {\n\t\t\t\tpri = 1;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tname = trim( parts[1] );\n\t\t\t\tif ( name.indexOf(\"q=\") === 0 ) {\n\t\t\t\t\tname = name.substr( 2 );\n\t\t\t\t\tpri = parseFloat( name );\n\t\t\t\t\tpri = isNaN( pri ) ? 0 : pri;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpri = 1;\n\t\t\t\t}\n\t\t\t}\n\t\t\tprioritized.push({ lang: lang, pri: pri });\n\t\t}\n\t\tprioritized.sort(function( a, b ) {\n\t\t\tif ( a.pri < b.pri ) {\n\t\t\t\treturn 1;\n\t\t\t} else if ( a.pri > b.pri ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\treturn 0;\n\t\t});\n\t\t// exact match\n\t\tfor ( i = 0; i < l; i++ ) {\n\t\t\tlang = prioritized[ i ].lang;\n\t\t\tmatch = cultures[ lang ];\n\t\t\tif ( match ) {\n\t\t\t\treturn match;\n\t\t\t}\n\t\t}\n\n\t\t// neutral language match\n\t\tfor ( i = 0; i < l; i++ ) {\n\t\t\tlang = prioritized[ i ].lang;\n\t\t\tdo {\n\t\t\t\tvar index = lang.lastIndexOf( \"-\" );\n\t\t\t\tif ( index === -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\t// strip off the last part. e.g. en-US => en\n\t\t\t\tlang = lang.substr( 0, index );\n\t\t\t\tmatch = cultures[ lang ];\n\t\t\t\tif ( match ) {\n\t\t\t\t\treturn match;\n\t\t\t\t}\n\t\t\t}\n\t\t\twhile ( 1 );\n\t\t}\n\n\t\t// last resort: match first culture using that language\n\t\tfor ( i = 0; i < l; i++ ) {\n\t\t\tlang = prioritized[ i ].lang;\n\t\t\tfor ( var cultureKey in cultures ) {\n\t\t\t\tvar culture = cultures[ cultureKey ];\n\t\t\t\tif ( culture.language == lang ) {\n\t\t\t\t\treturn culture;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\telse if ( typeof name === \"object\" ) {\n\t\treturn name;\n\t}\n\treturn match || null;\n};\n\nGlobalize.format = function( value, format, cultureSelector ) {\n\tvar culture = this.findClosestCulture( cultureSelector );\n\tif ( value instanceof Date ) {\n\t\tvalue = formatDate( value, format, culture );\n\t}\n\telse if ( typeof value === \"number\" ) {\n\t\tvalue = formatNumber( value, format, culture );\n\t}\n\treturn value;\n};\n\nGlobalize.localize = function( key, cultureSelector ) {\n\treturn this.findClosestCulture( cultureSelector ).messages[ key ] ||\n\t\tthis.cultures[ \"default\" ].messages[ key ];\n};\n\nGlobalize.parseDate = function( value, formats, culture ) {\n\tculture = this.findClosestCulture( culture );\n\n\tvar date, prop, patterns;\n\tif ( formats ) {\n\t\tif ( typeof formats === \"string\" ) {\n\t\t\tformats = [ formats ];\n\t\t}\n\t\tif ( formats.length ) {\n\t\t\tfor ( var i = 0, l = formats.length; i < l; i++ ) {\n\t\t\t\tvar format = formats[ i ];\n\t\t\t\tif ( format ) {\n\t\t\t\t\tdate = parseExact( value, format, culture );\n\t\t\t\t\tif ( date ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t} else {\n\t\tpatterns = culture.calendar.patterns;\n\t\tfor ( prop in patterns ) {\n\t\t\tdate = parseExact( value, patterns[prop], culture );\n\t\t\tif ( date ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn date || null;\n};\n\nGlobalize.parseInt = function( value, radix, cultureSelector ) {\n\treturn truncate( Globalize.parseFloat(value, radix, cultureSelector) );\n};\n\nGlobalize.parseFloat = function( value, radix, cultureSelector ) {\n\t// radix argument is optional\n\tif ( typeof radix !== \"number\" ) {\n\t\tcultureSelector = radix;\n\t\tradix = 10;\n\t}\n\n\tvar culture = this.findClosestCulture( cultureSelector );\n\tvar ret = NaN,\n\t\tnf = culture.numberFormat;\n\n\tif ( value.indexOf(culture.numberFormat.currency.symbol) > -1 ) {\n\t\t// remove currency symbol\n\t\tvalue = value.replace( culture.numberFormat.currency.symbol, \"\" );\n\t\t// replace decimal seperator\n\t\tvalue = value.replace( culture.numberFormat.currency[\".\"], culture.numberFormat[\".\"] );\n\t}\n\n\t// trim leading and trailing whitespace\n\tvalue = trim( value );\n\n\t// allow infinity or hexidecimal\n\tif ( regexInfinity.test(value) ) {\n\t\tret = parseFloat( value );\n\t}\n\telse if ( !radix && regexHex.test(value) ) {\n\t\tret = parseInt( value, 16 );\n\t}\n\telse {\n\n\t\t// determine sign and number\n\t\tvar signInfo = parseNegativePattern( value, nf, nf.pattern[0] ),\n\t\t\tsign = signInfo[ 0 ],\n\t\t\tnum = signInfo[ 1 ];\n\n\t\t// #44 - try parsing as \"(n)\"\n\t\tif ( sign === \"\" && nf.pattern[0] !== \"(n)\" ) {\n\t\t\tsignInfo = parseNegativePattern( value, nf, \"(n)\" );\n\t\t\tsign = signInfo[ 0 ];\n\t\t\tnum = signInfo[ 1 ];\n\t\t}\n\n\t\t// try parsing as \"-n\"\n\t\tif ( sign === \"\" && nf.pattern[0] !== \"-n\" ) {\n\t\t\tsignInfo = parseNegativePattern( value, nf, \"-n\" );\n\t\t\tsign = signInfo[ 0 ];\n\t\t\tnum = signInfo[ 1 ];\n\t\t}\n\n\t\tsign = sign || \"+\";\n\n\t\t// determine exponent and number\n\t\tvar exponent,\n\t\t\tintAndFraction,\n\t\t\texponentPos = num.indexOf( \"e\" );\n\t\tif ( exponentPos < 0 ) exponentPos = num.indexOf( \"E\" );\n\t\tif ( exponentPos < 0 ) {\n\t\t\tintAndFraction = num;\n\t\t\texponent = null;\n\t\t}\n\t\telse {\n\t\t\tintAndFraction = num.substr( 0, exponentPos );\n\t\t\texponent = num.substr( exponentPos + 1 );\n\t\t}\n\t\t// determine decimal position\n\t\tvar integer,\n\t\t\tfraction,\n\t\t\tdecSep = nf[ \".\" ],\n\t\t\tdecimalPos = intAndFraction.indexOf( decSep );\n\t\tif ( decimalPos < 0 ) {\n\t\t\tinteger = intAndFraction;\n\t\t\tfraction = null;\n\t\t}\n\t\telse {\n\t\t\tinteger = intAndFraction.substr( 0, decimalPos );\n\t\t\tfraction = intAndFraction.substr( decimalPos + decSep.length );\n\t\t}\n\t\t// handle groups (e.g. 1,000,000)\n\t\tvar groupSep = nf[ \",\" ];\n\t\tinteger = integer.split( groupSep ).join( \"\" );\n\t\tvar altGroupSep = groupSep.replace( /\\u00A0/g, \" \" );\n\t\tif ( groupSep !== altGroupSep ) {\n\t\t\tinteger = integer.split( altGroupSep ).join( \"\" );\n\t\t}\n\t\t// build a natively parsable number string\n\t\tvar p = sign + integer;\n\t\tif ( fraction !== null ) {\n\t\t\tp += \".\" + fraction;\n\t\t}\n\t\tif ( exponent !== null ) {\n\t\t\t// exponent itself may have a number patternd\n\t\t\tvar expSignInfo = parseNegativePattern( exponent, nf, \"-n\" );\n\t\t\tp += \"e\" + ( expSignInfo[0] || \"+\" ) + expSignInfo[ 1 ];\n\t\t}\n\t\tif ( regexParseFloat.test(p) ) {\n\t\t\tret = parseFloat( p );\n\t\t}\n\t}\n\treturn ret;\n};\n\nGlobalize.culture = function( cultureSelector ) {\n\t// setter\n\tif ( typeof cultureSelector !== \"undefined\" ) {\n\t\tthis.cultureSelector = cultureSelector;\n\t}\n\t// getter\n\treturn this.findClosestCulture( cultureSelector ) || this.cultures[ \"default\" ];\n};\n\n}( this ));\n"
  },
  {
    "path": "test/test.js",
    "content": "$(document).ready(function () {\n\tmodule('Globals');\n\n\ttest(\"$.keyset\", function () {\n\t\tvar keys = $.keyset({ x : 1, y : true, test : 'testing' });\n\t\tdeepEqual(keys, ['x', 'y', 'test' ]);\n\t});\n\n\ttest(\"$.withKeys\", function () {\n\t\tvar obj = {\n\t\t\tx : 1,\n\t\t\ty : true,\n\t\t\ttest : 'testing'\n\t\t},\n\t\t\tresult = $.withKeys(obj, [ 'y', 'test' ]);\n\t\tdeepEqual(result, { y : true, test : 'testing' });\n\t});\n\n\ttest(\"$.withoutKeys\", function () {\n\t\tvar obj = {\n\t\t\tx : 1,\n\t\t\ty : true,\n\t\t\ttest : 'testing'\n\t\t},\n\t\t\tresult = $.withoutKeys(obj, ['y']);\n\t\tdeepEqual(result, { x : 1, test : 'testing' });\n\t});\n\n\tmodule('Plugin')\n\n\ttest(\"Call method\", 3, function () {\n\t\t$.dform.methods.test = function (name, age) {\n\t\t\tequal(name, 'Tester');\n\t\t\tequal(age, 42);\n\t\t\tok(this.is('div'), 'This referenced properly');\n\t\t};\n\t\t$('<div>').dform('test', 'Tester', 42);\n\t});\n\n\ttest(\"Run type subscriber\", function () {\n\t\tvar def = {\n\t\t\ttype : 'div'\n\t\t},\n\t\t\tcreated = $('<form>').dform(def).find('div');\n\t\tequal(created.attr('class'), $.dform.options.prefix + 'div', 'Class added');\n\t});\n\n\ttest(\"Add attributes\", function () {\n\t\tvar def = {\n\t\t\t'type' : 'div',\n\t\t\t'id' : 'test-id',\n\t\t\t'data-test' : 'Test data attribute'\n\t\t},\n\t\t\tcreated = $('<form>').dform(def).find('div');\n\t\tequal(created.attr('id'), 'test-id', 'ID added');\n\t\tequal(created.data('test'), 'Test data attribute', 'Added test data attribute');\n\t});\n\n\ttest(\"Ajax\", 3, function() {\n\t\tstop();\n\t\t$('<div>').dform('test.json', function(data) {\n\t\t\tequal(data.html, 'The test', 'Data passed to success callback');\n\t\t\tequal(this.html(), 'The test', 'Form got created');\n\t\t\t$('<div>').dform('missing.json', function() {}, function() {\n\t\t\t\tok(true, 'Error handler called');\n\t\t\t\tstart();\n\t\t\t});\n\t\t});\n\t})\n});\n"
  },
  {
    "path": "test/test.json",
    "content": "{\n  \"type\" : \"div\",\n  \"html\" : \"The test\"\n}"
  },
  {
    "path": "test/test_extensions.js",
    "content": "$(document).ready(function () {\n\tmodule(\"Extensions\");\n\n\ttest(\"Globalize\", function () {\n\t\tGlobalize.culture('de');\n\t\tGlobalize.addCultureInfo( \"de\", {\n\t\t\tmessages: {\n\t\t\t\t\"stuff\" : {\n\t\t\t\t\t\"thing\" : \"Dingens\",\n\t\t\t\t\t\"options\" : {\n\t\t\t\t\t\t\"de\" : \"Deutschland\",\n\t\t\t\t\t\t\"ca\" : \"Kanada\",\n\t\t\t\t\t\t\"fr\" : \"Frankreich\"\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"hello\" : \"Hallo Welt\"\n\t\t\t}\n\t\t});\n\n\t\tvar div = $('<div>').dform({\n\t\t\thtml : [\n\t\t\t\t{\n\t\t\t\t\t'type' : 'div',\n\t\t\t\t\t'class' : 'simple',\n\t\t\t\t\t'html' : 'Passed, not translated'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t'type' : 'div',\n\t\t\t\t\t'class' : 'hello',\n\t\t\t\t\t'html' : 'hello'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t'type' : 'div',\n\t\t\t\t\t'class' : 'nested',\n\t\t\t\t\t'html' : 'stuff.thing'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t'type' : 'div',\n\t\t\t\t\t'class' : 'nestedsimple',\n\t\t\t\t\t'html' : 'stuff.thingers.moo'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t'type' : 'select',\n\t\t\t\t\t'class' : 'options',\n\t\t\t\t\t'options' : 'stuff.options'\n\t\t\t\t}\n\t\t\t]\n\t\t});\n\n\t\tequal(div.find('.simple').html(), 'Passed, not translated', 'Passed through when translation does not exist');\n\t\tequal(div.find('.hello').html(), 'Hallo Welt', 'Simple translated HTML set');\n\t\tequal(div.find('.nested').html(), 'Dingens', 'Nested key got translated');\n\t\tequal(div.find('.nestedsimple').html(), 'stuff.thingers.moo', 'Nested key does not exist');\n\t\tequal(div.find('.options option[value=\"de\"]').html(), 'Deutschland', 'First option set from translation');\n\t\tequal(div.find('.options option[value=\"ca\"]').html(), 'Kanada', 'Second option set from translation');\n\t});\n});\n"
  },
  {
    "path": "test/test_jqueryui.js",
    "content": "$(document).ready(function () {\n\tmodule(\"jQueryUI\");\n\n\ttest('Progressbar', 2, function() {\n\t\tvar div = $('<div>').dform({\n\t\t\t'type' : 'progressbar',\n\t\t\t'class' : 'bar',\n\t\t\t'value' : 50\n\t\t}).find('.bar');\n\t\tok(div.hasClass('ui-progressbar'), 'jQueryUI progressbar initialized');\n\t\tequal(div.find('.ui-progressbar-value').css('width'), '50%', 'Progressbar value set correctly');\n\t});\n\n\ttest('Slider', 2, function() {\n\t\tvar div = $('<div>').dform({\n\t\t\t'type' : 'slider',\n\t\t\t'class' : 'slide',\n\t\t\t'value' : 50\n\t\t}).find('.slide');\n\t\tok(div.hasClass('ui-slider'), 'jQueryUI slider initialized');\n\t\tok(div.slider('value'), 50, 'Can call .slider() and get value');\n\t});\n\n\ttest('Accordion', 5, function() {\n\t\tvar div = $('<div>').dform({\n\t\t\t'type' : 'accordion',\n\t\t\t'entries' : [\n\t\t\t\t{\n\t\t\t\t\t'caption' : 'First entry',\n\t\t\t\t\t'html' : 'Content 1'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t'caption' : 'Second entry',\n\t\t\t\t\t'html' : 'Content 2'\n\t\t\t\t}\n\t\t\t]\n\t\t});\n\t\tok(div.find('.ui-accordion').length, 'Accordion initialized');\n\t\tok(div.find('h3.ui-accordion-header:eq(0)').html(), 'First entry', 'First header caption set');\n\t\tok(div.find('.ui-accordion-content:eq(0)').html(), 'Content 1', 'First content set as accordion content');\n\t\tok(div.find('h3.ui-accordion-header:eq(1)').html(), 'Second entry', 'Second header caption set');\n\t\tok(div.find('.ui-accordion-content:eq(1)').html(), 'Content 2', 'Second content set as accordion content');\n\t});\n\n\ttest('Tabs', 10, function() {\n\t\tvar div = $('<div>').dform({\n\t\t\t'type' : 'tabs',\n\t\t\t'entries' : [\n\t\t\t\t{\n\t\t\t\t\t'caption' : 'First entry',\n\t\t\t\t\t'id' : 'firsttab',\n\t\t\t\t\t'html' : 'Content 1'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t'caption' : 'Second entry',\n\t\t\t\t\t'id' : 'secondtab',\n\t\t\t\t\t'html' : 'Content 2'\n\t\t\t\t}\n\t\t\t]\n\t\t}), div2 = $('<div>').dform({\n\t\t\t'type' : 'tabs',\n\t\t\t'entries' : {\n\t\t\t\t\"first\" : {\n\t\t\t\t\t'caption' : 'First entry',\n\t\t\t\t\t'html' : 'Content 1'\n\t\t\t\t},\n\t\t\t\t\"second\" : {\n\t\t\t\t\t'caption' : 'Second entry',\n\t\t\t\t\t'html' : 'Content 2'\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tok(div.find('.ui-tabs').length, 'Tabs initialized');\n\t\tok(div.find('.ui-tabs-nav li:eq(0) a').html(), 'First entry', 'First tab caption set');\n\t\tok(div.find('.ui-tabs-nav li:eq(0) a').attr('href'), '#firsttab', 'Points to #firsttab');\n\t\tok(div.find('.ui-tabs-panel:eq(0)').html(), 'Content 1', 'First content set as accordion content');\n\t\tok(div.find('.ui-tabs-nav li:eq(1) a').html(), 'Second entry', 'Second tab caption set');\n\t\tok(div.find('.ui-tabs-nav li:eq(1) a').attr('href'), '#secondtab', 'Points to #secondtab');\n\t\tok(div.find('.ui-tabs-panel:eq(1)').html(), 'Content 2', 'Second content set as accordion content');\n\n\t\tok(div2.find('.ui-tabs').length, 'Second tabs initialized');\n\t\tok(div2.find('.ui-tabs-nav li:eq(0) a').attr('href'), '#first', 'First id set from object');\n\t\tok(div2.find('.ui-tabs-nav li:eq(1) a').attr('href'), '#second', 'Second id set from object');\n\n\t\t// console.log(div);\n\t});\n});\n"
  },
  {
    "path": "test/test_subscribers.js",
    "content": "$(document).ready(function () {\n\tmodule(\"Subscribers\");\n\n\ttest(\"Add subscriber\", function () {\n\t\texpect(3);\n\t\t$.dform.subscribe('testit', function (options, type) {\n\t\t\tequal(type, 'div', 'Proper type got passed');\n\t\t\tequal(options.name, 'Tester', 'Passed correct name option');\n\t\t\tequal(options.answer, 42, 'Passed correct answer');\n\t\t});\n\t\t$('<form>').dform({\n\t\t\ttype : 'div',\n\t\t\ttestit : {\n\t\t\t\tname : 'Tester',\n\t\t\t\tanswer : 42\n\t\t\t}\n\t\t});\n\t});\n\n\ttest(\"Core subscribers\", function () {\n\t\tvar form = $('<form>'),\n\t\t\tdiv = form.dform({\n\t\t\t\ttype : 'container',\n\t\t\t\tclass : 'test',\n\t\t\t\thtml : 'Test html'\n\t\t\t}).find('div'),\n\t\t\ttext = form.dform({\n\t\t\t\ttype : 'text',\n\t\t\t\tvalue : 'Test value',\n\t\t\t\tcss : {\n\t\t\t\t\t'background-color' : 'red'\n\t\t\t\t}\n\t\t\t}).find('[type=\"text\"]');\n\n\t\tequal(div.html(), 'Test html', 'Html set');\n\t\tok(div.hasClass('test'), 'Class set');\n\t\tok(div.hasClass($.dform.options.prefix + 'container'), 'Class set');\n\t\tequal(text.val(), 'Test value', 'Value set');\n\t\tok(text.css('background-color'), 'Css set');\n\t});\n\n\ttest(\"elements and html\", function () {\n\t\tvar form = $('<form>').dform({\n\t\t\ttype : 'form',\n\t\t\thtml : [\n\t\t\t\t{\n\t\t\t\t\ttype : 'div',\n\t\t\t\t\tclass : 'div-1'\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\ttype : 'div',\n\t\t\t\t\tclass : 'div-2'\n\t\t\t\t}\n\t\t\t]\n\t\t}), form2 = $('<form>').dform({\n\t\t\ttype : 'form',\n\t\t\thtml : {\n\t\t\t\ttype : 'div',\n\t\t\t\tclass : 'div-1'\n\t\t\t}\n\t\t}), form3 = $('<form>').dform({\n\t\t\ttype : 'form',\n\t\t\thtml : 'test html'\n\t\t});\n\t\tok(form.find('.div-1').length, 'Div 1 added');\n\t\tok(form.find('.div-2').length, 'Div 2 added');\n\t\tok(form2.find('.div-1').length, 'Div 1 added');\n\t\tok(form3.html(), 'test html', 'Html content set');\n\t});\n\n\ttest(\"caption\", function () {\n\t\tvar simple = $('<div>').dform({\n\t\t\t\ttype : 'text',\n\t\t\t\tcaption : 'The test'\n\t\t\t}).find('label'),\n\t\t\tasElement = $('<div>').dform({\n\t\t\t\ttype : 'text',\n\t\t\t\tcaption : {\n\t\t\t\t\tclass : 'the-label',\n\t\t\t\t\thtml : 'The complex test'\n\t\t\t\t}\n\t\t\t}).find('label');\n\t\tok(simple.length, 'Generated label');\n\t\tequal(simple.html(), 'The test', 'Set caption');\n\t\tok(asElement.length, 'Generated label from definition');\n\t\tequal(asElement.html(), 'The complex test', 'Set caption');\n\t\tok(asElement.hasClass('the-label'), 'Added class');\n\t});\n\n\ttest(\"options\", function () {\n\t\tvar options = {\n\t\t\t\ttest1 : 'Test 1',\n\t\t\t\ttest2 : 'Test 2'\n\t\t\t},\n\t\t\tselect = $('<select>').dform({\n\t\t\t\ttype : 'select',\n\t\t\t\toptions : $.extend(true, { test3 : {\n\t\t\t\t\tselected : 'selected',\n\t\t\t\t\thtml : 'Test 3'\n\t\t\t\t}}, options)\n\t\t\t}),\n\t\t\tcheckboxes = $('<div>').dform({\n\t\t\t\ttype : 'checkboxes',\n\t\t\t\toptions : options\n\t\t\t});\n\t\tok(select.find('option[value=\"test1\"]').length, 'Test 1 value added');\n\t\tok(select.find('option[value=\"test3\"]').length, 'Test 3 value added');\n\t\tequal(select.val(), 'test3', 'Value set properly');\n\t\tok(checkboxes.find('[type=\"checkbox\"][value=\"test1\"]').length);\n\t\tequal(checkboxes.find('label:first').html(), 'Test 1', 'Set for and found label');\n\t});\n\n\ttest(\"url\", function() {\n\t\tstop();\n\t\t$('<div>').dform({\n\t\t\ttype: 'div',\n\t\t\turl: {\n\t\t\t\turl: 'test.json',\n\t\t\t\tsuccess: function() {\n\t\t\t\t\tequal($(this).html(), 'The test', 'Subscriber ran, got text');\n\t\t\t\t\tstart();\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n});\n"
  },
  {
    "path": "test/test_types.js",
    "content": "$(document).ready(function () {\n\tmodule(\"Types\");\n\n\ttest(\"Default type\", function () {\n\t\tvar def = {\n\t\t\ttype : 'div',\n\t\t\tid : 'my-id'\n\t\t},\n\t\t\tel = $.dform.defaultType(def);\n\t\tok(el.is('div'), 'Element type is a div');\n\t\tequal(el.attr('id'), 'my-id', 'Id properly set');\n\t});\n\n\ttest(\"Add type and create element\", function () {\n\t\t$.dform.addType('test-span', function (options) {\n\t\t\tequal(options.testAttribute, 'attribute', 'Test attribute passed');\n\t\t\treturn $('<span>').addClass('testspan');\n\t\t});\n\n\t\tvar def = {\n\t\t\ttype : 'test-span',\n\t\t\ttestAttribute : 'attribute'\n\t\t},\n\t\t\tel = $.dform.createElement(def);\n\t\tok(el.is('span'), 'Created element is a span');\n\t\tequal(el.attr('class'), 'testspan', 'Class has been set during element creation');\n\t});\n\n\ttest(\"Type chaining\", function () {\n\t\texpect(3);\n\t\t$.dform.addType('text', function (options) {\n\t\t\tok($(this).is('input'), 'Type chain ran and got correct element');\n\t\t\treturn $(this).addClass('test-type');\n\t\t});\n\t\tvar text = $('<form>').dform({\n\t\t\ttype : 'text'\n\t\t}).find('[type=\"text\"]');\n\t\tequal(text.length, 1, 'Created text element');\n\t\tok(text.hasClass('test-type'), 'Type chained and returned properly');\n\t});\n\n\ttest(\"Core types\", function () {\n\t\tvar form = $('<form>');\n\n\t\tok(form.dform('append', { type : 'form' }).find('form').length);\n\t\tok(form.dform({ type : 'container' }).find('div').length);\n\t\tok(form.dform({ type : 'text' }).find('[type=\"text\"]').length);\n\t\tok(form.dform({ type : 'password' }).find('[type=\"password\"]').length);\n\t\tok(form.dform({ type : 'submit' }).find('[type=\"submit\"]').length);\n\t\tok(form.dform({ type : 'reset' }).find('[type=\"reset\"]').length);\n\t\tok(form.dform({ type : 'hidden' }).find('[type=\"hidden\"]').length);\n\t\tok(form.dform({ type : 'radio' }).find('[type=\"radio\"]').length);\n\t\tok(form.dform({ type : 'checkbox' }).find('[type=\"checkbox\"]').length);\n\t\tok(form.dform({ type : 'file' }).find('[type=\"file\"]').length);\n\t\tok(form.dform({ type : 'number' }).find('[type=\"number\"]').length);\n\t\tok(form.dform({ type : 'url' }).find('[type=\"url\"]').length);\n\t\tok(form.dform({ type : 'tel' }).find('[type=\"tel\"]').length);\n\t\tok(form.dform({ type : 'email' }).find('[type=\"email\"]').length);\n\t});\n});\n"
  }
]