yo-next-auth/locales/uk/schema.ts
2024-04-26 22:16:21 +03:00

21 lines
899 B
TypeScript
Raw 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.

export default {
password: {
required: 'Необхідно ввести пароль',
length: {
min: 'Пароль має містити принаймні {min} символів',
max: 'Максимальна кількість символів у паролі: {max}',
},
strength: {
acme: 'Пароль повинен містити принаймні один малий, приписний, цифровий та спеціальний символ. Довжина паролю має бути від {min} до {max} символів.',
},
},
email: {
required: 'Адреса електронної пошти обов’язкова або не дійсна',
},
name: {
required: `Необхідно вказати ім'я`,
},
two_factor: {
length: 'Код має містити рівно {length} цифр',
},
} as const