/*
	i18n strings for 
	Fool-Proof Date Input Script with DHTML Calendar
        by Jason Moon
*/


function getMonthNames() {
    names = new Array();
    names[0]="January";
    names[1]="February";
    names[2]="March";
    names[3]="April";
    names[4]="May";
    names[5]="June";
    names[6]="July";
    names[7]="August";
    names[8]="September";
    names[9]="October";
    names[10]="November";
    names[11]="December";

    return names;
}


function getWeekDayNames() {
    names = new Array();
    names[0]="Su";
    names[1]="Mo";
    names[2]="Tu";
    names[3]="We";
    names[4]="Th";
    names[5]="Fr";
    names[6]="Sa";

    return names;
}


function getMsgYear() {
    return "Year";
}

function getMsgShowCurrentMonth() {
    return "Show Current Month";
}

function getMsgCalendar() {
    return "Calendar";
}


function getDateOrder() {
    var order = new Array();
    order[0] = "month";
    order[1] = "day";
    order[2] = "year";
    return order;

}


function getNicEditorStrings() {
    var s = {
      save : "Click to Save",
      undo : "Undo",
      redo : "Redo",
      bold : "Click to Bold",
      italic : "Click to Italic",
      underline : "Click to Underline",
      left : "Left Align",
      center : "Center Align",
      right : "Right Align",
      ol : "Insert Ordered List",
      ul : "Insert Unordered List",
      fontSize : "Select Font Size",
      fontFamily : "Select Font Family",
      fontFormat : "Select Font Format",
      subscript : "Click to Subscript",
      superscript : "Click to Superscript",
      strikeThrough : "Click to Strike Through",
      indent : "Indent Text", 
      unindent : "Remove Indent",
      hr : "Horizontal Rule",
      color : "Change Color",
      bgcolor : "Change Background Color",
      image : "Add Image",
      html : "Edit HTML",
      link : "Add Link",
      chooseImage : "Choose image",
      chooseLink : "Choose file",
      needAttach : "No images available. Upload your images as attachments first",
      needAttachFile : "No files available. Upload your files as attachments first",
      mustEnterURL : "You must enter a URL to insert an Image",
      chooseImageURL: "Choose an image to insert",
      mustEnterLinkURL : "You must enter a URL to create a link",
      chooseLinkURL: "Choose a file to create link",
      insertImage : "Insert Image",
      insert : "Insert",
      create : "Create",
      imageURL : "Image URL",
      selectLink : "File",
      imglabel : "Image",
      linkURL : "Link URL",
      insertLink : "Create Link",
      submit : "Submit",
      addOrEditLink : "Create Link",
      select : "Select",
      updateHTML : "Update HTML",
      orEnterURL : "or enter URL",
      addOrEditImage : "Select image",
      image_help : ""
    };
    return s;
}

