aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/manifest/description/index.md
blob: 4e90aaa6d8f3500e318467bfc867ec75f22e1984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
title: description
slug: Web/Manifest/description
tags:
  - マニフェスト
  - ウェブ
  - description
browser-compat: html.manifest.description
translation_of: Web/Manifest/description
---
{{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>
</table>

_`description`_ メンバーは、何をするアプリケーションなのかを開発者が説明することができる文字列です。 `description` には書字方向を設定することができ、マニフェストメンバーの [`dir`](/ja/docs/Web/Manifest/dir) と [`lang`](/ja/docs/Web/Manifest/lang) の値に基づいて左書きまたは右書きで表示することができます。

## 例

左書き言語用の単純な `description` です。

```json
"description": "Awesome application that will help you achieve your dreams."
```

アラビア語の `description` で、右書きで表示されます。

```json
"dir": "rtl",
"lang": "ar",
"description": ".تطبيق رائع سيساعدك على تحقيق أحلامك"
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}