Comparing version 3.0.0 to 3.1.0
@@ -9,3 +9,3 @@ 'use strict'; | ||
case '$ref': | ||
out = 'non può risolvere il riferimento ' + (e.params.ref); | ||
out = 'non è possibile risolvere il riferimento ' + (e.params.ref); | ||
break; | ||
@@ -23,15 +23,15 @@ case 'additionalItems': | ||
case 'additionalProperties': | ||
out = 'non dovrebbe avere attributi aggiuntive'; | ||
out = 'non deve avere attributi aggiuntivi'; | ||
break; | ||
case 'anyOf': | ||
out = 'deve corrispondere qualche schema in "anyOf"'; | ||
out = 'deve corrispondere ad uno schema in "anyOf"'; | ||
break; | ||
case 'const': | ||
out = 'should be equal to constant'; | ||
out = 'deve essere uguale alla costante'; | ||
break; | ||
case 'contains': | ||
out = 'should contain a valid item'; | ||
out = 'deve contentere un elemento valido'; | ||
break; | ||
case 'custom': | ||
out = 'should pass "' + (e.keyword) + '" keyword validation'; | ||
out = 'deve essere valido secondo il criterio "' + (e.keyword) + '"'; | ||
break; | ||
@@ -41,4 +41,10 @@ case 'dependencies': | ||
var n = e.params.depsCount; | ||
out += 'dovrebbe avere attribut'; | ||
out += 'dovrebbe avere '; | ||
if (n == 1) { | ||
out += 'l\''; | ||
} else { | ||
out += 'gli '; | ||
} | ||
out += 'attribut'; | ||
if (n == 1) { | ||
out += 'o'; | ||
@@ -48,6 +54,6 @@ } else { | ||
} | ||
out += ' ' + (e.params.deps) + ' quando attributo ' + (e.params.property) + ' è presente'; | ||
out += ' ' + (e.params.deps) + ' quando l\'attributo ' + (e.params.property) + ' è presente'; | ||
break; | ||
case 'enum': | ||
out = 'dovrebbe essere pari ad uno dei valori predefiniti'; | ||
out = 'dovrebbe essere uguale ad uno dei valori predefiniti'; | ||
break; | ||
@@ -57,3 +63,3 @@ case 'exclusiveMaximum': | ||
var cond = e.params.comparison + " " + e.params.limit; | ||
out += 'dovrebbe essere ' + (cond); | ||
out += 'deve essere ' + (cond); | ||
break; | ||
@@ -63,15 +69,15 @@ case 'exclusiveMinimum': | ||
var cond = e.params.comparison + " " + e.params.limit; | ||
out += 'dovrebbe essere ' + (cond); | ||
out += 'deve essere ' + (cond); | ||
break; | ||
case 'false schema': | ||
out = 'boolean schema is false'; | ||
out = 'lo schema booleano è falso'; | ||
break; | ||
case 'format': | ||
out = 'deve corrispondere formato "' + (e.params.format) + '"'; | ||
out = 'deve corrispondere al formato "' + (e.params.format) + '"'; | ||
break; | ||
case 'formatExclusiveMaximum': | ||
out = 'formatExclusiveMaximum should be boolean'; | ||
out = 'formatExclusiveMaximum deve essere booleano'; | ||
break; | ||
case 'formatExclusiveMinimum': | ||
out = 'formatExclusiveMinimum should be boolean'; | ||
out = 'formatExclusiveMinimum deve essere booleano'; | ||
break; | ||
@@ -81,3 +87,3 @@ case 'formatMaximum': | ||
var cond = e.params.comparison + " " + e.params.limit; | ||
out += 'should be ' + (cond); | ||
out += 'deve essere ' + (cond); | ||
break; | ||
@@ -87,6 +93,6 @@ case 'formatMinimum': | ||
var cond = e.params.comparison + " " + e.params.limit; | ||
out += 'should be ' + (cond); | ||
out += 'deve essere ' + (cond); | ||
break; | ||
case 'if': | ||
out = 'should match "' + (e.params.failingKeyword) + '" schema'; | ||
out = 'deve corrispondere allo schema "' + (e.params.failingKeyword) + '"'; | ||
break; | ||
@@ -96,3 +102,3 @@ case 'maximum': | ||
var cond = e.params.comparison + " " + e.params.limit; | ||
out += 'dovrebbe essere ' + (cond); | ||
out += 'deve essere ' + (cond); | ||
break; | ||
@@ -102,3 +108,3 @@ case 'maxItems': | ||
var n = e.params.limit; | ||
out += 'non dovrebbe avere più di ' + (n) + ' element'; | ||
out += 'non deve avere più di ' + (n) + ' element'; | ||
if (n == 1) { | ||
@@ -113,3 +119,3 @@ out += 'o'; | ||
var n = e.params.limit; | ||
out += 'non dovrebbe essere più lungo di ' + (n) + ' caratter'; | ||
out += 'non deve essere più lungo di ' + (n) + ' caratter'; | ||
if (n == 1) { | ||
@@ -124,3 +130,3 @@ out += 'e'; | ||
var n = e.params.limit; | ||
out += 'non dovrebbe avere più ' + (n) + ' attribut'; | ||
out += 'non deve avere più di ' + (n) + ' attribut'; | ||
if (n == 1) { | ||
@@ -135,3 +141,3 @@ out += 'o'; | ||
var cond = e.params.comparison + " " + e.params.limit; | ||
out += 'dovrebbe essere ' + (cond); | ||
out += 'deve essere ' + (cond); | ||
break; | ||
@@ -141,3 +147,3 @@ case 'minItems': | ||
var n = e.params.limit; | ||
out += 'non dovrebbe avere meno di ' + (n) + ' element'; | ||
out += 'non deve avere meno di ' + (n) + ' element'; | ||
if (n == 1) { | ||
@@ -152,3 +158,3 @@ out += 'o'; | ||
var n = e.params.limit; | ||
out += 'non dovrebbe essere meno lungo di ' + (n) + ' caratter'; | ||
out += 'non deve essere meno lungo di ' + (n) + ' caratter'; | ||
if (n == 1) { | ||
@@ -163,3 +169,3 @@ out += 'e'; | ||
var n = e.params.limit; | ||
out += 'non dovrebbe avere meno ' + (n) + ' attribut'; | ||
out += 'non deve avere meno di ' + (n) + ' attribut'; | ||
if (n == 1) { | ||
@@ -172,30 +178,30 @@ out += 'o'; | ||
case 'multipleOf': | ||
out = 'dovrebbe essere un multiplo di ' + (e.params.multipleOf); | ||
out = 'deve essere un multiplo di ' + (e.params.multipleOf); | ||
break; | ||
case 'not': | ||
out = 'non dovrebbe essere valida in base allo schema di "non"'; | ||
out = 'non deve essere valido in base allo schema di "non"'; | ||
break; | ||
case 'oneOf': | ||
out = 'dovrebbe corrispondere esattamente uno schema in "oneOf"'; | ||
out = 'deve corrispondere esattamente ad uno schema in "oneOf"'; | ||
break; | ||
case 'pattern': | ||
out = 'deve corrispondere al modello "' + (e.params.pattern) + '"'; | ||
out = 'deve corrispondere al formato "' + (e.params.pattern) + '"'; | ||
break; | ||
case 'patternRequired': | ||
out = 'should have property matching pattern "' + (e.params.missingPattern) + '"'; | ||
out = 'deve avere un attributo che corrisponda al formato "' + (e.params.missingPattern) + '"'; | ||
break; | ||
case 'propertyNames': | ||
out = 'property name \'' + (e.params.propertyName) + '\' is invalid'; | ||
out = 'il nome dell\'attritbuto \'' + (e.params.propertyName) + '\' non è valido'; | ||
break; | ||
case 'required': | ||
out = 'dovrebbe avere attributo richiesta ' + (e.params.missingProperty); | ||
out = 'deve avere l\'attributo obbligatorio ' + (e.params.missingProperty); | ||
break; | ||
case 'switch': | ||
out = 'should pass "switch" keyword validation, case ' + (e.params.caseIndex) + ' fails'; | ||
out = 'deve passare la validazione del criterio "switch", il caso ' + (e.params.caseIndex) + ' fallisce'; | ||
break; | ||
case 'type': | ||
out = 'dovrebbe essere ' + (e.params.type); | ||
out = 'deve essere di tipo ' + (e.params.type); | ||
break; | ||
case 'uniqueItems': | ||
out = 'non dovrebbe avere elementi duplicati (elementi ## ' + (e.params.j) + ' e ' + (e.params.i) + ' sono uguali)'; | ||
out = 'non deve avere duplicati (gli elementi ## ' + (e.params.j) + ' e ' + (e.params.i) + ' sono uguali)'; | ||
break; | ||
@@ -202,0 +208,0 @@ default: |
@@ -26,3 +26,3 @@ 'use strict'; | ||
case 'contains': | ||
out = 'should contain a valid item'; | ||
out = '应当包含一个有效项'; | ||
break; | ||
@@ -51,3 +51,3 @@ case 'custom': | ||
case 'false schema': | ||
out = 'boolean schema is false'; | ||
out = '布尔模式出错'; | ||
break; | ||
@@ -74,3 +74,3 @@ case 'format': | ||
case 'if': | ||
out = 'should match "' + (e.params.failingKeyword) + '" schema'; | ||
out = '应当匹配模式 "' + (e.params.failingKeyword) + '" '; | ||
break; | ||
@@ -133,3 +133,3 @@ case 'maximum': | ||
case 'propertyNames': | ||
out = 'property name \'' + (e.params.propertyName) + '\' is invalid'; | ||
out = '属性名 \'' + (e.params.propertyName) + '\' 无效'; | ||
break; | ||
@@ -136,0 +136,0 @@ case 'required': |
{ | ||
"name": "ajv-i18n", | ||
"version": "3.0.0", | ||
"version": "3.1.0", | ||
"description": "Internationalised error messages for ajv JSON-Schema validator", | ||
@@ -46,3 +46,3 @@ "main": "localize/index.js", | ||
"brfs": "^1.4.3", | ||
"browserify": "^14.1.0", | ||
"browserify": "^16.0.0", | ||
"coveralls": "^3.0.0", | ||
@@ -56,3 +56,3 @@ "dot": "^1.0.3", | ||
"karma-phantomjs-launcher": "^1.0.0", | ||
"mocha": "^4.0.0", | ||
"mocha": "^5.0.0", | ||
"nyc": "^11.0.0", | ||
@@ -59,0 +59,0 @@ "phantomjs-prebuilt": "^2.1.4", |
@@ -6,3 +6,3 @@ # ajv-i18n | ||
[![Build Status](https://travis-ci.org/epoberezkin/ajv-i18n.svg?branch=master)](https://travis-ci.org/epoberezkin/ajv-i18n) | ||
[![npm version](https://badge.fury.io/js/ajv-i18n.svg)](http://badge.fury.io/js/ajv-i18n) | ||
[![npm](https://img.shields.io/npm/v/ajv-i18n.svg)](https://www.npmjs.com/package/ajv-i18n) | ||
[![Coverage Status](https://coveralls.io/repos/github/epoberezkin/ajv-i18n/badge.svg?branch=master)](https://coveralls.io/github/epoberezkin/ajv-i18n?branch=master) | ||
@@ -24,3 +24,3 @@ [![Greenkeeper badge](https://badges.greenkeeper.io/epoberezkin/ajv-i18n.svg)](https://greenkeeper.io/) | ||
|🇭🇺 hu|Hungarian|[szilveszter9](https://github.com/szilveszter9)|✓|-|-| | ||
|🇮🇹 it|Italian |[jasoniangreen](https://github.com/jasoniangreen)|✓|-|-| | ||
|🇮🇹 it|Italian |[jasoniangreen](https://github.com/jasoniangreen)<br>[lucacorti](https://github.com/lucacorti)|✓<br> |<br>✓|<br>✓| | ||
|🇯🇵 ja|Japanese |[gilgongo](https://github.com/gilgongo)|✓|-|-| | ||
@@ -33,3 +33,3 @@ |🇳🇴 nb|Norwegian bokmål|[mtramm](https://github.com/mtramm)|✓|✓|-| | ||
|🇸🇪 sv|Swedish |[limmen](https://github.com/Limmen)|✓|✓|-| | ||
|🇨🇳 zh|Chinese |[jinzhubaofu](https://github.com/jinzhubaofu)|✓|-|-| | ||
|🇨🇳 zh|Chinese |[jinzhubaofu](https://github.com/jinzhubaofu)<br>[leuction](https://github.com/leuction)|✓<br> |<br>✓|<br>✓| | ||
@@ -130,2 +130,4 @@ <sup>\*</sup> added boolean schema, keywords `const`, `contains`, `propertyNames` | ||
[![Mahmoud-Mardeni](https://avatars3.githubusercontent.com/u/19661270?v=3&s=40)](https://github.com/Mahmoud-Mardeni "Mahmoud-Mardeni") | ||
[![leuction](https://avatars3.githubusercontent.com/u/8056270?v=3&s=40)](https://github.com/leuction "leuction") | ||
[![lucacorti](https://avatars2.githubusercontent.com/u/1076999?v=3&s=40)](https://github.com/lucacorti "lucacorti") | ||
@@ -132,0 +134,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
134
99490
22
2803