diff --git a/locale/de_DE.js b/locale/de_DE.js index d528e4899..d76376f49 100644 --- a/locale/de_DE.js +++ b/locale/de_DE.js @@ -103,7 +103,7 @@ Use \`Array.forEach()\` to return a \`function\` that uses \`Function.apply()\` `, 'comments': [`// Logs 'clicked docs' when clicked.`], - 'hash': '2d8eba637f445e60525f33ebc004a70e40b06ab4bc13f8262652535008cbb40c' + 'hash': '2d8eba637f445e60525f33ebc004a70e40b06ab4bc13f8262652535008cbb40c => 00a2fdef0a5cfdf4e4e634937306e9f9851d11491f406e3ea209d9d0141bacae' }, 'bindKey' : { 'description': `### bindKey diff --git a/locale/de_DE_log b/locale/de_DE_log index c58b8ffc0..6dd0219d4 100644 --- a/locale/de_DE_log +++ b/locale/de_DE_log @@ -1,3 +1,6 @@ -Thu Feb 08 2018 13:51:53 GMT+0200 (GTB Standard Time) -Hash changes: 0 +Thu Feb 08 2018 14:27:35 GMT+0200 (GTB Standard Time) +Hash changes: 1 +Snippet name:bindAll + Old hash: 2d8eba637f445e60525f33ebc004a70e40b06ab4bc13f8262652535008cbb40c + New hash: 00a2fdef0a5cfdf4e4e634937306e9f9851d11491f406e3ea209d9d0141bacae diff --git a/locale/el_GR.js b/locale/el_GR.js index e644ea470..95606a4aa 100644 --- a/locale/el_GR.js +++ b/locale/el_GR.js @@ -5,14 +5,14 @@ module.exports = { 'anagrams' : { 'description': `### anagrams -⚠️ **WARNING**: This function's execution time increases exponentially with each character. Anything more than 8 to 10 characters will cause your browser to hang as it tries to solve all the different combinations. +⚠️ **ΠΡΟΣΟΧΗ**: Ο χρόνος εκτέλεσης αυτής της συνάρτησης αυξάνει εκθετικά για κάθε χαρακτήρα. Οτιδήποτε περισσότερο από 8 με 10 χαρακτήρες θα κολλήσει το browser ενώ προσπαθεί να επιλύσει όλους τους πιθανούς συνδυασμούς. -Generates all anagrams of a string (contains duplicates). +Παράγει όλους τους αναγραμματισμούς μιας συμβολοσειράς (περιλαμβάνει διπλοτυπίες). -Use recursion. -For each letter in the given string, create all the partial anagrams for the rest of its letters. -Use \`Array.map()\` to combine the letter with each partial anagram, then \`Array.reduce()\` to combine all anagrams in one array. -Base cases are for string \`length\` equal to \`2\` or \`1\`. +Χρησιμοποιεί αναδρομή. +Για κάθε γράμμα στη συμβολοσειρά, δημιουργούνται όλοι οι μερικοί αναγραμματισμοί για τα υπόλοιπά του γράμματα. +Χρησιμοποιείται η \`Array.map()\` για να συνδυαστεί κάθε γράμμα με κάθε μερικό αναγραμματισμό, έπειτα η \`Array.reduce()\` για να συνδυάσει όλους τους αναγραμματισμούς σε ένα πίνακα. +Οι βασικές περιπτώσεις είναι συμβολοσειρές με \`length\` ίσο με \`2\` ή \`1\`. `, 'comments': [`// ['abc','acb','bac','bca','cab','cba']`], @@ -21,9 +21,9 @@ Base cases are for string \`length\` equal to \`2\` or \`1\`. 'arrayToHtmlList' : { 'description': `### arrayToHtmlList -Converts the given array elements into \`