diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-13 02:41:03 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-20 00:17:38 +0900 |
commit | 073c7816160f1de1130d1945bd00c25b0b9fb916 (patch) | |
tree | 7acac8cd129600313903308a21609f782c3f6741 /files/ja | |
parent | 42cf3d8939cef09a374989733e22f0a76368bf1b (diff) | |
download | translated-content-073c7816160f1de1130d1945bd00c25b0b9fb916.tar.gz translated-content-073c7816160f1de1130d1945bd00c25b0b9fb916.tar.bz2 translated-content-073c7816160f1de1130d1945bd00c25b0b9fb916.zip |
2021/10/11 時点の英語版に同期
Diffstat (limited to 'files/ja')
-rw-r--r-- | files/ja/web/manifest/name/index.md | 79 |
1 files changed, 29 insertions, 50 deletions
diff --git a/files/ja/web/manifest/name/index.md b/files/ja/web/manifest/name/index.md index 7923da07df..51528069fc 100644 --- a/files/ja/web/manifest/name/index.md +++ b/files/ja/web/manifest/name/index.md @@ -2,70 +2,49 @@ title: name slug: Web/Manifest/name tags: - - Manifest - - Web - - name - マニフェスト + - ウェブ + - name +browser-compat: html.manifest.name translation_of: Web/Manifest/name --- -<div>{{QuickLinksWithSubpages("/ja/docs/Web/Manifest")}}</div> +{{QuickLinksWithSubpages("/ja/docs/Web/Manifest")}} <table class="properties"> - <tbody> - <tr> - <th scope="row">型</th> - <td><code>String</code></td> - </tr> - <tr> - <th scope="row">必須</th> - <td>はい</td> - </tr> - </tbody> + <tbody> + <tr> + <th scope="row">型</th> + <td><code>String</code></td> + </tr> + <tr> + <th scope="row">必須</th> + <td>はい</td> + </tr> + </tbody> </table> -<p><dfn><code>name</code></dfn> メンバーは文字列で、ウェブアプリケーションの名前を通常ユーザーに表示される形 (例えば、他のアプリケーションとのリストの中や、アイコンのラベルなど) で表します。 <code>name</code> は書字方向に対応しており、 <code><a href="./dir">dir</a></code> および <code><a href="./lang">lang</a></code> の各マニフェストメンバーの値に基づいて左書きで表示されたり右書きで表示されたりします。</p> +_`name`_ メンバーは文字列で、ウェブアプリケーションの名前を通常ユーザーに表示される形 (例えば、他のアプリケーションとのリストの中や、アイコンのラベルなど) で表します。 `name` は書字方向に対応しており、 [`dir`](/ja/docs/Web/Manifest/dir) および [`lang`](/ja/docs/Web/Manifest/lang) の各マニフェストメンバーの値に基づいて左書きで表示されたり右書きで表示されたりします。 -<h2 id="Examples" name="Examples">例</h2> +## 例 -<p>単純な <code>name</code> を左書き言語で:</p> +単純な `name` を左書き言語で: -<pre class="brush: json">"name": "Awesome application"</pre> +```json +"name": "Awesome application" +``` -<p>アラビア語で右書きの <code>name</code>:</p> +アラビア語で右書きの `name`: -<pre class="brush: json" dir="rtl"><code>"dir": "rtl", +```json +"dir": "rtl", "lang": "ar", -"name": "!أنا من التطبيق"</code></pre> +"name": "!أنا من التطبيق" +``` -<h2 id="Specification" name="Specification">仕様書</h2> +## 仕様書 -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - <th scope="col">フィードバック</th> - </tr> - </thead> - <tbody> - <tr> - <td> - <p>{{SpecName('Manifest', '#name-member', 'name')}}</p> - </td> - <td> - <p>{{Spec2('Manifest')}}</p> - </td> - <td> - <p>初回定義</p> - </td> - <td> - <p><a href="https://github.com/w3c/manifest/issues/">Web App Manifest Working Group drafts</a></p> - </td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> +## ブラウザーの互換性 -<p>{{Compat("html.manifest.name")}}</p> +{{Compat}} |