aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-11 18:59:39 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-11 18:59:39 -0500
commitd192fb918b0e2aa8869de6dcc59de8464b6e879a (patch)
tree3dc6f395a53be89041c52e9326baf908ffa3f3a6 /files/zh-tw
parente3e12548adeb7e1dcfc4d5b32884a225ee2b499d (diff)
downloadtranslated-content-d192fb918b0e2aa8869de6dcc59de8464b6e879a.tar.gz
translated-content-d192fb918b0e2aa8869de6dcc59de8464b6e879a.tar.bz2
translated-content-d192fb918b0e2aa8869de6dcc59de8464b6e879a.zip
dump 2020-12-11
Diffstat (limited to 'files/zh-tw')
-rw-r--r--files/zh-tw/learn/css/first_steps/getting_started/index.html16
-rw-r--r--files/zh-tw/mdn/contribute/localize/index.html33
-rw-r--r--files/zh-tw/mdn/contribute/localize/localization_projects/index.html1085
-rw-r--r--files/zh-tw/mdn/contribute/localize/translating_pages/index.html52
-rw-r--r--files/zh-tw/web/html/element/script/index.html20
5 files changed, 20 insertions, 1186 deletions
diff --git a/files/zh-tw/learn/css/first_steps/getting_started/index.html b/files/zh-tw/learn/css/first_steps/getting_started/index.html
index aed101592c..38e34ab567 100644
--- a/files/zh-tw/learn/css/first_steps/getting_started/index.html
+++ b/files/zh-tw/learn/css/first_steps/getting_started/index.html
@@ -34,9 +34,7 @@ translation_of: Learn/CSS/First_steps/Getting_started
<h2 id="由某個_HTML_開始">由某個 HTML 開始</h2>
-<p>我們的起點是一個 HTML 文件。如果您想要在自己的電腦上操作,可以把下面的程式碼複製下來。在您電腦上的目錄中,用 <code>index.html</code> 為檔名儲存</p>
-
-<p>。</p>
+<p>我們的起點是一個 HTML 文件。如果您想要在自己的電腦上操作,可以把下面的程式碼複製下來。在您電腦上的目錄中,用 <code>index.html</code> 為檔名儲存。</p>
<pre class="brush: html notranslate">&lt;!doctype html&gt;
&lt;html lang="en"&gt;
@@ -70,23 +68,23 @@ and also a &lt;a href="http://example.com"&gt;link&lt;/a&gt;.&lt;/p&gt;
<h2 id="為我們的文件加入CSS">為我們的文件加入CSS</h2>
-<p>首先,告訴HTML文件我們有些CSS規則要加入是第一個步驟。你可能會碰到三種不同的方式可以將CSS檔案應用進HTML文件之中,不過我們現在先將焦點放在最常見且最實用的方式:將CSS從文件的前頭連接進去。</p>
+<p>首先,第一個步驟是告訴 HTML 文件我們有些 CSS 規則要加入。你通常有三種不同的方式來將 CSS 套用到 HTML 文件上,然而,現在我們先將焦點放在其中最常見並且實用的方式:在您文件標頭的位置將 CSS 連結進去。</p>
-<p>先建立一個檔案,將它存在與你HTML文件同一個目錄之中並命名為<code>styles.css</code> 。<code>.css</code> 外掛會辨識它為一個CSS檔案。</p>
+<p>建立一個檔案,存在與您 HTML 文件同一個目錄之中,並命名為 <code>styles.css</code> 。副檔名 <code>.css</code> 會讓它被當作一個 CSS 檔案。</p>
-<p>To link <code>styles.css</code> to <code>index.html</code> add the following line somewhere inside the {{htmlelement("head")}} of the HTML document:</p>
+<p>為了連結 <code>styles.css</code> 到 <code>index.html</code> 中,在 HTML 文件的 {{htmlelement("head")}} 中,加入下面這行:</p>
<pre class="brush: html notranslate">&lt;link rel="stylesheet" href="styles.css"&gt;</pre>
-<p>This {{htmlelement("link")}} element tells the browser that we have a stylesheet, using the <code>rel</code> attribute, and the location of that stylesheet as the value of the <code>href</code> attribute. You can test that the CSS works by adding a rule to <code>styles.css</code>. Using your code editor add the following to your CSS file:</p>
+<p>{{htmlelement("link")}} 元素使用 <code>rel</code> 屬性告訴瀏覽器我們有一個樣式表,接著 <code>href</code> 屬性指向到這個樣式表的位置。您可以在 <code>styles.css</code> 裡加入規則,來測試它是否能夠運作。使用程式碼編輯器,在你的 CSS 檔案中加入下面這段規則:</p>
<pre class="brush: css notranslate">h1 {
color: red;
}</pre>
-<p>Save your HTML and CSS files and reload the page in a web browser. The level one heading at the top of the document should now be red. If that happens, congratulations — you have successfully applied some CSS to an HTML document. If that doesn't happen, carefully check that you've typed everything correctly.</p>
+<p>將您的  HTML 與 CSS 檔案儲存後,重新整理瀏覽器裡的頁面。文件中最上頭的第一級標題現在應該會是紅色的。如果是,恭喜!您成功地套到了一些 CSS 設定到 HTML 中了。如果結果不是如此,仔細檢查您的每段文字並確認都輸入正確。</p>
-<p>You can continue to work in <code>styles.css</code> locally, or you can use our interactive editor below to continue with this tutorial. The interactive editor acts as if the CSS in the first panel is linked to the HTML document, just as we have with our document above.</p>
+<p>你可以在你電腦裡的 <code>styles.css</code> 上繼續,或是使用我們下的互動編輯器來繼續本教學指引。 互動編輯器的行為,就像是這個 CSS 已經連結到 HTML 中,就如同我們在前面剛剛完成的一樣。</p>
<h2 id="Styling_HTML_elements">Styling HTML elements</h2>
diff --git a/files/zh-tw/mdn/contribute/localize/index.html b/files/zh-tw/mdn/contribute/localize/index.html
deleted file mode 100644
index 4d18dde8a4..0000000000
--- a/files/zh-tw/mdn/contribute/localize/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
----
-title: Localizing MDN
-slug: MDN/Contribute/Localize
-tags:
- - Documentation
- - Localization
- - MDN
- - NeedsTranslation
- - TopicStub
-translation_of: MDN/Contribute/Localize
----
-<div>{{MDNSidebar}}</div><p><span style="">MDN 被全世界的人用來作為 Web 技術的參考和指南,甚至是 Firefox 開發團隊內部的人也使用 MDN。 我們的在地化社群是 Mozilla 社群的關鍵部分;他們將文件翻譯,並有助於世界各地進行 Web 開發的人們,使用他們自己的語言參考文件 如果您想了解有關在地化社群的更多資訊,請加入其中一個團隊,或者甚至開始翻譯新的文件。</span></p>
-
-<p>{{LandingPageListSubpages}}</p>
-
-<h2 id="在地化工具">在地化工具</h2>
-
-<p><span style="">你可以使用許多有用的工具來幫助你進行將文件在地化的工作:</span></p>
-
-<dl>
- <dt><a href="/zh-TW/docs/Mozilla/Localization/Localizing_with_Pontoon">Pontoon</a></dt>
- <dd>
- <p style="margin: 0.5rem 0px; width: inherit; position: relative;" class="md-focus"><span style="" class="md-expand">是一個基於web網頁的、所見即所得(WYSIWYG)的在地化(l10n即localization)工具。</span></p>
- </dd>
- <dt><a href="http://transvision.mozfr.org/" title="http://transvision.mozfr.org/">Transvision</a></dt>
- <dd><span style="">一個由 Mozilla 法國社群提供的工具。讓你可以搜尋某個英文單字出現的次數,並且可以找尋出所有翻譯該英文單字的該國語言文字。很適合用在,當你不知道某個單字或片語如何翻譯時。</span></dd>
-</dl>
-
-<h2 id="另可參閱">另可參閱</h2>
-
-<ul>
- <li><a href="/en-US/docs/Mozilla/Localization" title="/en-US/docs/Mozilla/Localization">Localization at Mozilla</a></li>
-</ul>
diff --git a/files/zh-tw/mdn/contribute/localize/localization_projects/index.html b/files/zh-tw/mdn/contribute/localize/localization_projects/index.html
deleted file mode 100644
index 026d2a7479..0000000000
--- a/files/zh-tw/mdn/contribute/localize/localization_projects/index.html
+++ /dev/null
@@ -1,1085 +0,0 @@
----
-title: 在地化專案
-slug: MDN/Contribute/Localize/Localization_projects
-translation_of: MDN/Contribute/Localize/Localization_projects
----
-<div>{{MDNSidebar}}</div>
-
-<p><span class="seoSummary">所有在 MDN 上的在地化跟翻譯工作都是由一群志願者所完成的。這篇文章列出了在地化的專案以及積極貢獻這些專案的人們和一些細節。</span></p>
-
-<p>如果您想要開始貢獻翻譯,請參見 <a href="/en-US/docs/MDN/Contribute/Localize/Translating_pages">Translating MDN pages</a>.</p>
-
-<div class="note">
-<p><strong>備註:</strong> 如果你有意願接受其他貢獻者關於某個特定區域的在地化的聯繫,歡迎把你的名字加入本頁面。請確認你的 MDN 個人檔案頁面有聯繫你的方式,例如:推特 (Twitter) 或其他社群網站。如果頁面上的名字在過去 12 個月沒有任何貢獻,該名字會從頁面中被移除。</p>
-</div>
-
-<details><summary>
-<h2 id="af_Afrikaans">af: Afrikaans</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/af/dashboards/revisions?locale=af">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:af">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ar_العربية_Arabic">ar: العربية [Arabic]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ar/dashboards/revisions?locale=ar">Latest changes</a></li>
- <li><a href="/ar/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions</li>
- <li><a href="https://pontoon.mozilla.org/ar/contributors/">Current contributors</a></li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ar">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/ar/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="az_Azərbaycanca_Azerbaijani">az: Azərbaycanca [Azerbaijani]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/az/dashboards/revisions?locale=az">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:az">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/az/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="bg_Български_Bulgarian">bg: Български [Bulgarian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/bg/dashboards/revisions?locale=bg">Latest changes</a></li>
- <li>Status overview</li>
- <li><a href="https://pontoon.mozilla.org/bg/contributors/">Current contributors</a></li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:bg">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/bg/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="bm_Bamanankan_Bambara">bm: Bamanankan [Bambara]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/bm/dashboards/revisions?locale=bm">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:bm">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="bn-BD_বাংলা_(বাংলাদেশ)_Bengali_Bangladesh">bn-BD: বাংলা (বাংলাদেশ) [Bengali, Bangladesh]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/bn-BD/dashboards/revisions?locale=bn-BD">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/bn-BD/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:bn-BD">Mozilla localization project</a></li>
- <li><a href="https://developer.mozilla.org/bn-BD/docs/Project:MDN/%E0%A6%85%E0%A6%AC%E0%A6%A6%E0%A6%BE%E0%A6%A8/mozillabd-l10n-team">MDN team page</a></li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/bn_BD/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="bn-IN_বাংলা_(ভারত)_Bengali_India">bn-IN: বাংলা (ভারত) [Bengali, India]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/bn-IN/dashboards/revisions?locale=bn-IN">Latest changes</a></li>
- <li>Status overview</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:bn-IN">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ca_Català_Catalan">ca: Català [Catalan]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ca/dashboards/revisions?locale=ca">Latest changes</a></li>
- <li>Status overview</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ca">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/ca/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="cs_Čeština_Czech">cs: Čeština [Czech]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/cs/dashboards/revisions?locale=cs">Latest changes</a></li>
- <li>Status overview</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:cs">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/cs/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="de_Deutsch_German">de: Deutsch [German]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/de/dashboards/revisions?locale=de">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/de/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Current contributors: {{userlink("fscholz")}}{{ref('*')}}, {{userlink("SebastianZ","Sebastian Zartner")}}, {{userlink("Shidigital")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:de">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/de/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ee_Eʋe_Ewe">ee: Eʋe [Ewe]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ee/dashboards/revisions?locale=ee">Latest changes</a></li>
- <li>Status overview</li>
- <li>Current contributors</li>
- <li>Mozilla localization project</li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="el_Ελληνικά_Greek">el: Ελληνικά [Greek]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/el/dashboards/revisions?locale=el">Latest changes</a></li>
- <li>Status overview</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:el">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/el/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="es_Español_Spanish">es: Español [Spanish]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/es/dashboards/revisions?locale=es">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/es/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Current contributors: {{userlink("maedca","Manuel Camacho")}}{{ref('*')}}, {{userlink("StripTM")}}, {{userlink("Jorge.villalobos")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:es">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li><a href="https://developer.mozilla.org/es/docs/Project%3AGu%C3%ADa_de_estilo">Conventions</a></li>
- <li><a href="https://pontoon.mozilla.org/es/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="fa_فارسی_Persian">fa: فارسی [Persian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/fa/dashboards/revisions?locale=fa">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/fa/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:fa">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/fa/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ff_Pulaar-Fulfulde_Fulah">ff: Pulaar-Fulfulde [Fulah]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ff/dashboards/revisions?locale=ff">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ff">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="fi_suomi_Finnish">fi: suomi [Finnish]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/fi/dashboards/revisions?locale=fi">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:fi">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details open><summary>
-<h2 id="fr_Français_French">fr: Français [French]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/fr/dashboards/revisions?locale=fr">Latest changes / Dernières éditions</a></li>
- <li><a href="https://developer.mozilla.org/fr/docs/MDN/Doc_status/Overview">Status overview / Statut de la localisation</a></li>
- <li><a href="http://mozfr.org/mailman/listinfo/moz-fr/">Discussions (moz-fr mailiing list)</a></li>
- <li>Current contributors: {{userlink("Jeremie","Jeremie Patonnier")}}{{ref('*')}}, {{userlink("SphinxKnight", "Sphinx")}}{{ref('*')}}, {{userlink("BenoitL","Benoit Leseul")}}, {{userlink("tregagnon","Thierry Régagnon (tregagnon)")}}, {{userlink("Goofy")}}, {{userlink("Delapouite")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:fr">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/fr/mdn/">Translate the MDN interface / Traduire l'interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="fy-NL_Frysk_(Netherlands)_Frisian">fy-NL: Frysk (Netherlands) [Frisian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/fy-NL/dashboards/revisions?locale=fy-NL">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:fy-NL">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/fy-NL/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ga-IE_Gaelige_(Ireland)_Gaelic">ga-IE: Gaelige (Ireland) [Gaelic]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ga-IE/dashboards/revisions?locale=ga-IE">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ga-IE">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/ga-IE/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ha_Hausa">ha: Hausa</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ha/dashboards/revisions?locale=ha">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ha">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="he_עברית_Hebrew">he: עברית [Hebrew]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/he/dashboards/revisions?locale=he">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:he">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="hi-IN_हिन्दी_(भारत)_Hindi">hi-IN: हिन्दी (भारत) [Hindi]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/hi-IN/dashboards/revisions?locale=hi-IN">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:hi-IN">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="hr_Hrvatski_Croatian">hr: Hrvatski [Croatian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/hr/dashboards/revisions?locale=hr">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:hr">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/hr/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="hu_magyar_Hungarian">hu: magyar [Hungarian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/hu/dashboards/revisions?locale=hu">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:hu">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/hu/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="id_Bahasa_Indonesia_Indonesian">id: Bahasa Indonesia [Indonesian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/id/dashboards/revisions?locale=id">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:id">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/id/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ig_Igbo">ig: Igbo</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ig/dashboards/revisions?locale=ig">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ig">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="it_Italiano_Italian">it: Italiano [Italian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ig/dashboards/revisions?locale=it">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/it/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions: <a href="https://translate.googleusercontent.com/translate_c?depth=1&amp;hl=en&amp;rurl=translate.google.com&amp;sl=auto&amp;tl=en&amp;u=http://forum.mozillaitalia.org/&amp;usg=ALkJrhhzVkkb--9tarnQhoYRv6OonR79Tg">Mozilla Italia</a></li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:it">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li><a href="/it/MDN/Contribute/Localize/GuidaItaliano">How to help</a></li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/it/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ja_日本語_Japanese">ja: 日本語 [Japanese]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ja/dashboards/revisions?locale=ja">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/ja/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions: <a href="https://groups.google.com/forum/#!forum/mozilla-translations-ja">Mozilla.translations.ja</a></li>
- <li>Current contributors: {{userlink("myakura","myakura (Masataka Yakura)")}}, {{userlink("yyss")}}, {{userlink("Marsf","Marsf (Masahiko Imanaka)")}}, {{userlink("Masayuki")}},  {{userlink("dynamis","dynamis (Tomoya Asai)")}}, {{userlink("mantaroh")}}, {{userlink("hamasaki")}}, {{userlink("mfuji09")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ja">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help: We are taking a bit long time in transition from old resources, <a href="https://developer.mozilla.org/ja/docs/Project:%E6%97%A5%E6%9C%AC%E8%AA%9E%E7%89%88">MDC Japan Project</a> (-2009), those include some useful information.</li>
- <li><a href="/ja/docs/MDN/Contribute/Content/Writing_style_guide">Conventions</a></li>
- <li><a href="https://pontoon.mozilla.org/ja/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ka_ქართული_Georgian">ka: ქართული [Georgian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ka/dashboards/revisions?locale=ka">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ka">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="kab_Taqbaylit_Kabyle">kab: Taqbaylit [Kabyle]</h2>
-</summary>
-
-<ul>
- <li><a href="https://l10n.mozilla-community.org/webdashboard/?locale=kab">Mozilla localization Status Overview</a></li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:kab">Mozilla Kabyle localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
- <li><a href="https://www.mozilla.org/kab/">Mozilla.org Kabyle</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ko_한국어_Korean">ko: 한국어 [Korean]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ko/dashboards/revisions?locale=ko">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions: <a href="https://groups.google.com/forum/#!forum/mdckorea">mdckorea</a></li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ko">Mozilla localization project</a></li>
- <li><a href="/ko/docs/Project:Korean_Contributors">MDN team page</a></li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/ko/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ln_Lingála">ln: Lingála</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ln/dashboards/revisions?locale=ln">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li>Mozilla localization project</li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="mg_Malagasy">mg: Malagasy</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/mg/dashboards/revisions?locale=mg">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:mg">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ml_മലയാളം_Malayalam">ml: മലയാളം [<span class="mw-headline" id="Malayalam_.28ml.2C_ml_IN.29">Malayalam]</span></h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ml/dashboards/revisions?locale=ml">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ml">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ms_Melayu_Malay">ms: Melayu [Malay]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ms/dashboards/revisions?locale=ms">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ms">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="my_မြန်မာဘာသာ_Myanmar">my: မြန်မာဘာသာ [Myanmar]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/my/dashboards/revisions?locale=my">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:my">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="nl_Nederlands_Dutch">nl: Nederlands [Dutch]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/nl/dashboards/revisions?locale=nl">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:nl">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/nl/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="pl_Polski_Polish">pl: Polski [Polish]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/pl/dashboards/revisions?locale=pl">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/pl/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:pl">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/pl/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="pt-BR_Português_(do_Brasil)_Portuguese_Brazil">pt-BR: Português (do Brasil) [Portuguese, Brazil]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/pt-BR/dashboards/revisions?locale=pt-BR">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/pt-BR/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:pt-BR">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li><a href="http://mzl.la/Odmaq9">Como ajudar a MDN</a></li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/pt-BR/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="pt-PT_Português_(Europeu)_Portuguese_Portugal">pt-PT: Português (Europeu) [Portuguese, Portugal]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/pt-PT/dashboards/revisions?locale=pt-PT">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:pt-PT">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/pt-PT/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ro_română_Romanian">ro: română [Romanian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ro/dashboards/revisions?locale=ro">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ro">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/ro/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details open><summary>
-<h2 id="ru_Русский_Russian">ru: Русский [Russian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ru/dashboards/revisions?locale=ru">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/ru/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions</li>
- <li>Current contributors: {{userlink("bychekRU","Victor Bychek")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ru">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li><a href="/ru/docs/Project%3AWriter's_guide">Conventions</a></li>
- <li><a href="https://pontoon.mozilla.org/ru/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="son_Soŋay_Songhay">son: Soŋay [Songhay]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/son/dashboards/revisions?locale=son">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:son">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="sr_Српски_Serbian">sr: Српски [Serbian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/sr/dashboards/revisions?locale=sr">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors:</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:sr">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/sr/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="sq_Shqip_Albanian">sq: Shqip [Albanian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/sq/dashboards/revisions?locale=sq">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:sq">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/sq/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="sv-SE_Svenska_Swedish">sv-SE: Svenska [Swedish]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/sv-SE/dashboards/revisions?locale=sv-SE">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:sv-SE">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/sv-SE/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="sw_Kiswahili_Swahili">sw: Kiswahili [Swahili]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/sw/dashboards/revisions?locale=sw">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:sw">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="ta_தமிழ்_Tamil">ta: தமிழ் [Tamil]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ta/dashboards/revisions?locale=ta">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ta">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="te_తెలుగు_Telugu">te: తెలుగు [Telugu]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/ta/dashboards/revisions?locale=te">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:te">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/te/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="th_ไทย_Thai">th: ไทย [Thai]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/th/dashboards/revisions?locale=th">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:th">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/th/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="tl_Tagalog">tl: Tagalog</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/tl/dashboards/revisions?locale=tl">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:tl">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="tn_Setswana_Tswana">tn: Setswana [Tswana]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/tn/dashboards/revisions?locale=tn">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:tn">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="tr_Türkçe_Turkish">tr: Türkçe [Turkish]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/tr/dashboards/revisions?locale=tr">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:tr">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details open><summary>
-<h2 id="uk_Українська_Ukrainian">uk: Українська [Ukrainian]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/uk/dashboards/revisions?locale=uk">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors: {{userlink("asmforce", "asmforce (Крутько Віталій)")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:uk">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/uk/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details open><summary>
-<h2 id="vi_Tiếng_Việt_Vietnamese">vi: Tiếng Việt [Vietnamese]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/vi/dashboards/revisions?locale=vi">Latest changes</a></li>
- <li><a href="/vi/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions: <a href="https://gitter.im/mdn-vi-l10n">group chat on Gitter</a></li>
- <li>Current contributors: see <a href="https://mdn-top-vi-contributors.netlify.com/">top vi contributors minisite</a> (created by {{userlink("trongthanh")}})</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:vi">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li><a href="https://developer.mozilla.org/vi/docs/MDN/Contribute/Localize/dich_trang">How to help</a></li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/vi/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="wo_Wolof">wo: Wolof</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/wo/dashboards/revisions?locale=wo">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:wo">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="xh_isiXhosa_Xhosa">xh: isiXhosa [Xhosa]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/xh/dashboards/revisions?locale=xh">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:xh">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="yo_Yorùbá">yo: Yorùbá</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/yo/dashboards/revisions?locale=yo">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:yo">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li>Translate the MDN interface</li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="zh-CN_中文_(简体)_Chinese_simplified">zh-CN: 中文 (简体) [Chinese, simplified]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/zh-CN/dashboards/revisions?locale=zh-CN">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/zh-CN/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions: {{page("/zh-CN/docs/MDN/Contribute/Localize/Localization_projects", "notes")}}</li>
- <li>Current contributors: {{page("/zh-CN/docs/MDN/Contribute/Localize/Localization_projects", "leader")}}{{ref('*')}}; see the team page for other contributors.</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:zh-CN">Mozilla localization project</a></li>
- <li><a href="https://developer.mozilla.org/zh-CN/docs/MDN/Contribute/Localize/Localization_projects">MDN team page</a></li>
- <li>How to help</li>
- <li><a href="/zh-CN/docs/MDN/Contribute/Content/Style_guide">Conventions</a></li>
- <li><a href="https://pontoon.mozilla.org/zh-CN/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details open><summary>
-<h2 id="zh-TW_中文_(繁體)_Chinese_traditional">zh-TW: 中文 (繁體) [Chinese, traditional]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/zh-TW/dashboards/revisions?locale=zh-TW">Latest changes</a></li>
- <li><a href="https://developer.mozilla.org/zh-TW/docs/MDN/Doc_status/Overview">Status overview</a></li>
- <li>Discussions: 我們需要更多貢獻者,請到 <a href="https://groups.google.com/group/moztw-general">MozTW-general 郵件群組</a>與我們聯繫!</li>
- <li>Current contributors: {{userlink("irvinfly")}}{{ref('*')}}, {{userlink("BobChao")}}, {{userlink("petercpg")}}</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:zh-TW">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li><a href="/zh-TW/docs/MDN/Contribute/Content/Style_guide">Conventions</a></li>
- <li><a href="https://pontoon.mozilla.org/zh-TW/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<details><summary>
-<h2 id="zu_isiZulu_Zulu">zu: isiZulu [Zulu]</h2>
-</summary>
-
-<ul>
- <li><a href="https://developer.mozilla.org/zu/dashboards/revisions?locale=zu">Latest changes</a></li>
- <li>Status overview</li>
- <li>Discussions</li>
- <li>Current contributors</li>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:zu">Mozilla localization project</a></li>
- <li>MDN team page</li>
- <li>How to help</li>
- <li>Conventions</li>
- <li><a href="https://pontoon.mozilla.org/zu/mdn/">Translate the MDN interface</a></li>
-</ul>
-</details>
-
-<p>The <a href="/en-US/docs/MDN/Community/Roles/Localization_driver_role">localization lead</a> is marked by {{ref('*')}}. This is the person who <span class="ZmSearchResult" id="DWT15474"><span class="ZmSearchResult" id="DWT15476"><span class="ZmSearchResult" id="DWT15515">leads</span></span></span> a localization community on MDN, guiding their work in localizing content for a specific locale or topic.</p>
-
-<h2 id="其他區域">其他區域</h2>
-
-<p>以下這些區域的在地化還沒有在 MDN 上,但可能有人想要貢獻這些區域。如果你對新增一個區域的在地化有興趣,請參見 <a href="/en-US/docs/MDN/Contribute/Localize/Starting_a_localization">Starting a new MDN localization</a> 。</p>
-
-<h3 id="gu_ગુજરાતી_Gujarati">gu: ગુજરાતી [Gujarati]</h3>
-
-<ul>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:gu-IN">Mozilla localization project</a></li>
- <li>Interested users: {{userlink("prafull_satasiya")}}</li>
-</ul>
-
-<h3 id="lo_ພາສາລາວ_Lao">lo: ພາສາລາວ [Lao]</h3>
-
-<ul>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:lo">Mozilla localization project</a></li>
- <li>Interested users: {{userlink("rcampbelllaos","Robert M Campbell")}}</li>
-</ul>
-
-<h3 id="si_සිංහල_Sinhalese">si: <strong>සිංහල [Sinhalese]</strong></h3>
-
-<ul>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:si">Mozilla localization project</a></li>
- <li>Interested users: {{userlink("pkavinda")}}</li>
-</ul>
-
-<h3 id="ur_اردو_Urdu">ur: اردو [Urdu]</h3>
-
-<ul>
- <li><a href="https://wiki.mozilla.org/L10n:Teams:ur">Mozilla localization project</a></li>
- <li>Interested users:</li>
-</ul>
-
-<section id="Quick_Links">
-<ul>
- <li><a href="/en-US/docs/MDN/Contribute/Localize/Translating_pages">Translating MDN pages</a></li>
- <li><a href="/en-US/docs/MDN/Contribute/Localize/Starting_a_localization">Starting a new MDN localization</a></li>
- <li><a href="/en-US/docs/Mozilla/Localization">Localizating Mozilla software and websites</a></li>
- <li><a href="/en-US/docs/Mozilla/Localization/Localizing_with_Pontoon">Localizing with Pontoon</a></li>
-</ul>
-</section>
diff --git a/files/zh-tw/mdn/contribute/localize/translating_pages/index.html b/files/zh-tw/mdn/contribute/localize/translating_pages/index.html
deleted file mode 100644
index 8b36f33fbd..0000000000
--- a/files/zh-tw/mdn/contribute/localize/translating_pages/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: 翻譯 MDN 頁面
-slug: MDN/Contribute/Localize/Translating_pages
-tags:
- - 在地化
- - 指南
- - 頁面翻譯
-translation_of: MDN/Contribute/Localize/Translating_pages
----
-<div>{{MDNSidebar}}</div>
-
-<p>本文為翻譯 MDN 內容提供基本指南,包括翻譯的運作機制及正確處理各種類型內容的訣竅。</p>
-
-<h2 id="開始翻譯新的頁面">開始翻譯新的頁面</h2>
-
-<p>當你來到一個欲翻譯成你的語言的頁面時,請按照下述步驟進行:</p>
-
-<ol>
- <li>點選語言圖示({{FontAwesomeIcon("icon-language")}})以開啟<strong>語言</strong>選單,接著點選 <strong>Add a Translation</strong>,選擇語言頁面將會出現。</li>
- <li>點選你想翻譯的語言,開啟翻譯文章介面。原文會顯示於畫面左側。</li>
- <li>在<strong>翻譯描述</strong>裡,你可以翻譯標題並(選擇性的)翻譯「條目連結代碼」(slug)。條目連結代碼就是頁面網址的最末段(例如本文網址中的「Translating_pages」)。在某些語言社群中並不翻譯條目名稱,而會保持與英文一致。比較你語言中的其它文章,以了解習慣作法(編按:正體中文版本不翻譯 slug)。當你完成這部份時,你可以點選<strong>翻譯描述</strong>旁的減號將其隱藏,以讓出更多空間給<strong>內容翻譯</strong>的部份。</li>
- <li>在<strong>翻譯內容</strong>裡翻譯頁面的內容。</li>
- <li>為該頁面填至少一個<strong>標籤</strong>。</li>
- <li>當你完成時點選<strong>儲存修改</strong>。</li>
-</ol>
-
-<div class="note"><strong>注意:</strong> 翻譯新文章的使用者介面會以英文顯示。 更新文章時,如果 MDN 的介面有被在地化,則會以適當的語言顯示翻譯介面。 MDN 的使用者介面可以在 <a href="https://pontoon.mozilla.org/projects/mdn/" title="https://pontoon.mozilla.org/projects/mdn/">Pontoon</a> 上進行在地化。請參見<a href="/zh-TW/docs/Mozilla/Localization/Localizing_with_Pontoon" title="/zh-TW/docs/Mozilla/Localization/Localizing_with_Pontoon">使用 Pontoon 來在地化</a>以詳細了解如何使用該工具。</div>
-
-<h2 id="編輯已翻譯的頁面">編輯已翻譯的頁面</h2>
-
-<ul>
- <li>在已翻譯的頁面,點選 <strong>Edit</strong> 按鈕(有時會以目標語系呈現),即會開啟文章翻譯界面。</li>
-</ul>
-
-<p>如果英文原文在前次譯文更新之後有所變動,文章翻譯介面會以程式碼的風格,顯示英文版的「前後差異比對」,幫助你找到需要更新的部份。</p>
-
-<h2 id="翻譯標籤">翻譯標籤</h2>
-
-<p>幫每個頁面都標上至少一個標籤非常重要,即使這是譯文。</p>
-
-<p>某些標籤用於搜尋篩選、或是貢獻者之間的約定用法,它們不應該被翻譯。 想要知道有哪些標籤,請閱讀<a href="/en-US/docs/Project:MDN/Contributing/Tagging_standards">標籤準則</a>一文。如果文章還沒有被任何標準的標籤標記,你可以自由的建立翻譯過的標籤以將內容分組。</p>
-
-<h2 id="針對新譯者的指引">針對新譯者的指引</h2>
-
-<p>如果你是 MDN 的新譯者,這裡有些指引:</p>
-
-<ul>
- <li>在 <a href="/zh-TW/docs/Glossary">Glossary</a> 的文章很適合新譯者翻譯,因為它們很簡短。</li>
- <li><a href="/en-US/docs/tag/l10n%3Apriority">被標示為 "l10n:priority" </a> 的文章被認定是高優先翻譯。另外,教學與概念性文章的優先度,通常比參考頁面高,這是因為讀者在理解新觀念的時候,最需要翻譯的東西。</li>
- <li>如果你看到兩個大括號的文字,例如 <code>\{{some-text("more text")}}</code>,讓它在文章內保持原樣、不要改動標點符號。這是 <a href="/zh-TW/docs/MDN/Contribute/Structures/Macros">Macro</a>,它可能用於創建頁面的架構、或其他的用途。你可能看到一些由 macro 產生的原文,在你從 MDN 得到更多經驗以前,不用操心這個(改變那邊的文字需要<a href="/zh-TW/docs/MDN/Contribute/Tools/Template_editing">特殊權限</a>,這是因為 macro 有著十分強大的效果)如果你感到好奇,可以看看 <a href="/zh-TW/docs/MDN/Contribute/Structures/Macros/Commonly-used_macros">Commonly-used macros</a> 來了解各種 macro 如何做動。</li>
- <li>查看 <a href="/zh-TW/docs/MDN/Contribute/Localize/Localization_projects">Localization projects page</a> 以找出更多你語言的在地化。</li>
-</ul>
diff --git a/files/zh-tw/web/html/element/script/index.html b/files/zh-tw/web/html/element/script/index.html
index 575be45b12..3b78b80a41 100644
--- a/files/zh-tw/web/html/element/script/index.html
+++ b/files/zh-tw/web/html/element/script/index.html
@@ -59,16 +59,22 @@ translation_of: Web/HTML/Element/script
<dt>{{htmlattrdef("crossorigin")}}</dt>
<dd>針對沒有通過標準 <a href="/zh-TW/docs/HTTP_access_control">CORS</a> 的一般 <code>script</code> 元素,會把最少的資訊傳給 {{domxref('GlobalEventHandlers.onerror', 'window.onerror')}}。若要允許另一個域名站點的靜態內容,列出錯誤訊息,請使用此屬性。請參見 <a href="/zh-TW/docs/Web/HTML/CORS_settings_attributes">CORS settings attributes</a> 以以取得對其有效參數的,更具描述性的解釋。</dd>
<dt>{{htmlattrdef("defer")}}</dt>
- <dd>This Boolean attribute is set to indicate to a browser that the script is meant to be executed after the document has been parsed, but before firing {{event("DOMContentLoaded")}}.</dd>
- <dd>Scripts with the defer attribute will prevent the DOMContentLoaded event from firing until the script has loaded and finished evaluating.</dd>
+ <dd>設置此 Boolean attribute 是為了指示瀏覽器, script 應在 document 解析後,但在 firing {{event("DOMContentLoaded")}} 之前被執行。</dd>
+ <dd>具有 <code>defer</code> 屬性的 scripts 將阻止觸發<code>DOMContentLoaded</code> 事件,直到 scripts load 完成並且 finished evaluating。</dd>
</dl>
<div class="warning">
<p>如果沒有 <code>src</code> 屬性的話,就不能用這個屬性(例如行內腳本):在這種情況下,它將失去作用。</p>
+
+<p>The <code>defer</code> attribute has no effect on <a href="https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules">module scripts </a>— they defer by default.</p>
</div>
<dl>
- <dd>To achieve a similar effect for dynamically inserted scripts use <code>async=false</code> instead. Scripts with the <code>defer</code> attribute will execute in the order in which they appear in the document.</dd>
+ <dd>
+ <p>Scripts with the <code>defer</code> attribute will execute in the order in which they appear in the document.</p>
+
+ <p>This attribute allows the elimination of <strong>parser-blocking JavaScript</strong> where the browser would have to load and evaluate scripts before continuing to parse. <code>async</code> has a similar effect in this case.</p>
+ </dd>
<dt>{{htmlattrdef("integrity")}}</dt>
<dd>This attribute contains inline metadata that a user agent can use to verify that a fetched resource has been delivered free of unexpected manipulation. See <a href="/zh-TW/docs/Web/Security/Subresource_Integrity">Subresource Integrity</a>.</dd>
<dt>{{htmlattrdef("nomodule")}}</dt>
@@ -124,7 +130,7 @@ translation_of: Web/HTML/Element/script
<p>以下示例展示如何在 HTML4 與 HTML5 使用 <code>&lt;script&gt;</code> 屬性。</p>
-<pre class="brush: html">&lt;!-- HTML4 與 (x)HTML --&gt;
+<pre class="brush: html notranslate">&lt;!-- HTML4 與 (x)HTML --&gt;
&lt;script type="text/javascript" src="javascript.js"&gt;&lt;/script&gt;
&lt;!-- HTML5 --&gt;
@@ -135,7 +141,7 @@ translation_of: Web/HTML/Element/script
<p>有針對 type 屬性支援 module(模組)的瀏覽器,會忽略 nomodule 屬性的程式碼。這能讓那些不支援模組的瀏覽器,提供替代的使用方法。</p>
-<pre class="brush: js">&lt;script type="module" src="main.mjs"&gt;&lt;/script&gt;
+<pre class="brush: js notranslate">&lt;script type="module" src="main.mjs"&gt;&lt;/script&gt;
&lt;script nomodule src="fallback.js"&gt;&lt;/script&gt;</pre>
<h2 id="規範">規範</h2>
@@ -157,12 +163,12 @@ translation_of: Web/HTML/Element/script
<tr>
<td>{{SpecName('HTML5 W3C', 'scripting-1.html#script', '&lt;script&gt;')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
- <td> </td>
+ <td></td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'interact/scripts.html#h-18.2.1', '&lt;script&gt;')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
- <td> </td>
+ <td></td>
</tr>
<tr>
<td>{{SpecName('Subresource Integrity', '#htmlscriptelement', '&lt;script&gt;')}}</td>