Indonesian Translation Progress
Maintainer List
@thickkoezz, @purwnt, @yoga1234, @juuni26
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
- [X] Comparisons
- [X] Conditional branching: if, '?'
- [X] Logical operators
- [X] Nullish coalescing operator '??'
- [X] Loops: while and for (@fcrezza)
- [X] The "switch" statement
- [X] Functions
- [X] Function expressions
- [X] Arrow functions, the basics (@dummyeuy) #53
- [X] JavaScript specials
Code quality
- [ ] Debugging in the browser
- [X] Coding Style
- [X] Comments
- [X] Ninja code
- [X] Automated testing with Mocha
- [ ] Polyfills and transpilers
Objects: the basics
- [X] Objects
- [X] Object references and copying
- [X] Garbage collection (@hyuwah)
- [X] Object methods, "this" (@dummyeuy) #57
- [X] Constructor, operator "new" (@dummyeuy) #59
- [X] Optional chaining '?.'
- [X] Symbol type (@dummyeuy) #56
- [X] Object to primitive conversion (@dummyeuy) #58
Data types
- [X] Methods of primitives
- [X] Numbers (@purwnt) #67
- [X] Strings (@zdzc)
- [X] Arrays (@dummyeuy) #63
- [X] Array methods (@purwnt)
- [X] Iterables (@purwnt)
- [X] Map and Set
- [X] WeakMap and WeakSet
- [X] Object.keys, values, entries
- [X] Destructuring assignment (@purwnt) #66
- [X] Date and time (@gunturkh) #85
- [X] JSON methods, toJSON
Advanced working with functions
- [X] Recursion and stack (@lanasta)
- [X] Rest parameters and spread syntax
- [X] Variable scope, closure
- [X] The old "var" (@elukuro)
- [X] Global object (@lanasta)
- [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 (@yoga1234)
- [X] F.prototype
- [X] Native prototypes
- [X] Prototype methods, objects without proto
Classes
- [X] Class basic syntax (@juuni26)
- [X] Class inheritance (@hendraaagil) #125
- [X] Static properties and methods (@hendraaagil) #116
- [X] Private and protected properties and methods (@hendraaagil) #114
- [X] Extending built-in classes (@xtrixia)
- [X] Class checking: "instanceof" (@raisoturu) #126
- [X] Mixins (@hendraaagil) #128
Error handling
- [ ] Error handling, "try...catch"
- [X] Custom errors, extending Error (@hendraaagil) #133
Promises, async/await
- [X] Introduction: callbacks (@tegarjgap) #44
- [X] Promise
- [X] Promises chaining (@tegarjgap) #113
- [X] Error handling with promises (@tegarjgap)
- [X] Promise API (@tegarjgap) #119
- [X] Promisification (@tegarjgap)
- [X] Microtasks (@tegarjgap)
- [X] Async/await (@tegarjgap)
Generators, advanced iteration
- [ ] Generators (@andreepratama27)
- [X] Async iteration and generators (@hendraaagil) #141
Modules
- [X] Modules, introduction (@tiana30) #159
- [ ] Export and Import (@babul28)
- [ ] Dynamic imports (@xtrixia)
Miscellaneous
- [ ] Proxy and Reflect
- [X] Eval: run a code string (@raisoturu) #138
- [X] Currying (@raisoturu) #140
- [ ] Reference Type
- [ ] BigInt
- [ ] Unicode, String internals
- [ ] WeakRef and FinalizationRegistry
Browser: Document, Events, Interfaces
Document
- [X] Browser environment, specs (@raisoturu) #130
- [ ] DOM tree
- [X] Walking the DOM (@wahyukmr) #317
- [X] Searching: getElement*, querySelector* (@tiana30)
- [ ] Node properties: type, tag and contents (@tiana30)
- [X] Attributes and properties (@wahyukmr) #318
- [ ] Modifying the document (@wahyukmr) #337
- [ ] Styles and classes
- [ ] Element size and scrolling
- [ ] Window sizes and scrolling
- [ ] Coordinates
Introduction to Events
- [X] Introduction to browser events (@EmptyWork) #236
- [X] Bubbling and capturing (@EmptyWork) #239
- [X] Event delegation (@EmptyWork) #243
- [X] Browser default actions (@EmptyWork) #245
- [ ] Dispatching custom events (@EmptyWork)
UI Events
- [ ] Mouse events
- [ ] Moving the mouse: mouseover/out, mouseenter/leave
- [ ] Drag'n'Drop with mouse events
- [ ] Pointer events
- [ ] Keyboard: keydown and keyup
- [ ] Scrolling
Forms, controls
- [ ] Form properties and methods (@Pazmy) #155
- [X] Focusing: focus/blur (@Pazmy) #160
- [X] Events: change, input, cut, copy, paste (@abdmmar) #224
- [X] Forms: event and method submit (@abdmmar) #219
Document and resource loading
- [ ] Page: DOMContentLoaded, load, beforeunload, unload
- [ ] Scripts: async, defer
- [ ] Resource loading: onload and onerror
Miscellaneous
Frames and windows
- [X] Popups and window methods (@elukuro) #149
- [ ] Cross-window communication
- [ ] The clickjacking attack
Binary data, files
- [ ] ArrayBuffer, binary arrays
- [ ] TextDecoder and TextEncoder
- [ ] Blob
- [X] File and FileReader (@abdmmar) #218
Network requests
- [X] Fetch (@tiana30) #134
- [X] FormData (@babul28)
- [ ] Fetch: Download progress (@babul28)
- [ ] Fetch: Abort (@babul28)
- [X] Fetch: Cross-Origin Requests (@tiana30) #145
- [ ] Fetch API (@igihcksn)
- [ ] URL objects
- [ ] XMLHttpRequest
- [ ] Resumable file upload (@abdmmar)
- [ ] Long polling (@babul28)
- [ ] WebSocket
- [ ] Server Sent Events
Storing data in the browser
- [ ] Cookies, document.cookie
- [X] LocalStorage, sessionStorage (@abdmmar) #217
- [ ] IndexedDB
Animation
- [ ] Bezier curve
- [ ] CSS-animations (@greenbrown)
- [ ] JavaScript animations
Web components
- [ ] From the orbital height (@abdmmar)
- [ ] Custom elements (@abdmmar)
- [X] Shadow DOM (@abdmmar) #143
- [ ] Template element (@abdmmar)
- [X] Shadow DOM slots, composition (@abdmmar) #214
- [X] Shadow DOM styling (@abdmmar) #215
- [ ] Shadow DOM and events (@abdmmar)
Regular expressions
- [X] Patterns and flags
- [X] Character classes
- [ ] Unicode: flag "u" and class \p{...}
- [ ] Anchors: string start ^ and end $
- [ ] Multiline mode of anchors ^ $, flag "m"
- [ ] Word boundary: \b
- [ ] Escaping, special characters
- [ ] Sets and ranges [...]
- [ ] Quantifiers +, *, ? and {n}
- [ ] 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
Keep progressing
I think for "importance" translation,it will be better if it's translated as "Nilai penting". What do you think?
I think for "importance" translation,it will be better if it's translated as "Nilai penting". What do you think?
o iya ya... bener juga... ahahaha...
Masih berlanjut kah untuk di translate ke Bahasa Indonesia ?
Hi @iliakan @thickkoezz I'll take the Regular expressions I've create an issues https://github.com/javascript-tutorial/id.javascript.info/issues/25 for translation that i working on
Hi @iliakan @thickkoezz I will translate Loops: while and for section
Please just write the title here. That's for the bot to handle it automatically ;)
Only the article title.
Loops: while and for
Methods of primitives
Sorry baru bales. lagi sibuk yg lain. Silakan kalau mau bantu, bikin pull request aja, nanti saya tarik. terima kasih.
@thickkoezz please check my PR https://github.com/javascript-tutorial/id.javascript.info/pull/26
@thickkoezz please check my PR #26
Sudah ya, terima kasih
Guys, let me tell you. I have my own language standards in translating English into Indonesian because there are so many English words that can't be translated directly into Indonesian. You may help translate and make a PR, and then I will review your translations. Thanks. What I am trying to say is that if there is no single translation in Indonesian words that sounds good to read, don't force it, let it be as is in English.
Additional reminders, make your translation look natural guys
Don't forget add my linkedin, guys. Thanks. :)
Hopefully this reference help you guys 😄 Reference for some kind of words that can't directly translate to indonesian
https://github.com/vuejs-id/docs/blob/master/GLOSARIUM.md https://github.com/reactjs/id.reactjs.org/wiki/Glosarium
hi all, I am interested in helping with Indonesian translation. Can anyone show me the ropes please?
hi all, I am interested in helping with Indonesian translation. Can anyone show me the repo, please?
Just fork this repo and continue the translation, then submit a PR... I'll do the rest. Thanks.
@ciptohartanto don't forget to write the title here, and the bot will be handle it automatically 😄
hey folks, is this repo is still maintained?
@adibfirman yeah, this repo still maintained, but the progress of translation slowly, because there are only a few contributors
Hi @thickkoezz, are this issue still need for translator?
@igihcksn This issue is used just for milestone. Let's keep this open until all translations done 100%.
@adibfirman and @ciptohartanto You could contribute if you have spare time. Just fork this repo, translate what you can translate, and submit a PR. I'll then pull it.
Strings
@zdzc Thanks
Hello, I'm volunteering to translate the section on Data type - Map and Set. By the way, "Patterns and flags" is already translated but doesn't have the checkmark yet :)
@lanasta Thank you for volunteering as well as reminding the checkmark. Once you are done translating, please submit a PR.
I take it the "Introduction: callbacks" article @thickkoezz
@tegarjgap OK, kalau bisa jangan cuma satu, yang banyak ya. Thanks