/*
 * Translated default messages for the jQuery validation plugin.
 * Language: CN
 * Author: Fayland Lam <fayland at gmail dot com>
 */
jQuery.extend(jQuery.validator.messages, {
        required: "必选字段",
		remote: "请修正该字段",
		email: "电子邮件格式错误",
		url: "网址格式错误",
		date: "日期格式错误",
		dateISO: "日期 (ISO)格式错误",
		number: "数字不合法",
		digits: "只能输入整数",
		creditcard: "信用卡号不合法",
		equalTo: "输入的值不一致",
		accept: "后缀名不合法",
		maxlength: jQuery.format("长度最多是 {0} "),
		minlength: jQuery.format("长度最少是 {0} "),
		rangelength: jQuery.format("长度介于 {0} 和 {1} 之间"),
		range: jQuery.format("值介于 {0} 和 {1} 之间"),
		max: jQuery.format("值最大为 {0} "),
		min: jQuery.format("值最小为 {0} ")
});