Files
homarr/public/locales/uk/zod.json
2023-11-03 21:15:08 +01:00

22 lines
1.1 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"errors": {
"default": "Це поле є недійсним",
"required": "Це поле обов'язкове для заповнення",
"string": {
"startsWith": "Це поле повинно починатися з {{startsWith}}",
"endsWith": "Це поле повинно закінчуватися на {{endsWith}}",
"includes": "Це поле повинно містити {{includes}}"
},
"tooSmall": {
"string": "Це поле повинно мати довжину не менше {{minimum}} символів",
"number": "Це поле повинно бути більше або дорівнювати {{minimum}}"
},
"tooBig": {
"string": "Це поле має містити не більше {{maximum}} символів",
"number": "Це поле повинно бути менше або дорівнювати {{maximum}}"
},
"custom": {
"passwordMatch": "Паролі повинні збігатися"
}
}
}