npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ajv-i18n

v4.2.0

Published

Internationalised error messages for Ajv JSON validator

Downloads

467,166

Readme

ajv-i18n

Internationalised error messages for Ajv - superfast JSON validator for JSON Schema and JSON Type Definition.

Build Status npm Coverage Status Gitter

Supported locales

|locale|language |contributor|draft-04|draft-061|draft-072|draft2019-093/2020-124|JTD5 |------|:-------:|:---------:|:------:|:------:|:------:|:------:|:------:| |🇬🇧 en|English | |✓|✓|✓|✓|✓| |AR ar|Arabic |Mahmoud-Mardeni|✓|✓|✓|-|-| |CA ca|Catalan |alexandreec|✓|✓|✓|-|| |🇨🇿 cs|Czech |kiskovacsNAM0007|✓ |✓ |✓|-|| |🇩🇪 de|German |jmtoballgflohr|✓ |✓ |✓|✓ |✓ | |🇪🇸 es|Spanish |jpablom|✓|✓|✓|-|| |🇫🇮 fi|Finnish |saulipurhonen|✓|✓|✓|✓|✓| |🇫🇷 fr|French |monlouisjTelokis|✓ |✓ |✓|-|| |🇭🇺 hu|Hungarian|szilveszter9|✓|-|-|-|| |🇮🇩 id|Indonesian|ekoeryanto|✓|✓|✓|-|| |🇮🇹 it|Italian |jasoniangreenlucacorti|✓ |✓|✓|✓|✓| |🇯🇵 ja|Japanese |gilgongo|✓|-|-|-|| |🇰🇷 ko|Korean |MinByeongDon|✓|✓|✓|✓|✓| |🇳🇴 nb|Norwegian bokmål|mtramm|✓|✓|-|-|| |🇳🇱 nl|Dutch |pimlieniekvb|✓|✓|✓|✓|✓| |🇵🇱 pl|Polish |danielzurawski|✓|-|-|-|| |🇧🇷 pt-BR|Português - Brasil|marcosravaggondim|✓|✓|✓|✓|✓| |🇷🇺 ru|Russian | |✓|✓|✓|✓|✓| |🇸🇰 sk|Slovak |kiskovacs|✓|✓|-|-|| |🇸🇪 sv|Swedish |limmen|✓|✓|-|-|*| |🇹🇭 th|Thai |encX|✓|✓|✓|✓|✓| |🇨🇳 zh|Chinese |jinzhubaofuleuction|✓ |✓|✓|✓|✓| |🇹🇼 zh-TW|Chinese - Taiwan|minipai|✓|✓|✓|✓|✓|

1 added boolean schema, keywords const, contains, propertyNames

2 added keywords if/then/else

3 added messages for keywords unevaluatedProperties, unevaluatedItems, dependentRequired

4 keyword items messages

5 JSON Type Definition

* discriminator form messages are not translated

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

Install

Using npm:

npm install ajv-i18n

Usage

In node:

const Ajv = require("ajv") // version >= 8.0.0
const localize = require("ajv-i18n")
// or for JSON Type Definition
// const localize = require("ajv-i18n/localize/jtd")

const ajv = Ajv({allErrors: true, messages: false})
const validate = ajv.compile(schema)
const 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 (e.g., with browserify):

const localize_ru = require('ajv-i18n/localize/ru')
// or for JSON Type Definition
// const localize_ru = require('ajv-i18n/localize/ru/jtd')

or

const 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 template localize.jst, JSON Schema messages and JSON Type Definition messages. Templates are pre-compiled, 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 Telokis ggondim niekvb NAM0007 saulipurhonen

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