mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-15 04:13:47 +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
675 B
TypeScript
20 lines
675 B
TypeScript
import { TranslationObject } from './en';
|
|
|
|
export const langNo: TranslationObject = {
|
|
'common.end_time': 'Sluttid',
|
|
'common.expected_finish': 'Forventet slutt',
|
|
'common.now': 'Nå',
|
|
'common.next': 'Neste',
|
|
'common.public_message': 'Offentlig beskjed',
|
|
'common.start_time': 'Starttid',
|
|
'common.stage_timer': 'Scenetimer',
|
|
'common.started_at': 'Startet',
|
|
'common.time_now': 'Klokken nå',
|
|
'countdown.ended': 'Hendelse avsluttet',
|
|
'countdown.running': 'Hendelse pågår',
|
|
'countdown.select_event': 'Velg en hendelse å følge',
|
|
'countdown.to_start': 'Tid til start',
|
|
'countdown.waiting': 'Venter på start',
|
|
'countdown.overtime': 'i overtiden',
|
|
};
|