Spanish Translation Progress
还没有人认领这个 Issue。
评估
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 新手友好度
- 45/100
- Issue 类型
- 文档
- 描述清晰度
- 基本清楚
- 活跃度
- 停滞
- 技术栈
- javascript
调研方向
从 issue #17 中的翻译说明和检查清单开始,选择一篇尚未被认领的文章。打开其链接的源页面,在 fork 中进行翻译,并使用文章标题提交 pull request;翻译经过审查并合并后,才算完成。
由索引模型根据 Issue 内容生成。
描述
Maintainer List
@lizzie136, @vplentinax, @EzequielCaste, @joaquinelio, @maksumi
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
- An Introduction to JavaScript (@tscandalitta)
- Manuals and specifications (@tiomno)
- Code editors (@lizzie136 )
- Developer console (@EzequielCaste) #255
JavaScript Fundamentals
- Hello, world! (@victorze ) #31
- Code structure (@victorze ) #32
- The modern mode, "use strict" (@SantiEspada )
- Variables (@javier123454321) #93
- Data types (@tscandalitta) #46
- Interaction: alert, prompt, confirm (@tscandalitta ) #49
- Type Conversions (@tikoflano) #57
- Basic operators, maths (@EzequielCaste) #314
- Comparisons
- Conditional branching: if, '?' (@Giorgiosaud) #95
- Logical operators (@Sjesc ) #47
- Nullish coalescing operator '??' (@ddanielcruzz) #196
- Loops: while and for (@Sjesc) #50
- The "switch" statement (@rajcespedes) #300
- Functions (@Giorgiosaud) #230
- Function expressions (@EzequielCaste) #272
- Arrow functions, the basics (@EzequielCaste) #334
- JavaScript specials (@Giorgiosaud) #229
Code quality
- Debugging in the browser
- Coding Style (@luisandia) #119
- Comments (@Arnau-Ninerola) #108
- Ninja code (@Sjesc) #109
- Automated testing with Mocha (@alexseik) #152
- Polyfills and transpilers
Objects: the basics
- Objects (@maksumi) #321
- Object references and copying
- Garbage collection (@PawFV) #260
- Object methods, "this" (@joaquinelio) #343
- Constructor, operator "new" (@EzequielCaste) #273
- Optional chaining '?.' (@vplentinax) #190
- Symbol type (@mariabp) #252
- Object to primitive conversion (@homero304) #350
Data types
- Methods of primitives (@joaquinelio) #199
- Numbers (@joaquinelio) #200
- Strings (@ferueda) #126
- Arrays (@joaquinelio) #309
- Array methods (@nahuelcoder) #316
- Iterables (@vplentinax) #179
- Map and Set (@vplentinax) #263
- WeakMap and WeakSet (@vplentinax) #176
- Object.keys, values, entries (@EzequielCaste) #275
- Destructuring assignment (@EzequielCaste) #259
- Date and time (@Fedebornaz) #352
- JSON methods, toJSON (@EzequielCaste) #278
Advanced working with functions
- Recursion and stack (@PawFV) #155
- Rest parameters and spread syntax (@PawFV) #261
- Variable scope, closure (@vplentinax) #178
- The old "var" (@joaquinelio) #312
- Global object (@vplentinax) #181
- Function object, NFE (@vplentinax) #182
- The "new Function" syntax (@11joselu) #120
- Scheduling: setTimeout and setInterval (@vplentinax) #202
- Decorators and forwarding, call/apply (@vplentinax) #205
- Function binding (@vplentinax) #206
- Arrow functions revisited (@vplentinax) #204
Object properties configuration
- Property flags and descriptors (@kenliten) #183
- Property getters and setters (@rainvare) #194
Prototypes, inheritance
- Prototypal inheritance (@cortizg) #191
- F.prototype (@cortizg) #192
- Native prototypes (@cortizg) #292
- Prototype methods, objects without proto (@cortizg) #195
Classes
- Class basic syntax (@joaquinelio) #341
- Class inheritance (@cortizg) #274
- Static properties and methods (@cortizg) #172
- Private and protected properties and methods (@cortizg) #173
- Extending built-in classes (@cortizg) #174
- Class checking: "instanceof" (@cortizg) #175
- Mixins (@cortizg) #271
Error handling
- Error handling, "try...catch"
- Custom errors, extending Error (@cortizg) #285
Promises, async/await
- Introduction: callbacks (@cortizg) #232
- Promise (@cortizg) #288
- Promises chaining (@cortizg) #189
- Error handling with promises (@george28cs) #329
- Promise API (@joaquinelio) #313
- Promisification (@Sjesc)
- Microtasks (@vplentinax) #280
- Async/await (@joaquinelio) #317
Generators, advanced iteration
- Generators (@vplentinax) #370
- Async iteration and generators
Modules
- Modules, introduction (@EzequielCaste) #198
- Export and Import (@EzequielCaste) #208
- Dynamic imports (@vplentinax) #295
Miscellaneous
- Proxy and Reflect (@joaquinelio) #451
- Eval: run a code string (@joaquinelio) #303
- Currying (@teocicciari) #287
- Reference Type (@maksumi) #304
- BigInt (@joaquinelio) #305
Browser: Document, Events, Interfaces
Document
- Browser environment, specs (@victorze) #293
- DOM tree (@roosvelt91) #264
- Walking the DOM (@Leired7) #318
- Searching: getElement*, querySelector* (@elemarmar) #311
- Node properties: type, tag and contents (@homero304) #422
- Attributes and properties (@vplentinax) #323
- Modifying the document (@joaquinelio) #494
- Styles and classes (@danilobrinu) #413
- Element size and scrolling (@lgabrielvleon) #433
- Window sizes and scrolling (@vplentinax) #328
- Coordinates (@maksumi) #349
Introduction to Events
- Introduction to browser events (@maksumi) #392
- Bubbling and capturing (@mariomenjr) #372
- Event delegation (@joaquinelio) #353
- Browser default actions (@homero304) #378
- Dispatching custom events (@homero304) #363
UI Events
- Mouse events (@maksumi) #290
- Moving the mouse: mouseover/out, mouseenter/leave (@maksumi) #302
- Drag'n'Drop with mouse events (@kenliten) #466
- Pointer events (@vplentinax) #336
- Keyboard: keydown and keyup (@joaquinelio) #596
- Scrolling (@Leired7) #330
Forms, controls
- Form properties and methods (@kenliten) #431
- Focusing: focus/blur (@j-llano) #527
- Events: change, input, cut, copy, paste (@nahuelcoder) #333
- Forms: event and method submit (@puntope) #454
Document and resource loading
- Page: DOMContentLoaded, load, beforeunload, unload (@vplentinax) #369
- Scripts: async, defer (@danilobrinu) #324
- Resource loading: onload and onerror (@danilobrinu) #393
Miscellaneous
- Mutation observer (@joaquinelio) #337
- Selection and Range (@vplentinax) #382
- Event loop: microtasks and macrotasks (@nahuelcoder) #358
Frames and windows
- Popups and window methods (@Derlys) #359
- Cross-window communication (@homero304) #367
- The clickjacking attack (@homero304) #374
Binary data, files
- ArrayBuffer, binary arrays (@jespadas) #532
- TextDecoder and TextEncoder (@homero304) #338
- Blob (@kenliten) #380
- File and FileReader (@d4g0) #325
Network requests
- Fetch (@carlosabud) #435
- FormData (@MaskeZen) #335
- Fetch: Download progress (@homero304) #425
- Fetch: Abort (@MaskeZen) #360
- Fetch: Cross-Origin Requests (@MaskeZen) #427
- Fetch API (@homero304) #397
- URL objects (@Agus-c) #376
- XMLHttpRequest (@kenliten) #377
- Resumable file upload (@FroggyGentlemen) #375
- Long polling (@homero304) #354
- WebSocket (@joaquinelio) #447
- Server Sent Events (@homero304) #381
Storing data in the browser
- Cookies, document.cookie (@joaquinelio) #510
- LocalStorage, sessionStorage (@arnaugiralt) #82
- IndexedDB (@joaquinelio) #491
Animation
- Bezier curve (@tambaqui) #78
- CSS-animations (@tambaqui ) #110
- JavaScript animations (@homero304) #389
Web components
- From the orbital height (@Leired7) #331
- Custom elements (@joaquinelio) #495
- Shadow DOM (@joaquinelio) #386
- Template element (@RocioC1207) #384
- Shadow DOM slots, composition (@MaxSierra16) #561
- Shadow DOM styling (@MoisesTR) #426
- Shadow DOM and events (@joaquinelio) #550
Regular expressions
- Patterns and flags (@cortizg) #237
- Character classes (@cortizg) #265
- Unicode: flag "u" and class \p{...}
- Anchors: string start ^ and end $ (@cortizg) #268
- Multiline mode of anchors ^ $, flag "m" (@cortizg) #269
- Word boundary: \b
- Escaping, special characters (@cortizg) #284
- Sets and ranges [...] (@cortizg) #296
- Quantifiers +, *, ? and {n} (@cortizg) #297
- Greedy and lazy quantifiers (@cortizg) #355
- Capturing groups (@EzequielCaste) #345
- Backreferences in pattern: \N and \k<name>
- Alternation (OR) | (@vplentinax) #473
- Lookahead and lookbehind (@MrC0D) #385
- Catastrophic backtracking (@jespadas) #591
- Sticky flag "y", searching at position (@AbiF73) #424
- Methods of RegExp and String (@danilobrinu) #414
- 主要语言
- HTML
- 星标
- 626
- 派生
- 226
- PR 合并指标
- 30 天内没有已合并 PR
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
javascript-tutorial/es.javascript.info 的其他 Issue
-
难度 3/5 1-2 天 新手友好度 52/100
-
难度 4/5 3-5 天 新手友好度 15/100
javascript-tutorial/es.javascript.info#602 · 4 条评论 · 1 个 reaction ·
-
难度 3/5 1-2 天 新手友好度 45/100
-
难度 5/5 一周以上 新手友好度 25/100
javascript-tutorial/es.javascript.info#588 · 2 条评论 ·
-
难度 2/5 1-3 小时 新手友好度 20/100
javascript-tutorial/es.javascript.info#531 · 17 条评论 ·
查看 javascript-tutorial/es.javascript.info 的全部 Issue
相似的 Issue
-
Area: Excel support
难度 2/5 1-3 小时 新手友好度 75/100
orbeon/orbeon-forms#7893 ·
-
难度 2/5 1-3 小时 新手友好度 75/100
docToolchain/docToolchain#1705 ·
-
kb-infra-drift
难度 2/5 1-3 小时 新手友好度 70/100
OCHA-DAP/ds-knowledge-base#653 · 1 条评论 ·
-
area/dev-productivity area/disaster-recovery area/ipcei kind/enhancement
难度 2/5 1-3 小时 新手友好度 70/100
-
namespace operations
难度 1/5 1 小时以内 新手友好度 90/100
EclipseFdn/open-vsx.org#13419 ·