Skip to content

Commit

Permalink
Add Greek language (#108)
Browse files Browse the repository at this point in the history
* Create el.js

Added Greek language

* Update translator.js

Added Greek Language
  • Loading branch information
Chreece authored Aug 31, 2024
1 parent ed36b94 commit 973ff47
Show file tree
Hide file tree
Showing 2 changed files with 150 additions and 0 deletions.
148 changes: 148 additions & 0 deletions src/localize/languages/el.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
export const el = {
"common": {
"api_error": "Σφάλμα API",
"no_upcoming_games": "Δεν υπάρχουν προσεχείς αγώνες έως %s",
"finalTerm": "%s - Τελικός",
"byeTerm": "ΑΝΑΠΑΥΣΗ",
"tourney2": "Τελικός",
"tourney4": "Ημιτελικοί",
"tourney8": "Προημιτελικοί",
"tourney16": "Φάση των 16",
"tourney32": "Φάση των 32",
"tourney64": "Φάση των 64",
"tourney128": "Πρώιμες Φάσεις",
"tourney256": "Πρώιμες Φάσεις",
"today": "Σήμερα",
"tomorrow": "Αύριο"
},
"australian-football": {
"startTerm": "Έναρξη",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
},
"baseball": {
"startTerm": "Πρώτη Ρίψη",
"overUnder": "O/U: %s",
"gameStat1": "Μπάλες %s",
"gameStat2": "Χτυπήματα %s",
"gameStat3": "%s Άουτ",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
},
"basketball": {
"startTerm": "Τζάμπολ",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
},
"cricket": {
"startTerm": "Έναρξη",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
},
"football": {
"startTerm": "Σέντρα",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
},
"golf": {
"startTerm": "Έναρξη Γύρου",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Χτυπήματα (Μέχρι)",
"teamBarLabel": "%s",
"oppoBarLabel": "%s"
},
"hockey": {
"startTerm": "Έναρξη Παιχνιδιού",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Σουτ στο Τέρμα",
"teamBarLabel": "%s",
"oppoBarLabel": "%s"
},
"mma": {
"startTerm": "Έναρξη",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
},
"racing": {
"startTerm": "Έναρξη",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Γύροι",
"teamBarLabel": "%s",
"oppoBarLabel": "%s"
},
"soccer": {
"startTerm": "Σέντρα",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Σουτ (Στον Στόχο)",
"teamBarLabel": "%s",
"oppoBarLabel": "%s"
},
"tennis": {
"startTerm": "Πρώτο Σερβίς",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "%s",
"teamBarLabel": "%s",
"oppoBarLabel": "%s"
},
"volleyball": {
"startTerm": "Πρώτο Σερβίς",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Σκορ %s",
"teamBarLabel": "%s",
"oppoBarLabel": "%s"
},
"default": {
"startTerm": "Έναρξη",
"overUnder": "O/U: %s",
"gameStat1": "%s",
"gameStat2": "%s",
"gameStat3": "",
"gameBar": "Πιθανότητα Νίκης",
"teamBarLabel": "%s%",
"oppoBarLabel": "%s%"
}
}
2 changes: 2 additions & 0 deletions src/localize/translator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {de} from "./languages/de.js"
import {el} from "./languages/el.js"
import {en} from "./languages/en.js"
import {en_US} from "./languages/en_US.js"
import {es} from "./languages/es.js"
Expand All @@ -12,6 +13,7 @@ import {sk_SK} from "./languages/sk_SK.js"

var languages = {
de: de,
el: el,
en: en,
en_US: en_US,
es: es,
Expand Down

0 comments on commit 973ff47

Please sign in to comment.