diff --git a/.autocorrectignore b/.autocorrectignore new file mode 100644 index 00000000000000..cabe9364ee1033 --- /dev/null +++ b/.autocorrectignore @@ -0,0 +1,7 @@ +# AutoCorrect Link ignore rules. +# https://github.com/huacnlee/autocorrect +# +# Like `.gitignore`, this file to tell AutoCorrect which files need to check, some need to ignore. +files/ +docs/ +!files/zh-cn/ diff --git a/.autocorrectrc b/.autocorrectrc new file mode 100644 index 00000000000000..8b8f715da76117 --- /dev/null +++ b/.autocorrectrc @@ -0,0 +1,4 @@ +textRules: + 一二三,四五六.七八九: 0 + 一二三,四五六,七八九,一二三,四五六,七八九: 0 + 9.9亿: 0 diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8783ddf25e7989..c024915e998242 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -87,3 +87,4 @@ /.github/ @mdn/core-dev /* @mdn/core-dev /*.md @mdn/core-dev @mdn/core-yari-content +/.prettierignore diff --git a/.github/labeler.yml b/.github/labeler.yml index ad4e4f11594d65..ff5629625c41ad 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,9 +1,11 @@ -# For more ideas, see https://github.com/actions/labeler#common-examples - system: + - package.json + - yarn.lock - .github/**/* - .husky/**/* + - .vscode/**/* - .* + - front-matter-config.json l10n-de: - files/de/**/* diff --git a/.github/workflows/autocorrect-lint.yml b/.github/workflows/autocorrect-lint.yml new file mode 100644 index 00000000000000..5c28e32aaf0d37 --- /dev/null +++ b/.github/workflows/autocorrect-lint.yml @@ -0,0 +1,44 @@ +# This workflow to use AutoCorrect tool for checking the copywriting, correct spaces and punctuations for CJK contents. +# +# For example: +# +# - incorrect: "欢迎阅读MDN文档." +# - correct: "欢迎阅读 MDN 文档。" +# +# - incorrect: "Welcome,this is MDN Web Docs。" +# - correct: "Welcome, to read MDN Web Docs." +# +# More details: +# https://github.com/huacnlee/autocorrect +name: AutoCorrect Lint +on: + pull_request: + branches: + - main + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Get changed files + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BASE_SHA: ${{ github.event.pull_request.base.sha }} + HEAD_SHA: ${{ github.event.pull_request.head.sha }} + run: | + # Use the GitHub API to get the list of changed files + # documenation: https://docs.github.com/rest/commits/commits#compare-two-commits + DIFF_DOCUMENTS=$(gh api repos/{owner}/{repo}/compare/${{ env.BASE_SHA }}...${{ env.HEAD_SHA }} \ + --jq '.files | .[] | select(.status|IN("added", "modified", "renamed", "copied", "changed")) | .filename') + # filter out files that are not markdown + DIFF_DOCUMENTS=$(echo "${DIFF_DOCUMENTS}" | egrep -i "^files/zh-cn/" | xargs) + echo "DIFF_DOCUMENTS=${DIFF_DOCUMENTS}" >> $GITHUB_ENV + + - name: AutoCorrect changed content + if: ${{ env.DIFF_DOCUMENTS }} + uses: huacnlee/autocorrect-action@v2.6.2 + with: + args: ${{ env.DIFF_DOCUMENTS }} --lint --no-diff-bg-color diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml new file mode 100644 index 00000000000000..3b5094e9fecf63 --- /dev/null +++ b/.github/workflows/reviewdog.yml @@ -0,0 +1,45 @@ +name: reviewdog + +on: + - pull_request + +jobs: + prettier: + # do not run on forks + if: github.repository == 'mdn/translated-content' + name: prettier + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Get changed files + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BASE_SHA: ${{ github.event.pull_request.base.sha }} + HEAD_SHA: ${{ github.event.pull_request.head.sha }} + run: | + # Use the GitHub API to get the list of changed files + # documenation: https://docs.github.com/rest/commits/commits#compare-two-commits + DIFF_DOCUMENTS=$(gh api repos/{owner}/{repo}/compare/${{ env.BASE_SHA }}...${{ env.HEAD_SHA }} --jq '.files | .[] | select(.status|IN("added", "modified", "renamed", "copied", "changed")) | .filename' | xargs) + echo "DIFF_DOCUMENTS=${DIFF_DOCUMENTS}" >> $GITHUB_ENV + + - name: Setup Node.js environment + uses: actions/setup-node@v3 + with: + node-version-file: ".nvmrc" + cache: yarn + + - name: Install all yarn packages + run: yarn --frozen-lockfile + env: + # https://github.com/microsoft/vscode-ripgrep#github-api-limit-note + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Perform linting + run: yarn prettier --ignore-unknown --write ${{ env.DIFF_DOCUMENTS }} + + - name: Submit suggestion + uses: reviewdog/action-suggester@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + tool_name: prettier diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index aaffae2c888017..82fefeca20a770 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -1,44 +1,46 @@ +// This file defines our configuration for Markdownlint. See +// https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md +// for more details on each rule. + { "config": { "default": true, - // MD001 - Heading levels should only increment by one level at a time. - // -> Disabled, as some callouts include headings. - "MD001": false, - "MD004": { + // Disabled, as some callouts include headings. + "header-increment": false, + "ul-style": { "style": "dash" }, - "MD007": { + "ul-indent": { "indent": 2 }, - "MD010": { + "no-hard-tabs": { "spaces_per_tab": 2 }, - "MD013": false, - "MD024": false, + "line-length": false, + "no-duplicate-header": false, // XXX Replace with the following when ready: - // "MD024": { + // "no-duplicate-header": { // "allow_different_nesting": true // }, - "MD025": { + "single-title": { "front_matter_title": "^\\s*title\\s*[:=]" }, - "MD026": false, + "no-trailing-punctuation": false, // XXX Replace with the following when ready: - // "MD026": { + // "no-trailing-punctuation": { // "punctuation": ".,;:" // }, // Consecutive Notes/Callouts currently don't conform with this rule - "MD028": false, + "no-blanks-blockquote": false, // Force ordered numbering to catch accidental list ending from indenting - "MD029": { + "ol-prefix": { "style": "ordered" }, - "MD033": { + "no-inline-html": { "allowed_elements": [ "a", "abbr", "annotation", - "base", "br", "caption", "code", @@ -46,7 +48,6 @@ "colgroup", "dd", "details", - "dfn", "div", "dl", "dt", @@ -88,6 +89,7 @@ "ol", "p", "pre", + "q", "section", "semantics", "strong", @@ -103,45 +105,47 @@ "tr", "ul", "var", + "dfn", // XXX Still used in some translated content "ruby", // Used in some Korean documents "rp", // Used in some Korean documents "rt", // Used in some Korean documents "i", // French translations use this for English literal text - "q", // French translations use this for English literal text - "h2", // Not always converted currently because of live samples using English IDs - "h3", // Not always converted currently because of live samples using English IDs - "h6" // Not always converted currently because of live samples using English IDs + "h2", // XXX Not always converted currently because of live samples using English IDs + "h3", // XXX Not always converted currently because of live samples using English IDs + "h6" // XXX Not always converted currently because of live samples using English IDs ] }, - "MD034": false, - // XXX Fixed upstream, enable rule when fixed here - "MD036": false, + "no-bare-urls": false, + // XXX Fixed upstream, remove next line when fixed here + "no-emphasis-as-header": false, // Produces too many false positives - "MD037": false, - "MD040": false, + "no-space-in-emphasis": false, + "fenced-code-language": false, // See https://github.com/mdn/content/pull/20026, as macros currently break this - "MD042": false, - // XXX Fixed upstream, enable rule when fixed here - "MD045": false, - "MD046": { + "no-empty-links": false, + // XXX Fixed upstream, remove next line when fixed here + "no-alt-text": false, + "code-block-style": { "style": "fenced" }, - "MD049": false, + "emphasis-style": false, // XXX Replace with the following when ready: - // "MD049": { + // "emphasis-style": { // "style": "underscore" // }, - "MD050": { + "strong-style": { "style": "asterisk" }, - // MD051 - Link fragments should be valid. - // -> Disabled, as yari generates link fragments by replacing spaces with underscores, not dashes. - "MD051": false, - // Incompatible with brackets in macros like MD042 - "MD052": false, + // Disabled, as yari generates link fragments by replacing spaces with underscores, not dashes. + "link-fragments": false, + // XXX Fixed upstream, remove next line when fixed here + "reference-links-images": false, + + // https://github.com/OnkarRuikar/markdownlint-rule-search-replace "search-replace": { "rules": [ // XXX Many instances still found in translated content + // XXX Need to disable this for zh-cn due to grammatical accuracy // { // "name": "curly-double-quotes", // "message": "Don't use curly double quotes", @@ -163,21 +167,21 @@ "replace": " ", "searchScope": "all" }, - // XXX Many instances still found in translated content - // { - // "name": "m-dash", - // "message": "Don't use '--'. Use m-dash — instead", - // "search": " -- ", - // "replace": " — ", - // "searchScope": "text" - // }, - // { - // "name": "relative-link", - // "message": "Internal links should start with '/'", - // "searchPattern": "/([\\(\"])[\\w\\-]+\\/docs/g", - // "replace": "$1/en-US/docs", - // "searchScope": "text" - // }, + // XXX zh-cn/zh-tw prefers em-dash instead + { + "name": "m-dash", + "message": "Don't use '--'. Use m-dash — instead", + "search": " -- ", + "replace": " — ", + "searchScope": "text" + }, + { + "name": "relative-link", + "message": "Internal links should start with '/'", + "searchPattern": "/([\\(\"])([\\w\\-]+)\\/docs/g", + "replace": "$1/$2/docs", + "searchScope": "text" + }, { "name": "relative-link-path", "message": "Don't use relative paths", @@ -224,5 +228,11 @@ } }, "customRules": ["markdownlint-rule-search-replace"], - "ignores": ["node_modules", "**/conflicting/**", "**/orphaned/**", ".github/"] + "ignores": [ + "node_modules", + ".git", + ".github", + "**/conflicting/**", + "**/orphaned/**" + ] } diff --git a/.prettierignore b/.prettierignore index 90bd386660acac..a517f2af35ae23 100644 --- a/.prettierignore +++ b/.prettierignore @@ -10,77 +10,72 @@ build/ /files/**/conflicting/**/*.md /files/**/orphaned/**/*.md +# XXX Ignored until https://github.com/prettier/prettier/issues/11828 is fixed +/files/es/learn/css/howto/css_faq/index.md +/files/fr/glossary/cross_axis/index.md +/files/fr/glossary/flex/index.md +/files/fr/glossary/flex_container/index.md +/files/fr/glossary/flexbox/index.md +/files/fr/glossary/grid_axis/index.md +/files/fr/glossary/grid_lines/index.md +/files/fr/glossary/main_axis/index.md +/files/fr/learn/server-side/django/forms/index.md +/files/fr/web/css/align-self/index.md +/files/fr/web/css/justify-content/index.md +/files/fr/web/css/place-items/index.md +/files/fr/web/css/place-self/index.md +/files/fr/web/javascript/reference/global_objects/array/includes/index.md +/files/fr/web/javascript/reference/global_objects/intl/displaynames/of/index.md +/files/pt-br/learn/server-side/django/forms/index.md +/files/ru/learn/server-side/django/forms/index.md +/files/ru/learn/server-side/django/introduction/index.md +/files/ru/learn/html/introduction_to_html/the_head_metadata_in_html/index.md +/files/zh-cn/learn/server-side/django/forms/index.md +/files/zh-cn/web/javascript/reference/operators/exponentiation/index.md +/files/zh-cn/web/javascript/reference/operators/exponentiation_assignment/index.md + # A full pass on all Markdown files is being performed. # The following folders still need a full pass: # es -/docs/es/**/*.md -/files/es/games/**/*.md -/files/es/glossary/**/*.md -/files/es/learn/**/*.md -/files/es/mdn/**/*.md -/files/es/mozilla/**/*.md -/files/es/web/api/**/*.md /files/es/web/css/**/*.md -/files/es/web/html/**/*.md -/files/es/web/http/**/*.md -/files/es/web/javascript/**/*.md -/files/es/webassembly/**/*.md - -# fr -/files/fr/games/**/*.md -/files/fr/glossary/**/*.md -/files/fr/learn/**/*.md -/files/fr/mdn/**/*.md -/files/fr/mozilla/**/*.md -/files/fr/web/**/*.md -/files/fr/webassembly/**/*.md +/files/es/web/javascript/reference/**/*.md # ja -/files/ja/games/**/*.md -/files/ja/glossary/**/*.md -/files/ja/learn/**/*.md -/files/ja/mdn/**/*.md /files/ja/mozilla/**/*.md -/files/ja/related/**/*.md -/files/ja/web/**/*.md -/files/ja/webassembly/**/*.md +/files/ja/mdn/**/*.md +/files/ja/mozilla/add-ons/**/*.md +/files/ja/mozilla/add-ons/webextensions/api/**/*.md +/files/ja/web/api/**/*.md +/files/ja/web/css/**/*.md +/files/ja/web/html/**/*.md +/files/ja/web/http/**/*.md +/files/ja/web/javascript/**/*.md +/files/ja/web/svg/**/*.md # ko -/docs/ko/**/*.md -/files/ko/games/**/*.md -/files/ko/glossary/**/*.md /files/ko/learn/**/*.md -/files/ko/mdn/**/*.md /files/ko/mozilla/**/*.md -/files/ko/web/**/*.md -/files/ko/webassembly/**/*.md +/files/ko/mozilla/add-ons/**/*.md +/files/ko/mozilla/add-ons/webextensions/api/**/*.md +/files/ko/mozilla/firefox**/*.md +/files/ko/web/api/**/*.md +/files/ko/web/css/**/*.md +/files/ko/web/html/**/*.md +/files/ko/web/javascript/**/*.md # pt-br -/files/pt-br/games/**/*.md -/files/pt-br/glossary/**/*.md -/files/pt-br/learn/**/*.md -/files/pt-br/mdn/**/*.md -/files/pt-br/mozilla/**/*.md -/files/pt-br/web/**/*.md -/files/pt-br/webassembly/**/*.md +/files/pt-br/web/api/**/*.md +/files/pt-br/web/css/**/*.md +/files/pt-br/web/html/**/*.md +/files/pt-br/web/http/**/*.md +/files/pt-br/web/javascript/**/*.md +/files/pt-br/web/svg/**/*.md # ru -/docs/ru/**/*.md -/files/ru/games/**/*.md -/files/ru/glossary/**/*.md -/files/ru/learn/**/*.md -/files/ru/mdn/**/*.md -/files/ru/mozilla/**/*.md -/files/ru/web/**/*.md -/files/ru/webassembly/**/*.md - -# zh-cn -/files/zh-cn/games/**/*.md -/files/zh-cn/glossary/**/*.md -/files/zh-cn/learn/**/*.md -/files/zh-cn/mdn/**/*.md -/files/zh-cn/mozilla/**/*.md -/files/zh-cn/web/**/*.md -/files/zh-cn/webassembly/**/*.md -/docs/zh-cn/glossary.md +/files/ru/web/api/**/*.md +/files/ru/web/css/**/*.md +/files/ru/web/html/**/*.md +/files/ru/web/http/**/*.md +/files/ru/web/javascript/**/*.md +/files/ru/web/svg/**/*.md diff --git a/PEERS_GUIDELINES.md b/PEERS_GUIDELINES.md index a55c6d3ac2636e..d09d0311ffc9aa 100644 --- a/PEERS_GUIDELINES.md +++ b/PEERS_GUIDELINES.md @@ -46,7 +46,6 @@ The review teams for each locale are: - [yujo11](https://github.com/yujo11) - [hochan222](https://github.com/hochan222) - Russian (`ru`) content — the [yari-content-ru](https://github.com/orgs/mdn/teams/yari-content-ru) team, which consists of: - - [armanpwnz](https://github.com/armanpwnz) - [yanaklose](https://github.com/yanaklose) - [myshov](https://github.com/myshov) - [Saionaro](https://github.com/Saionaro) diff --git a/docs/es/README.md b/docs/es/README.md index 2b929a0cd8e9d0..5d386ad6952bc7 100644 --- a/docs/es/README.md +++ b/docs/es/README.md @@ -33,18 +33,17 @@ Ejemplificaremos el proceso a realizar cuando se desea traducir el contenido de Ejemplo: Digamos que desea traducir el contenido de la página que se observa en esta dirección. - ![image](https://user-images.githubusercontent.com/7331511/152851642-5dea4df9-f771-4323-bc13-b238dec511ef.png) +![image](https://user-images.githubusercontent.com/7331511/152851642-5dea4df9-f771-4323-bc13-b238dec511ef.png) 1. Buscar la [versión original (en inglés)](https://github.com/mdn/content/tree/main/files/en-us) del documento que desea traducir. - Debería buscar en el repositorio [en inglés (mdn/content)](https://github.com/mdn/content) el archivo correspondiente al documento, en este caso la dirección sería [`files/en-us/web/javascript/reference/global_objects/array/index.md`](https://github.com/mdn/content/blob/main/files/en-us/web/javascript/reference/global_objects/array/index.md) + Debería buscar en el repositorio [en inglés (mdn/content)](https://github.com/mdn/content) el archivo correspondiente al documento, en este caso la dirección sería [`files/en-us/web/javascript/reference/global_objects/array/index.md`](https://github.com/mdn/content/blob/main/files/en-us/web/javascript/reference/global_objects/array/index.md) 2. Buscar la [versión en español](https://github.com/mdn/translated-content/blob/main/files/es/) del [documento](https://github.com/mdn/translated-content/blob/main/files/es/web/javascript/reference/global_objects/array/index.html) que desea traducir. En este caso la dirección seria [`files/es/web/javascript/reference/global_objects/array/index.{html|md}`](https://github.com/mdn/translated-content/blob/main/files/es/web/javascript/reference/global_objects/array/index.html) - > NOTA: - > - > - Si el archivo no existe, deberá crearlo en formato `Markdown` imitando la ruta que tiene la versión en inglés. - > - > - Es posible que el archivo en la versión en español se encuentre en formato `HTML`, en cuyo caso tendrá que reemplazarlo por el formato `Markdown`. + > NOTA: + > + > - Si el archivo no existe, deberá crearlo en formato `Markdown` imitando la ruta que tiene la versión en inglés. + > - Es posible que el archivo en la versión en español se encuentre en formato `HTML`, en cuyo caso tendrá que reemplazarlo por el formato `Markdown`. 3. Utilizar el texto y formato en inglés como guía para traducir al español. @@ -71,16 +70,16 @@ La comunidad de español sugiere utilizar las siguientes convenciones al traduci ### Formatos especiales | Inglés | Español | -|----------------|--------------------| +| -------------- | ------------------ | | `**Note:**` | `**Nota:**` | -| `**Warning:**` | `**Advertencia:**` | +| `**Warning:**` | `**Advertencia:**` | | `**Callout:**` | `**Observación:**` | ## Formateo -| Expresión | Como escribirlo | -| --------- | --------------- | -| 25 | 2^5 | +| Expresión | Como escribirlo | +| ------------- | --------------- | +| 25 | 2^5 | Actualmente trabajando en: @@ -118,6 +117,7 @@ Tutorial para crear el ambiente de desarrollo para MDN Guía de markdown + Más información [aqui](https://github.com/mdn/translated-content/discussions/4029) diff --git a/docs/ko/README.md b/docs/ko/README.md index 57e655111265ba..5baf4c386f4318 100644 --- a/docs/ko/README.md +++ b/docs/ko/README.md @@ -55,10 +55,10 @@ yari 가 content repo에 내장돼있습니다. 세부 절차는 [다음 링크] 2. content 폴더에 들어가서 `yarn install`을 통해 yari 등 필요한 패키지를 다운받습니다. 3. content 폴더 root에 .env 파일을 추가합니다. (translated-content/files 경로 추가, vscode editor의 경우 `EDITOR=code` 추가) - ``` - CONTENT_TRANSLATED_ROOT=/path/to/translated-content/files - EDITOR=code - ``` + ``` + CONTENT_TRANSLATED_ROOT=/path/to/translated-content/files + EDITOR=code + ``` 4. `yarn start` diff --git a/docs/ko/guides/archieved/html-guide.md b/docs/ko/guides/archieved/html-guide.md index 3e2789c0824ffa..564ce04c7fe38b 100644 --- a/docs/ko/guides/archieved/html-guide.md +++ b/docs/ko/guides/archieved/html-guide.md @@ -7,13 +7,13 @@ 예를 들면: ```html -

Tutorials

+

Tutorials

``` `ko` 지역 에서 ```html -

튜토리얼

+

튜토리얼

``` 일반적으로 모든 ID를 소문자로 작성하는 것이 좋습니다. 플랫폼은 어쨌든 렌더링시 자동으로 변환하지만 소문자로 유지하면 변환으로 인해 수동으로 만든 앵커 링크가 작동하지 않을 가능성이 적습니다. @@ -23,13 +23,16 @@ 일부 기사 소스 코드에서, 반드시 필요하지 않은 블록 수준 요소에서 줄 바꿈을 찾을 수 있습니다. 예를 들면 다음과 같습니다. ```html -

The - HTMLCanvasElement.transferControlToOffscreen() - method transfers control to an {{domxref("OffscreenCanvas")}} object, either on the main - thread or on a worker.

- -
OffscreenCanvas HTMLCanvasElement.transferControlToOffscreen()
+

+ The HTMLCanvasElement.transferControlToOffscreen() method transfers + control to an {{domxref("OffscreenCanvas")}} object, either on the main thread + or on a worker. +

+ +
+OffscreenCanvas HTMLCanvasElement.transferControlToOffscreen()
``` 일반적으로 소스 코드에서 이와 같은 줄 바꿈을 사용하지 않으므로 원하는 경우 자유롭게 제거 할 수 있으며 새 번역을 만들 때 추가하지 마십시오. 그러나 최종 렌더링 결과에 영향을 미치지 않으므로 이를 제거하는 데 너무 많은 시간을 소비하지 마십시오. diff --git a/docs/ko/guides/github-actions-guide.md b/docs/ko/guides/github-actions-guide.md index a446d39ad32395..7633c45e9251b6 100644 --- a/docs/ko/guides/github-actions-guide.md +++ b/docs/ko/guides/github-actions-guide.md @@ -6,9 +6,9 @@ ## Redirects Files -보통의 경우 파일 삭제시 [_redirects.txt](https://github.com/mdn/translated-content/blob/main/files/ko/_redirects.txt)를 갱신해주어야 합니다. +보통의 경우 파일 삭제시 [\_redirects.txt](https://github.com/mdn/translated-content/blob/main/files/ko/_redirects.txt)를 갱신해주어야 합니다. -[yari](https://github.com/mdn/yari)에서 아래 명령어를 통해 [translated-content](https://github.com/mdn/translated-content)의 [_redirects.txt](https://github.com/mdn/translated-content/blob/main/files/ko/_redirects.txt) 파일을 검증 및 갱신할 수 있습니다. +[yari](https://github.com/mdn/yari)에서 아래 명령어를 통해 [translated-content](https://github.com/mdn/translated-content)의 [\_redirects.txt](https://github.com/mdn/translated-content/blob/main/files/ko/_redirects.txt) 파일을 검증 및 갱신할 수 있습니다. ```bash yarn tool validate-redirects ko --strict diff --git a/docs/ko/guides/glossary-guide.md b/docs/ko/guides/glossary-guide.md index ac419747f41829..17a93a93281fa7 100644 --- a/docs/ko/guides/glossary-guide.md +++ b/docs/ko/guides/glossary-guide.md @@ -33,42 +33,42 @@ **사전 순으로 용어집을 편집해주세요.** -| 용어 | 번역 | 참고 링크 | -| --- | --- | --- | -| Access | 접근 | | -| Accessibility concerns | 접근성 고려사항 | | -| Advantages | 장점 | [링크][Introduction_to_HTML5_Game_Development] | -| Aliasing | 별칭 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | -| Brief history | 간략한 역사 | [링크][HTML#%EA%B0%84%EB%9E%B5%ED%95%9C_%EC%97%AD%EC%82%AC] | -| Browser compatibility | 브라우저 호환성 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | -| Browser support | 브라우저 지원 | [링크][Using_IIR_filters] | -| Concept | 개념 | | -| Conclusion | 결론 | | -| Contact us | 문의하기 | | -| Demo | 데모 | [링크][GLSL_Shaders] -| Description | 설명 | [링크][Array] -| Example | 예제 | [링크][target] | -| Examples | 예제 | [링크](https://github.com/mdn/translated-content/blob/main/files/ko/web/javascript/reference/global_objects/proxy/proxy/apply/index.md) | -| Guides | 안내서 | | -| In this module | 이번 과정에서는 | [링크][React_getting_started] | -| Instance properties | 인스턴스 속성 | | -| Instance methods | 인스턴스 메서드 | | -| Learn More | 더 알아보기 | [링크][Mutable] | -| Next steps | 다음 단계 | [링크][2D_breakout_game_Phaser] | -| Polyfill | 폴리필 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | -| Reference | 참고서 | | -| See also | 같이 보기 | [링크][target] | -| Specifications | 명세서 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | -| Static properties | 정적 속성 | | -| Static methods | 정적 메서드 | | -| Sticky activation | 고정 활성화 | | -| Summary | 요약 | | -| Syntax | 구문 | [링크][target] | -| Tools & resources | 도구 & 리소스 | [링크][JavaScript] | -| Transient activation | 임시 활성화 | | -| Tutorial | 자습서 | | -| Usage notes | 사용 일람 | | -| Web Technologies | 웹 기술들 | [링크][Introduction_to_HTML5_Game_Development] | +| 용어 | 번역 | 참고 링크 | +| ---------------------- | --------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| Access | 접근 | | +| Accessibility concerns | 접근성 고려사항 | | +| Advantages | 장점 | [링크][Introduction_to_HTML5_Game_Development] | +| Aliasing | 별칭 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | +| Brief history | 간략한 역사 | [링크][HTML#%EA%B0%84%EB%9E%B5%ED%95%9C_%EC%97%AD%EC%82%AC] | +| Browser compatibility | 브라우저 호환성 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | +| Browser support | 브라우저 지원 | [링크][Using_IIR_filters] | +| Concept | 개념 | | +| Conclusion | 결론 | | +| Contact us | 문의하기 | | +| Demo | 데모 | [링크][GLSL_Shaders] | +| Description | 설명 | [링크][Array] | +| Example | 예제 | [링크][target] | +| Examples | 예제 | [링크](https://github.com/mdn/translated-content/blob/main/files/ko/web/javascript/reference/global_objects/proxy/proxy/apply/index.md) | +| Guides | 안내서 | | +| In this module | 이번 과정에서는 | [링크][React_getting_started] | +| Instance properties | 인스턴스 속성 | | +| Instance methods | 인스턴스 메서드 | | +| Learn More | 더 알아보기 | [링크][Mutable] | +| Next steps | 다음 단계 | [링크][2D_breakout_game_Phaser] | +| Polyfill | 폴리필 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | +| Reference | 참고서 | | +| See also | 같이 보기 | [링크][target] | +| Specifications | 명세서 | [링크](https://github.com/mdn/translated-content/pull/1779/files) | +| Static properties | 정적 속성 | | +| Static methods | 정적 메서드 | | +| Sticky activation | 고정 활성화 | | +| Summary | 요약 | | +| Syntax | 구문 | [링크][target] | +| Tools & resources | 도구 & 리소스 | [링크][JavaScript] | +| Transient activation | 임시 활성화 | | +| Tutorial | 자습서 | | +| Usage notes | 사용 일람 | | +| Web Technologies | 웹 기술들 | [링크][Introduction_to_HTML5_Game_Development] | ## Section Subtitle @@ -76,60 +76,60 @@ **사전 순으로 용어집을 편집해주세요.** -| 용어 | 번역 | 참고 링크 | -| --- | --- | --- | -| Compatibility notes | 호환성 참고 사항 | [링크][target] | -| Directives | 지시어 | [링크](https://github.com/mdn/translated-content/issues/11093#issuecomment-1411005106) | -| Guide | 안내서 | [링크](https://github.com/mdn/translated-content/issues/11093#issuecomment-1411005106) | -| Instruction | 지침 | [링크](https://github.com/mdn/translated-content/issues/11093#issuecomment-1411005106) | -| Naming | 이름 지정 | | -| Parameters | 매개변수 | [링크][AudioWorkletNode] | -| Requirements | 요구 사항 | | -| Value | 값 | [링크][target] | +| 용어 | 번역 | 참고 링크 | +| ------------------- | ---------------- | -------------------------------------------------------------------------------------- | +| Compatibility notes | 호환성 참고 사항 | [링크][target] | +| Directives | 지시어 | [링크](https://github.com/mdn/translated-content/issues/11093#issuecomment-1411005106) | +| Guide | 안내서 | [링크](https://github.com/mdn/translated-content/issues/11093#issuecomment-1411005106) | +| Instruction | 지침 | [링크](https://github.com/mdn/translated-content/issues/11093#issuecomment-1411005106) | +| Naming | 이름 지정 | | +| Parameters | 매개변수 | [링크][AudioWorkletNode] | +| Requirements | 요구 사항 | | +| Value | 값 | [링크][target] | ## 공통 용어 **사전 순으로 용어집을 편집해주세요.** -| 용어 | 번역 | 기타 | -| --- | --- | --- | -| Application | 애플리케이션 | | -| Assertion | 어설션 | | -| Attribute | 특성 | | -| Boolean | 불리언 | | -| Class | 클래스 | | -| Content(s) | 콘텐츠 | | -| Context | 맥락 | | -| Decoding | 디코딩 | [링크](https://github.com/mdn/translated-content/issues/12452) | -| Document | 문서 | | -| Element | 요소 | | -| Encoding | 인코딩 | [링크](https://github.com/mdn/translated-content/issues/12452) | -| Entity | 개체 | | -| Enumerated | 열거형 | | -| Expression | 표현식 또는 식 | | -| Framework | 프레임워크 | | -| Global | 전역 | | -| Glossary | 용어 사전 | | -| Grammar | 문법 | | -| In modern browsers | 최신 브라우저 | | -| Literal | 리터럴 | | -| Mantissa | 가수부 | | -| Method | 메서드 | [국립국어원 Method](https://www.korean.go.kr/front/onlineQna/onlineQnaView.do?mn_id=216&qna_seq=11976) | -| Module | 모듈 | ESM에서 명시하는 모듈의 경우 '모듈'로 변역한다. | | -| Module | 과정 | 어떠한 교육 과정, 단위에 의한 표현은 '과정'으로 번역한다. (예: In this module) | | -| Object | 객체 | | -| Origin | 출처 | | -| Override | 재정의 | | -| Primitive | 원시 (값) | | -| Property | 속성 | | -| Psuedo- | 의사- | | -| Reference | 참고서 | | -| Regular expression | 정규 표현식 | | -| Rendering | 렌더링 | | -| Section | 구획 | | -| Statement | 명령문 또는 문 | | -| short-circuit | -| User agent | 사용자 에이전트 | | +| 용어 | 번역 | 기타 | +| ------------------ | --------------- | ------------------------------------------------------------------------------------------------------ | +| Application | 애플리케이션 | | +| Assertion | 어설션 | | +| Attribute | 특성 | | +| Boolean | 불리언 | | +| Class | 클래스 | | +| Content(s) | 콘텐츠 | | +| Context | 맥락 | | +| Decoding | 디코딩 | [링크](https://github.com/mdn/translated-content/issues/12452) | +| Document | 문서 | | +| Element | 요소 | | +| Encoding | 인코딩 | [링크](https://github.com/mdn/translated-content/issues/12452) | +| Entity | 개체 | | +| Enumerated | 열거형 | | +| Expression | 표현식 또는 식 | | +| Framework | 프레임워크 | | +| Global | 전역 | | +| Glossary | 용어 사전 | | +| Grammar | 문법 | | +| In modern browsers | 최신 브라우저 | | +| Literal | 리터럴 | | +| Mantissa | 가수부 | | +| Method | 메서드 | [국립국어원 Method](https://www.korean.go.kr/front/onlineQna/onlineQnaView.do?mn_id=216&qna_seq=11976) | +| Module | 모듈 | ESM에서 명시하는 모듈의 경우 '모듈'로 변역한다. | | +| Module | 과정 | 어떠한 교육 과정, 단위에 의한 표현은 '과정'으로 번역한다. (예: In this module) | | +| Object | 객체 | | +| Origin | 출처 | | +| Override | 재정의 | | +| Primitive | 원시 (값) | | +| Property | 속성 | | +| Psuedo- | 의사- | | +| Reference | 참고서 | | +| Regular expression | 정규 표현식 | | +| Rendering | 렌더링 | | +| Section | 구획 | | +| Statement | 명령문 또는 문 | | +| short-circuit | +| User agent | 사용자 에이전트 | | ## CSS @@ -144,62 +144,62 @@ **사전 순으로 용어집을 편집해주세요.** -| 용어 | 번역 | 기타 | 참고 링크 | -| --- | --- | --- | ------ | -| At-rule | @규칙 | | | -| Block | 블록 | | | -| Border | 테두리 | | | -| Box | 박스 | | | -| Flexbox | 플렉스박스 | | | -| Flow | 플로 | 레이아웃 방식일 경우에 한정 | | -| Formal syntax | 형식 구문 | | | -| Grid | 그리드 | | | -| Inline | 인라인 | | | -| Layout | 레이아웃 | | | -| Longhand property | 본디 속성 | | | -| Margin | 바깥 여백 | | | -| Padding | 안쪽 여백(패딩) | | [CSS 기본 박스 모델 입문][] | -| Shorthand property | 단축 속성 | | | +| 용어 | 번역 | 기타 | 참고 링크 | +| ------------------ | --------------- | --------------------------- | --------------------------- | +| At-rule | @규칙 | | | +| Block | 블록 | | | +| Border | 테두리 | | | +| Box | 박스 | | | +| Flexbox | 플렉스박스 | | | +| Flow | 플로 | 레이아웃 방식일 경우에 한정 | | +| Formal syntax | 형식 구문 | | | +| Grid | 그리드 | | | +| Inline | 인라인 | | | +| Layout | 레이아웃 | | | +| Longhand property | 본디 속성 | | | +| Margin | 바깥 여백 | | | +| Padding | 안쪽 여백(패딩) | | [CSS 기본 박스 모델 입문][] | +| Shorthand property | 단축 속성 | | | ## API/JavaScript **사전 순으로 용어집을 편집해주세요.** -| 용어 | 번역 | 기타 | 참고 링크 | -| --- | --- | --- | ------ | -| Argument | 전달인자, 인수 | | [참고 링크](https://github.com/mdn/translated-content/pull/3888) | -| Blocking operation | 블로킹 연산 | | | -| Callback | 콜백 | | | -| Dictionary | 사전 | | [참고 링크](https://github.com/mdn/translated-content/pull/10976#discussion_r1073704799) | -| Fulfilled | 이행(함) | | | -| Handler | 처리기 | 이벤트 처리기 | | -| Interface | 인터페이스 | | | -| Iterate | 순회 | | | -| Listener | 수신기 | 이벤트 수신기 | | -| Mixin | 믹스인 | | | -| Non-blocking operation | 논블로킹 연산 | | | -| Parameter | 매개변수 | | | -| Pending | 대기 | | | -| Promise | 프로미스 | | [참고 링크](https://github.com/mdn/translated-content/pull/1081#issuecomment-878333558) | -| Promise chaining | 프로미스 체이닝 | | | -| Prototype | 프로토타입 | | | -| Reject | 거부 | | | -| Resolve | 이행 | | | -| Rest parameters | 나머지 매개변수 | | [참고 링크](https://github.com/mdn/translated-content/pull/2549/files) | -| Scope | 범위 | | | -| Settled | 처리 | | | -| Sparse array | 희소 배열 | | | -| Temporal Dead Zone, TDZ | 시간상 사각지대 | | [참고 링크](https://github.com/mdn/translated-content/pull/2626/files) | -| TypedArray | 형식화 배열 | | | +| 용어 | 번역 | 기타 | 참고 링크 | +| ----------------------- | --------------- | ------------- | ---------------------------------------------------------------------------------------- | +| Argument | 전달인자, 인수 | | [참고 링크](https://github.com/mdn/translated-content/pull/3888) | +| Blocking operation | 블로킹 연산 | | | +| Callback | 콜백 | | | +| Dictionary | 사전 | | [참고 링크](https://github.com/mdn/translated-content/pull/10976#discussion_r1073704799) | +| Fulfilled | 이행(함) | | | +| Handler | 처리기 | 이벤트 처리기 | | +| Interface | 인터페이스 | | | +| Iterate | 순회 | | | +| Listener | 수신기 | 이벤트 수신기 | | +| Mixin | 믹스인 | | | +| Non-blocking operation | 논블로킹 연산 | | | +| Parameter | 매개변수 | | | +| Pending | 대기 | | | +| Promise | 프로미스 | | [참고 링크](https://github.com/mdn/translated-content/pull/1081#issuecomment-878333558) | +| Promise chaining | 프로미스 체이닝 | | | +| Prototype | 프로토타입 | | | +| Reject | 거부 | | | +| Resolve | 이행 | | | +| Rest parameters | 나머지 매개변수 | | [참고 링크](https://github.com/mdn/translated-content/pull/2549/files) | +| Scope | 범위 | | | +| Settled | 처리 | | | +| Sparse array | 희소 배열 | | | +| Temporal Dead Zone, TDZ | 시간상 사각지대 | | [참고 링크](https://github.com/mdn/translated-content/pull/2626/files) | +| TypedArray | 형식화 배열 | | | ## HTTP -| 용어 | 번역 | 기타 | 참고 링크 | -| --- | --- | --- | ------ | -| Idempotent | 멱등성 | | | -| Payload | 페이로드 | | [참고 링크](https://github.com/mdn/translated-content/pull/2737) | -| Request Body | 요청 본문 | | | -| Response Body | 응답 본문 | | | +| 용어 | 번역 | 기타 | 참고 링크 | +| ------------- | --------- | ---- | ---------------------------------------------------------------- | +| Idempotent | 멱등성 | | | +| Payload | 페이로드 | | [참고 링크](https://github.com/mdn/translated-content/pull/2737) | +| Request Body | 요청 본문 | | | +| Response Body | 응답 본문 | | | [AudioWorkletNode]: https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/AudioWorkletNode#parameters [Using_IIR_filters]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Using_IIR_filters#browser_support diff --git a/docs/ko/guides/meta-data-guide.md b/docs/ko/guides/meta-data-guide.md index c84482e081b3e3..45370d27f226b5 100644 --- a/docs/ko/guides/meta-data-guide.md +++ b/docs/ko/guides/meta-data-guide.md @@ -21,7 +21,7 @@ tags: {{JSRef}} The `Proxy` object enables you to create a proxy for another ... - : +: ``` 번역본 @@ -37,7 +37,7 @@ l10n: {{JSRef}} **`Proxy`** 객체는 기본적인 동작(속성 접근, 할당, 순회, 열거, 함수 ... - : +: ```
diff --git a/docs/ko/guides/translation-guide.md b/docs/ko/guides/translation-guide.md index dc2d3bfb8ba555..0029968cec2c40 100644 --- a/docs/ko/guides/translation-guide.md +++ b/docs/ko/guides/translation-guide.md @@ -30,12 +30,12 @@ **사전 순으로 용어집을 편집해주세요.** -| 용어 | 번역 | 참고 링크 | -| --- | --- | --- | -| Note | 참고 | | -| Warning | 경고 | | -| Callout | 알림 | | -| Objective | 목표 | [링크][What_is_accessibility] | +| 용어 | 번역 | 참고 링크 | +| ------------- | ---------------- | ----------------------------- | +| Note | 참고 | | +| Warning | 경고 | | +| Callout | 알림 | | +| Objective | 목표 | [링크][What_is_accessibility] | | Prerequisites | 필요한 사전 지식 | [링크][What_is_accessibility] | ### 교육 과정 callout @@ -56,10 +56,15 @@ ```markdown # 참고 + > **Note:** This is a note. + # 경고 + > **Warning:** This is a warning. + # 알림 + > **Callout:** This is a callout. ``` @@ -67,10 +72,15 @@ ```markdown # 참고 + > **참고:** 참고입니다. + # 경고 + > **경고:** 경고입니다. + # 알림 + > **알림:** 알림입니다. ``` diff --git a/docs/ru/translation-guide.md b/docs/ru/translation-guide.md index a3f7421ef1fe96..931b1c84a6fbaf 100644 --- a/docs/ru/translation-guide.md +++ b/docs/ru/translation-guide.md @@ -22,19 +22,19 @@ **Пожалуйста, поддерживайте глоссарий в алфавитном порядке.** -| Оригинальный термин | Перевод | -| ------------------ | ---------- | -| cache | кеш | -| feature | возможность (_менее предпочтительный синоним: функциональность_) | -| functionality | функциональность (или в зависимости от контекста — _возможность_) \* | -| general knowledge | общие сведения (при использовании в качестве заголовка) | -| learn more | дополнительные ресурсы (при использовании в качестве заголовка) | -| listener | обработчик (события) | -| note | примечание | -| production | продакшен | -| render(ing) | рендер, рендерить, отрендерить | -| see also | смотрите также | -| technical reference | технические материалы (при использовании в качестве заголовка) | +| Оригинальный термин | Перевод | +| ------------------- | -------------------------------------------------------------------- | +| cache | кеш | +| feature | возможность (_менее предпочтительный синоним: функциональность_) | +| functionality | функциональность (или в зависимости от контекста — _возможность_) \* | +| general knowledge | общие сведения (при использовании в качестве заголовка) | +| learn more | дополнительные ресурсы (при использовании в качестве заголовка) | +| listener | обработчик (события) | +| note | примечание | +| production | продакшен | +| render(ing) | рендер, рендерить, отрендерить | +| see also | смотрите также | +| technical reference | технические материалы (при использовании в качестве заголовка) | \* — по возможности лучше избежать прямого перевода, используя синонимы или лучше раскрывая смысл. diff --git a/docs/zh-cn/glossary.md b/docs/zh-cn/glossary.md index 8a8ae58cf2b4b5..f3348525543de2 100644 --- a/docs/zh-cn/glossary.md +++ b/docs/zh-cn/glossary.md @@ -4,75 +4,75 @@ ### API -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | -| light DOM | 常规 DOM | 与影子 DOM 相对 | 同 shadow DOM | -| shadow DOM | 影子 DOM | DOM 节点的附属树,在常规 DOM 中不可见(web 组件) | | -| shadow host | 影子宿主 | web 组件的宿主元素 | 同 shadow DOM | -| shadow tree | 影子树 | 隐藏的 DOM 子树 | 同 shadow DOM | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| ----------- | -------- | ------------------------------------------------- | ------------------------------------------------------------------------------ | +| light DOM | 常规 DOM | 与影子 DOM 相对 | 同 shadow DOM | +| shadow DOM | 影子 DOM | DOM 节点的附属树,在常规 DOM 中不可见(web 组件) | | +| shadow host | 影子宿主 | web 组件的宿主元素 | 同 shadow DOM | +| shadow tree | 影子树 | 隐藏的 DOM 子树 | 同 shadow DOM | ### CSS -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | -| block | 区块 | 用于表示布局、书写模式等 | | -| block direction | 块向 | | 同 `block` | -| block end/start | 块末/首 | | 同 `block` | -| block-level | 块级 | | 同 `block` | -| inline | 行内 | 用于表示布局、书写模式等 | | -| inline direction | 行向 | | 同 `inline` | -| inline end/start | 行末/首 | | 同 `inline` | -| inline-level | 行级 | | 同 `inline` | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| ---------------- | ------- | ------------------------ | -------------------------------------------------------- | +| block | 区块 | 用于表示布局、书写模式等 | | +| block direction | 块向 | | 同 `block` | +| block end/start | 块末/首 | | 同 `block` | +| block-level | 块级 | | 同 `block` | +| inline | 行内 | 用于表示布局、书写模式等 | | +| inline direction | 行向 | | 同 `inline` | +| inline end/start | 行末/首 | | 同 `inline` | +| inline-level | 行级 | | 同 `inline` | ### HTML -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | -| light dismiss | 轻触关闭 | | | -| Living Standard | 动态标准 | | | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| --------------- | -------- | ---- | ----------------------------------------------------------------------------- | +| light dismiss | 轻触关闭 | | | +| Living Standard | 动态标准 | | | ### HTTP -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | -| CORS | 跨源资源共享 | 使用“域”并不准确,来源包括协议、域名和端口。 | | -| Header | 标头 | HTTP 消息中的附加信息。 | 来自 Google Chrome 控制台 | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| -------- | ------------ | -------------------------------------------- | ----------------------------------------------------------------------------- | +| CORS | 跨源资源共享 | 使用“域”并不准确,来源包括协议、域名和端口。 | | +| Header | 标头 | HTTP 消息中的附加信息。 | 来自 Google Chrome 控制台 | ### JavaScript -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | -| bare module | 裸模块 | Vite.js 官方将其翻译为“裸模块”,其意为“没有任何路径的模块”。 | | -| brand check | 特定类型检查 | 通过一段代码来对特定的数据类型进行检查。 | | -| exotic object | 特异对象 | | | -| normative optional | 可选标准 | | | -| interface | 接口 | | | -| unscopable | 非作用域(属性) | | | -| well-known symbol | 内置通用符号 | | | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| ------------------ | ---------------- | ------------------------------------------------------------ | ----------------------------------------------------------------------------- | +| bare module | 裸模块 | Vite.js 官方将其翻译为“裸模块”,其意为“没有任何路径的模块”。 | | +| brand check | 特定类型检查 | 通过一段代码来对特定的数据类型进行检查。 | | +| exotic object | 特异对象 | | | +| normative optional | 可选标准 | | | +| interface | 接口 | | | +| unscopable | 非作用域(属性) | | | +| well-known symbol | 内置通用符号 | | | ## 标题/表格 -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | -| Accessibility concerns | 无障碍考虑 | | | -| Active learning | 动手练习 | | | -| Browser compatibility | 浏览器兼容性 | | | -| Conclusion | 总结 | | | -| Examples | 示例 | | | -| Exceptions | 异常 | | | -| Formal Definition | 形式定义 | | | -| Formal syntax | 形式语法 | | | -| Objective | 目标 | 在学习区表格中使用 | | -| Parameters | 参数 | | | -| Prerequisites | 前提 | 在学习区表格中使用 | | -| See also | 参见 | | | -| Specifications | 规范 | | | -| Technical summary | 技术概要 | | | -| Test your skills | 技能测试 | | | -| Usage notes | 使用说明 | | | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| ---------------------- | ------------ | ------------------ | ----------------------------------------------------------------------------- | +| Accessibility concerns | 无障碍考虑 | | | +| Active learning | 动手练习 | | | +| Browser compatibility | 浏览器兼容性 | | | +| Conclusion | 总结 | | | +| Examples | 示例 | | | +| Exceptions | 异常 | | | +| Formal Definition | 形式定义 | | | +| Formal syntax | 形式语法 | | | +| Objective | 目标 | 在学习区表格中使用 | | +| Parameters | 参数 | | | +| Prerequisites | 前提 | 在学习区表格中使用 | | +| See also | 参见 | | | +| Specifications | 规范 | | | +| Technical summary | 技术概要 | | | +| Test your skills | 技能测试 | | | +| Usage notes | 使用说明 | | | ## 通用术语 -| 英文词汇 | 翻译 | 备注 | 引用来源 | -| ------- | --- | ---- | ------ | +| 英文词汇 | 翻译 | 备注 | 引用来源 | +| ---------- | ---- | ---------------------- | ------------------------------------------------ | | repository | 仓库 | 用于存储代码的“仓库”。 | | diff --git a/files/es/_redirects.txt b/files/es/_redirects.txt index 0274a6f0b650e6..0b332e22976662 100644 --- a/files/es/_redirects.txt +++ b/files/es/_redirects.txt @@ -303,7 +303,7 @@ /es/docs/DOM/style /es/docs/Web/API/HTMLStyleElement /es/docs/DOM/table /es/docs/Web/API/HTMLTableElement /es/docs/DOM/window /es/docs/Web/API/Window -/es/docs/DOM/window.applicationCache /es/docs/Web/API/Window/applicationCache +/es/docs/DOM/window.applicationCache /es/docs/orphaned/Web/API/Window/applicationCache /es/docs/DOM/window.fullScreen /es/docs/Web/API/Window/fullScreen /es/docs/DOM/window.getSelection /es/docs/Web/API/Window/getSelection /es/docs/DOM/window.navigator.geolocation /es/docs/Web/API/Navigator/geolocation @@ -370,7 +370,7 @@ /es/docs/DOM:style /es/docs/Web/API/HTMLStyleElement /es/docs/DOM:table /es/docs/Web/API/HTMLTableElement /es/docs/DOM:window /es/docs/Web/API/Window -/es/docs/DOM:window.applicationCache /es/docs/Web/API/Window/applicationCache +/es/docs/DOM:window.applicationCache /es/docs/orphaned/Web/API/Window/applicationCache /es/docs/DOM:window.fullScreen /es/docs/Web/API/Window/fullScreen /es/docs/DOM:window.getSelection /es/docs/Web/API/Window/getSelection /es/docs/DOM:window.navigator.registerProtocolHandler /es/docs/Web/API/Navigator/registerProtocolHandler @@ -1270,7 +1270,8 @@ /es/docs/Mejoras_SVG_en_Firefox_3 /es/docs/Mozilla/Firefox/Releases/3/SVG_improvements /es/docs/Mejoras_XUL_en_Firefox_3 /es/docs/Mozilla/Firefox/Releases/3/XUL_improvements_in_Firefox_3 /es/docs/Mozilla/Add-ons/WebExtensions/Anatomia_de_una_WebExtension /es/docs/Mozilla/Add-ons/WebExtensions/Anatomy_of_a_WebExtension -/es/docs/Mozilla/Add-ons/WebExtensions/Prerequisitos /es/docs/Mozilla/Add-ons/WebExtensions/Prerequisites +/es/docs/Mozilla/Add-ons/WebExtensions/Prerequisites /es/docs/orphaned/Mozilla/Add-ons/WebExtensions/Prerequisites +/es/docs/Mozilla/Add-ons/WebExtensions/Prerequisitos /es/docs/orphaned/Mozilla/Add-ons/WebExtensions/Prerequisites /es/docs/Mozilla/Add-ons/WebExtensions/Que_son_las_WebExtensions /es/docs/Mozilla/Add-ons/WebExtensions/What_are_WebExtensions /es/docs/Mozilla/Add-ons/WebExtensions/Tu_primera_WebExtension /es/docs/Mozilla/Add-ons/WebExtensions/Your_first_WebExtension /es/docs/Mozilla/Add-ons/WebExtensions/Tutorial /es/docs/Mozilla/Add-ons/WebExtensions/Your_second_WebExtension @@ -1720,6 +1721,7 @@ /es/docs/Web/API/Window.navigator /es/docs/Web/API/Window/navigator /es/docs/Web/API/Window.onbeforeunload /es/docs/conflicting/Web/API/Window/beforeunload_event /es/docs/Web/API/Window.setTimeout /es/docs/Web/API/setTimeout +/es/docs/Web/API/Window/applicationCache /es/docs/orphaned/Web/API/Window/applicationCache /es/docs/Web/API/Window/crypto /es/docs/Web/API/crypto_property /es/docs/Web/API/Window/dialogArguments /es/docs/orphaned/Web/API/Window/dialogArguments /es/docs/Web/API/WindowBase64.atob /es/docs/Web/API/atob @@ -1790,6 +1792,7 @@ /es/docs/Web/CSS/-webkit-mask-position /es/docs/Web/CSS/mask-position /es/docs/Web/CSS/-webkit-mask-repeat /es/docs/Web/CSS/mask-repeat /es/docs/Web/CSS/-webkit-print-color-adjust /es/docs/Web/CSS/print-color-adjust +/es/docs/Web/CSS/:-moz-focusring /es/docs/conflicting/Web/CSS/:focus-visible /es/docs/Web/CSS/:-moz-list-bullet /es/docs/Web/CSS/::-moz-list-bullet /es/docs/Web/CSS/:-moz-list-number /es/docs/Web/CSS/::-moz-list-number /es/docs/Web/CSS/:-moz-locale-dir(ltr) /es/docs/Web/CSS/:-moz-locale-dir_ltr @@ -1870,8 +1873,8 @@ /es/docs/Web/CSS/Referencia_CSS/Extensiones_Mozilla /es/docs/Web/CSS/Mozilla_Extensions /es/docs/Web/CSS/Referencia_CSS/background-blend-mode /es/docs/Web/CSS/background-blend-mode /es/docs/Web/CSS/Referencia_CSS/mix-blend-mode /es/docs/Web/CSS/mix-blend-mode -/es/docs/Web/CSS/Selectores_CSS /es/docs/Web/CSS/CSS_Selectors -/es/docs/Web/CSS/Selectores_CSS/Usando_la_pseudo-clase_:target_en_selectores /es/docs/Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors +/es/docs/Web/CSS/Selectores_CSS /es/docs/Web/CSS/CSS_selectors +/es/docs/Web/CSS/Selectores_CSS/Usando_la_pseudo-clase_:target_en_selectores /es/docs/Web/CSS/CSS_selectors/Using_the_:target_pseudo-class_in_selectors /es/docs/Web/CSS/Selectores_atributo /es/docs/Web/CSS/Attribute_selectors /es/docs/Web/CSS/Selectores_hermanos_adyacentes /es/docs/Web/CSS/Adjacent_sibling_combinator /es/docs/Web/CSS/Selectores_hermanos_generales /es/docs/Web/CSS/General_sibling_combinator @@ -2775,31 +2778,31 @@ /es/docs/Web/Web_Components/Using_shadow_DOM /es/docs/Web/API/Web_components/Using_shadow_DOM /es/docs/Web/Web_Components/Using_templates_and_slots /es/docs/Web/API/Web_components/Using_templates_and_slots /es/docs/Web/XML/Introducción_a_XML /es/docs/Web/XML/XML_introduction -/es/docs/Web/XPath/Axes/ancestor /es/docs/orphaned/Web/XPath/Axes/ancestor -/es/docs/Web/XPath/Axes/ancestor-or-self /es/docs/orphaned/Web/XPath/Axes/ancestor-or-self -/es/docs/Web/XPath/Axes/attribute /es/docs/orphaned/Web/XPath/Axes/attribute -/es/docs/Web/XPath/Axes/child /es/docs/orphaned/Web/XPath/Axes/child -/es/docs/Web/XPath/Axes/descendant /es/docs/orphaned/Web/XPath/Axes/descendant -/es/docs/Web/XPath/Axes/descendant-or-self /es/docs/orphaned/Web/XPath/Axes/descendant-or-self -/es/docs/Web/XPath/Axes/following /es/docs/orphaned/Web/XPath/Axes/following -/es/docs/Web/XPath/Axes/following-sibling /es/docs/orphaned/Web/XPath/Axes/following-sibling -/es/docs/Web/XPath/Axes/namespace /es/docs/orphaned/Web/XPath/Axes/namespace -/es/docs/Web/XPath/Axes/parent /es/docs/orphaned/Web/XPath/Axes/parent -/es/docs/Web/XPath/Axes/preceding /es/docs/orphaned/Web/XPath/Axes/preceding -/es/docs/Web/XPath/Axes/preceding-sibling /es/docs/orphaned/Web/XPath/Axes/preceding-sibling +/es/docs/Web/XPath/Axes/ancestor /es/docs/web/xpath/axes#ancestor +/es/docs/Web/XPath/Axes/ancestor-or-self /es/docs/web/xpath/axes#ancestor-or-self +/es/docs/Web/XPath/Axes/attribute /es/docs/web/xpath/axes#attribute +/es/docs/Web/XPath/Axes/child /es/docs/web/xpath/axes#child +/es/docs/Web/XPath/Axes/descendant /es/docs/web/xpath/axes#descendant +/es/docs/Web/XPath/Axes/descendant-or-self /es/docs/web/xpath/axes#descendant-or-self +/es/docs/Web/XPath/Axes/following /es/docs/web/xpath/axes#following +/es/docs/Web/XPath/Axes/following-sibling /es/docs/web/xpath/axes#following-sibling +/es/docs/Web/XPath/Axes/namespace /es/docs/web/xpath/axes#namespace +/es/docs/Web/XPath/Axes/parent /es/docs/web/xpath/axes#parent +/es/docs/Web/XPath/Axes/preceding /es/docs/web/xpath/axes#preceding +/es/docs/Web/XPath/Axes/preceding-sibling /es/docs/web/xpath/axes#preceding-sibling /es/docs/Web/XPath/Ejes /es/docs/Web/XPath/Axes -/es/docs/Web/XPath/Ejes/ancestor /es/docs/orphaned/Web/XPath/Axes/ancestor -/es/docs/Web/XPath/Ejes/ancestor-or-self /es/docs/orphaned/Web/XPath/Axes/ancestor-or-self -/es/docs/Web/XPath/Ejes/attribute /es/docs/orphaned/Web/XPath/Axes/attribute -/es/docs/Web/XPath/Ejes/child /es/docs/orphaned/Web/XPath/Axes/child -/es/docs/Web/XPath/Ejes/descendant /es/docs/orphaned/Web/XPath/Axes/descendant -/es/docs/Web/XPath/Ejes/descendant-or-self /es/docs/orphaned/Web/XPath/Axes/descendant-or-self -/es/docs/Web/XPath/Ejes/following /es/docs/orphaned/Web/XPath/Axes/following -/es/docs/Web/XPath/Ejes/following-sibling /es/docs/orphaned/Web/XPath/Axes/following-sibling -/es/docs/Web/XPath/Ejes/namespace /es/docs/orphaned/Web/XPath/Axes/namespace -/es/docs/Web/XPath/Ejes/parent /es/docs/orphaned/Web/XPath/Axes/parent -/es/docs/Web/XPath/Ejes/preceding /es/docs/orphaned/Web/XPath/Axes/preceding -/es/docs/Web/XPath/Ejes/preceding-sibling /es/docs/orphaned/Web/XPath/Axes/preceding-sibling +/es/docs/Web/XPath/Ejes/ancestor /es/docs/web/xpath/axes#ancestor +/es/docs/Web/XPath/Ejes/ancestor-or-self /es/docs/web/xpath/axes#ancestor-or-self +/es/docs/Web/XPath/Ejes/attribute /es/docs/web/xpath/axes#attribute +/es/docs/Web/XPath/Ejes/child /es/docs/web/xpath/axes#child +/es/docs/Web/XPath/Ejes/descendant /es/docs/web/xpath/axes#descendant +/es/docs/Web/XPath/Ejes/descendant-or-self /es/docs/web/xpath/axes#descendant-or-self +/es/docs/Web/XPath/Ejes/following /es/docs/web/xpath/axes#following +/es/docs/Web/XPath/Ejes/following-sibling /es/docs/web/xpath/axes#following-sibling +/es/docs/Web/XPath/Ejes/namespace /es/docs/web/xpath/axes#namespace +/es/docs/Web/XPath/Ejes/parent /es/docs/web/xpath/axes#parent +/es/docs/Web/XPath/Ejes/preceding /es/docs/web/xpath/axes#preceding +/es/docs/Web/XPath/Ejes/preceding-sibling /es/docs/web/xpath/axes#preceding-sibling /es/docs/Web/XPath/Funciones /es/docs/Web/XPath/Functions /es/docs/Web/XPath/Funciones/contains /es/docs/Web/XPath/Functions/contains /es/docs/Web/XPath/Funciones/substring /es/docs/Web/XPath/Functions/substring @@ -2849,18 +2852,18 @@ /es/docs/XMLHttpRequest/onreadystatechange /es/docs/Web/API/XMLHttpRequest/readystatechange_event /es/docs/XPath /es/docs/Web/XPath /es/docs/XPath/Ejes /es/docs/Web/XPath/Axes -/es/docs/XPath/Ejes/ancestor /es/docs/orphaned/Web/XPath/Axes/ancestor -/es/docs/XPath/Ejes/ancestor-or-self /es/docs/orphaned/Web/XPath/Axes/ancestor-or-self -/es/docs/XPath/Ejes/attribute /es/docs/orphaned/Web/XPath/Axes/attribute -/es/docs/XPath/Ejes/child /es/docs/orphaned/Web/XPath/Axes/child -/es/docs/XPath/Ejes/descendant /es/docs/orphaned/Web/XPath/Axes/descendant -/es/docs/XPath/Ejes/descendant-or-self /es/docs/orphaned/Web/XPath/Axes/descendant-or-self -/es/docs/XPath/Ejes/following /es/docs/orphaned/Web/XPath/Axes/following -/es/docs/XPath/Ejes/following-sibling /es/docs/orphaned/Web/XPath/Axes/following-sibling -/es/docs/XPath/Ejes/namespace /es/docs/orphaned/Web/XPath/Axes/namespace -/es/docs/XPath/Ejes/parent /es/docs/orphaned/Web/XPath/Axes/parent -/es/docs/XPath/Ejes/preceding /es/docs/orphaned/Web/XPath/Axes/preceding -/es/docs/XPath/Ejes/preceding-sibling /es/docs/orphaned/Web/XPath/Axes/preceding-sibling +/es/docs/XPath/Ejes/ancestor /es/docs/web/xpath/axes#ancestor +/es/docs/XPath/Ejes/ancestor-or-self /es/docs/web/xpath/axes#ancestor-or-self +/es/docs/XPath/Ejes/attribute /es/docs/web/xpath/axes#attribute +/es/docs/XPath/Ejes/child /es/docs/web/xpath/axes#child +/es/docs/XPath/Ejes/descendant /es/docs/web/xpath/axes#descendant +/es/docs/XPath/Ejes/descendant-or-self /es/docs/web/xpath/axes#descendant-or-self +/es/docs/XPath/Ejes/following /es/docs/web/xpath/axes#following +/es/docs/XPath/Ejes/following-sibling /es/docs/web/xpath/axes#following-sibling +/es/docs/XPath/Ejes/namespace /es/docs/web/xpath/axes#namespace +/es/docs/XPath/Ejes/parent /es/docs/web/xpath/axes#parent +/es/docs/XPath/Ejes/preceding /es/docs/web/xpath/axes#preceding +/es/docs/XPath/Ejes/preceding-sibling /es/docs/web/xpath/axes#preceding-sibling /es/docs/XPath/Funciones /es/docs/Web/XPath/Functions /es/docs/XPath/Funciones-XPath/true /es/docs/Web/XPath/Functions/true /es/docs/XPath/Funciones/contains /es/docs/Web/XPath/Functions/contains @@ -2870,18 +2873,18 @@ /es/docs/XPath/funciones-xpath/contains /es/docs/Web/XPath/Functions/contains /es/docs/XPath/funciones-xpath/substring /es/docs/Web/XPath/Functions/substring /es/docs/XPath:Ejes /es/docs/Web/XPath/Axes -/es/docs/XPath:Ejes:ancestor /es/docs/orphaned/Web/XPath/Axes/ancestor -/es/docs/XPath:Ejes:ancestor-or-self /es/docs/orphaned/Web/XPath/Axes/ancestor-or-self -/es/docs/XPath:Ejes:attribute /es/docs/orphaned/Web/XPath/Axes/attribute -/es/docs/XPath:Ejes:child /es/docs/orphaned/Web/XPath/Axes/child -/es/docs/XPath:Ejes:descendant /es/docs/orphaned/Web/XPath/Axes/descendant -/es/docs/XPath:Ejes:descendant-or-self /es/docs/orphaned/Web/XPath/Axes/descendant-or-self -/es/docs/XPath:Ejes:following /es/docs/orphaned/Web/XPath/Axes/following -/es/docs/XPath:Ejes:following-sibling /es/docs/orphaned/Web/XPath/Axes/following-sibling -/es/docs/XPath:Ejes:namespace /es/docs/orphaned/Web/XPath/Axes/namespace -/es/docs/XPath:Ejes:parent /es/docs/orphaned/Web/XPath/Axes/parent -/es/docs/XPath:Ejes:preceding /es/docs/orphaned/Web/XPath/Axes/preceding -/es/docs/XPath:Ejes:preceding-sibling /es/docs/orphaned/Web/XPath/Axes/preceding-sibling +/es/docs/XPath:Ejes:ancestor /es/docs/web/xpath/axes#ancestor +/es/docs/XPath:Ejes:ancestor-or-self /es/docs/web/xpath/axes#ancestor-or-self +/es/docs/XPath:Ejes:attribute /es/docs/web/xpath/axes#attribute +/es/docs/XPath:Ejes:child /es/docs/web/xpath/axes#child +/es/docs/XPath:Ejes:descendant /es/docs/web/xpath/axes#descendant +/es/docs/XPath:Ejes:descendant-or-self /es/docs/web/xpath/axes#descendant-or-self +/es/docs/XPath:Ejes:following /es/docs/web/xpath/axes#following +/es/docs/XPath:Ejes:following-sibling /es/docs/web/xpath/axes#following-sibling +/es/docs/XPath:Ejes:namespace /es/docs/web/xpath/axes#namespace +/es/docs/XPath:Ejes:parent /es/docs/web/xpath/axes#parent +/es/docs/XPath:Ejes:preceding /es/docs/web/xpath/axes#preceding +/es/docs/XPath:Ejes:preceding-sibling /es/docs/web/xpath/axes#preceding-sibling /es/docs/XPath:Funciones:contains /es/docs/Web/XPath/Functions/contains /es/docs/XPath:Funciones:substring /es/docs/Web/XPath/Functions/substring /es/docs/XPath:Funciones:true /es/docs/Web/XPath/Functions/true @@ -2960,4 +2963,16 @@ /es/docs/orphaned/Web/API/NavigatorOnLine/onLine /es/docs/Web/API/Navigator/onLine /es/docs/orphaned/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-label_attribute /es/docs/Web/Accessibility/ARIA/Attributes/aria-label /es/docs/orphaned/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-required_attribute /es/docs/Web/Accessibility/ARIA/Attributes/aria-required +/es/docs/orphaned/Web/XPath/Axes/ancestor /es/docs/web/xpath/axes#ancestor +/es/docs/orphaned/Web/XPath/Axes/ancestor-or-self /es/docs/web/xpath/axes#ancestor-or-self +/es/docs/orphaned/Web/XPath/Axes/attribute /es/docs/web/xpath/axes#attribute +/es/docs/orphaned/Web/XPath/Axes/child /es/docs/web/xpath/axes#child +/es/docs/orphaned/Web/XPath/Axes/descendant /es/docs/web/xpath/axes#descendant +/es/docs/orphaned/Web/XPath/Axes/descendant-or-self /es/docs/web/xpath/axes#descendant-or-self +/es/docs/orphaned/Web/XPath/Axes/following /es/docs/web/xpath/axes#following +/es/docs/orphaned/Web/XPath/Axes/following-sibling /es/docs/web/xpath/axes#following-sibling +/es/docs/orphaned/Web/XPath/Axes/namespace /es/docs/web/xpath/axes#namespace +/es/docs/orphaned/Web/XPath/Axes/parent /es/docs/web/xpath/axes#parent +/es/docs/orphaned/Web/XPath/Axes/preceding /es/docs/web/xpath/axes#preceding +/es/docs/orphaned/Web/XPath/Axes/preceding-sibling /es/docs/web/xpath/axes#preceding-sibling /es/docs/video /es/docs/Web/HTML/Element/video diff --git a/files/es/_wikihistory.json b/files/es/_wikihistory.json index 13225883dc1477..b4dde34bf69d0c 100644 --- a/files/es/_wikihistory.json +++ b/files/es/_wikihistory.json @@ -2832,10 +2832,6 @@ "modified": "2019-03-18T21:02:55.354Z", "contributors": ["alexgilsoncampi"] }, - "Mozilla/Add-ons/WebExtensions/Prerequisites": { - "modified": "2019-03-23T22:45:28.352Z", - "contributors": ["yuniers"] - }, "Mozilla/Add-ons/WebExtensions/What_are_WebExtensions": { "modified": "2020-11-23T00:59:33.889Z", "contributors": ["kenliten", "hecaxmmx", "13539"] @@ -5653,16 +5649,6 @@ "modified": "2019-03-23T22:27:29.008Z", "contributors": ["israel-munoz"] }, - "Web/API/Window/applicationCache": { - "modified": "2019-03-23T23:52:56.666Z", - "contributors": [ - "SphinxKnight", - "fscholz", - "AshfaqHossain", - "HenryGR", - "Mgjbot" - ] - }, "Web/API/Window/beforeunload_event": { "modified": "2019-04-30T14:05:00.135Z", "contributors": ["wbamberg", "ExE-Boss", "anasyusef", "Bant89"] @@ -6268,10 +6254,6 @@ "modified": "2019-03-23T22:34:12.741Z", "contributors": ["pekechis"] }, - "Web/CSS/:-moz-focusring": { - "modified": "2019-03-23T22:34:12.588Z", - "contributors": ["teoli", "pekechis"] - }, "Web/CSS/:-moz-handler-blocked": { "modified": "2019-03-23T22:33:34.259Z", "contributors": ["pekechis"] @@ -6829,20 +6811,6 @@ "jota1410" ] }, - "Web/CSS/CSS_Selectors": { - "modified": "2019-07-09T01:16:13.123Z", - "contributors": [ - "missmakita", - "blanchart", - "Benji1337", - "metal-gogo", - "kikolevante" - ] - }, - "Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors": { - "modified": "2020-07-31T07:57:08.167Z", - "contributors": ["blanchart", "israel-munoz"] - }, "Web/CSS/CSS_Types": { "modified": "2019-03-18T21:35:39.343Z", "contributors": ["lajaso"] @@ -7087,6 +7055,20 @@ "modified": "2019-03-23T22:32:38.884Z", "contributors": ["javichito"] }, + "Web/CSS/CSS_selectors": { + "modified": "2019-07-09T01:16:13.123Z", + "contributors": [ + "missmakita", + "blanchart", + "Benji1337", + "metal-gogo", + "kikolevante" + ] + }, + "Web/CSS/CSS_selectors/Using_the_:target_pseudo-class_in_selectors": { + "modified": "2020-07-31T07:57:08.167Z", + "contributors": ["blanchart", "israel-munoz"] + }, "Web/CSS/CSS_text": { "modified": "2019-03-23T22:36:23.444Z", "contributors": ["pekechis"] @@ -14601,6 +14583,10 @@ "modified": "2019-03-18T21:16:20.006Z", "contributors": ["teoli", "pekechis"] }, + "conflicting/Web/CSS/:focus-visible": { + "modified": "2019-03-23T22:34:12.588Z", + "contributors": ["teoli", "pekechis"] + }, "conflicting/Web/CSS/:placeholder-shown": { "modified": "2019-03-23T22:33:30.015Z", "contributors": ["teoli", "pekechis"] @@ -15331,6 +15317,10 @@ "modified": "2019-03-18T21:08:10.456Z", "contributors": ["fitojb", "yuniers"] }, + "orphaned/Mozilla/Add-ons/WebExtensions/Prerequisites": { + "modified": "2019-03-23T22:45:28.352Z", + "contributors": ["yuniers"] + }, "orphaned/Mozilla/Add-ons/WebExtensions/Temporary_Installation_in_Firefox": { "modified": "2019-03-23T22:45:27.399Z", "contributors": ["yuniers"] @@ -15545,6 +15535,16 @@ "modified": "2019-03-23T22:10:43.026Z", "contributors": ["haxdai"] }, + "orphaned/Web/API/Window/applicationCache": { + "modified": "2019-03-23T23:52:56.666Z", + "contributors": [ + "SphinxKnight", + "fscholz", + "AshfaqHossain", + "HenryGR", + "Mgjbot" + ] + }, "orphaned/Web/API/Window/dialogArguments": { "modified": "2019-03-23T22:33:21.065Z", "contributors": ["Grijander81"] @@ -15856,54 +15856,6 @@ "modified": "2019-03-23T23:42:07.791Z", "contributors": ["teoli", "Mgjbot", "Jorolo", "Arcnor"] }, - "orphaned/Web/XPath/Axes/ancestor": { - "modified": "2019-01-16T16:11:09.049Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/ancestor-or-self": { - "modified": "2019-01-16T16:11:00.606Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/attribute": { - "modified": "2019-01-16T16:11:03.106Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/child": { - "modified": "2019-01-16T16:11:02.142Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/descendant": { - "modified": "2019-01-16T16:11:00.301Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/descendant-or-self": { - "modified": "2019-01-16T16:11:00.088Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/following": { - "modified": "2019-01-16T16:10:55.079Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/following-sibling": { - "modified": "2019-01-16T16:11:02.465Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/namespace": { - "modified": "2019-01-16T16:10:55.086Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/parent": { - "modified": "2019-01-16T16:10:56.130Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/preceding": { - "modified": "2019-01-16T16:11:08.778Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, - "orphaned/Web/XPath/Axes/preceding-sibling": { - "modified": "2019-01-16T16:10:57.298Z", - "contributors": ["ExE-Boss", "Mgjbot", "Cmayo"] - }, "orphaned/XPInstall_API_Reference": { "modified": "2019-01-16T15:37:54.457Z", "contributors": ["Eddomita"] diff --git a/files/es/web/css/_colon_-moz-focusring/index.md b/files/es/conflicting/web/css/_colon_focus-visible/index.md similarity index 93% rename from files/es/web/css/_colon_-moz-focusring/index.md rename to files/es/conflicting/web/css/_colon_focus-visible/index.md index f517cb388d11d5..c20240f1b08ec0 100644 --- a/files/es/web/css/_colon_-moz-focusring/index.md +++ b/files/es/conflicting/web/css/_colon_focus-visible/index.md @@ -1,6 +1,7 @@ --- -title: ':-moz-focusring' -slug: Web/CSS/:-moz-focusring +title: ":-moz-focusring" +slug: conflicting/Web/CSS/:focus-visible +original_slug: Web/CSS/:-moz-focusring --- {{Non-standard_header}}{{CSSRef}} diff --git a/files/es/conflicting/web/javascript/javascript_technologies_overview/index.md b/files/es/conflicting/web/javascript/javascript_technologies_overview/index.md index 66d43d4268d798..b95dde97604097 100644 --- a/files/es/conflicting/web/javascript/javascript_technologies_overview/index.md +++ b/files/es/conflicting/web/javascript/javascript_technologies_overview/index.md @@ -103,7 +103,7 @@ original_slug: Web/JavaScript/Language_Resources > y ECMAScript 5 soporte en Mozilla. @@ -119,7 +119,7 @@ original_slug: Web/JavaScript/Language_Resources Junio 2004 - ECMAScript for XML (E4X)ECMAScript for XML (E4X).
Vea también la