aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaito Udagawa <umireon@gmail.com>2021-05-12 23:37:20 +0900
committerGitHub <noreply@github.com>2021-05-12 23:37:20 +0900
commit45300a4083b0334e8bc0c8a7157e3a3d96967cb6 (patch)
treec6f98d5aec6551f4fbf1460a1172c781ae0e2428
parent0a9c4c981a6d9e6c65574828f91e2bf6c58cfaf0 (diff)
downloadtranslated-content-45300a4083b0334e8bc0c8a7157e3a3d96967cb6.tar.gz
translated-content-45300a4083b0334e8bc0c8a7157e3a3d96967cb6.tar.bz2
translated-content-45300a4083b0334e8bc0c8a7157e3a3d96967cb6.zip
Fix web/api/textencoder/index.html, ja-JP (#799)
* Fix web/api/textencoder/index.html, ja-JP Replace the incorrect word `W3` with `standard` Add the description about only supporting UTF-8 This change matches its English edition. * Add spaces around English in Kanji https://github.com/mozilla-japan/translation/wiki/Editorial-Guideline#%E8%8B%B1%E6%95%B0%E5%AD%97%E3%81%AE%E8%A1%A8%E8%A8%98
-rw-r--r--files/ja/web/api/textencoder/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/api/textencoder/index.html b/files/ja/web/api/textencoder/index.html
index 4d622bf7a6..fc3bec87d6 100644
--- a/files/ja/web/api/textencoder/index.html
+++ b/files/ja/web/api/textencoder/index.html
@@ -54,7 +54,7 @@ console.log(view); // Uint8Array(3) [226, 130, 172]
<h2 id="Polyfill" name="Polyfill">ポリフィル</h2>
-<p>以下のポリフィルは、W3 が要求する仕様だけを満たします。 "これだけで" IE5 で動作するように設計されていますが、IE5 から IE9 では TypedArray に代わって通常の配列を返します。メモリの効率が悪く遅いブラウザーのような状況では、このポリフィル (さらに言えばどのポリフィルも) は古いブラウザーと大きな文字列に対して実用的でないでしょう。最後に、 <code>0x1e &lt;&lt; 3</code> のようなシーケンスを <code>0xf0</code> へ変換するため、以下のコードをミニファイアー (特にクロージャコンパイラー) を通して実行すべきであることに注意してください。これらのシーケンスはポリフィルの動作を美的に示すため、事前に計算されていません。</p>
+<p>以下のポリフィルは、標準が要求する仕様だけを満たし、したがって UTF-8 のみをサポートします。 "これだけで" IE5 で動作するように設計されていますが、IE5 から IE9 では TypedArray に代わって通常の配列を返します。メモリの効率が悪く遅いブラウザーのような状況では、このポリフィル (さらに言えばどのポリフィルも) は古いブラウザーと大きな文字列に対して実用的でないでしょう。最後に、 <code>0x1e &lt;&lt; 3</code> のようなシーケンスを <code>0xf0</code> へ変換するため、以下のコードをミニファイアー (特にクロージャコンパイラー) を通して実行すべきであることに注意してください。これらのシーケンスはポリフィルの動作を美的に示すため、事前に計算されていません。</p>
<pre class="brush: js notranslate">if (typeof TextEncoder === "undefined") {
TextEncoder=function TextEncoder(){};