Issue-id: OCS-9
[msb/apigateway.git] / msb-core / apiroute / apiroute-service / src / main / resources / iui-route / js / jquery-validation / localization / messages_zh_TW.js
1 /*
2  * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  *     Author: Zhaoxing Meng
17  *     email: meng.zhaoxing1@zte.com.cn
18  */
19 (function( factory ) {
20         if ( typeof define === "function" && define.amd ) {
21                 define( ["jquery", "../jquery.validate"], factory );
22         } else {
23                 factory( jQuery );
24         }
25 }(function( $ ) {
26
27 /*
28  * Translated default messages for the jQuery validation plugin.
29  * Locale: ZH (Chinese; 中文 (Zhōngwén), 汉语, 漢語)
30  * Region: TW (Taiwan)
31  */
32 $.extend($.validator.messages, {
33         required: "必須填寫",
34         remote: "請修正此欄位",
35         email: "請輸入有效的電子郵件",
36         url: "請輸入有效的網址",
37         date: "請輸入有效的日期",
38         dateISO: "請輸入有效的日期 (YYYY-MM-DD)",
39         number: "請輸入正確的數值",
40         digits: "只可輸入數字",
41         creditcard: "請輸入有效的信用卡號碼",
42         equalTo: "請重複輸入一次",
43         extension: "請輸入有效的後綴",
44         maxlength: $.validator.format("最多 {0} 個字"),
45         minlength: $.validator.format("最少 {0} 個字"),
46         rangelength: $.validator.format("請輸入長度為 {0} 至 {1} 之間的字串"),
47         range: $.validator.format("請輸入 {0} 至 {1} 之間的數值"),
48         max: $.validator.format("請輸入不大於 {0} 的數值"),
49         min: $.validator.format("請輸入不小於 {0} 的數值")
50 });
51
52 }));