This repository was archived by the owner on Jul 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 55
Created a Greek translation #71
Open
Nyxtopouli
wants to merge
9
commits into
qmk:gh-pages
Choose a base branch
from
Nyxtopouli:gh-pages
base: gh-pages
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
33d1d3a
Create changes.md
Nyxtopouli 16fda3c
Create index.md
Nyxtopouli 48ebce8
Create flasher.md
Nyxtopouli 890d0ed
Create 404.md
Nyxtopouli 4135ac1
Create converter.md
Nyxtopouli bb9269e
Create sidebar.md
Nyxtopouli 4624643
Updated strings.yml with greek translation
Nyxtopouli 9709dbb
Update strings.yml
Nyxtopouli 88c921b
Update sidebar.md
Nyxtopouli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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,13 @@ | ||
| --- | ||
| title: "404" | ||
| lang: "el" | ||
| --- | ||
|
|
||
| Συγνώμη αυτό το link ίσως έχει αφαιρεθεί - παρακαλώ στείλτε ένα email στο jack@qmk.fm con με τον σύνδεσμο/περιεχόμενο που ψάχνετε, και θα κάνω ότι μπορώ να το αποκαταστήσω! Επίσης μπορεί να μην έχει μεταφραστεί ακόμη - δείτε την Αγγλική έκδοση εδώ: <a id="en-url"></span> | ||
|
|
||
| <script> | ||
| var url = window.location.origin + window.location.pathname.replace(/\/[^/]+/, ''); | ||
| var a = document.getElementById("en-url") | ||
| a.innerHTML = url; | ||
| a.href = url; | ||
| </script> |
This file contains hidden or 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,18 @@ | ||||||
| --- | ||||||
| title: "Όλες οι πρόσφατες αλλαγές στο QMK" | ||||||
| layout: qmk-title | ||||||
| permalink: /el/changes/ | ||||||
| --- | ||||||
|
|
||||||
| {% for change in site.changes %} | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This way the most recent change is at the top of the page. See #78 |
||||||
| **<a href="{{ change.url }}">{{ change.title }}</a>** | ||||||
| <a href="{{ change.url }}"><img src="https://img.shields.io/badge/date-{{ change.date | date: "%F" | replace:'-','--' }}-lightgrey.svg" /></a> | ||||||
| <a href="https://github.com/qmk/qmk_firmware/commit/{{ change.commit }}"> | ||||||
| <img src="https://img.shields.io/badge/commit-{{ change.commit }}-000000.svg" /> | ||||||
| </a> | ||||||
| <a href="/changes/{{ change.category }}"> | ||||||
| <img src="https://img.shields.io/badge/category-{{ change.category }}-{{ site.data.categories[change.category].color }}.svg" /> | ||||||
| </a> | ||||||
| {{ change.excerpt }} | ||||||
|
|
||||||
| {% endfor %} | ||||||
This file contains hidden or 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,41 @@ | ||
| --- | ||
| title: "Μετατρέψτε KLE σε QMK info.json" | ||
| layout: qmk | ||
| lang: "el" | ||
| --- | ||
|
|
||
| ## Μετατρέψτε KLE raw σε QMK info.json | ||
|
|
||
| <label>Input:</label> | ||
| <textarea id="input"></textarea> | ||
| <button id="submit">Convertir</button> | ||
| <label>Output:</label> | ||
| <textarea id="output"></textarea> | ||
|
|
||
| <style> | ||
| button { | ||
| float: right; | ||
| } | ||
| textarea { | ||
| width: 100%; | ||
| height: 300px; | ||
| } | ||
| </style> | ||
|
|
||
| <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> | ||
|
|
||
| <script> | ||
| $("#submit").on("click", function() { | ||
| $.ajax({ | ||
| 'type': 'POST', | ||
| 'url': "https://compile.clueboard.co/v1/converters/kle", | ||
| 'contentType': 'application/json', | ||
| 'data': JSON.stringify({raw: $("#input").val()}), | ||
| 'dataType': 'text', | ||
| 'success': function(d) { | ||
| console.log(d); | ||
| $("#output").val(d); | ||
| } | ||
| }); | ||
| }); | ||
| </script> |
This file contains hidden or 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,5 @@ | ||
| --- | ||
| layout: qmk | ||
| lang: "el" | ||
| --- | ||
| Γειά σας! |
This file contains hidden or 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,35 @@ | ||
| --- | ||
| title: "Ένα λογισμικο ανοιχτού κώδικα για πληκτρολόγια βασισμένα σε AVR και ARM" | ||
| permalink: /el/ | ||
| lang: "el" | ||
| --- | ||
| Το QMK είναι ένα λογισμικό πληκτρολογίου βασισμένο στο [tmk\_keyboard](http://github.com/tmk/tmk_keyboard) με κάποια χρήσιμα χαρακτηριστικά για Atmel AVR και ARM controllers, και πιο συγκεκριμένα, η [σειρά προϊόντων OLKB](http://olkb.com), το πληκτρολόγιο [ErgoDox EZ](http://www.ergodox-ez.com), και η [σειρά προϊόντων Clueboard](http://clueboard.co/). | ||
|
|
||
| ## Πληκτρολόγια με QMK | ||
|
|
||
| * [Planck](https://github.com/qmk/qmk_firmware/blob/master/keyboards/planck/) | ||
| * [Preonic](https://github.com/qmk/qmk_firmware/blob/master/keyboards/preonic/) | ||
| * [ErgoDox EZ](https://github.com/qmk/qmk_firmware/blob/master/keyboards/ergodox_ez/) | ||
| * [Clueboard](https://github.com/qmk/qmk_firmware/blob/master/keyboards/clueboard/) | ||
| * [Cluepad](https://github.com/qmk/qmk_firmware/blob/master/keyboards/clueboard/17/) | ||
| * [Gergo](https://qmk.fm/keyboards/gergo/) | ||
| * [Georgi](https://qmk.fm/keyboards/georgi/) | ||
| * [Atreus](https://github.com/qmk/qmk_firmware/blob/master/keyboards/atreus/) | ||
|
|
||
| Αυτά τα προϊόντα χρησιμοποιούν το QMK ως το επίσημο και βασικό λογισμικό τους - λείπει το δικό σας από την λίστα? [Ενημερώστε μας!](https://github.com/qmk/qmk.fm/issues/new) | ||
|
|
||
| Το QMK είναι συμβατό με [πολλά άλλα υποστηριζόμενα από την κοινότητα πληκτρολόγια και projects](https://github.com/qmk/qmk.fm/tree/gh-pages/_i18n/en/keyboards). | ||
|
|
||
| Μπορείτε να διαβάσετε περισσότερα για να χρησιμοποιήσετε το QMK με το πληκτρολόγιο σας [εδώ](https://github.com/qmk/qmk.fm/blob/gh-pages/_i18n/en/powered.md). | ||
|
|
||
| ## Συντηρητές | ||
|
|
||
| Το QMK αναπτύσσεται και συντηρείται από τον Jack Humbert του OLKB με συνεισφορές από την κοινότητα, και φυσικά το, [Hasu](https://github.com/tmk). Τα λογισμικά των προϊόντων OLKB συντηρούνται από τον [Jack Humbert](https://github.com/jackhumbert), την Ergodox EZ από τα [ZSA Technology Labs](https://github.com/zsa),και την Clueboard από τον [Zach White](https://github.com/skullydazed). | ||
|
|
||
| ## Πληροφορίες | ||
|
|
||
| Οι [Πληροφορίες](https://docs.qmk.fm) φιλοξενούνται στο [Gitbook](https://www.gitbook.com/book/qmk/firmware/details) και στο [Github](https://github.com/qmk/qmk_firmware/tree/master/docs) (είναι συγχρονισμενό). Μπορείτε να ζητήσετε αλλαγές κάνοντας ένα fork και ένα [pull request](https://github.com/qmk/qmk_firmware/pulls) ή κάνοντας κλικ στο "suggest an edit" σε οποιαδήποτε σελίδα. | ||
|
|
||
| ## Configurator | ||
|
|
||
| Χρησιμοποιήστε τον [online configurator](https://config.qmk.fm) για να σχεδιάσετε και να δημιουργήσετε το δικό σας λογισμικό keymap από την άνεση του browser σας. Μόνο ο Chrome και ο Firefox υποστηρίζονται αύτην την στιγμή. |
This file contains hidden or 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,24 @@ | ||
| Ο στόχος του project λογισμικού QMK είναι είναι να αναπτύξει μία εντελώς προσαρμόσιμη, ισχυρή, και ευχάριστη εμπειρία λογισμικού για κάθε project - πληκτρολόγιο και μη - και να παρέχει μία βοηθητική, ενθαρρυτική, και ευγενική υποστήριξη και feedback για άτομα με οποιαδήποτε εμπειρία ανάπτυξης λογισμικού. | ||
|
|
||
| [Δείτε στο <i class="fa fa-github" aria-hidden="true"></i> GitHub](https://github.com/qmk/qmk_firmware) | ||
|
|
||
| [](https://github.com/qmk/qmk_firmware/zipball/master) | ||
| [](https://github.com/qmk/qmk_firmware/tarball/master) | ||
|
|
||
| [](https://github.com/qmk/qmk_firmware/tags) | ||
| [](https://travis-ci.org/qmk/qmk_firmware) | ||
| [](https://discord.gg/Uq7gcHh) | ||
| [](https://docs.qmk.fm) | ||
| [](https://github.com/qmk/qmk_firmware/pulse/monthly) | ||
| [](https://github.com/qmk/qmk_firmware/) | ||
|
|
||
| ### Σελίδες | ||
|
|
||
| * [Online Configurator](https://config.qmk.fm) | ||
| * [Πρόσφατες Αλλαγές στο QMK](/el/changes/) | ||
| * [Όλα τα υποστηριζόμενα πληκτρολόγια](/keyboards/) | ||
| * [Χρησιμοποιήστε το QMK με το πληκτρολόγιο σας](/powered/) | ||
| * [Για το Proton C](/proton-c/) | ||
| * [Πληροφορίες Άδειας](/license/) | ||
| * [Κώδικας Δεοντολογίας](/coc/) | ||
| * [Πώς να υποστηρίξετε το QMK](/support/) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be
el?