aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/manifest/dir/index.html
blob: 8bc9f42cd9d25eec240f9c20f444fc5e156f109b (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
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>

<p>{{Compat("html.manifest.dir")}}</p>