@jjlmoya/utils-sports 1.60.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/tool/rugbyScoreKeeper/component.astro +37 -30
- package/src/tool/rugbyScoreKeeper/i18n/de.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/en.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/es.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/fr.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/id.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/it.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/ja.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/ko.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/nl.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/pl.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/pt.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/ru.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/sv.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/tr.ts +2 -9
- package/src/tool/rugbyScoreKeeper/i18n/zh.ts +2 -9
- package/src/tool/rugbyScoreKeeper/logic.test.ts +12 -1
- package/src/tool/rugbyScoreKeeper/logic.ts +11 -14
- package/src/tool/rugbyScoreKeeper/rugby-scorekeeper.css +145 -30
- package/src/tool/rugbyScoreKeeper/storage.test.ts +66 -0
- package/src/tool/rugbyScoreKeeper/storage.ts +126 -0
- package/src/tool/rugbyScoreKeeper/ui-helpers.ts +4 -10
- package/src/tool/rugbyScoreKeeper/ui-render.ts +149 -0
- package/src/tool/rugbyScoreKeeper/ui-runtime.ts +251 -0
- package/src/tool/rugbyScoreKeeper/ui.ts +2 -9
- package/src/tool/rugbyScoreKeeper/ui-init.ts +0 -264
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ interface Props {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
const { ui } = Astro.props;
|
|
11
|
-
const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
11
|
+
const t = (ui ?? {}) as unknown as RugbyScoreKeeperUI;
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
<div class="rg-app" id="rg-app" data-rg-ui={JSON.stringify(t)}>
|
|
@@ -16,8 +16,8 @@ const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
|
16
16
|
<div class="rg-main-card">
|
|
17
17
|
|
|
18
18
|
<div class="rg-strip">
|
|
19
|
-
<div class="rg-team">
|
|
20
|
-
<input type="text" class="rg-name" id="rg-name-home" value={t.home} aria-label={t.home} />
|
|
19
|
+
<div class="rg-team rg-team-home">
|
|
20
|
+
<input type="text" class="rg-name" id="rg-name-home" value={t.home} maxlength="40" aria-label={t.home} />
|
|
21
21
|
<div class="rg-score" id="rg-score-home" aria-live="polite">0</div>
|
|
22
22
|
<div class="rg-bonus" id="rg-bonus-home"></div>
|
|
23
23
|
</div>
|
|
@@ -25,8 +25,8 @@ const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
|
25
25
|
<span class="rg-vs">VS</span>
|
|
26
26
|
<div class="rg-half-badge" id="rg-half-badge">{t.half1}</div>
|
|
27
27
|
</div>
|
|
28
|
-
<div class="rg-team">
|
|
29
|
-
<input type="text" class="rg-name" id="rg-name-away" value={t.away} aria-label={t.away} />
|
|
28
|
+
<div class="rg-team rg-team-away">
|
|
29
|
+
<input type="text" class="rg-name" id="rg-name-away" value={t.away} maxlength="40" aria-label={t.away} />
|
|
30
30
|
<div class="rg-score" id="rg-score-away" aria-live="polite">0</div>
|
|
31
31
|
<div class="rg-bonus" id="rg-bonus-away"></div>
|
|
32
32
|
</div>
|
|
@@ -34,23 +34,24 @@ const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
|
34
34
|
|
|
35
35
|
<div class="rg-columns">
|
|
36
36
|
<div class="rg-col" data-team="home">
|
|
37
|
-
<div class="rg-col-label">{t.home}</div>
|
|
38
|
-
<button class="rg-btn rg-btn-try" data-action="try"
|
|
39
|
-
<button class="rg-btn rg-btn-conv" id="rg-conv-home" data-action="conv" disabled
|
|
40
|
-
<button class="rg-btn rg-btn-pen" data-action="pen"
|
|
41
|
-
<button class="rg-btn rg-btn-drop" data-action="drop"
|
|
37
|
+
<div class="rg-col-label" id="rg-col-label-home">{t.home}</div>
|
|
38
|
+
<button type="button" class="rg-btn rg-btn-try" data-action="try">{t.tryLabel}</button>
|
|
39
|
+
<button type="button" class="rg-btn rg-btn-conv" id="rg-conv-home" data-action="conv" disabled>{t.conversion}</button>
|
|
40
|
+
<button type="button" class="rg-btn rg-btn-pen" data-action="pen">{t.penalty}</button>
|
|
41
|
+
<button type="button" class="rg-btn rg-btn-drop" data-action="drop">{t.dropGoal}</button>
|
|
42
42
|
</div>
|
|
43
43
|
<div class="rg-col" data-team="away">
|
|
44
|
-
<div class="rg-col-label">{t.away}</div>
|
|
45
|
-
<button class="rg-btn rg-btn-try" data-action="try"
|
|
46
|
-
<button class="rg-btn rg-btn-conv" id="rg-conv-away" data-action="conv" disabled
|
|
47
|
-
<button class="rg-btn rg-btn-pen" data-action="pen"
|
|
48
|
-
<button class="rg-btn rg-btn-drop" data-action="drop"
|
|
44
|
+
<div class="rg-col-label" id="rg-col-label-away">{t.away}</div>
|
|
45
|
+
<button type="button" class="rg-btn rg-btn-try" data-action="try">{t.tryLabel}</button>
|
|
46
|
+
<button type="button" class="rg-btn rg-btn-conv" id="rg-conv-away" data-action="conv" disabled>{t.conversion}</button>
|
|
47
|
+
<button type="button" class="rg-btn rg-btn-pen" data-action="pen">{t.penalty}</button>
|
|
48
|
+
<button type="button" class="rg-btn rg-btn-drop" data-action="drop">{t.dropGoal}</button>
|
|
49
49
|
</div>
|
|
50
50
|
</div>
|
|
51
51
|
|
|
52
52
|
<div class="rg-mid-row">
|
|
53
53
|
<div class="rg-clock-panel">
|
|
54
|
+
<div class="rg-panel-header">{t.matchClock}</div>
|
|
54
55
|
<div class="rg-clock-ring">
|
|
55
56
|
<svg class="rg-clock-svg" viewBox="0 0 120 120">
|
|
56
57
|
<circle class="rg-clock-bg" cx="60" cy="60" r="54" />
|
|
@@ -61,17 +62,23 @@ const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
|
61
62
|
<div class="rg-clock-label">{t.half} <span id="rg-half-label">1</span></div>
|
|
62
63
|
</div>
|
|
63
64
|
</div>
|
|
64
|
-
<button class="rg-btn rg-btn-clock" id="rg-btn-clock">{t.startMatch}</button>
|
|
65
|
+
<button type="button" class="rg-btn rg-btn-clock" id="rg-btn-clock">{t.startMatch}</button>
|
|
65
66
|
</div>
|
|
66
67
|
<div class="rg-sinbin-panel">
|
|
67
|
-
<div class="rg-panel-header">{t.
|
|
68
|
+
<div class="rg-panel-header">{t.sinBinTitle}</div>
|
|
68
69
|
<div class="rg-sinbin-form">
|
|
69
|
-
<input type="text" class="rg-input" id="rg-sinbin-input" placeholder={t.sinBinPlayer} aria-label={t.sinBinPlayer} />
|
|
70
|
-
<
|
|
71
|
-
<
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
<input type="text" class="rg-input" id="rg-sinbin-input" maxlength="80" placeholder={t.sinBinPlayer} aria-label={t.sinBinPlayer} />
|
|
71
|
+
<div class="rg-choice-row">
|
|
72
|
+
<div class="rg-choice-group" role="group" aria-label={t.teamLabel}>
|
|
73
|
+
<button type="button" class="rg-choice rg-choice-home is-active" data-sinbin-team="home" aria-pressed="true">{t.home}</button>
|
|
74
|
+
<button type="button" class="rg-choice rg-choice-away" data-sinbin-team="away" aria-pressed="false">{t.away}</button>
|
|
75
|
+
</div>
|
|
76
|
+
<div class="rg-choice-group" role="group" aria-label={t.durationLabel}>
|
|
77
|
+
<button type="button" class="rg-choice is-active" data-sinbin-duration="600" aria-pressed="true">10 {t.minutesShort}</button>
|
|
78
|
+
<button type="button" class="rg-choice" data-sinbin-duration="300" aria-pressed="false">5 {t.minutesShort}</button>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
<button type="button" class="rg-btn rg-btn-yellow" id="rg-btn-sinbin">{t.sinBinAdd}</button>
|
|
75
82
|
</div>
|
|
76
83
|
<div class="rg-sinbin-list" id="rg-sinbin-list">
|
|
77
84
|
<div class="rg-sinbin-empty">{t.sinBinEmpty}</div>
|
|
@@ -85,13 +92,13 @@ const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
|
85
92
|
<div class="rg-history-list" id="rg-history-list">
|
|
86
93
|
<div class="rg-history-empty">{t.eventEmpty}</div>
|
|
87
94
|
</div>
|
|
88
|
-
<button class="rg-btn rg-btn-undo" id="rg-btn-undo" disabled>{t.undoBtn}</button>
|
|
95
|
+
<button type="button" class="rg-btn rg-btn-undo" id="rg-btn-undo" disabled>{t.undoBtn}</button>
|
|
89
96
|
</div>
|
|
90
97
|
<div class="rg-summary">
|
|
91
98
|
<div class="rg-panel-header">{t.scoringSummary}</div>
|
|
92
99
|
<table class="rg-table">
|
|
93
100
|
<thead>
|
|
94
|
-
<tr><th></th><th>{t.home}</th><th>{t.away}</th></tr>
|
|
101
|
+
<tr><th></th><th class="rg-th-home" id="rg-summary-home">{t.home}</th><th class="rg-th-away" id="rg-summary-away">{t.away}</th></tr>
|
|
95
102
|
</thead>
|
|
96
103
|
<tbody id="rg-summary-body">
|
|
97
104
|
<tr><td>{t.tryScored}</td><td>0</td><td>0</td></tr>
|
|
@@ -114,25 +121,25 @@ const t = (ui ?? {}) as RugbyScoreKeeperUI;
|
|
|
114
121
|
<div class="rg-banner-text" id="rg-banner-text"></div>
|
|
115
122
|
</div>
|
|
116
123
|
|
|
117
|
-
<div class="rg-reset-modal" id="rg-modal" role="dialog" aria-modal="true" aria-labelledby="rg-modal-title">
|
|
124
|
+
<div class="rg-reset-modal" id="rg-modal" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="rg-modal-title">
|
|
118
125
|
<div class="rg-modal-content">
|
|
119
126
|
<h2 class="rg-modal-title" id="rg-modal-title">{t.resetMatch}</h2>
|
|
120
127
|
<div class="rg-modal-text">{t.resetConfirm}</div>
|
|
121
128
|
<div class="rg-modal-btns">
|
|
122
|
-
<button class="rg-btn rg-btn-modal-cancel" id="rg-modal-cancel">{t.cancel}</button>
|
|
123
|
-
<button class="rg-btn rg-btn-modal-confirm" id="rg-modal-confirm">{t.confirm}</button>
|
|
129
|
+
<button type="button" class="rg-btn rg-btn-modal-cancel" id="rg-modal-cancel">{t.cancel}</button>
|
|
130
|
+
<button type="button" class="rg-btn rg-btn-modal-confirm" id="rg-modal-confirm">{t.confirm}</button>
|
|
124
131
|
</div>
|
|
125
132
|
</div>
|
|
126
133
|
</div>
|
|
127
134
|
|
|
128
135
|
<div class="rg-actions">
|
|
129
|
-
<button class="rg-btn rg-btn-reset" id="rg-btn-reset">{t.resetMatch}</button>
|
|
136
|
+
<button type="button" class="rg-btn rg-btn-reset" id="rg-btn-reset">{t.resetMatch}</button>
|
|
130
137
|
</div>
|
|
131
138
|
|
|
132
139
|
</div>
|
|
133
140
|
</div>
|
|
134
141
|
|
|
135
142
|
<script>
|
|
136
|
-
import { initRugbyScorekeeper } from './ui-
|
|
143
|
+
import { initRugbyScorekeeper } from './ui-runtime';
|
|
137
144
|
initRugbyScorekeeper();
|
|
138
145
|
</script>
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Rugby Punktezähler',
|
|
175
|
-
description: 'Verfolge Spielergebnisse und Zeitstrafen.',
|
|
176
175
|
home: 'Heim',
|
|
177
176
|
away: 'Gast',
|
|
178
177
|
score: 'Punktestand',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Erhöhung +2',
|
|
181
180
|
penalty: 'Straftritt +3',
|
|
182
181
|
dropGoal: 'Dropgoal +3',
|
|
183
|
-
conversionYes: 'Ja',
|
|
184
|
-
conversionNo: 'Nein',
|
|
185
182
|
sinBin: 'Gelbe Karte',
|
|
186
183
|
sinBinTitle: 'Zeitstrafe',
|
|
187
184
|
sinBinPlayer: 'Name oder Nummer des Spielers:',
|
|
188
185
|
sinBinAdd: 'Strafe Starten',
|
|
189
186
|
sinBinEmpty: 'Keine aktiven Zeitstrafen',
|
|
190
|
-
sinBinReturn: 'Zurückgekehrt',
|
|
191
187
|
matchClock: 'Spieluhr',
|
|
192
188
|
half: 'Hälfte',
|
|
193
189
|
half1: 'Erste Hälfte',
|
|
194
190
|
half2: 'Zweite Hälfte',
|
|
195
191
|
startMatch: 'Anstoß',
|
|
196
|
-
pauseMatch: 'Pause',
|
|
197
|
-
resumeMatch: 'Fortsetzen',
|
|
198
192
|
resetMatch: 'Spiel Zurücksetzen',
|
|
199
193
|
resetConfirm: 'Aktuelles Spiel zurücksetzen? Alle Punkte und Timer gehen verloren.',
|
|
200
194
|
cancel: 'Abbrechen',
|
|
201
195
|
confirm: 'Zurücksetzen Bestätigen',
|
|
202
|
-
period: 'Spielabschnitt',
|
|
203
196
|
scoringSummary: 'Punktezusammenfassung',
|
|
204
197
|
tryScored: 'Versuche',
|
|
205
198
|
conversionSuccess: 'Erhöhungen',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Straftritte',
|
|
208
201
|
dropGoalScored: 'Dropgoals',
|
|
209
202
|
totalPoints: 'Gesamt',
|
|
210
|
-
fullscreen: 'Vollbild',
|
|
211
|
-
toggleSound: 'Ton Ein/Aus',
|
|
212
203
|
eventLog: 'Ereignisprotokoll',
|
|
213
204
|
eventEmpty: 'Noch keine Ereignisse',
|
|
214
205
|
undoBtn: 'Letztes Rückgängig',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Zeit Läuft',
|
|
217
208
|
fullTime: 'Spielende',
|
|
218
209
|
minutesShort: 'Min.',
|
|
210
|
+
teamLabel: 'Team',
|
|
211
|
+
durationLabel: 'Dauer',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Rugby Scorekeeper',
|
|
175
|
-
description: 'Track match scores and sin bin timers.',
|
|
176
175
|
home: 'Home',
|
|
177
176
|
away: 'Away',
|
|
178
177
|
score: 'Score',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Conversion +2',
|
|
181
180
|
penalty: 'Penalty +3',
|
|
182
181
|
dropGoal: 'Drop Goal +3',
|
|
183
|
-
conversionYes: 'Yes',
|
|
184
|
-
conversionNo: 'No',
|
|
185
182
|
sinBin: 'Yellow Card',
|
|
186
183
|
sinBinTitle: 'Sin Bin Suspension',
|
|
187
184
|
sinBinPlayer: 'Player name or number:',
|
|
188
185
|
sinBinAdd: 'Start Suspension',
|
|
189
186
|
sinBinEmpty: 'No active suspensions',
|
|
190
|
-
sinBinReturn: 'Returned',
|
|
191
187
|
matchClock: 'Match Clock',
|
|
192
188
|
half: 'Half',
|
|
193
189
|
half1: 'First Half',
|
|
194
190
|
half2: 'Second Half',
|
|
195
191
|
startMatch: 'Kick Off',
|
|
196
|
-
pauseMatch: 'Pause',
|
|
197
|
-
resumeMatch: 'Resume',
|
|
198
192
|
resetMatch: 'Reset Match',
|
|
199
193
|
resetConfirm: 'Reset the current match? All scores and timers will be lost.',
|
|
200
194
|
cancel: 'Cancel',
|
|
201
195
|
confirm: 'Confirm Reset',
|
|
202
|
-
period: 'Period',
|
|
203
196
|
scoringSummary: 'Scoring Summary',
|
|
204
197
|
tryScored: 'Tries',
|
|
205
198
|
conversionSuccess: 'Conversions',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Penalties',
|
|
208
201
|
dropGoalScored: 'Drop Goals',
|
|
209
202
|
totalPoints: 'Total',
|
|
210
|
-
fullscreen: 'Fullscreen',
|
|
211
|
-
toggleSound: 'Toggle Sound',
|
|
212
203
|
eventLog: 'Event Log',
|
|
213
204
|
eventEmpty: 'No events yet',
|
|
214
205
|
undoBtn: 'Undo Last',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Time On',
|
|
217
208
|
fullTime: 'Full time',
|
|
218
209
|
minutesShort: 'min',
|
|
210
|
+
teamLabel: 'Team',
|
|
211
|
+
durationLabel: 'Duration',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Marcador de Rugby',
|
|
175
|
-
description: 'Sigue los resultados del partido y los cronómetros de castigo.',
|
|
176
175
|
home: 'Local',
|
|
177
176
|
away: 'Visitante',
|
|
178
177
|
score: 'Marcador',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Conversión +2',
|
|
181
180
|
penalty: 'Penalti +3',
|
|
182
181
|
dropGoal: 'Drop +3',
|
|
183
|
-
conversionYes: 'Sí',
|
|
184
|
-
conversionNo: 'No',
|
|
185
182
|
sinBin: 'Tarjeta Amarilla',
|
|
186
183
|
sinBinTitle: 'Suspensión de Castigo',
|
|
187
184
|
sinBinPlayer: 'Nombre o número del jugador:',
|
|
188
185
|
sinBinAdd: 'Iniciar Suspensión',
|
|
189
186
|
sinBinEmpty: 'Sin suspensiones activas',
|
|
190
|
-
sinBinReturn: 'Regresó',
|
|
191
187
|
matchClock: 'Reloj de Partido',
|
|
192
188
|
half: 'Tiempo',
|
|
193
189
|
half1: 'Primer Tiempo',
|
|
194
190
|
half2: 'Segundo Tiempo',
|
|
195
191
|
startMatch: 'Saque Inicial',
|
|
196
|
-
pauseMatch: 'Pausa',
|
|
197
|
-
resumeMatch: 'Reanudar',
|
|
198
192
|
resetMatch: 'Reiniciar Partido',
|
|
199
193
|
resetConfirm: '¿Reiniciar el partido actual? Se perderán todos los puntos y cronómetros.',
|
|
200
194
|
cancel: 'Cancelar',
|
|
201
195
|
confirm: 'Confirmar Reinicio',
|
|
202
|
-
period: 'Periodo',
|
|
203
196
|
scoringSummary: 'Resumen de Anotaciones',
|
|
204
197
|
tryScored: 'Ensayos',
|
|
205
198
|
conversionSuccess: 'Conversiones',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Penaltis',
|
|
208
201
|
dropGoalScored: 'Drops',
|
|
209
202
|
totalPoints: 'Total',
|
|
210
|
-
fullscreen: 'Pantalla Completa',
|
|
211
|
-
toggleSound: 'Activar Sonido',
|
|
212
203
|
eventLog: 'Historial de Eventos',
|
|
213
204
|
eventEmpty: 'Aún no hay eventos',
|
|
214
205
|
undoBtn: 'Deshacer Último',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Tiempo en Marcha',
|
|
217
208
|
fullTime: 'Fin del partido',
|
|
218
209
|
minutesShort: 'min',
|
|
210
|
+
teamLabel: 'Equipo',
|
|
211
|
+
durationLabel: 'Duración',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Tableau de Score Rugby',
|
|
175
|
-
description: 'Suivez les scores et les chronomètres d exclusion.',
|
|
176
175
|
home: 'Domicile',
|
|
177
176
|
away: 'Extérieur',
|
|
178
177
|
score: 'Score',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Transformation +2',
|
|
181
180
|
penalty: 'Pénalité +3',
|
|
182
181
|
dropGoal: 'Drop +3',
|
|
183
|
-
conversionYes: 'Oui',
|
|
184
|
-
conversionNo: 'Non',
|
|
185
182
|
sinBin: 'Carton Jaune',
|
|
186
183
|
sinBinTitle: 'Exclusion Temporaire',
|
|
187
184
|
sinBinPlayer: 'Nom ou numéro du joueur :',
|
|
188
185
|
sinBinAdd: 'Démarrer l Exclusion',
|
|
189
186
|
sinBinEmpty: 'Aucune exclusion en cours',
|
|
190
|
-
sinBinReturn: 'De retour',
|
|
191
187
|
matchClock: 'Horloge de Match',
|
|
192
188
|
half: 'Mi-temps',
|
|
193
189
|
half1: 'Première Mi-temps',
|
|
194
190
|
half2: 'Deuxième Mi-temps',
|
|
195
191
|
startMatch: 'Coup d Envoi',
|
|
196
|
-
pauseMatch: 'Pause',
|
|
197
|
-
resumeMatch: 'Reprendre',
|
|
198
192
|
resetMatch: 'Réinitialiser le Match',
|
|
199
193
|
resetConfirm: 'Réinitialiser le match en cours ? Tous les scores et chronomètres seront perdus.',
|
|
200
194
|
cancel: 'Annuler',
|
|
201
195
|
confirm: 'Confirmer la Réinitialisation',
|
|
202
|
-
period: 'Période',
|
|
203
196
|
scoringSummary: 'Résumé des Scores',
|
|
204
197
|
tryScored: 'Essais',
|
|
205
198
|
conversionSuccess: 'Transformations',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Pénalités',
|
|
208
201
|
dropGoalScored: 'Drops',
|
|
209
202
|
totalPoints: 'Total',
|
|
210
|
-
fullscreen: 'Plein Écran',
|
|
211
|
-
toggleSound: 'Activer le Son',
|
|
212
203
|
eventLog: 'Journal des Événements',
|
|
213
204
|
eventEmpty: 'Aucun événement pour le moment',
|
|
214
205
|
undoBtn: 'Annuler le Dernier',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Temps en Marche',
|
|
217
208
|
fullTime: 'Fin du match',
|
|
218
209
|
minutesShort: 'min',
|
|
210
|
+
teamLabel: 'Équipe',
|
|
211
|
+
durationLabel: 'Durée',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Papan Skor Rugbi',
|
|
175
|
-
description: 'Lacak skor pertandingan dan pengatur waktu sin bin.',
|
|
176
175
|
home: 'Tuan Rumah',
|
|
177
176
|
away: 'Tamu',
|
|
178
177
|
score: 'Skor',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Konversi +2',
|
|
181
180
|
penalty: 'Penalti +3',
|
|
182
181
|
dropGoal: 'Drop Goal +3',
|
|
183
|
-
conversionYes: 'Ya',
|
|
184
|
-
conversionNo: 'Tidak',
|
|
185
182
|
sinBin: 'Kartu kuning',
|
|
186
183
|
sinBinTitle: 'Skorsing Sin Bin',
|
|
187
184
|
sinBinPlayer: 'Nama atau nomor pemain:',
|
|
188
185
|
sinBinAdd: 'Mulai Skorsing',
|
|
189
186
|
sinBinEmpty: 'Tidak ada skorsing aktif',
|
|
190
|
-
sinBinReturn: 'Kembali',
|
|
191
187
|
matchClock: 'Jam Pertandingan',
|
|
192
188
|
half: 'Babak',
|
|
193
189
|
half1: 'Babak Pertama',
|
|
194
190
|
half2: 'Babak Kedua',
|
|
195
191
|
startMatch: 'Mulai',
|
|
196
|
-
pauseMatch: 'Jeda',
|
|
197
|
-
resumeMatch: 'Lanjutkan',
|
|
198
192
|
resetMatch: 'Reset Pertandingan',
|
|
199
193
|
resetConfirm: 'Reset pertandingan saat ini? Semua skor dan pengatur waktu akan hilang.',
|
|
200
194
|
cancel: 'Batal',
|
|
201
195
|
confirm: 'Konfirmasi Reset',
|
|
202
|
-
period: 'Periode',
|
|
203
196
|
scoringSummary: 'Ringkasan Skor',
|
|
204
197
|
tryScored: 'Try',
|
|
205
198
|
conversionSuccess: 'Konversi',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Penalti',
|
|
208
201
|
dropGoalScored: 'Drop Goal',
|
|
209
202
|
totalPoints: 'Total',
|
|
210
|
-
fullscreen: 'Layar penuh',
|
|
211
|
-
toggleSound: 'Suara',
|
|
212
203
|
eventLog: 'Catatan Kejadian',
|
|
213
204
|
eventEmpty: 'Belum ada kejadian',
|
|
214
205
|
undoBtn: 'Batalkan terakhir',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Waktu Berjalan',
|
|
217
208
|
fullTime: 'Pertandingan Selesai',
|
|
218
209
|
minutesShort: 'mnt',
|
|
210
|
+
teamLabel: 'Tim',
|
|
211
|
+
durationLabel: 'Durasi',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Segnapunti Rugby',
|
|
175
|
-
description: 'Registra i punteggi delle partite e i timer delle espulsioni temporanee.',
|
|
176
175
|
home: 'Casa',
|
|
177
176
|
away: 'Ospiti',
|
|
178
177
|
score: 'Punteggio',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Trasformazione +2',
|
|
181
180
|
penalty: 'Punizione +3',
|
|
182
181
|
dropGoal: 'Drop +3',
|
|
183
|
-
conversionYes: 'Sì',
|
|
184
|
-
conversionNo: 'No',
|
|
185
182
|
sinBin: 'Cartellino Giallo',
|
|
186
183
|
sinBinTitle: 'Espulsione Temporanea',
|
|
187
184
|
sinBinPlayer: 'Nome o numero del giocatore:',
|
|
188
185
|
sinBinAdd: 'Avvia Sospensione',
|
|
189
186
|
sinBinEmpty: 'Nessuna sospensione attiva',
|
|
190
|
-
sinBinReturn: 'Rientrato',
|
|
191
187
|
matchClock: 'Cronometro Partita',
|
|
192
188
|
half: 'Tempo',
|
|
193
189
|
half1: 'Primo Tempo',
|
|
194
190
|
half2: 'Secondo Tempo',
|
|
195
191
|
startMatch: 'Calcio d\'Inizio',
|
|
196
|
-
pauseMatch: 'Pausa',
|
|
197
|
-
resumeMatch: 'Riprendi',
|
|
198
192
|
resetMatch: 'Reimposta Partita',
|
|
199
193
|
resetConfirm: 'Reimpostare la partita? Tutti i punteggi e i timer andranno persi.',
|
|
200
194
|
cancel: 'Annulla',
|
|
201
195
|
confirm: 'Conferma Reset',
|
|
202
|
-
period: 'Periodo',
|
|
203
196
|
scoringSummary: 'Riepilogo Punteggi',
|
|
204
197
|
tryScored: 'Mete',
|
|
205
198
|
conversionSuccess: 'Trasformazioni',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Punizioni',
|
|
208
201
|
dropGoalScored: 'Drop',
|
|
209
202
|
totalPoints: 'Totale',
|
|
210
|
-
fullscreen: 'Schermo Intero',
|
|
211
|
-
toggleSound: 'Attiva Disattiva Suono',
|
|
212
203
|
eventLog: 'Registro Eventi',
|
|
213
204
|
eventEmpty: 'Nessun evento ancora',
|
|
214
205
|
undoBtn: 'Annulla Ultimo',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Tempo in Gioco',
|
|
217
208
|
fullTime: 'Fine partita',
|
|
218
209
|
minutesShort: 'min',
|
|
210
|
+
teamLabel: 'Squadra',
|
|
211
|
+
durationLabel: 'Durata',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'ラグビースコアキーパー',
|
|
175
|
-
description: '試合スコアとシンビンタイマーを管理。',
|
|
176
175
|
home: 'ホーム',
|
|
177
176
|
away: 'アウェイ',
|
|
178
177
|
score: 'スコア',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'コンバージョン +2',
|
|
181
180
|
penalty: 'ペナルティ +3',
|
|
182
181
|
dropGoal: 'ドロップゴール +3',
|
|
183
|
-
conversionYes: '成功',
|
|
184
|
-
conversionNo: '失敗',
|
|
185
182
|
sinBin: 'イエローカード',
|
|
186
183
|
sinBinTitle: 'シンビン出場停止',
|
|
187
184
|
sinBinPlayer: '選手名または背番号:',
|
|
188
185
|
sinBinAdd: '出場停止開始',
|
|
189
186
|
sinBinEmpty: 'アクティブな出場停止なし',
|
|
190
|
-
sinBinReturn: '復帰',
|
|
191
187
|
matchClock: 'マッチクロック',
|
|
192
188
|
half: 'ハーフ',
|
|
193
189
|
half1: '前半',
|
|
194
190
|
half2: '後半',
|
|
195
191
|
startMatch: 'キックオフ',
|
|
196
|
-
pauseMatch: '一時停止',
|
|
197
|
-
resumeMatch: '再開',
|
|
198
192
|
resetMatch: '試合をリセット',
|
|
199
193
|
resetConfirm: '現在の試合をリセットしますか?すべてのスコアとタイマーが失われます。',
|
|
200
194
|
cancel: 'キャンセル',
|
|
201
195
|
confirm: 'リセット確定',
|
|
202
|
-
period: 'ピリオド',
|
|
203
196
|
scoringSummary: '得点サマリー',
|
|
204
197
|
tryScored: 'トライ',
|
|
205
198
|
conversionSuccess: 'コンバージョン成功',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'ペナルティ',
|
|
208
201
|
dropGoalScored: 'ドロップゴール',
|
|
209
202
|
totalPoints: '合計',
|
|
210
|
-
fullscreen: '全画面表示',
|
|
211
|
-
toggleSound: 'サウンド切替',
|
|
212
203
|
eventLog: 'イベントログ',
|
|
213
204
|
eventEmpty: 'まだイベントはありません',
|
|
214
205
|
undoBtn: '最後を元に戻す',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'タイムオン',
|
|
217
208
|
fullTime: '試合終了',
|
|
218
209
|
minutesShort: '分',
|
|
210
|
+
teamLabel: 'チーム',
|
|
211
|
+
durationLabel: '時間',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: '럭비 스코어키퍼',
|
|
175
|
-
description: '경기 점수와 신빈 타이머를 추적합니다.',
|
|
176
175
|
home: '홈',
|
|
177
176
|
away: '어웨이',
|
|
178
177
|
score: '점수',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: '컨버전 +2',
|
|
181
180
|
penalty: '페널티 +3',
|
|
182
181
|
dropGoal: '드롭골 +3',
|
|
183
|
-
conversionYes: '성공',
|
|
184
|
-
conversionNo: '실패',
|
|
185
182
|
sinBin: '옐로카드',
|
|
186
183
|
sinBinTitle: '신빈 출장 정지',
|
|
187
184
|
sinBinPlayer: '선수 이름 또는 번호:',
|
|
188
185
|
sinBinAdd: '출장 정지 시작',
|
|
189
186
|
sinBinEmpty: '진행 중인 출장 정지 없음',
|
|
190
|
-
sinBinReturn: '복귀',
|
|
191
187
|
matchClock: '경기 시계',
|
|
192
188
|
half: '하프',
|
|
193
189
|
half1: '전반',
|
|
194
190
|
half2: '후반',
|
|
195
191
|
startMatch: '킥오프',
|
|
196
|
-
pauseMatch: '일시 정지',
|
|
197
|
-
resumeMatch: '재개',
|
|
198
192
|
resetMatch: '경기 초기화',
|
|
199
193
|
resetConfirm: '현재 경기를 초기화하시겠습니까? 모든 점수와 타이머가 사라집니다.',
|
|
200
194
|
cancel: '취소',
|
|
201
195
|
confirm: '초기화 확인',
|
|
202
|
-
period: '피리어드',
|
|
203
196
|
scoringSummary: '득점 요약',
|
|
204
197
|
tryScored: '트라이',
|
|
205
198
|
conversionSuccess: '컨버전 성공',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: '페널티',
|
|
208
201
|
dropGoalScored: '드롭골',
|
|
209
202
|
totalPoints: '합계',
|
|
210
|
-
fullscreen: '전체 화면',
|
|
211
|
-
toggleSound: '사운드 전환',
|
|
212
203
|
eventLog: '이벤트 로그',
|
|
213
204
|
eventEmpty: '아직 이벤트 없음',
|
|
214
205
|
undoBtn: '마지막 실행 취소',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: '타임 온',
|
|
217
208
|
fullTime: '경기 종료',
|
|
218
209
|
minutesShort: '분',
|
|
210
|
+
teamLabel: '팀',
|
|
211
|
+
durationLabel: '시간',
|
|
219
212
|
},
|
|
220
213
|
};
|
|
@@ -172,7 +172,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
172
172
|
],
|
|
173
173
|
ui: {
|
|
174
174
|
title: 'Rugbyscorebord',
|
|
175
|
-
description: 'Volg wedstrijdscores en sin bin timers.',
|
|
176
175
|
home: 'Thuis',
|
|
177
176
|
away: 'Uit',
|
|
178
177
|
score: 'Score',
|
|
@@ -180,26 +179,20 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
180
179
|
conversion: 'Conversie +2',
|
|
181
180
|
penalty: 'Strafschop +3',
|
|
182
181
|
dropGoal: 'Dropgoal +3',
|
|
183
|
-
conversionYes: 'Ja',
|
|
184
|
-
conversionNo: 'Nee',
|
|
185
182
|
sinBin: 'Gele Kaart',
|
|
186
183
|
sinBinTitle: 'Sin Bin Schorsing',
|
|
187
184
|
sinBinPlayer: 'Naam of nummer van speler:',
|
|
188
185
|
sinBinAdd: 'Start Schorsing',
|
|
189
186
|
sinBinEmpty: 'Geen actieve schorsingen',
|
|
190
|
-
sinBinReturn: 'Teruggekeerd',
|
|
191
187
|
matchClock: 'Wedstrijdklok',
|
|
192
188
|
half: 'Helft',
|
|
193
189
|
half1: 'Eerste Helft',
|
|
194
190
|
half2: 'Tweede Helft',
|
|
195
191
|
startMatch: 'Afrap',
|
|
196
|
-
pauseMatch: 'Pauze',
|
|
197
|
-
resumeMatch: 'Hervat',
|
|
198
192
|
resetMatch: 'Reset Wedstrijd',
|
|
199
193
|
resetConfirm: 'De huidige wedstrijd resetten? Alle scores en timers gaan verloren.',
|
|
200
194
|
cancel: 'Annuleren',
|
|
201
195
|
confirm: 'Bevestig Reset',
|
|
202
|
-
period: 'Periode',
|
|
203
196
|
scoringSummary: 'Scoreoverzicht',
|
|
204
197
|
tryScored: 'Tries',
|
|
205
198
|
conversionSuccess: 'Conversies',
|
|
@@ -207,8 +200,6 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
207
200
|
penaltyScored: 'Strafschoppen',
|
|
208
201
|
dropGoalScored: 'Dropgoals',
|
|
209
202
|
totalPoints: 'Totaal',
|
|
210
|
-
fullscreen: 'Volledig Scherm',
|
|
211
|
-
toggleSound: 'Geluid Aan Uit',
|
|
212
203
|
eventLog: 'Gebeurtenissenlog',
|
|
213
204
|
eventEmpty: 'Nog geen gebeurtenissen',
|
|
214
205
|
undoBtn: 'Ongedaan Maken Laatste',
|
|
@@ -216,5 +207,7 @@ export const content: RugbyScoreKeeperLocaleContent = {
|
|
|
216
207
|
timeOn: 'Tijd Loopt',
|
|
217
208
|
fullTime: 'Einde wedstrijd',
|
|
218
209
|
minutesShort: 'min',
|
|
210
|
+
teamLabel: 'Team',
|
|
211
|
+
durationLabel: 'Duur',
|
|
219
212
|
},
|
|
220
213
|
};
|