update
This commit is contained in:
26
js/jquery/plugins/validate/localization/messages_zh_TW.js
vendored
Normal file
26
js/jquery/plugins/validate/localization/messages_zh_TW.js
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Translated default messages for the jQuery validation plugin.
|
||||
* Locale: ZH (Chinese; 中文 (Zhōngwén), 汉语, 漢語)
|
||||
* Region: TW (Taiwan)
|
||||
*/
|
||||
(function ($) {
|
||||
$.extend($.validator.messages, {
|
||||
required: "必填",
|
||||
remote: "請修正此欄位",
|
||||
email: "請輸入正確的電子信箱",
|
||||
url: "請輸入合法的URL",
|
||||
date: "請輸入合法的日期",
|
||||
dateISO: "請輸入合法的日期 (ISO).",
|
||||
number: "請輸入數字",
|
||||
digits: "請輸入整數",
|
||||
creditcard: "請輸入合法的信用卡號碼",
|
||||
equalTo: "請重複輸入一次",
|
||||
accept: "請輸入有效的後缀字串",
|
||||
maxlength: $.validator.format("請輸入長度不大於{0} 的字串"),
|
||||
minlength: $.validator.format("請輸入長度不小於 {0} 的字串"),
|
||||
rangelength: $.validator.format("請輸入長度介於 {0} 和 {1} 之間的字串"),
|
||||
range: $.validator.format("請輸入介於 {0} 和 {1} 之間的數值"),
|
||||
max: $.validator.format("請輸入不大於 {0} 的數值"),
|
||||
min: $.validator.format("請輸入不小於 {0} 的數值")
|
||||
});
|
||||
}(jQuery));
|
||||
Reference in New Issue
Block a user