1.0.2 โ€ข Published 4 years ago

@kotainer/ajv-ru-en v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

ajv-i18n

Internationalised error messages for Ajv - currently the fastest JSON-Schema validator

Build Status npm Coverage Status Greenkeeper badge Gitter

Supported locales

localelanguagecontributordraft-04draft-06*draft-07**
๐Ÿ‡ฌ๐Ÿ‡ง enEnglishโœ“โœ“โœ“
AR arArabicMahmoud-Mardeniโœ“โœ“โœ“
๐Ÿ‡จ๐Ÿ‡ฟ czCzechkiskovacsโœ“โœ“-
๐Ÿ‡ฉ๐Ÿ‡ช deGermanjmtoballgflohrโœ“ย โœ“ย โœ“
๐Ÿ‡ช๐Ÿ‡ธ esSpanishjpablomโœ“--
๐Ÿ‡ซ๐Ÿ‡ท frFrenchmonlouisjโœ“โœ“-
๐Ÿ‡ญ๐Ÿ‡บ huHungarianszilveszter9โœ“--
๐Ÿ‡ฎ๐Ÿ‡ฉ idIndonesianEko Eryantoโœ“โœ“โœ“
๐Ÿ‡ฎ๐Ÿ‡น itItalianjasoniangreenlucacortiโœ“ย โœ“โœ“
๐Ÿ‡ฏ๐Ÿ‡ต jaJapanesegilgongoโœ“--
๐Ÿ‡ฐ๐Ÿ‡ท koKoreanMinByeongDonโœ“โœ“โœ“
๐Ÿ‡ณ๐Ÿ‡ด nbNorwegian bokmรฅlmtrammโœ“โœ“-
๐Ÿ‡ณ๐Ÿ‡ฑ nlDutchpimlieโœ“โœ“โœ“
๐Ÿ‡ต๐Ÿ‡ฑ plPolishdanielzurawskiโœ“--
๐Ÿ‡ง๐Ÿ‡ท pt-BRPortuguรชs - Brasilmarcosravaโœ“โœ“โœ“
๐Ÿ‡ท๐Ÿ‡บ ruRussianโœ“โœ“โœ“
๐Ÿ‡ธ๐Ÿ‡ฐ skSlovakkiskovacsโœ“โœ“-
๐Ÿ‡ธ๐Ÿ‡ช svSwedishlimmenโœ“โœ“-
๐Ÿ‡น๐Ÿ‡ญ thThaiencXโœ“โœ“โœ“
๐Ÿ‡จ๐Ÿ‡ณ zhChinesejinzhubaofuleuctionโœ“ย โœ“โœ“
๐Ÿ‡น๐Ÿ‡ผ zh-TWChinese - Taiwanminipaiโœ“โœ“โœ“

* added boolean schema, keywords const, contains, propertyNames

** added keywords if/then/else

Please contribute locales that you need to use if they are missing or incomplete.

Install

Using npm:

npm install ajv-i18n

Using bower:

bower install ajv-i18n
cd bower_components/ajv-i18n
npm install && npm run bundle-all

Usage

In node:

var Ajv = require('ajv'); // version >= 2.0.0
var localize = require('ajv-i18n');

// option `i18n` is required for this package to work
var ajv = Ajv({ allErrors: true });
var validate = ajv.compile(schema);
var valid = validate(data);

if (!valid) {
    // ru for Russian
    localize.ru(validate.errors);
    // string with all errors and data paths
    console.log(ajv.errorsText(validate.errors, { separator: '\n' }));
}

To require only necessary locales in browser (with browserify):

var localize_ru = require('ajv-i18n/localize/ru');

or

var localize = {
    en: require('ajv-i18n/localize/en'),
    ru: require('ajv-i18n/localize/ru')
};

See Ajv docs for more information.

Tests

npm install
git submodule update --init
npm test

Contributing

Functions that localize error messages are generated using doT templates in messages and localize.jst template. Templates are precompiled so doT is not a run-time dependency.

npm run build - compiles functions to localize folder.

Contributors of locales

danielzurawski szilveszter9 jmtoball gilgongo jasoniangreen jpablom limmen jinzhubaofu kiskovacs mahmoud-mardeni monlouisj marcosrava mtramm Mahmoud-Mardeni leuction lucacorti minipai encX MinByeongDon gflohr ekoeryanto

Enterprise support

ajv-i18n package is a part of Tidelift enterprise subscription - it provides a centralised commercial support to open-source software users, in addition to the support provided by software maintainers.

Security contact

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure. Please do NOT report security vulnerability via GitHub issues.

License

MIT