forked from D34DC3N73R/ha-nfl-card
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Ron Hartman <[email protected]>
- Loading branch information
Showing
2 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
export const nl = { | ||
"common": { | ||
"api_error": "API Error", | ||
"no_upcoming_games": "Geen aankomende wedstrijden door %s", | ||
"finalTerm": "%s - Finale", | ||
"byeTerm": "BYE", | ||
"tourney2": "Finale", | ||
"tourney4": "Halve Finales", | ||
"tourney8": "Kwart Finales", | ||
"tourney16": "Achtste Finales", | ||
"tourney32": "Zestiende Finales", | ||
"tourney64": "Tweeendertigste Finale", | ||
"tourney128": "Voorrondes", | ||
"tourney256": "Voorrondes", | ||
"today": "Vandaag", | ||
"tomorrow": "Morgen" | ||
}, | ||
"australian-football": { | ||
"startTerm": "Start", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Win Probability", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
}, | ||
"baseball": { | ||
"startTerm": "Eerste Worp", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "Ballen %s", | ||
"gameStat2": "Slagen %s", | ||
"gameStat3": "%s Outs", | ||
"gameBar": "Winstwaarschijnlijkheid", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
}, | ||
"basketball": { | ||
"startTerm": "Sprongbal", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Winstwaarschijnlijkheid", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
}, | ||
"cricket": { | ||
"startTerm": "Start", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Winstwaarschijnlijkheid", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
}, | ||
"football": { | ||
"startTerm": "Aftrap", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Winstwaarschijnlijkheid", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
}, | ||
"golf": { | ||
"startTerm": "Ronde Start", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Schoten (Thru)", | ||
"teamBarLabel": "%s", | ||
"oppoBarLabel": "%s" | ||
}, | ||
"hockey": { | ||
"startTerm": "Puck Drop", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Schoten op Doel", | ||
"teamBarLabel": "%s", | ||
"oppoBarLabel": "%s" | ||
}, | ||
"mma": { | ||
"startTerm": "Start", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Winstwaarschijnlijkheid", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
}, | ||
"racing": { | ||
"startTerm": "Start", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Rondes", | ||
"teamBarLabel": "%s", | ||
"oppoBarLabel": "%s" | ||
}, | ||
"soccer": { | ||
"startTerm": "Aftrap", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Schoten (Op Doel)", | ||
"teamBarLabel": "%s", | ||
"oppoBarLabel": "%s" | ||
}, | ||
"tennis": { | ||
"startTerm": "Eerste Service", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "%s", | ||
"teamBarLabel": "%s", | ||
"oppoBarLabel": "%s" | ||
}, | ||
"volleyball": { | ||
"startTerm": "Eerste Service", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "%s Score", | ||
"teamBarLabel": "%s", | ||
"oppoBarLabel": "%s" | ||
}, | ||
"default": { | ||
"startTerm": "Start", | ||
"overUnder": "O/U: %s", | ||
"gameStat1": "%s", | ||
"gameStat2": "%s", | ||
"gameStat3": "", | ||
"gameBar": "Winstwaarschijnlijkheid", | ||
"teamBarLabel": "%s%", | ||
"oppoBarLabel": "%s%" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters