/*
 * ***** BEGIN LICENSE BLOCK *****
 * Version: ZAPL 1.1
 * 
 * The contents of this file are subject to the Zimbra AJAX Public
 * License Version 1.1 ("License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at
 * http://www.zimbra.com/license
 * 
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 * the License for the specific language governing rights and limitations
 * under the License.
 * 
 * The Original Code is: Zimbra AJAX Toolkit.
 * 
 * The Initial Developer of the Original Code is Zimbra, Inc.
 * Portions created by Zimbra are Copyright (C) 2005 Zimbra, Inc.
 * All Rights Reserved.
 * 
 * Contributor(s):
 * 
 * ***** END LICENSE BLOCK *****
 */

function DwtMsg() {
}

DwtMsg.cancel = "Cancel";
DwtMsg.detail = "Detail";
DwtMsg.dismiss = "Dismiss";
DwtMsg.no = "No";
DwtMsg.noResults = "No results found."; // bug fix #3004
DwtMsg.ok = "OK";
DwtMsg.yes = "Yes";

DwtMsg.addAll = "Add All";
DwtMsg.add = "Add";
DwtMsg.remove = "Remove";
DwtMsg.removeAll = "Remove All";

DwtMsg.criticalMsg = "Critical";
DwtMsg.infoMsg = "Informational";
DwtMsg.warningMsg = "Warning";

//wizard dialog
DwtMsg._next = "Next";
DwtMsg._prev = "Previous";
DwtMsg._finish = "Finish";

DwtMsg.SHORT_WEEKDAY = new Array('S','M','T','W','T','F','S');
DwtMsg.MEDIUM_WEEKDAY = new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
DwtMsg.LONG_WEEKDAY = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
DwtMsg.MEDIUM_MONTH = new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
DwtMsg.LONG_MONTH = new Array('January','February','March','April','May','June','July','August','September','October','November','December');


DwtMsg.valueIsRequired = "Value is required";
DwtMsg.notAString = "Value must be a text string.";
DwtMsg.stringLenWrong = "Value must be exactly $1 characters long.";
DwtMsg.stringTooShort = "Value must be at least $1 characters long.";
DwtMsg.stringTooLong = "Value must be no more than $1 characters long.";
DwtMsg.stringMismatch = "Value did not match valid values.";

DwtMsg.notANumber = "Value must be a number.";
DwtMsg.numberTotalExceeded = "Whole digits exceeds total of $1.";
DwtMsg.numberFractionExceeded = "Fractional digits exceeds total of $1.";
DwtMsg.numberMoreThanMax = "Value must be less than or equal to $1.";
DwtMsg.numberMoreThanEqualMax = "Value must be less than $1.";
DwtMsg.numberLessThanMin = "Value must be greater than or equal to $1.";
DwtMsg.numberLessThanEqualMin = "Value must be greater than $1.";

DwtMsg.invalidDateString = "Date value must be entered in the form:  MM/DD/YYYY or \"today\", \"yesterday\" or \"tomorrow\".";
DwtMsg.invalidTimeString = "Time value must be entered in the form:  HH:MM[:SS] [AM|PM]";
DwtMsg.invalidDatetimeString = "Date format not understood.";

DwtMsg.didNotMatchChoice = "Value '$0' did not match any values for this type.";

DwtMsg.xformRepeatAdd = "+";
DwtMsg.xformRepeatRemove = "-";
DwtMsg.xformDateTimeFormat = "{0,date} at {0,time}";
