aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js
diff options
context:
space:
mode:
authornancylizi <li.zi30@zte.com.cn>2017-03-20 16:47:42 +0800
committernancylizi <li.zi30@zte.com.cn>2017-03-20 16:47:42 +0800
commit93e29ad7d5c9ba017252cb7b25aca94657023dd7 (patch)
tree6ec8b43d492a442d559c2d71019df896cd33dd93 /common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js
parentf92ae6ce2db3d94d1ea50b5e3de66a54107efa0e (diff)
Resolve the dependent problem.
Issue-Id: CLIENT-171 Change-Id: Ifad1deec7b7c737b5b2e44950720189248c2666d Signed-off-by: nancylizi <li.zi30@zte.com.cn>
Diffstat (limited to 'common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js')
-rw-r--r--common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js b/common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js
new file mode 100644
index 00000000..7fbee3b2
--- /dev/null
+++ b/common/src/main/webapp/thirdparty/jquery-validation/js/localization/messages_it.js
@@ -0,0 +1,36 @@
+(function( factory ) {
+ if ( typeof define === "function" && define.amd ) {
+ define( ["jquery", "../jquery.validate"], factory );
+ } else {
+ factory( jQuery );
+ }
+}(function( $ ) {
+
+/*
+ * Translated default messages for the jQuery validation plugin.
+ * Locale: IT (Italian; Italiano)
+ */
+$.extend($.validator.messages, {
+ required: "Campo obbligatorio.",
+ remote: "Controlla questo campo.",
+ email: "Inserisci un indirizzo email valido.",
+ url: "Inserisci un indirizzo web valido.",
+ date: "Inserisci una data valida.",
+ dateISO: "Inserisci una data valida (ISO).",
+ number: "Inserisci un numero valido.",
+ digits: "Inserisci solo numeri.",
+ creditcard: "Inserisci un numero di carta di credito valido.",
+ equalTo: "Il valore non corrisponde.",
+ extension: "Inserisci un valore con un&apos;estensione valida.",
+ maxlength: $.validator.format("Non inserire pi&ugrave; di {0} caratteri."),
+ minlength: $.validator.format("Inserisci almeno {0} caratteri."),
+ rangelength: $.validator.format("Inserisci un valore compreso tra {0} e {1} caratteri."),
+ range: $.validator.format("Inserisci un valore compreso tra {0} e {1}."),
+ max: $.validator.format("Inserisci un valore minore o uguale a {0}."),
+ min: $.validator.format("Inserisci un valore maggiore o uguale a {0}."),
+ nifES: "Inserisci un NIF valido.",
+ nieES: "Inserisci un NIE valido.",
+ cifES: "Inserisci un CIF valido."
+});
+
+})); \ No newline at end of file