GithubHelp home page GithubHelp logo

jinzhubaofu / ajv-i18n Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ajv-validator/ajv-i18n

0.0 2.0 0.0 82 KB

Internationalised error messages for Ajv JSON-Schema validator

Home Page: https://github.com/epoberezkin/ajv

License: MIT License

JavaScript 99.36% Shell 0.64%

ajv-i18n's Introduction

ajv-i18n

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

Build Status npm version

Supported locales

locale language contributor
๐Ÿ‡ฉ๐Ÿ‡ช de German jmtoball
๐Ÿ‡ฌ๐Ÿ‡ง en English
๐Ÿ‡ญ๐Ÿ‡บ hu Hungarian szilveszter9
๐Ÿ‡ฎ๐Ÿ‡น it Italian jasoniangreen
๐Ÿ‡ฏ๐Ÿ‡ต ja Japanese gilgongo
๐Ÿ‡ต๐Ÿ‡ฑ pl Polish danielzurawski
๐Ÿ‡ท๐Ÿ‡บ ru Russian
๐Ÿ‡ช๐Ÿ‡ธ es Spanish jpablom
swe-flag sv Swedish limmen
๐Ÿ‡จ๐Ÿ‡ณ zh-CN Chinese jinzhubaofu
Please contribute locales that you need to use if they are missing.

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) {
    // array of error objects with Russian messages
    var errors = localize.ru(validate.errors);
    // string with all errors and data paths
    console.log(ajv.errorsText(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.

License

MIT

ajv-i18n's People

Contributors

bearmini avatar danielzurawski avatar epoberezkin avatar hirse avatar jasoniangreen avatar jmtoball avatar jpcodr avatar limmen avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.