34 lines
694 B
TypeScript
34 lines
694 B
TypeScript
export default {
|
|
button: {
|
|
saveAndNext: 'Save and Next',
|
|
next: 'Next',
|
|
prev: 'Back',
|
|
cancel: 'Cancel',
|
|
save: 'Save'
|
|
},
|
|
validation: {
|
|
required: 'This field is required',
|
|
minLength: 'Too short',
|
|
maxAgeFromJan1: 'Invalid birth date',
|
|
invalidZip: 'Invalid ZIP',
|
|
insertAddress: 'Please enter an address'
|
|
},
|
|
address: {
|
|
title: 'Address',
|
|
modalTitle: 'Edit address',
|
|
street: 'Street',
|
|
zip: 'ZIP',
|
|
city: 'City',
|
|
country: 'Country',
|
|
foreign: 'Foreign address'
|
|
},
|
|
enum: {
|
|
maritalStatus: {
|
|
SINGLE: 'Single',
|
|
SEPARATED: 'Separated',
|
|
MARRIED: 'Married',
|
|
PARTNERED: 'Partnered'
|
|
}
|
|
}
|
|
} as const
|