mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
67e67d6a5d
* fix error with is linked to loaded metadata * pass down metadata * create expected schedule * expected start in sub info * for singel subscribtions * refactor * add color to single events * refactor: clean up subscribtion data * show schedule and secondray data for single events * improve subscribtion data display
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { TranslationObject } from 'ontime-types';
|
|
|
|
export const langFr: TranslationObject = {
|
|
'common.expected_finish': 'Fin estimée à',
|
|
'common.minutes': 'min',
|
|
'common.seconds': 'sec',
|
|
'common.now': 'Maintenant',
|
|
'common.next': 'A suivre',
|
|
'common.scheduled_start': 'Début prévu',
|
|
'common.scheduled_end': 'Fin prévue',
|
|
'common.expected_start': 'Début projeté',
|
|
'common.expected_end': 'Fin projetée',
|
|
'common.stage_timer': 'Minuteur de scène',
|
|
'common.started_at': 'Commencé à',
|
|
'common.time_now': 'Heure',
|
|
'common.no_data': 'Aucune donnée',
|
|
'countdown.ended': 'Évènement terminé à',
|
|
'countdown.running': 'Évènement en cours',
|
|
'countdown.loaded': 'Évènement chargé',
|
|
'countdown.select_event': 'Sélectionnez un évènement à suivre',
|
|
'countdown.to_start': 'Évènement commence dans',
|
|
'countdown.waiting': 'En attente du début de l’évènement',
|
|
'countdown.overtime': 'en dépassement',
|
|
'timeline.live': 'live',
|
|
'timeline.done': 'Terminé',
|
|
'timeline.due': 'dû',
|
|
'timeline.followedby': 'Suivi de',
|
|
'project.title': 'Titre',
|
|
'project.description': 'Description',
|
|
'project.info': 'Informations du projet',
|
|
'project.url': 'URL du projet',
|
|
};
|