diff options
Diffstat (limited to 'files/ru/web/manifest/dir/index.html')
-rw-r--r-- | files/ru/web/manifest/dir/index.html | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/files/ru/web/manifest/dir/index.html b/files/ru/web/manifest/dir/index.html new file mode 100644 index 0000000000..c7798629be --- /dev/null +++ b/files/ru/web/manifest/dir/index.html @@ -0,0 +1,95 @@ +--- +title: dir +slug: Web/Manifest/dir +tags: + - Manifest + - Web + - dir +translation_of: Web/Manifest/dir +--- +<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"> +"dir": "auto"</pre> + </td> + </tr> + </tbody> +</table> + +<p>Базовое направление, в котором отображаются направленные элементы манифеста. Вместе с <code><a href="./lang">lang</a></code>, позволяет корректно отобразить языки, читающиеся справа налево.</p> + +<p><code>dir</code> может быть одним из следующих значений:</p> + +<ul> + <li><code>"auto"</code> — направление текста определяется агентом пользователя</li> + <li><code>"ltr"</code> — слева направо</li> + <li><code>"rtl"</code> — справа налево</li> +</ul> + +<p>Направленные свойства:</p> + +<ul> + <li><code><a href="./name">name</a></code></li> + <li><code><a href="./short_name">short_name</a></code></li> + <li><code><a href="./description">description</a></code></li> +</ul> + +<div class="blockIndicator note"> +<p><strong>Заметка</strong>: Если значение опущено или установлено в <code>auto</code>, браузер будет использовать <a href="https://developer.mozilla.org/ru/docs/Web/Localization/Unicode_Bidirectional_Text_Algorithm">двунаправленный алгоритм Unicode</a>, чтобы сделать наилучшее предположение о направлении текста.</p> +</div> + +<h2 id="Пример">Пример</h2> + +<pre class="brush: json" dir="rtl"><code>"dir": "rtl", +"lang": "ar", +"short_name": "!أنا من التطبيق"</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', '#dir-member', 'dir')}}</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.dir")}}</p> |