mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
31fc222876
* style: disable menu bar in run mode * fix: external devices in dev mode * fix: add missing elements to translations * ux: improve translation strings * refactor: improve typing * style: blink on event change * refactor: param options is object --------- Co-authored-by: Hannes Rüger <hannesrueger@gmx.de>
20 lines
758 B
TypeScript
20 lines
758 B
TypeScript
import { TranslationObject } from './en';
|
|
|
|
export const langEs: TranslationObject = {
|
|
'common.end_time': 'Hora de finalización',
|
|
'common.expected_finish': 'Finalización esperada',
|
|
'common.now': 'Ahora',
|
|
'common.next': 'Siguiente',
|
|
'common.public_message': 'Mensaje público',
|
|
'common.start_time': 'Hora de inicio',
|
|
'common.stage_timer': 'Temporizador de presentador',
|
|
'common.started_at': 'Iniciado en',
|
|
'common.time_now': 'Ahora',
|
|
'countdown.ended': 'Evento finalizado a las',
|
|
'countdown.running': 'Evento en curso',
|
|
'countdown.select_event': 'Seleccionar un evento para seguir',
|
|
'countdown.to_start': 'Tiempo para comenzar',
|
|
'countdown.waiting': 'Esperando el inicio del evento',
|
|
'countdown.overtime': 'en tiempo extra',
|
|
};
|