diff options
Diffstat (limited to 'files/ru/web/manifest/description/index.html')
-rw-r--r-- | files/ru/web/manifest/description/index.html | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/files/ru/web/manifest/description/index.html b/files/ru/web/manifest/description/index.html new file mode 100644 index 0000000000..db2787bb52 --- /dev/null +++ b/files/ru/web/manifest/description/index.html @@ -0,0 +1,81 @@ +--- +title: description +slug: Web/Manifest/description +tags: + - Manifest + - Web + - description +translation_of: Web/Manifest/description +--- +<div>{{QuickLinksWithSubpages('/ru/docs/Web/Manifest')}}</div> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Type</th> + <td><code>String</code></td> + </tr> + <tr> + <th scope="row">Mandatory</th> + <td>No</td> + </tr> + <tr> + <th scope="row">Example</th> + <td> + <pre class="brush: json no-line-numbers"> +"description": "Удивительное приложение, которое поможет вам достичь вашей мечты."</pre> + </td> + </tr> + </tbody> +</table> + +<p><dfn><code>description</code></dfn> это строка, в которой разработчики могут объяснить, что делает приложение. <code>description</code> способно к направленности, что означает, что оно может отображаться слева направо или справа налево на основе значений свойств <code><a href="./dir">dir</a></code> and <code><a href="./lang">lang</a></code> манифеста.</p> + +<h2 id="Примеры">Примеры</h2> + +<p>Простой <code>description</code> на языке слева направо:</p> + +<pre class="brush: json">"description": "Удивительное приложение, которое поможет вам достичь вашей мечты."</pre> + +<p><code>description</code> на арабском языке, который будет отображаться справа налево:</p> + +<pre class="brush: json" dir="rtl"><code>"dir": "rtl", +"lang": "ar", +"</code>description<code>": ".تطبيق رائع سيساعدك على تحقيق أحلامك"</code></pre> + +<h2 id="Specification">Specification</h2> + +<table> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + <th scope="col">Feedback</th> + </tr> + </thead> + <tbody> + <tr> + <td> + <p>{{SpecName('Manifest', '#description-member', 'description')}}</p> + </td> + <td> + <p>{{Spec2('Manifest')}}</p> + </td> + <td> + <p>Initial definition.</p> + </td> + <td> + <p><a href="https://github.com/w3c/manifest/issues/">Web App Manifest Working Group drafts</a></p> + </td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + +<div class="hidden"> +<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> +</div> + +<p>{{Compat("html.manifest.description")}}</p> |