diff options
| author | Ben Woodward <ben@bdw.to> | 2022-10-13 21:24:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-13 21:24:19 -0700 |
| commit | 63b81beafe9221b2bb6e610710c100b4431d3364 (patch) | |
| tree | 520684cabac1fae2c91ee90987eeac2154a4ed7e | |
| parent | 85ce480dbe73589529dc4cb9136b8de7530c6d1d (diff) | |
Greek translation (#253)
* Added Greek translation
* Fix lint
Co-authored-by: nautilus7 <spyros.n7@gmail.com>
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | src/translations.js | 36 |
2 files changed, 37 insertions, 0 deletions
| @@ -69,6 +69,7 @@ We would love for you to contribute to different languages and help make it even | |||
| 69 | | Hindi | [Pushpender](https://github.com/PushpenderSaini0) | | 69 | | Hindi | [Pushpender](https://github.com/PushpenderSaini0) | |
| 70 | | Catalan | [aniol](https://github.com/aniol) | | 70 | | Catalan | [aniol](https://github.com/aniol) | |
| 71 | | German | [devofthings](https://github.com/devofthings) | | 71 | | German | [devofthings](https://github.com/devofthings) | |
| 72 | | Greek | [nautilus7](https://github.com/nautilus7) | | ||
| 72 | | Indonesia | [nyancodeid](https://github.com/nyancodeid) | | 73 | | Indonesia | [nyancodeid](https://github.com/nyancodeid) | |
| 73 | | Polish | [olekstomek](https://github.com/olekstomek) | | 74 | | Polish | [olekstomek](https://github.com/olekstomek) | |
| 74 | | Arabic | [Ahmed Tokyo](https://github.com/a-tokyo) | | 75 | | Arabic | [Ahmed Tokyo](https://github.com/a-tokyo) | |
diff --git a/src/translations.js b/src/translations.js index ef74fc5..c0f8d6b 100644 --- a/src/translations.js +++ b/src/translations.js | |||
| @@ -468,6 +468,42 @@ export const Translations = [ | |||
| 468 | }, | 468 | }, |
| 469 | }, | 469 | }, |
| 470 | { | 470 | { |
| 471 | id: 'el-GR', | ||
| 472 | name: 'Greek - Hellenic', | ||
| 473 | translation: { | ||
| 474 | title: 'WiFi Card', | ||
| 475 | 'desc.use': | ||
| 476 | 'Εκτυπώστε μια απλή κάρτα με τις πληροφορίες πρόσβασης στο WiFi δίκτυό σας. Κολλήστε την στο ψυγείο ή βάλτε τη στο πορτοφόλι σας, κτλ.', | ||
| 477 | 'desc.privacy': | ||
| 478 | 'Οι πληροφορίες που σχετίζονται με το δίκτυο WiFi δεν αποστέλλονται στον διακομιστή. Καμιά ιχνηλάτηση, στατιστική ανάλυση ή ταυτοποίηση δεν πραγματοποιείται από αυτή την ιστοσελίδα. Δείτε τον', | ||
| 479 | 'desc.source': 'πηγαίο κώδικα', | ||
| 480 | 'wifi.identity': 'Ταυτότητα', | ||
| 481 | 'wifi.identity.placeholder': 'όνομα χρήστη', | ||
| 482 | 'wifi.login': 'Πληροφορίες WiFi', | ||
| 483 | 'wifi.name': 'Όνομα δικτύου', | ||
| 484 | 'wifi.name.hiddenSSID': 'Κρυφό SSID', | ||
| 485 | 'wifi.name.placeholder': 'όνομα δικτύου', | ||
| 486 | 'wifi.password': 'Κωδικός πρόσβασης', | ||
| 487 | 'wifi.password.placeholder': 'κωδικός πρόσβασης', | ||
| 488 | 'wifi.password.hide': 'Απόκρυψη κωδικού πρόσβασης', | ||
| 489 | 'wifi.password.encryption': 'Κρυπτογράφηση', | ||
| 490 | 'wifi.password.encryption.none': 'Καμία', | ||
| 491 | 'wifi.encryption.eapMethod': 'Μέθοδος EAP', | ||
| 492 | 'wifi.tip': | ||
| 493 | 'Στρέψτε την κάμερα του κινητού σας προς τον κώδικα QR για να συνδεθείτε αυτόματα', | ||
| 494 | 'wifi.alert.name': 'Το όνομα δικτύου δεν μπορεί να είναι κενό', | ||
| 495 | 'wifi.alert.password': 'Ο κωδικός πρόσβασης δεν μπορεί να είναι κενός', | ||
| 496 | 'wifi.alert.password.length.5': | ||
| 497 | 'Ο κωδικός πρόσβασης πρέπει να αποτελείται από τουλάχιστον 5 χαρακτήρες, διαφορετικά αλλάξτε την κρυπτογράφηση σε "Καμία"', | ||
| 498 | 'wifi.alert.password.length.8': | ||
| 499 | 'Ο κωδικός πρόσβασης πρέπει να αποτελείται από τουλάχιστον 8 χαρακτήρες, διαφορετικά αλλάξτε την κρυπτογράφηση σε "Καμία"', | ||
| 500 | 'wifi.alert.eapIdentity': 'Η ταυτότητα δεν μπορεί να είναι κενή.', | ||
| 501 | 'button.rotate': 'Περιστροφή', | ||
| 502 | 'button.print': 'Εκτύπωση', | ||
| 503 | select: 'Επιλέξτε γλώσσα', | ||
| 504 | }, | ||
| 505 | }, | ||
| 506 | { | ||
| 471 | id: 'pl-PL', | 507 | id: 'pl-PL', |
| 472 | name: 'Polish - Polski', | 508 | name: 'Polish - Polski', |
| 473 | translation: { | 509 | translation: { |
