Italian Translation Progress
Maintainer List
@longo-andrea, @mean2me, @pasor1
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 (@Dorin-David) #181
- [X] Nullish coalescing operator '??' (@matmont)
- [X] Loops: while and for
- [X] The "switch" statement
- [X] Functions
- [X] Function expressions
- [X] Arrow functions, the basics (@pasor1) #162
- [X] JavaScript specials
Code quality
- [X] Debugging in the browser
- [X] Coding Style
- [X] Comments
- [X] Ninja code
- [X] Automated testing with Mocha
- [X] Polyfills and transpilers
Objects: the basics
- [X] Objects
- [X] Object references and copying (@pasor1) #182
- [X] Garbage collection
- [X] Object methods, "this"
- [X] Constructor, operator "new"
- [X] Optional chaining '?.' (@longo-andrea) #187
- [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
- [X] Map and Set (@GabrieleRomeo)
- [X] WeakMap and WeakSet (@longo-andrea) #184
- [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 (@pasor1) #194
- [X] Scheduling: setTimeout and setInterval (@Luma1970)
- [X] Decorators and forwarding, call/apply (@pasor1) #204
- [X] Function binding (@pasor1) #229
- [X] Arrow functions revisited (@longo-andrea) #233
Object properties configuration
- [X] Property flags and descriptors (@longo-andrea) #196
- [X] Property getters and setters (@longo-andrea) #199
Prototypes, inheritance
- [X] Prototypal inheritance (@longo-andrea) #207
- [X] F.prototype (@longo-andrea) #208
- [X] Native prototypes (@longo-andrea) #210
- [X] Prototype methods, objects without proto (@longo-andrea) #213
Classes
- [X] Class basic syntax (@Wilkenfeld )
- [X] Class inheritance (@Wilkenfeld )
- [X] Static properties and methods (@longo-andrea) #231
- [X] Private and protected properties and methods (@longo-andrea) #240
- [X] Extending built-in classes (@longo-andrea) #237
- [X] Class checking: "instanceof" (@longo-andrea) #241
- [X] Mixins (@longo-andrea) #242
Error handling
- [X] Error handling, "try...catch"
- [X] Custom errors, extending Error (@longo-andrea) #163
Promises, async/await
- [X] Introduction: callbacks (@rezyx)
- [X] Promise API (@rezyx)
- [X] Promises chaining (@rezyx)
- [X] Error handling with promises (@rezyx)
- [X] Promise API (@rezyx)
- [X] Promisification (@rezyx)
- [X] Microtasks (@rezyx)
- [X] Async/await (@rezyx)
Generators, advanced iteration
- [X] Generators (@mean2me)
- [X] Async iteration and generators (@mean2me)
Modules
- [X] Modules, introduction (@R0adRunn3r) #49
- [X] Export and Import (@longo-andrea) #243
- [X] Dynamic imports (@longo-andrea) #244
Miscellaneous
- [X] Proxy and Reflect (@longo-andrea) #261
- [X] Eval: run a code string (@longo-andrea) #246
- [X] Currying (@longo-andrea) #255
- [X] Reference Type (@longo-andrea) #256
- [X] BigInt (@longo-andrea) #258
- [ ] Unicode, String internals
Browser: Document, Events, Interfaces
Document
- [X] Browser environment, specs
- [X] DOM tree
- [X] Walking the DOM (@pasor1) #253
- [X] Searching: getElement*, querySelector* (@Dorin-David) #254
- [X] Node properties: type, tag and contents (@marcellosurdi) #268
- [X] Attributes and properties (@Dorin-David) #267
- [X] Modifying the document (@Dorin-David) #281
- [X] Styles and classes (@marcellosurdi) #270
- [X] Element size and scrolling (@marcellosurdi) #279
- [X] Window sizes and scrolling (@marcellosurdi) #284
- [X] Coordinates (@marcellosurdi) #286
Introduction to Events
- [X] Introduction to browser events (@pierangelomiceli) #183
- [X] Bubbling and capturing (@pierangelomiceli) #198
- [X] Event delegation (@pierangelomiceli) #203
- [X] Browser default actions (@pierangelomiceli) #212
- [X] Dispatching custom events (@pierangelomiceli) #201
UI Events
- [X] Mouse events (@pierangelomiceli) #225
- [X] Moving the mouse: mouseover/out, mouseenter/leave (@pierangelomiceli) #232
- [X] Drag'n'Drop with mouse events (@pierangelomiceli) #252
- [X] Pointer events (@pierangelomiceli) #260
- [X] Keyboard: keydown and keyup (@pierangelomiceli) #265
- [X] Scrolling (@pierangelomiceli) #266
Forms, controls
- [X] Form properties and methods (@pierangelomiceli) #226
- [X] Focusing: focus/blur (@pierangelomiceli) #227
- [X] Events: change, input, cut, copy, paste (@pierangelomiceli) #223
- [X] Forms: event and method submit (@pierangelomiceli) #228
Document and resource loading
- [X] Page: DOMContentLoaded, load, beforeunload, unload (@simoneP93)
- [X] Scripts: async, defer (@simoneP93)
- [X] Resource loading: onload and onerror (@simoneP93)
Miscellaneous
- [X] Mutation observer (@pierangelomiceli)
- [X] Selection and Range (@pierangelomiceli )
- [X] Event loop: microtasks and macrotasks (@pierangelomiceli )
Frames and windows
- [X] Popups and window methods (@longo-andrea) #269
- [X] Cross-window communication (@longo-andrea) #273
- [X] The clickjacking attack (@longo-andrea) #278
Binary data, files
- [X] ArrayBuffer, binary arrays (@longo-andrea) #291
- [X] TextDecoder and TextEncoder (@longo-andrea) #292
- [X] Blob (@longo-andrea) #295
- [X] File and FileReader (@longo-andrea) #296
Network requests
- [X] Fetch
- [X] FormData (@fsciuti)
- [X] Fetch: Download progress (@fsciuti)
- [X] Fetch: Abort (@fsciuti)
- [X] Fetch: Cross-Origin Requests (@fsciuti)
- [X] Fetch API (@pierangelomiceli) #222
- [X] URL objects (@pierangelomiceli) #271
- [X] XMLHttpRequest (@pierangelomiceli) #274
- [X] Resumable file upload (@pierangelomiceli) #275
- [X] Long polling (@pierangelomiceli) #192
- [X] WebSocket (@pierangelomiceli) #129
- [X] Server Sent Events (@pierangelomiceli ) #180
Storing data in the browser
- [X] Cookies, document.cookie (@Automatron76)
- [X] LocalStorage, sessionStorage (@Automatron76)
- [ ] IndexedDB (@pierangelomiceli)
Animation
- [X] Bezier curve (@longo-andrea) #283
- [X] CSS-animations (@longo-andrea) #285
- [X] JavaScript animations (@longo-andrea) #287
Web components
- [X] From the orbital height (@pierangelomiceli) #276
- [X] Custom elements (@pierangelomiceli) #277
- [X] Shadow DOM and events (@pierangelomiceli)
- [X] Template element (@pierangelomiceli) #307
- [X] Shadow DOM slots, composition (@pierangelomiceli) #317
- [X] Shadow DOM styling (@pierangelomiceli) #322
- [X] Shadow DOM and events (@pierangelomiceli) #290
Regular expressions
- [X] Patterns and flags (@eadensplace) #43
- [X] Character classes (@eadensplace) #45
- [X] Unicode: flag "u" and class \p{...} (@eadensplace)
- [X] Anchors: string start ^ and end $ (@eadensplace) #48
- [X] Multiline mode of anchors ^ $, flag "m" (@DavideDaSerra )
- [X] Word boundary: \b (@marcellosurdi) #293
- [X] Escaping, special characters (@longo-andrea) #288
- [X] Sets and ranges [...] (@mrkrash)
- [X] Quantifiers +, *, ? and {n} (@DavideDaSerra)
- [X] Greedy and lazy quantifiers (@marcellosurdi) #318
- [X] Capturing groups (@marcellosurdi) #320
- [X] Backreferences in pattern: \N and \k<name> (@marcellosurdi) #321
- [X] Alternation (OR) | (@marcellosurdi) #323
- [X] Lookahead and lookbehind (@marcellosurdi) #324
- [X] Catastrophic backtracking (@antonio-f) #423
- [ ] Sticky flag "y", searching at position (@mrkrash)
- [X] Methods of RegExp and String (@sen6pupi3)
I would like to translate Introduction: callbacks
Great! I'll take care of Promise
@rezyx thanks for the help with translation. I found some typos on your translation, that I have already correct before merge pull request. If you want check your translation before commit the article, you can use free web app, like: https://languagetool.org/it/
Thanks for the help, good work!
I will :blush:
I'll continue with Promises Chaining @longo-andrea
Great, thanks for the help π
If you want, I can reserve to you all Promises, async/await chapter. In this way you can work without reply for every article, and send directly a PR.
Yes that's great! I will send one PR for section
Hi, I'd like to translate "Class basic syntax"
Hi @Wilkenfeld , thanks for the help. When you have finish send a PR.
@longo-andrea , I've sent the PR.
Thank you @Wilkenfeld , if you want you can go on with translation of the chapter.
@longo-andrea I think I'll continue the chapter, so I'd like to translate the "Class inheritance" page.
Hi i'd like to translate 'The "new Function" syntax',
thanks.
Hi @leicaflorian , thanks for the help. When you have finished, you can send a PR.
Hi!, i'd like to contribute starting from "Modules, introduction" :)
Hello! I'd like to translate Regular expressions > Patterns and flags π
Hi @R0adRunn3r and @eadensplace , thanks for the help, when you have finished send a PR π
@longo-andrea, I noticed that the version in this repository is different from the article online. Which one do I translate? I don't know if this version is older and/or less updated.
@eadensplace, I know, most articles are different from those online, because they are constantly modify, so it isn't easy to stay up to date. Usually the differences are small, so you can translate the article from this repository and then I will update articles once for all.
P.S. I found a typo on your translation, so to help me more I ask you to check before send a PR, there is some free web apps like: https://languagetool.org/it/
Thanksπ
@longo-andrea thank you, I didn't notice. I'd like to continue the translation, can I keep on translating the next chapters of Regular expressions ?
@eadensplace yes go on, I check all articles of RegEx from the list above so it's all yours.
Hi @longo-andrea, I'd like to translate "Fetch"! :)
Hi @fsciuti , thanks for the help!
@andrea-longo Can you assign me the item, please? :)
Hi @andrea-longo, I have translated the "Fetch" item. I'd like to translate also:
- FormData
- Fetch: Download progress
- Fetch: Abort
- Fetch: Cross-Origin Requests
Thank you!
Hi @longo-andrea, I have translated the "FormData" and "FetchProgress" items! :)
Thanks for the help @fsciuti
Thanks for the help @fsciuti
It's a pleasure @longo-andrea!
Hi @longo-andrea, I have translated the "FetchAbort" item! :)
Hi @longo-andrea, FetchCors is ready! :D
I'd like to translate also:
- Fetch: API
- URL objects
Thank you!