// CONSTANT STRING DECLARATIONS
// (grouped for ease of translation and localization)

// m is an abbreviation for "missing"

var mPrefix = "You did not enter a value into the "
var mSuffix = " field. This is a required field. Please enter it now."

// s is an abbreviation for "string"

var sUSLastName = "Last Name"
var sUSFirstName = "First Name"
var sWorldLastName = "Family Name"
var sWorldFirstName = "Given Name"
var sTitle = "Title"
var sCompanyName = "Company Name"
var sUSAddress = "Street Address"
var sWorldAddress = "Address"
var sCity = "City"
var sStateCode = "State Code"
var sWorldState = "State, Province, or Prefecture"
var sCountry = "Country"
var sZIPCode = "ZIP Code"
var sWorldPostalCode = "Postal Code"
var sPhone = "Phone Number"
var sFax = "Fax Number"
var sDateOfBirth = "Date of Birth"
var sExpirationDate = "Expiration Date"
var sEmail = "Email"
var sSSN = "Social Security Number"
var sCreditCardNumber = "Credit Card Number"
var sOtherInfo = "Other Information"

// i is an abbreviation for "invalid"

var iStateCode = "This field must be a valid two character U.S. state abbreviation (like CA for California). Please reenter it now."
var iPostalCode = "This field must be a 7 digit Postal Code (like A9A 9A9). Please reenter it now."
var iZIPCode = "This field must be a 5 digit U.S. ZIP Code (like 99999) or a 7 digit Canadian Postal Code (like A9A 9A9). Please reenter it now."
var iZIPCodex = "This field must be a 5 digit U.S. ZIP Code (like 99999) or 9 digit U.S. ZIP Code (like 999999999) or a 7 digit Canadian Postal Code (like A9A 9A9). Please reenter it now."
var iZIPCodeExt = "The field must be a 4 digit U.S. Zip Code Extension (like 2345). Please reenter it now."
var iZipCodeTooLong = "The Zip Code is too long. Please reenter it now."
var iUSPhone = "This field must be a 10 digit phone number (e.g. 415 555 1212 - First number should not be a 0 or 1). Please reenter it now."
var iPST = "This field must be a 4-16 digital number or - . Please reenter it now."
var iWorldPhone = "This field must be a valid international phone number. Please reenter it now."
var iSSN = "This field must be a 9 digit U.S. social security number (like 123 45 6789). Please reenter it now."
var iEmail = "This field must be a valid email address (like foo@bar.com or foo@bar.com;foo@bar.com). Please reenter it now."
var iSingleEmail = "Please enter a valid email address (like foo@bar.com)."
var iEmailAlreadyInList = "That email address is already in the list."
var iCreditCardPrefix = "This is not a valid "
var iCreditCardSuffix = " credit card number. (Click the link on this form to see a list of sample numbers.) Please reenter it now."
var iDay = "This field must be a day number between 1 and 31.  Please reenter it now."
var iMonth = "This field must be a month number between 1 and 12.  Please reenter it now."
var iYear = "This field must be a 4 digit year number.  Please reenter it now."
var iDatePrefix = "The Day, Month, and Year for "
var iDateSuffix = " do not form a valid date.  Please reenter them now."
var iTime = " do not form a valid time.  Please reenter them now."

// p is an abbreviation for "prompt"

var pEntryPrompt = "Please enter a "
var pStateCode = "2 character code (like CA)."
var pZIPCode = "5 or 9 digit U.S. ZIP Code (like 94043)."
var pUSPhone = "10 digit U.S. phone number (like 415 555 1212)."
var pWorldPhone = "international phone number."
var pSSN = "9 digit U.S. social security number (like 123 45 6789)."
var pEmail = "valid email address (like foo@bar.com)."
var pCreditCard = "valid credit card number."
var pDay = "day number between 1 and 31."
var pMonth = "month number between 1 and 12."
var pYear = "2 or 4 digit year number."

// Alerts and prompts.

var aHourEmpty = "hour is empty"

var aTheValueYouEntered = "The value you entered into the "
var aDurationValueIsInvalid = " field is not a valid duration.\nThe number of days should not exceed 99, the number of hours should not exceed 23 and the number of seconds should not exceed 59.\n Please reenter it now."
var aDurationValueIsTooShort = " field, the duration is less than 2 minutes.\n Please reenter it now."

var aCheckLengthNotLongEnough=" is invalid. It"
var aCheckLengthMustContainMoreThanXCharacters = " must contain more than " 
var aCheckLengthAndLessThanXCharacters = " characters and less than "
var aCheckLengthCharacters = " characters."

var aCheckMatchTheValuesOf = "The values of "
var aCheckMatchAnd = " and "
var aCheckMatchDoNotMatch = " do not match."

var aCheckBoxAtLeastOne = "At least one "
var aCheckBoxMustBeChecked = " must be checked."


