augmenttoolkit / shared /src /i18n /es /notif.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 7)
98fbc6d verified
Raw
History Blame Contribute Delete
2.16 kB
import type { TranslationStrings } from '../types';
const notif: TranslationStrings = {
'notif.test.title': '[Test] Notificaci贸n',
'notif.test.simple.text': 'Esta es una notificaci贸n de prueba simple.',
'notif.test.boolean.text': '驴Aceptas esta notificaci贸n de prueba?',
'notif.test.navigate.text': 'Haz clic abajo para ir al panel de control.',
'notif.trip_invite.title': 'Invitaci贸n al viaje',
'notif.trip_invite.text': '{actor} te invit贸 a {trip}',
'notif.booking_change.title': 'Reserva actualizada',
'notif.booking_change.text': '{actor} actualiz贸 una reserva en {trip}',
'notif.trip_reminder.title': 'Recordatorio de viaje',
'notif.trip_reminder.text': '隆Tu viaje {trip} se acerca!',
'notif.todo_due.title': 'Tarea pendiente',
'notif.todo_due.text': '{todo} en {trip} vence el {due}',
'notif.vacay_invite.title': 'Invitaci贸n Vacay Fusion',
'notif.vacay_invite.text':
'{actor} te invit贸 a fusionar planes de vacaciones',
'notif.photos_shared.title': 'Fotos compartidas',
'notif.photos_shared.text': '{actor} comparti贸 {count} foto(s) en {trip}',
'notif.collab_message.title': 'Nuevo mensaje',
'notif.collab_message.text': '{actor} envi贸 un mensaje en {trip}',
'notif.packing_tagged.title': 'Asignaci贸n de equipaje',
'notif.packing_tagged.text': '{actor} te asign贸 a {category} en {trip}',
'notif.version_available.title': 'Nueva versi贸n disponible',
'notif.version_available.text': 'TREK {version} ya est谩 disponible',
'notif.action.view_trip': 'Ver viaje',
'notif.action.view_collab': 'Ver mensajes',
'notif.action.view_packing': 'Ver equipaje',
'notif.action.view_photos': 'Ver fotos',
'notif.action.view_vacay': 'Ver Vacay',
'notif.action.view_admin': 'Ir al admin',
'notif.action.view': 'Ver',
'notif.action.accept': 'Aceptar',
'notif.action.decline': 'Rechazar',
'notif.generic.title': 'Notificaci贸n',
'notif.generic.text': 'Tienes una nueva notificaci贸n',
'notif.dev.unknown_event.title': '[DEV] Evento desconocido',
'notif.dev.unknown_event.text':
'El tipo de evento "{event}" no est谩 registrado en EVENT_NOTIFICATION_CONFIG',
};
export default notif;