Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
bug fix and addition of elapsed_time language variable
  • Loading branch information
Cicatelli committed Oct 3, 2024
1 parent 8fde0b5 commit 44c730b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function StatusBarTimers(props: StatusBarTimersProps) {
<ClockTime className={styles.timer} value={clock} />
</div>
<div className={styles.elapsedTime}>
<span className={styles.label}>{getLocalizedString('common.time_now')}Elapsed time</span>
<span className={styles.label}>{getLocalizedString('commom.elapsed_time')}</span>
<RunningTime className={styles.timer} value={timer.elapsed} />
</div>
<div className={styles.runningTime}>
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langDe: TranslationObject = {
'common.stage_timer': 'Bühnen-Timer',
'common.started_at': 'Gestartet am',
'common.time_now': 'Aktuelle Zeit',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Veranstaltung endete um',
'countdown.running': 'Veranstaltung läuft',
'countdown.select_event': 'Wählen Sie eine Veranstaltung aus, um sie zu verfolgen',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const langEn = {
'common.stage_timer': 'Stage Timer',
'common.started_at': 'Started At',
'common.time_now': 'Time now',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Event ended at',
'countdown.running': 'Event running',
'countdown.select_event': 'Select an event to follow',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langEs: TranslationObject = {
'common.stage_timer': 'Temporizador de presentador',
'common.started_at': 'Iniciado en',
'common.time_now': 'Ahora',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Evento finalizado a las',
'countdown.running': 'Evento en curso',
'countdown.select_event': 'Seleccionar un evento para seguir',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langFr: TranslationObject = {
'common.stage_timer': 'Minuteur de scène',
'common.started_at': 'Commencé à',
'common.time_now': 'Heure',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Évènement terminé à',
'countdown.running': 'Évènement en cours',
'countdown.select_event': 'Sélectionnez un évènement à suivre',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/hu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langHu: TranslationObject = {
'common.stage_timer': 'Színpadi időzítő',
'common.started_at': 'Kezdődött',
'common.time_now': 'Jelenlegi idő',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Esemény véget ért',
'countdown.running': 'Esemény folyamatban',
'countdown.select_event': 'Válassza ki a követendő eseményt',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langIt: TranslationObject = {
'common.stage_timer': 'Orologio Palco',
'common.started_at': 'Iniziato Alle',
'common.time_now': 'Ora attuale',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Evento finito alle',
'countdown.running': 'Evento in corso',
'countdown.select_event': 'Seleziona un evento da seguire',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/no.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langNo: TranslationObject = {
'common.stage_timer': 'Scenetimer',
'common.started_at': 'Startet',
'common.time_now': 'Klokken nå',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Hendelse avsluttet',
'countdown.running': 'Hendelse pågår',
'countdown.select_event': 'Velg en hendelse å følge',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/pl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langPl: TranslationObject = {
'common.stage_timer': 'Timer Scena',
'common.started_at': 'Rozpoczęte o',
'common.time_now': 'Aktualny czas',
'commom.elapsed_time': 'Elapsed Time',
'countdown.ended': 'Zakończone o',
'countdown.running': 'Trwa',
'countdown.select_event': 'Wybierz event który chcesz śledzić',
Expand Down
1 change: 1 addition & 0 deletions apps/client/src/translation/languages/pt-br.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const langPtbr: TranslationObject = {
'common.stage_timer': 'TEMPO DO APRESENTADOR',
'common.started_at': 'INICIADO ÀS',
'common.time_now': 'HORA ATUAL',
'commom.elapsed_time': 'TEMPO CORRIDO',
'countdown.ended': 'EVENTO ENCERRADO ÀS',
'countdown.running': 'TEMPO RESTANTE',
'countdown.select_event': 'SELECIONE UM EVENTO PARA ACOMPANHAR',
Expand Down

0 comments on commit 44c730b

Please sign in to comment.