diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-07 00:29:50 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-09-18 22:24:37 +0900 |
commit | 4a573bbdd0e5945998a37162d1535245d4e20416 (patch) | |
tree | 882db0cd8f37c947955b460700d4d331f6bb95bb /files/ja/web/html/element/input | |
parent | e675bc16532dd880010aa9c2de2f9ed2f2bb3430 (diff) | |
download | translated-content-4a573bbdd0e5945998a37162d1535245d4e20416.tar.gz translated-content-4a573bbdd0e5945998a37162d1535245d4e20416.tar.bz2 translated-content-4a573bbdd0e5945998a37162d1535245d4e20416.zip |
Web/a-h以下の文書内のリンクURLを正規化
- /en-US へのリンクを /ja へのリンクに修正
- /ja が付いていないものに /ja を付加
- MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正
Diffstat (limited to 'files/ja/web/html/element/input')
-rw-r--r-- | files/ja/web/html/element/input/datetime-local/index.html | 2 | ||||
-rw-r--r-- | files/ja/web/html/element/input/email/index.html | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/files/ja/web/html/element/input/datetime-local/index.html b/files/ja/web/html/element/input/datetime-local/index.html index a64f914204..e5340a072c 100644 --- a/files/ja/web/html/element/input/datetime-local/index.html +++ b/files/ja/web/html/element/input/datetime-local/index.html @@ -631,5 +631,5 @@ daySelect.onchange = function() { <li><code><a href="/ja/docs/Web/HTML/Element/input/date"><input type="date"></a></code> および <code><a href="/ja/docs/Web/HTML/Element/input/time"><input type="time"></a></code></li> <li><a href="/ja/docs/Web/HTML/Date_and_time_formats">HTML で使われる日付や時刻の形式</a></li> <li><a href="/ja/docs/Web/Guide/HTML/Forms/The_native_form_widgets#Date_and_time_picker">日付と時刻の選択のチュートリアル</a></li> - <li><a href="/en-US/docs/Learn/HTML/Forms/Property_compatibility_table_for_form_widgets">Compatibility of CSS properties</a></li> + <li><a href="/ja/docs/Learn/HTML/Forms/Property_compatibility_table_for_form_widgets">Compatibility of CSS properties</a></li> </ul> diff --git a/files/ja/web/html/element/input/email/index.html b/files/ja/web/html/element/input/email/index.html index 07db445bb2..9caad81df6 100644 --- a/files/ja/web/html/element/input/email/index.html +++ b/files/ja/web/html/element/input/email/index.html @@ -271,7 +271,7 @@ translation_of: Web/HTML/Element/input/email [a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/ </pre> -<p>To learn more about how form validation works and how to take advantage of the {{cssxref(":valid")}} and {{cssxref(":invalid")}} CSS properties to style the input based on whether or not the current value is valid, see <a href="/en-US/docs/Learn/HTML/Forms/Form_validation">Form data validation</a>.</p> +<p>To learn more about how form validation works and how to take advantage of the {{cssxref(":valid")}} and {{cssxref(":invalid")}} CSS properties to style the input based on whether or not the current value is valid, see <a href="/ja/docs/Learn/HTML/Forms/Form_validation">Form data validation</a>.</p> <div class="note"> <p><strong>Note</strong>: There are known specification issues related to international domain names and the validation of e-mail addresses in HTML. See <a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=15489">W3C bug 15489</a> for details.</p> @@ -326,7 +326,7 @@ label::after { <p>{{EmbedLiveSample("Pattern_validation", 700, 275)}}</p> -<p>Our {{HTMLElement("form")}} contains one {{HTMLElement("input")}} of type <code>email</code> for the user's e-mail address, a {{HTMLElement("textarea")}} to enter their message for IT into, and an <code><input></code> of type <code><a href="/en-US/docs/Web/HTML/Element/input/submit">"submit"</a></code>, which creates a button to submit the form. Each text entry box has a {{HTMLElement("label")}} associated with it to let the user know what's expected of them.</p> +<p>Our {{HTMLElement("form")}} contains one {{HTMLElement("input")}} of type <code>email</code> for the user's e-mail address, a {{HTMLElement("textarea")}} to enter their message for IT into, and an <code><input></code> of type <code><a href="/ja/docs/Web/HTML/Element/input/submit">"submit"</a></code>, which creates a button to submit the form. Each text entry box has a {{HTMLElement("label")}} associated with it to let the user know what's expected of them.</p> <p>Let's take a closer look at the e-mail address entry box. Its {{htmlattrxref("size", "input")}} and {{htmlattrxref("maxlength", "input")}} attributes are both set to 64 in order to show room for 64 characters worth of e-mail address, and to limit the number of characters actually entered to a maximum of 64. The {{htmlattrxref("required", "input")}} attribute is specified, making it mandatory that a valid e-mail address be provided.</p> @@ -397,18 +397,18 @@ label::after { <li><a href="/ja/docs/Learn/HTML/Forms">HTML フォームガイド</a></li> <li>{{HTMLElement("input")}}</li> <li><code><a href="/ja/docs/Web/HTML/Element/input/tel"><input type="tel"></a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Element/input/url"><input type="url"></a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Element/input/url"><input type="url"></a></code></li> <li>Attributes: <ul> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/list">list</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/minlength">minlength</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/maxlength">maxlength</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/multiple">multiple</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/pattern">pattern</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/placeholder">placeholder</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/readonly">readonly</a></code></li> - <li><code><a href="/en-US/docs/Web/HTML/Attributes/size">size</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/list">list</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/minlength">minlength</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/maxlength">maxlength</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/multiple">multiple</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/pattern">pattern</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/placeholder">placeholder</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/readonly">readonly</a></code></li> + <li><code><a href="/ja/docs/Web/HTML/Attributes/size">size</a></code></li> </ul> </li> - <li><a href="/en-US/docs/Learn/Forms/Property_compatibility_table_for_form_controls">Compatibility of CSS properties</a></li> + <li><a href="/ja/docs/Learn/Forms/Property_compatibility_table_for_form_controls">Compatibility of CSS properties</a></li> </ul> |