Files
homarr/public/locales/ru/zod.json
2024-12-17 18:40:51 +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": "Пароли должны совпадать"
}
}
}