25 lines
563 B
JavaScript
25 lines
563 B
JavaScript
module.exports = {
|
|
messages: {
|
|
es: {
|
|
title: 'Recibo',
|
|
date: 'Fecha',
|
|
payed: 'En {0}, a {1} de {2} de {3}',
|
|
client: 'Cliente {0}',
|
|
months: [
|
|
'Enero',
|
|
'Febrero',
|
|
'Marzo',
|
|
'Abril',
|
|
'Mayo',
|
|
'Junio',
|
|
'Julio',
|
|
'Agosto',
|
|
'Septiembre',
|
|
'Octubre',
|
|
'Noviembre',
|
|
'Diciembre'
|
|
]
|
|
},
|
|
},
|
|
};
|