// Copyright (C) 2007 Cognos Incorporated. All rights reserved.
// Cognos (R) is a trademark of Cognos Incorporated.

// This file for locale en_US
// 
// Date / Time Formatting
// 
g_arMonths = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
g_arMonthsAbbr = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
g_arDays = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
g_arDaysAbbr = new Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
g_amString = "AM";
g_pmString = "PM";
g_startDayOfWeek = 1;  // 1 = Sunday, 2 = Monday, etc...
g_mediumFormat = "MMM d, yyyy h:mm:ss a";
g_shortFormat = "M/d/yy h:mm a";
g_dateOrder = "MDY";
g_yearFormatMedium = "yyyy";
g_monthFormatMedium = "MMM";
g_dayFormatMedium = "d";
g_hourFormatMedium = "h";
g_minuteFormatMedium = "mm";
g_secondFormatMedium = "ss";
g_yearFormatShort = "yy";
g_monthFormatShort = "M";
g_dayFormatShort = "d";
g_hourFormatShort = "h";
g_minuteFormatShort = "mm";
g_secondFormatShort = "";
g_dateSeparatorMedium = " ";
g_dateSeparatorShort = "/";
g_timeSeparator = ":";
g_AMPMLocation = "right";
g_24HourClock = "false";

// 
//Numeric Formatting
// 
g_decimalSeparator = ".";
g_groupingSeparator = ",";
g_groupingSize = 3;
g_secondaryGroupingSize = 0;
g_maximumIntegerDigits = 309;
g_minimumIntegerDigits = 1;
g_maximumFractionDigits = 3;
g_minimumFractionDigits = 0;
g_positivePrefix = "";
g_positiveSuffix = "";
g_negativePrefix = "-";
g_negativeSuffix = "";
g_minusSign = "-";
g_plusSign = "+";
g_zeroDigit = "0";
g_listSeparator = ",";
g_negativeLocation = "left";
g_positiveLocation = "none";
//
// Currency Formatting
//
g_currencySymbol = "$";
g_monetaryDecimalSeparator = ".";
g_currencyLocation = "left";
g_currencyDecimalSeparator = ".";
g_currencyGroupingSeparator = ",";
g_currencyGroupingSize = 3;
g_currencySecondaryGroupingSize = 0;
g_currencyPositivePrefix = "$";
g_currencyPositiveSuffix = "";
g_currencyNegativePrefix = "($";
g_currencyNegativeSuffix = ")";
g_currencyMinusSign = "-";
g_currencyPlusSign = "+";
g_currencyZeroDigit = "0";
g_currencyNegativeLocation = "both";
g_currencyPositiveLocation = "none";
//
// Percentage Formatting
//
g_percentSymbol = "%";
g_percentLocation = "right";
g_percentageDecimalSeparator = ".";
g_percentageGroupingSeparator = ",";
g_percentageGroupingSize = 3;
g_percentageSecondaryGroupingSize = 0;
g_percentagePositivePrefix = "";
g_percentagePositiveSuffix = "%";
g_percentageNegativePrefix = "-";
g_percentageNegativeSuffix = "%";
g_percentageMinusSign = "-";
g_percentagePlusSign = "+";
g_percentageZeroDigit = "0";
g_percentageNegativeLocation = "left";
g_percentagePositiveLocation = "right";
//
// Scientific Formatting
//
g_exponentialSymbol = "E";
g_scientificDecimalSeparator = ".";
g_scientificGroupingSeparator = ",";
g_scientificGroupingSize = 0;
g_scientificSecondaryGroupingSize = 0;
g_scientificPositivePrefix = "";
g_scientificPositiveSuffix = "";
g_scientificNegativePrefix = "-";
g_scientificNegativeSuffix = "";
g_scientificMinusSign = "-";
g_pscientificPlusSign = "+";
g_scientificZeroDigit = "0";
g_scientificNegativeLocation = "left";
g_scientificPositiveLocation = "none";
