//
//  Library Strings - Any strings that should be translated should be placed in this file.
//
//  Author:   Giles Mullen
//  Date:     5/5/2000
//  Updated:  09/03/2001
//
//  Requires: None
//

//
//  Month name strings
//
CS_DATETIME_JAN                    = "Jan";
CS_DATETIME_FEB                    = "Feb";
CS_DATETIME_MAR                    = "Mar";
CS_DATETIME_APR                    = "Apr";
CS_DATETIME_MAY                    = "May";
CS_DATETIME_JUN                    = "Jun";
CS_DATETIME_JUL                    = "Jul";
CS_DATETIME_AUG                    = "Aug";
CS_DATETIME_SEP                    = "Sep";
CS_DATETIME_OCT                    = "Oct";
CS_DATETIME_NOV                    = "Nov";
CS_DATETIME_DEC                    = "Dec";
CS_DATETIME_JANUARY                = "January";
CS_DATETIME_FEBRUARY               = "February";
CS_DATETIME_MARCH                  = "March";
CS_DATETIME_APRIL                  = "April";
CS_DATETIME_JUNE                   = "June";
CS_DATETIME_JULY                   = "July";
CS_DATETIME_AUGUST                 = "August";
CS_DATETIME_SEPTEMBER              = "September";
CS_DATETIME_OCTOBER                = "October";
CS_DATETIME_NOVEMBER               = "November";
CS_DATETIME_DECEMBER               = "December";
CS_DATETIME_SEPT                   = "Sept";
CS_DATETIME_JLY                    = "Jly";

//
//  Array for CSDate for associating month names with numbers.
//
var CS_DATETIMEMONTHARRAY = [ [CS_DATETIME_JAN, 1],
                              [CS_DATETIME_FEB, 2],
                              [CS_DATETIME_MAR, 3],
                              [CS_DATETIME_APR, 4],
                              [CS_DATETIME_MAY, 5],
                              [CS_DATETIME_JUN, 6],
                              [CS_DATETIME_JUL, 7],
                              [CS_DATETIME_AUG, 8],
                              [CS_DATETIME_SEP, 9],
                              [CS_DATETIME_OCT, 10],
                              [CS_DATETIME_NOV, 11],
                              [CS_DATETIME_DEC, 12],
                              [CS_DATETIME_JANUARY, 1],
                              [CS_DATETIME_FEBRUARY, 2],
                              [CS_DATETIME_MARCH, 3],
                              [CS_DATETIME_APRIL, 4],
                              [CS_DATETIME_JUNE, 6],
                              [CS_DATETIME_JULY, 7],
                              [CS_DATETIME_AUGUST, 8],
                              [CS_DATETIME_SEPTEMBER, 9],
                              [CS_DATETIME_OCTOBER, 10],
                              [CS_DATETIME_NOVEMBER, 11],
                              [CS_DATETIME_DECEMBER, 12],
                              [CS_DATETIME_SEPT, 9],
                              [CS_DATETIME_JLY, 7] ];

//
//  error message for all objects
//
CS_OBJ_ERR_SUCCESS_STR             = "Success";
CS_OBJ_ERR_UNDEFINED_STR           = "Undefined Error";

//
//  error messages for CSErr
//
CS_CSERR_ERR_SUCCESS_STR           = "Success";
CS_CSERR_ERR_UNDEFINED_STR         = "Undefined Error";

//
//  error messages for CSTxt.
//
CSTXT_ERR_LENTOOLONG1_STR  = "There are too many characters entered in this field";
CSTXT_ERR_LENTOOLONG2_STR  = "The maximum field length is %s characters";
CSTXT_ERR_LENTOOLONG3_STR  = "The field value '%s' exceeds the maximum field length of %s characters";
CSTXT_ERR_LENTOOSHORT1_STR = "Not enough characters entered";
CSTXT_ERR_LENTOOSHORT2_STR = "This field requires at least %s characters";
CSTXT_ERR_INVLDCHAR1_STR   = "Invalid character";
CSTXT_ERR_INVLDCHAR2_STR   = "Invalid character(s).  This field only allows %1 characters.";
CSTXT_ERR_AL               = "alpha";
CSTXT_ERR_NUM              = "numeric";
CSTXT_ERR_ALSL             = "special";
CSTXT_ERR_NUMSL            = CSTXT_ERR_ALSL;
CSTXT_ERR_SPACE            = "space";
CSTXT_ERR_AND              = "and";

//
//  error messages for CSDate.
//
CS_DTOBJ_ERR_YEAR_OUTOFRANGE_STR   = "Year is out of range";
CS_DTOBJ_ERR_MONTH_OUTOFRANGE_STR  = "Month is out of range";
CS_DTOBJ_ERR_DAY_OUTOFRANGE_STR    = "Day is out of range";
CS_DTOBJ_ERR_HOUR_OUTOFRANGE_STR   = "Hour is out of range";
CS_DTOBJ_ERR_MINUTE_OUTOFRANGE_STR = "Minutes are out of range";
CS_DTOBJ_ERR_SECOND_OUTOFRANGE_STR = "Seconds are out of range";
CS_DTOBJ_ERR_TEMPLATE_INVALID_STR  = "Template is invalid";
CS_DTOBJ_ERR_FORMAT_INVALID_STR    = "Format is invalid, format the value like this %s"; 
CS_DTOBJ_ERR_MONTH_UNRECOGNIZABLE_STR  = "Month is Unrecognizable";
CS_DTOBJ_ERR_DATE_OUTOFRANGE_STR   = "Date is out of range";
CS_DTOBJ_ERR_DATE_OUTOFRANGE_R_STR = "Date must be between or equal to %s and %s";
CS_DTOBJ_ERR_DATE_OUTOFRANGE_A_STR = "Date must be after or equal to %s";
CS_DTOBJ_ERR_DATE_OUTOFRANGE_B_STR = "Date must be before or equal to %s";

//
//  error messages for CSNum
//
CS_NUMBEROBJ_ERR_OUTOFRANGE_STR    = "Value is out of range";
CS_NUMBEROBJ_ERR_OUTOFRANGE_B_STR  = "Value must be between or equal to %s and %s";
CS_NUMBEROBJ_ERR_OUTOFRANGE_G_STR  = "Value must be greater than or equal to %s";
CS_NUMBEROBJ_ERR_OUTOFRANGE_L_STR  = "Value must be less than or equal to %s";
CS_NUMBEROBJ_ERR_OUTOFRANGE_E_STR  = "Value must be equal to %s";
CS_NUMBEROBJ_ERR_FORMAT_INVALID_STR= "Format is invalid, format with numeric characters only";
CS_NUMBEROBJ_ERR_CHAR_LENGTH       = "%s exceeds the field's maximum length of %d characters";

//
//  erro messages for CSFmt
//
CS_CSFMT_ERR_INVLDFMTTYPE_STR      = "Invalid Format Type";
CS_CSFMT_ERR_INVLDFMTOBJ_STR       = "Invalid Format Object";

//
//  error messages for CSTempl
//
CS_TEMPLATEOBJ_ERR_FORMAT_INVALID_STR = "Format is invalid, format the value like this %s";

//
//  error message for Entry Required
//
CS_ERR_ENTRY_REQUIRED_STR = "A required field was found empty!";

//
//  error message for ranged calculation fields
//
CS_ERR_CALC_RANGE_STR = "The value of the calculation result field '%s' is invalid:\r";
CS_ERR_CALC_LENGTH_STR= "%s exceeds the maximum length of %d characters for the calculation result field '%s'";

//
//  error message for server related functions with no action set
//
CS_ERR_NOTPUBLISHED = "This action requires the form to be published to a LiquidOffice server.";

//
//  Warning message for no GO if validation/lookups is pending
//
CS_WARN_SUBMIT_PENDING_STR = "A lookup or validation is still pending.\nDo you wish to wait?";

//
//  Warning message for no form data in the FDF. Needing refresh.
//
CS_WARN_BLANK_FORM_STR = "Your form did not load properly. Press Refresh in your Browser to retry.";

//
//  String to select an item in a combo list (HTML feature).
//
CS_CHOOSE_COMBO_STR = "->Choose an item";

//
//  String to select "other" in a combo list (HTML feature).
//
CS_OTHER_COMBO_STR = "[Other...]";

//
//  Next button label (HTML feature).
//
CS_NEXT_BUTTON = ">>";

//
//  Back button label (HTML feature).
//
CS_BACK_BUTTON = "&lt;&lt;";

//
//  Print button label (HTML feature).
//
CS_PRINT_BUTTON = "Printable Version";

//
//  Go button (HTML feature).
//
CS_GO = "Go";

//
//  Preview action list (HTML feature).
//
CS_ACTION_LIST = "[Preview]";

//
//  Action list tool tip (HTML feature).
//
CS_ACTION_LIST_TOOLTIP = "Select an action to perform.";

//
//  Action button tool tip (HTML feature).
//
CS_ACTION_BUTTON_TOOLTIP = "Perform the action selected in the Action List.";

//
//  Signature (HTML feature).
//
CS_SIGNATURE = "Warning: this form uses digital signature technology that is not supported in HTML, and will not be able to accept digital signatures without Adobe Acrobat.";

//
//  Dynamic List Source (HTML feature).
//
CS_LOOKUP_LIST = "[lookup]";

//
//  Digital Approver Messages (Click through)
//
CS_DIGITAL_APPROVE_CLICK      = "I, %1, on %2, hereby affirm that %3\nRole: %4\nForm: %5\nSignature Field: %6\nSignature Description: %7";
CS_DIGITAL_APPROVE_SUBMIT     = "Signing this field will submit the form. Continue?";
CS_DIGITAL_APPROVE_CLEAR_MSG  = "This will clear this signature and unlock any associated fields. Continue?";
CS_DIGITAL_APPROVE_USER       = "(Anonymous)";

//  field invalidaed by clicking submit
CS_INVALIDFIELD               = "Please check field '%s', it was invalid before submitting.";

// MSXML warning string
CS_MSXML_WARN                 = "This browser requires MSXML for some features of this form to work correctly. If you have trouble installing this control, please contact your system administrator.";
