mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-30 04:15:13 +08:00
38 lines
692 B
TypeScript
38 lines
692 B
TypeScript
const translation = {
|
|
daysInWeek: {
|
|
Sun: 'Sol',
|
|
Thu: 'Jue',
|
|
Tue: 'Mar',
|
|
Sat: 'Sáb',
|
|
Mon: 'Mon',
|
|
Fri: 'Viernes',
|
|
Wed: 'Miércoles',
|
|
},
|
|
months: {
|
|
August: 'Agosto',
|
|
September: 'Septiembre',
|
|
April: 'Abril',
|
|
February: 'Febrero',
|
|
January: 'Enero',
|
|
November: 'Noviembre',
|
|
October: 'octubre',
|
|
May: 'Mayo',
|
|
June: 'Junio',
|
|
December: 'Diciembre',
|
|
July: 'Julio',
|
|
March: 'Marzo',
|
|
},
|
|
operation: {
|
|
ok: 'De acuerdo',
|
|
pickDate: 'Seleccionar fecha',
|
|
cancel: 'Cancelar',
|
|
now: 'Ahora',
|
|
},
|
|
title: {
|
|
pickTime: 'Elegir hora',
|
|
},
|
|
defaultPlaceholder: 'Elige una hora...',
|
|
}
|
|
|
|
export default translation
|