diff options
| -rw-r--r-- | files/ja/web/manifest/description/index.md | 79 | 
1 files changed, 29 insertions, 50 deletions
diff --git a/files/ja/web/manifest/description/index.md b/files/ja/web/manifest/description/index.md index 1f5c96773a..4e90aaa6d8 100644 --- a/files/ja/web/manifest/description/index.md +++ b/files/ja/web/manifest/description/index.md @@ -2,70 +2,49 @@  title: description  slug: Web/Manifest/description  tags: -  - Manifest -  - Web -  - description    - マニフェスト +  - ウェブ +  - description +browser-compat: html.manifest.description  translation_of: Web/Manifest/description  --- -<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>description</code></dfn> メンバーは、アプリケーションが何をするかを開発者が説明することができる文字列です。 <code>description</code> は書字方向を設定することができ、マニフェストメンバーの <code><a href="./dir">dir</a></code> と <code><a href="./lang">lang</a></code> の値に基づいて左書きまたは右書きで表示することができます。</p> +_`description`_ メンバーは、何をするアプリケーションなのかを開発者が説明することができる文字列です。 `description` には書字方向を設定することができ、マニフェストメンバーの [`dir`](/ja/docs/Web/Manifest/dir) と [`lang`](/ja/docs/Web/Manifest/lang) の値に基づいて左書きまたは右書きで表示することができます。 -<h2 id="Examples" name="Examples">例</h2> +## 例 -<p>左書き言語用の単純な <code>description</code> です。</p> +左書き言語用の単純な `description` です。 -<pre class="brush: json">"description": "Awesome application that will help you achieve your dreams."</pre> +```json +"description": "Awesome application that will help you achieve your dreams." +``` -<p>アラビア語の <code>description</code> で、右書きで表示されます。</p> +アラビア語の `description` で、右書きで表示されます。 -<pre class="brush: json">"dir": "rtl", +```json +"dir": "rtl",  "lang": "ar", -"description": ".تطبيق رائع سيساعدك على تحقيق أحلامك"</pre> +"description": ".تطبيق رائع سيساعدك على تحقيق أحلامك" +``` -<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', '#description-member', 'description')}}</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.description")}}</p> +{{Compat}}  | 
