Skip to content

Commit cffb0e8

Browse files
committed
gr_GR translation
1 parent 72bd90f commit cffb0e8

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

translations/gr_GR/readme.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -830,38 +830,38 @@
830830
```javascript
831831
832832
// 5.1.1
833-
// A Practical Module
833+
// Ένα Practical Module
834834
835835
(function( global ) {
836836
var Module = (function() {
837837
838838
var data = "secret";
839839
840840
return {
841-
// This is some boolean property
841+
// Αυτό είναι boolean property
842842
bool: true,
843-
// Some string value
843+
// Ένα string value
844844
string: "a string",
845-
// An array property
845+
// Ένα array property
846846
array: [ 1, 2, 3, 4 ],
847-
// An object property
847+
// Ένα object property
848848
object: {
849849
lang: "en-Us"
850850
},
851851
getData: function() {
852-
// get the current value of `data`
852+
// Επιστρέφει την τωρινή τιμή του `data`
853853
return data;
854854
},
855855
setData: function( value ) {
856-
// set the value of `data` and return it
856+
// θέτει την τιμή του `data` και την επιστρέφει
857857
return ( data = value );
858858
}
859859
};
860860
})();
861861
862-
// Other things might happen here
862+
// Άλλα πράγματα μπορούν να γίνουν εδώ
863863
864-
// expose our module to the global object
864+
// Έκθεση του module στο global object
865865
global.Module = Module;
866866
867867
})( this );
@@ -871,7 +871,7 @@
871871
```javascript
872872
873873
// 5.2.1
874-
// A Practical Constructor
874+
// Ένα Practical Constructor
875875
876876
(function( global ) {
877877
@@ -891,13 +891,13 @@
891891
};
892892
893893
894-
// To call constructor's without `new`, you might do this:
894+
// Για να καλέσετε constructor χωρίς `new`, μπορείτε να κάνετε αυτό:
895895
var ctor = function( foo ) {
896896
return new Ctor( foo );
897897
};
898898
899899
900-
// expose our constructor to the global object
900+
// Έκθεση του constructor στο global object
901901
global.ctor = ctor;
902902
903903
})( this );

0 commit comments

Comments
 (0)