LaravelTest
35 строк · 1.3 Кб
1(function( factory ) {2if ( typeof define === "function" && define.amd ) {3define( ["jquery", "../jquery.validate"], factory );4} else if (typeof module === "object" && module.exports) {5module.exports = factory( require( "jquery" ) );6} else {7factory( jQuery );8}9}(function( $ ) {10
11/*
12* Translated default messages for the jQuery validation plugin.
13* Locale: VI (Vietnamese; Tiếng Việt)
14*/
15$.extend( $.validator.messages, {16required: "Hãy nhập.",17remote: "Hãy sửa cho đúng.",18email: "Hãy nhập email.",19url: "Hãy nhập URL.",20date: "Hãy nhập ngày.",21dateISO: "Hãy nhập ngày (ISO).",22number: "Hãy nhập số.",23digits: "Hãy nhập chữ số.",24creditcard: "Hãy nhập số thẻ tín dụng.",25equalTo: "Hãy nhập thêm lần nữa.",26extension: "Phần mở rộng không đúng.",27maxlength: $.validator.format( "Hãy nhập từ {0} kí tự trở xuống." ),28minlength: $.validator.format( "Hãy nhập từ {0} kí tự trở lên." ),29rangelength: $.validator.format( "Hãy nhập từ {0} đến {1} kí tự." ),30range: $.validator.format( "Hãy nhập từ {0} đến {1}." ),31max: $.validator.format( "Hãy nhập từ {0} trở xuống." ),32min: $.validator.format( "Hãy nhập từ {0} trở lên." )33} );34return $;35}));