tr.javascript.info
tr.javascript.info copied to clipboard
Turkish Translation Progress
Maintainer List
@sahinyanlik, @aliemir, @bilgedemirkaya
For New Translators
Please read this first (click to open)
To translate an article:
- Check that no one else has claimed your article in the checklist below.
- Comment below with the title of the article that you would like to translate, exactly as listed, e.g.
An Introduction to JavaScript
.- Please take only one article at a time.
- Fork this repo, translate the article in your fork and submit a pull request!
- The pull request title should be same as the article, e.g.
An Introduction to JavaScript
(just like comment)
- The pull request title should be same as the article, e.g.
Please be prompt with your translations! If you find that you can't commit any more, let maintainers know so they can assign the page to someone else.
For Maintainers
Click to open
We recommend that a translation has 2 reviews to be merged.
Please let others know what you do, on community boards and chats, invite them to join. Translations become better if more people see them.
Translations are tracked below, like this:
- [ ] Home Page (@iliakan) #1
Our helpful bot watches comments and adds the translator nick and PR id, marks completed, when PR is merged. You can read the details at https://javascript.info/translate/bot.
If something doesn't work right, please contact @iliakan.
Team translation
More details about team translation: https://javascript.info/translate/bot.
Only maintainers can check/uncheck items below. If you're not, please write in a comment what you take to translate, the title, exactly as in the list.
The JavaScript language
An introduction
- [X] An Introduction to JavaScript
- [X] Manuals and specifications
- [X] Code editors
- [X] Developer console
JavaScript Fundamentals
- [X] Hello, world!
- [X] Code structure
- [X] The modern mode, "use strict"
- [X] Variables
- [X] Data types
- [X] Interaction: alert, prompt, confirm
- [X] Type Conversions
- [X] Basic operators, maths (@ogzico)
- [X] Comparisons
- [X] Conditional branching: if, '?' (@ogzico)
- [X] Logical operators
- [ ] Nullish coalescing operator '??' // THIS PART IS MISSING
- [X] Loops: while and for
- [X] The "switch" statement
- [X] Functions
- [X] Function expressions
- [X] Arrow functions, the basics (@akseyh) #147
- [X] JavaScript specials
Code quality
- [ ] Debugging in the browser (@sezerdogru)
- [X] Coding Style
- [X] Comments
- [X] Ninja code
- [ ] Automated testing with Mocha
- [ ] Polyfills and transpilers
Objects: the basics
- [X] Objects
- [ ] Object references and copying // THIS PART IS MISSING
- [X] Garbage collection
- [X] Object methods, "this"
- [X] Constructor, operator "new"
- [ ] Optional chaining '?.' // THIS PART IS MISSING
- [X] Symbol type
- [X] Object to primitive conversion
Data types
- [X] Methods of primitives
- [X] Numbers
- [X] Strings
- [X] Arrays
- [X] Array methods
- [X] Iterables
- [ ] Map and Set (@cmlcrn17) #92
- [X] WeakMap and WeakSet
- [X] Object.keys, values, entries
- [X] Destructuring assignment
- [X] Date and time
- [X] JSON methods, toJSON
Advanced working with functions
- [X] Recursion and stack
- [X] Rest parameters and spread syntax
- [X] Variable scope, closure
- [X] The old "var"
- [X] Global object
- [X] Function object, NFE
- [X] The "new Function" syntax
- [X] Scheduling: setTimeout and setInterval
- [X] Decorators and forwarding, call/apply
- [X] Function binding
- [X] Arrow functions revisited
Object properties configuration
Prototypes, inheritance
- [X] Prototypal inheritance
- [X] F.prototype
- [X] Native prototypes
- [X] Prototype methods, objects without proto
Classes
- [X] Class basic syntax
- [X] Class inheritance
- [X] Static properties and methods
- [X] Private and protected properties and methods
- [X] Extending built-in classes
- [X] Class checking: "instanceof"
- [X] Mixins
Error handling
- [ ] Error handling, "try...catch" (@utqkaba)
- [X] Custom errors, extending Error
Promises, async/await
- [X] Introduction: callbacks
- [X] Promise
- [X] Promises chaining
- [ ] Error handling with promises (@ogzico)
- [ ] Promise API (@berat)
- [X] Promisification (@akseyh) #272
- [ ] Microtasks (@sezerdogru)
- [ ] Async/await (@Mustafaefe)
Generators, advanced iteration
Modules
- [X] Modules, introduction
- [X] Export and Import
- [X] Dynamic imports (@berat)
Miscellaneous
- [ ] Proxy and Reflect (@polycaman)
- [X] Eval: run a code string (@yinkar) #305
- [ ] Currying (@kaanguru)
- [ ] Reference Type
- [ ] BigInt
- [ ] Unicode, String internals
- [ ] WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- [X] Browser environment, specs
- [ ] DOM tree (@2eb)
- [X] Walking the DOM (@yy34) #183
- [ ] Searching: getElement*, querySelector*
- [ ] Node properties: type, tag and contents
- [ ] Attributes and properties (@altankurt)
- [X] Modifying the document
- [ ] Styles and classes
- [ ] Element size and scrolling
- [ ] Window sizes and scrolling
- [ ] Coordinates
Introduction to Events
- [ ] Introduction to browser events (@umitishere)
- [ ] Bubbling and capturing (@M-Burak-Yilmazer)
- [ ] Event delegation
- [ ] Browser default actions
- [ ] Dispatching custom events
UI Events
- [X] Mouse events (@bilgedemirkaya) #164
- [X] Moving the mouse: mouseover/out, mouseenter/leave (@bilgedemirkaya) #166
- [X] Drag'n'Drop with mouse events (@bilgedemirkaya)
- [ ] Pointer events (@kamilklkn)
- [ ] Keyboard: keydown and keyup
- [ ] Scrolling (@barangokcekli) #336
Forms, controls
- [X] Form properties and methods (@hmzshin) #353
- [ ] Focusing: focus/blur
- [X] Events: change, input, cut, copy, paste (@yy34) #167
- [ ] Forms: event and method submit
Document and resource loading
- [ ] Page: DOMContentLoaded, load, beforeunload, unload
- [ ] Scripts: async, defer (@cys27) #356
- [ ] Resource loading: onload and onerror
Miscellaneous
- [ ] Mutation observer
- [ ] Selection and Range
- [X] Event loop: microtasks and macrotasks (@unalman) #205
Frames and windows
- [ ] Popups and window methods
- [ ] Cross-window communication
- [X] The clickjacking attack (@Chainedge) #90
Binary data, files
- [ ] ArrayBuffer, binary arrays
- [ ] TextDecoder and TextEncoder
- [X] Blob (@yinkar) #349
- [ ] File and FileReader
Network requests
- [X] Fetch (@eyupfidan) #348
- [ ] FormData
- [ ] Fetch: Download progress
- [ ] Fetch: Abort
- [ ] Fetch: Cross-Origin Requests
- [ ] Fetch API (@dilarauluturhan)
- [X] URL objects (@yy34) #162
- [ ] XMLHttpRequest
- [ ] Resumable file upload
- [ ] Long polling
- [ ] WebSocket
- [ ] Server Sent Events
Storing data in the browser
- [ ] Cookies, document.cookie (@hknfrt)
- [ ] LocalStorage, sessionStorage (@utqkaba)
- [ ] IndexedDB
Animation
- [ ] Bezier curve (@cys27)
- [X] CSS-animations (@InanBerkin) #139
- [ ] JavaScript animations
Web components
- [X] From the orbital height (@yinkar) #225
- [ ] Custom elements
- [ ] Shadow DOM
- [ ] Template element
- [ ] Shadow DOM slots, composition
- [ ] Shadow DOM styling
- [ ] Shadow DOM and events
Regular expressions
- [X] Patterns and flags (@gmertk) #52
- [X] Character classes (@gmertk) #71
- [ ] Unicode: flag "u" and class \p{...}
- [X] Anchors: string start ^ and end $ (@mervekrblt) #226
- [ ] Multiline mode of anchors ^ $, flag "m"
- [X] Word boundary: \b (@yinkar) #326
- [ ] Escaping, special characters
- [ ] Sets and ranges [...]
- [X] Quantifiers +, *, ? and {n} (@cys27) #355
- [ ] Greedy and lazy quantifiers
- [ ] Capturing groups
- [ ] Backreferences in pattern: \N and \k<name>
- [ ] Alternation (OR) |
- [ ] Lookahead and lookbehind
- [ ] Catastrophic backtracking
- [ ] Sticky flag "y", searching at position
- [ ] Methods of RegExp and String
Code editors
Merhaba @alaminut başlamadan önce tr branch'ına veya https://github.com/sahinyanlik/javascript-tutorial-tr buraya bakabilir misiniz? Aslında büyük bir bölümünü düzenledik bu ilk başlıkların. Sonraki bölümlerden başlayabilirsiniz. Merge edeceğim üzerinden geçip. Yardımların için şimdiden teşekkür ederim.
Merhaba @alaminut başlamadan önce tr branch'ına veya https://github.com/sahinyanlik/javascript-tutorial-tr buraya bakabilir misiniz? Aslında büyük bir bölümünü düzenledik bu ilk başlıkların. Sonraki bölümlerden başlayabilirsiniz. Merge edeceğim üzerinden geçip. Yardımların için şimdiden teşekkür ederim.
Merhaba, bu repodaki adımları takip ettiğim için tamamlandığını bilmediğim bir bölümü seçmişim. İptal edebiliriz, ilgili branche bakarak daha uygun bir bölüm seçeceğim tekrar.
Modules, introduction
Promise
@CeamKrier Merhabalar ben aslında onun bir bölümünü tamamlamıştım. Bu şu anda commitledim. Size zahmet başlamadan pull edebilir misiniz? Bu bölüme dokunmayacağım daha.
@sahinyanlik Merhaba, son commite göz attım. Gördüğüm kadarıyla çeviri için kalan bi yer yok. Ben doğrudan 'Promise Chaining' ile devam ederim
Browser environment, specs
@sahinyanlik Merhaba, son commite göz attım. Gördüğüm kadarıyla çeviri için kalan bi yer yok. Ben doğrudan 'Promise Chaining' ile devam ederim
@sahinyanlik Merhabalar, hayli büyük bir PR olmuş, ne zaman ana branche alırsınız ya da hangi başlıkların çevirisi tamamlandı, üstteki listenin tikleri güncel midir? ona göre eksik kısımlardan çevirmeye başlayacağım bende.
Export and Import
Dynamic imports
Promise API
Arrow functions, the basics
Patterns and flags
Character classes
The clickjacking attack
Map and Set
Please, don't translate code blocks.
modifying the document
Cookies, document.cookie
Currying
CSS-animations
Basic operators, maths
Conditional branching: if, '?'
Conditional branching: if, '?'
Basic operators, maths
bu ikisinin de site üzerinde çevrildiğini görmekteyim her ne kadar burada çevrilmemiş gözükse de. Sanırım güncel değil buradaki durum. Siteden bakarak yeni bölüm alacağım.
Class basic syntax
Error: the article already translated in the Progress Issue :interrobang:
Error handling with promises
Pointer events
Class basic syntax