Code Monkey home page Code Monkey logo

zod-i18n's Introduction

npm version codecov CI

hero

Zod Internationalization

This library is used to translate Zod's default error messages.

Installation

yarn add zod-i18n-map i18next

This library depends on i18next.

How to Use

import i18next from "i18next";
import { z } from "zod";
import { zodI18nMap } from "zod-i18n-map";
// Import your language translation files
import translation from "zod-i18n-map/locales/es/zod.json";

// lng and resources key depend on your locale.
i18next.init({
  lng: "es",
  resources: {
    es: { zod: translation },
  },
});
z.setErrorMap(zodI18nMap);

const schema = z.string().email();
// Translated into Spanish (es)
schema.parse("foo"); // => correo invรกlido

makeZodI18nMap

Detailed customization is possible by using makeZodI18nMap and option values.

export type MakeZodI18nMap = (option?: ZodI18nMapOption) => ZodErrorMap;

export type ZodI18nMapOption = {
  t?: i18n["t"];
  ns?: string | readonly string[]; // See: `Namespace`
  handlePath?: {
    // See: `Handling object schema keys`
    keyPrefix?: string;
  };
};

Namespace (ns)

You can switch between translation files by specifying a namespace. This is useful in cases where the application handles validation messages for different purposes, e.g., validation messages for forms are for end users, while input value checks for API schemas are for developers.

The default namespace is zod.

import i18next from "i18next";
import { z } from "zod";
import { makeZodI18nMap } from "zod-i18n-map";

i18next.init({
  lng: "en",
  resources: {
    en: {
      zod: {
        // default namespace
        invalid_type: "Error: expected {{expected}}, received {{received}}",
      },
      formValidation: {
        // custom namespace
        invalid_type:
          "it is expected to provide {{expected}} but you provided {{received}}",
      },
    },
  },
});

// use default namespace
z.setErrorMap(makeZodI18nMap());
z.string().parse(1); // => Error: expected string, received number

// select custom namespace
z.setErrorMap(makeZodI18nMap({ ns: "formValidation" }));
z.string().parse(1); // => it is expected to provide string but you provided number

๐Ÿ“ You can also specify multiple namespaces in an array.

Plurals

Messages using {{maximum}}, {{minimum}} or {{keys}} can be converted to the plural form.

Keys are i18next compliant. (https://www.i18next.com/translation-function/plurals)

{
  "exact_one": "String must contain exactly {{minimum}} character",
  "exact_other": "String must contain exactly {{minimum}} characters"
}
import i18next from "i18next";
import { z } from "zod";
import { zodI18nMap } from "zod-i18n-map";

i18next.init({
  lng: "en",
  resources: {
    en: {
      zod: {
        errors: {
          too_big: {
            string: {
              exact_one: "String must contain exactly {{maximum}} character",
              exact_other: "String must contain exactly {{maximum}} characters",
            },
          },
        },
      },
    },
  },
});

z.setErrorMap(zodI18nMap);

z.string().length(1).safeParse("abc"); // => String must contain exactly 1 character

z.string().length(5).safeParse("abcdefgh"); // => String must contain exactly 5 characters

Custom errors

You can translate also custom errors, for example errors from refine.

Create a key for the custom error in a namespace and add i18n to the refine second arg(see example)

import i18next from "i18next";
import { z } from "zod";
import { makeZodI18nMap } from "zod-i18n-map";
import translation from "zod-i18n-map/locales/en/zod.json";

i18next.init({
  lng: "en",
  resources: {
    en: {
      zod: translation,
      custom: {
        my_error_key: "Something terrible",
        my_error_key_with_value: "Something terrible {{msg}}",
      },
    },
  },
});

z.setErrorMap(makeZodI18nMap({ ns: ["zod", "custom"] }));

z.string()
  .refine(() => false, { params: { i18n: "my_error_key" } })
  .safeParse(""); // => Something terrible

// Or

z.string()
  .refine(() => false, {
    params: {
      i18n: { key: "my_error_key_with_value", values: { msg: "happened" } },
    },
  })
  .safeParse(""); // => Something terrible happened

Handling object schema keys (handlePath)

When dealing with structured data, such as when using Zod as a validator for form input values, it is common to generate a schema with z.object. You can handle the object's key in the message by preparing messages with the key in the with_path context.

import i18next from "i18next";
import { z } from "zod";
import { zodI18nMap } from "zod-i18n-map";

i18next.init({
  lng: "en",
  resources: {
    en: {
      zod: {
        errors: {
          invalid_type: "Expected {{expected}}, received {{received}}",
          invalid_type_with_path:
            "{{path}} is expected {{expected}}, received {{received}}",
        },
        userName: "User's name",
      },
    },
  },
});

z.setErrorMap(zodI18nMap);

z.string().parse(1); // => Expected string, received number

const schema = z.object({
  userName: z.string(),
});
schema.parse({ userName: 1 }); // => User's name is expected string, received number

If _with_path is suffixed to the key of the message, that message will be adopted in the case of an object type schema. If there is no message key with _with_path, fall back to the normal error message.

Object schema keys can be handled in the message with {{path}}. By preparing the translated data for the same key as the key in the object schema, the translated value will be output in {{path}}, otherwise the key will be output as is. It is possible to access nested translation data by specifying handlePath.keyPrefix.

i18next.init({
  lng: "en",
  resources: {
    en: {
      zod: {
        errors: {
          invalid_type: "Expected {{expected}}, received {{received}}",
          invalid_type_with_path:
            "{{- path}} is expected {{expected}}, received {{received}}",
        },
      },
      form: {
        paths: {
          userName: "User's name",
        },
      },
    },
  },
});

z.setErrorMap(
  zodI18nMap({
    ns: ["zod", "form"],
    handlePath: {
      keyPrefix: "paths",
    },
  })
);

Translation Files

zod-i18n-map contains translation files for several locales.

It is also possible to create and edit translation files. You can use this English translation file as a basis for rewriting it in your language.

If you have created a translation file for a language not yet in the repository, please send us a pull request.

Use with next-i18next

Many users will want to use it with next-i18next (i.e. on Next.js). This example summarizes how to use with it.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the MIT License - see the LICENSE file for details

Contributors โœจ

All Contributors

Thanks goes to these wonderful people (emoji key):

Aiji Uejima
Aiji Uejima

๐Ÿ’ป ๐ŸŒ โš ๏ธ ๐Ÿค”
Ismail Ajizou
Ismail Ajizou

๐ŸŒ โš ๏ธ
Mohammed Maher
Mohammed Maher

๐ŸŒ โš ๏ธ
Luiz Oliveira Montedonio
Luiz Oliveira Montedonio

๐ŸŒ โš ๏ธ
Izayoi Hibiki
Izayoi Hibiki

๐ŸŒ โš ๏ธ
Hrafnkell Baldursson
Hrafnkell Baldursson

๐ŸŒ โš ๏ธ
Arturo
Arturo

๐ŸŒ โš ๏ธ
Nick Sulkers
Nick Sulkers

๐ŸŒ โš ๏ธ
Lukas
Lukas

๐ŸŒ โš ๏ธ
yodaka
yodaka

๐ŸŒ ๐Ÿ›
Tomer Yechiel
Tomer Yechiel

๐Ÿ’ป โš ๏ธ
Leonardo Montini
Leonardo Montini

๐ŸŒ โš ๏ธ
Recep ร‡iftรงi
Recep ร‡iftรงi

๐ŸŒ โš ๏ธ
TeraWattHour
TeraWattHour

๐ŸŒ โš ๏ธ
ๅ‡ฑๆฉKane
ๅ‡ฑๆฉKane

๐ŸŒ โš ๏ธ
fcrozatier
fcrozatier

๐ŸŒ ๐Ÿ›
Trond Albinussen
Trond Albinussen

๐ŸŒ โš ๏ธ
Christian Gil
Christian Gil

๐ŸŒ ๐Ÿ›
Artem Manchenkov
Artem Manchenkov

๐ŸŒ โš ๏ธ
Teodoro Villanueva
Teodoro Villanueva

๐Ÿ’ป
Willem Jan Weitering
Willem Jan Weitering

๐ŸŒ
Mendy Landa
Mendy Landa

๐ŸŒ โš ๏ธ
Px (Guilherme Ciota)
Px (Guilherme Ciota)

๐ŸŒ
Stรฉphane Raimbault
Stรฉphane Raimbault

๐ŸŒ
gabinbernard
gabinbernard

๐ŸŒ โš ๏ธ
Gabriel Majeri
Gabriel Majeri

๐ŸŒ โš ๏ธ
Karolis Kraujelis
Karolis Kraujelis

๐ŸŒ โš ๏ธ
Ihor
Ihor

๐ŸŒ โš ๏ธ
Umidullo Suyunov
Umidullo Suyunov

๐ŸŒ โš ๏ธ
lkoiescg2031
lkoiescg2031

๐ŸŒ โš ๏ธ
Elias Eskelinen
Elias Eskelinen

๐ŸŒ โš ๏ธ
Boris Martinovic
Boris Martinovic

๐ŸŒ โš ๏ธ
Ondล™ej Hliba
Ondล™ej Hliba

๐ŸŒ โš ๏ธ
Anderson Dourado
Anderson Dourado

๐ŸŒ
YiJie
YiJie

๐ŸŒ

This project follows the all-contributors specification. Contributions of any kind welcome!

zod-i18n's People

Contributors

aiji42 avatar allcontributors[bot] avatar balastrong avatar demptd13 avatar fcrozatier avatar gabinbernard avatar hrafnkellbaldurs avatar ismailajizou avatar itispx avatar izayoi-hibiki avatar jblxo avatar kane50613 avatar kudze avatar lkoiescg2031 avatar lukas-zoellner avatar maherapp avatar manchenkoff avatar mendylanda avatar montedonioluiz avatar nicksulkers avatar nwylzw avatar renovate[bot] avatar stephane avatar teovillanueva avatar terawatthour avatar tomer-yechiel avatar umidullo avatar undeadevs avatar wjsymagic avatar yodakaengineer 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.