(function( window, undefined ) {
var Globalize;
if ( typeof require !== "undefined"
&& typeof exports !== "undefined"
&& typeof module !== "undefined" ) {
// Assume CommonJS
Globalize = require( "globalize" );
} else {
// Global variable
Globalize = window.dotvvm_Globalize;
}
Globalize.addCultureInfo("en-US", "default", {
"name": "en-US",
"nativeName": "English (United States)",
"englishName": "English (United States)",
"numberFormat": {
"negativeInfinity": "-∞",
"positiveInfinity": "∞",
"percent": {
"pattern": [
"-n%",
"n%"
]
}
},
"calendars": {
"standard": {
"patterns": {
"D": "dddd, MMMM d, yyyy",
"f": "dddd, MMMM d, yyyy h:mm tt",
"F": "dddd, MMMM d, yyyy h:mm:ss tt",
"M": "MMMM d",
"Y": "MMMM yyyy",
"g": "M/d/yyyy h:mm tt",
"G": "M/d/yyyy h:mm:ss tt"
}
}
}
});
}( this ));