Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #89

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
99ebbd9
Create greek files directory
merianos Jul 27, 2015
f34c7ce
Translate MIT License to Greek
merianos Jul 27, 2015
ed57d45
Introduction has been translated
merianos Jul 27, 2015
2ceabab
Translating the arrow feature
merianos Jul 27, 2015
386092a
Translate classes into greek language
merianos Jul 27, 2015
bcacc1b
Traslation of the Enhanced object literals into greek language
merianos Jul 27, 2015
fe0ed2c
Translate tempate string into greek language
merianos Jul 27, 2015
a84df60
Translating Destructuring into greek language
merianos Jul 28, 2015
1aab3ae
Translating the Default + Rest + Spread into greek language
merianos Jul 28, 2015
a66dfc1
Translating Let + Const into greek language
merianos Jul 28, 2015
56c2441
Translating Iterators + for..of into greek language
merianos Jul 28, 2015
2a7f4c2
Translating Generators into greek language
merianos Jul 28, 2015
4e02ee0
Translating Unicode into greek language
merianos Jul 28, 2015
d23cf62
Translating Modules into greek language
merianos Jul 28, 2015
69f1ce4
Translating Module Loaders into greek language
merianos Jul 28, 2015
e000f80
Translating Map + Set + WeakMap + WeakSet into greek language
merianos Jul 28, 2015
2e55637
Translating Proxies into greek language
merianos Jul 28, 2015
46683f2
Translating Symbols into greek language
merianos Jul 28, 2015
b43ea8e
Translating Subclassable Built-ins into greek language
merianos Jul 28, 2015
fe608d9
Translating math + number + string + array + object APIs into greek …
merianos Jul 28, 2015
982b0e2
Translating Binary and octal literals into greek language
merianos Jul 28, 2015
14dffec
Translating Promises into greek language
merianos Jul 28, 2015
73a5479
Translating Reflect API into greek language
merianos Jul 28, 2015
e3296ed
Translating Tail Calls into greek language
merianos Jul 28, 2015
43aa584
Merge branch 'feature/translate-readme-to-greek' into develop
merianos Jul 28, 2015
b16c474
Merge branch 'lukehoban:master' into develop
merianos Jan 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Translating Unicode into greek language
  • Loading branch information
merianos committed Jul 28, 2015
commit 4e02ee0707c7913a7c9d52a0812d426c86ab6917
12 changes: 6 additions & 6 deletions el/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,22 +278,22 @@ interface Generator extends Iterator {
```

### Unicode
Non-breaking additions to support full Unicode, including new Unicode literal form in strings and new RegExp `u` mode to handle code points, as well as new APIs to process strings at the 21bit code points level. These additions support building global apps in JavaScript.
Προσθήκες χωρίς-διάσπαση για πλήρη υποστήριξη Unicode, συμπεριλαμβανομένων νέων κυριολεκτικών μορφών Unicode σε συμβολοσειρές και νέοι RegExp `u` τρόπου για την διαχείριση σημείων κώδικα, όπως επίσης και νέες API για την επεξεργασία συμβολοσειρών σε σημεία επιπέδου κώδικα 21bit. Αυτές οι προσθήκες υποστηρίζουν δημιουργία καθολικών (παγκόσμιων) εφαρμογών σε JavaScript.

```JavaScript
// same as ES5.1
// Όπως και στην ES5.1
"𠮷".length == 2

// new RegExp behaviour, opt-in ‘u’
// Νέα συμπεριφορά της RegExp, opt-in ‘u’
"𠮷".match(/./u)[0].length == 2

// new form
// Νέα μορφή
"\u{20BB7}"=="𠮷"=="\uD842\uDFB7"

// new String ops
// Νέες επιλογές σε συμβολοσειρές
"𠮷".codePointAt(0) == 0x20BB7

// for-of iterates code points
// Επαναλήψεις σημείων κώδικα for-of
for(var c of "𠮷") {
console.log(c);
}
Expand Down