Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 694 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 694 Bytes

Polish translation of yup validation messages

This repository contains a single JavaScript file which exports Polish versions for Yup validation messages.

mixed.notType hasn't been translated as it would need a helper method that is not publicly exported by Yup

Usage

npm install yup-locale-pl

or

yarn add yup-locale-pl
import * as yup from 'yup';
import yupLocalePL from 'yup-locale-pl';

yup.setLocale(yupLocalePL);

Make sure to set your localized messages before any other calls to Yup, see yup#using-a-custom-locale-dictionary for details.