aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-10-11 00:51:25 +0000
committerMDN <actions@users.noreply.github.com>2021-10-11 00:51:25 +0000
commita101c2f3857be9d799b0ee5b2c7d04b61f9e2f18 (patch)
tree344ac9b4f45a5fd982e3a3d2f05c060d3d2e2d43 /files/ja/conflicting
parentb6580b050e7aaea273d6b41f0cda0fc3077afae2 (diff)
downloadtranslated-content-a101c2f3857be9d799b0ee5b2c7d04b61f9e2f18.tar.gz
translated-content-a101c2f3857be9d799b0ee5b2c7d04b61f9e2f18.tar.bz2
translated-content-a101c2f3857be9d799b0ee5b2c7d04b61f9e2f18.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/conflicting')
-rw-r--r--files/ja/conflicting/web/api/geolocation/getcurrentposition/index.html65
-rw-r--r--files/ja/conflicting/web/api/storagemanager/estimate/index.html65
-rw-r--r--files/ja/conflicting/web/api/storagemanager/estimate_78aa4ffd4dfacc8f94d5c05d150d36ac/index.html65
-rw-r--r--files/ja/conflicting/web/api/storagemanager/estimate_9ffeea37c30a26922d3f1621912db8d8/index.html65
4 files changed, 260 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/api/geolocation/getcurrentposition/index.html b/files/ja/conflicting/web/api/geolocation/getcurrentposition/index.html
new file mode 100644
index 0000000000..d6fa430bb2
--- /dev/null
+++ b/files/ja/conflicting/web/api/geolocation/getcurrentposition/index.html
@@ -0,0 +1,65 @@
+---
+title: PositionOptions
+slug: conflicting/Web/API/Geolocation/getCurrentPosition
+tags:
+ - API
+ - Geolocation API
+ - Interface
+ - PositionOptions
+ - Reference
+ - Secure context
+translation_of: Web/API/PositionOptions
+original_slug: Web/API/PositionOptions
+---
+<div>
+<div>{{securecontext_header}}{{APIRef("Geolocation API")}}</div>
+</div>
+
+<p><strong><code>PositionOptions</code></strong> インターフェイスは {{domxref("Geolocation.getCurrentPosition()")}} や {{domxref("Geolocation.watchPosition()")}} に渡すオプションプロパティを含んだオブジェクトを表します。</p>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<p><em><code>PositionOptions</code> インターフェイスが継承するプロパティはありません。</em></p>
+
+<dl>
+ <dt>{{domxref("PositionOptions.enableHighAccuracy")}} {{securecontext_inline}}</dt>
+ <dd>アプリケーションが可能な限り高精度の結果を求めることを表す {{domxref("Boolean")}} 型の値です。このプロパティに <code>true</code> を指定すると、デバイスが高精度な位置情報を提供できる場合に、それを利用することができます。これによって測位結果の取得に時間がかかったり、 (GPS チップを搭載したモバイル端末などで) 電力消費が増える可能性があります。逆に <code>false</code> を指定することで、短時間で結果を返したり消費電力を節約したりといった選択をデバイスに任せることができます。デフォルトは <code>false</code> です。</dd>
+ <dt>{{domxref("PositionOptions.timeout")}} {{securecontext_inline}}</dt>
+ <dd>位置情報の取得にかかる時間の上限 (ミリ秒) を表す、 <code>long</code> 型の正の値です。デフォルトは <code><a href="/ja/docs/JavaScript/Reference/Global_Objects/Infinity">Infinity</a></code> で、位置情報が得られるまで <code>getCurrentPosition()</code> が待ち続けることを意味します。</dd>
+ <dt>{{domxref("PositionOptions.maximumAge")}} {{securecontext_inline}}</dt>
+ <dd>キャッシュ済みの位置情報の有効期限 (ミリ秒) を表す、 <code>long</code> 型の正の値です。これに <code>0</code> を指定すると、デバイスはキャッシュ済みの位置情報を返すことができず、常に最新の位置情報を取得しようとします。<code><a href="/ja/docs/JavaScript/Reference/Global_Objects/Infinity">Infinity</a></code> を指定した場合、デバイスは常にキャッシュから位置情報を返します。デフォルトは 0 です。</dd>
+</dl>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<p><code>PositionOptions</code> インターフェイスが実装・継承するメソッドはありません。</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">策定状況</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Geolocation', '#positionoptions', 'PositionOptions')}}</td>
+ <td>{{Spec2('Geolocation')}}</td>
+ <td>最初の定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
+
+<p>{{Compat("api.PositionOptions")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/WebAPI/Using_geolocation">Geolocation の利用</a></li>
+ <li>{{domxref("Geolocation")}} インターフェイス</li>
+</ul>
diff --git a/files/ja/conflicting/web/api/storagemanager/estimate/index.html b/files/ja/conflicting/web/api/storagemanager/estimate/index.html
new file mode 100644
index 0000000000..aa0c8766b5
--- /dev/null
+++ b/files/ja/conflicting/web/api/storagemanager/estimate/index.html
@@ -0,0 +1,65 @@
+---
+title: StorageEstimate
+slug: conflicting/Web/API/StorageManager/estimate
+tags:
+ - API
+ - Dictionary
+ - Interface
+ - Quotas
+ - Reference
+ - Secure context
+ - Storage
+ - Storage API
+ - StorageEstimate
+ - Usage
+translation_of: Web/API/StorageEstimate
+original_slug: Web/API/StorageEstimate
+---
+<div>{{securecontext_header}}{{APIRef("Storage")}}</div>
+
+<p><span class="seoSummary"><strong><code>StorageEstimate</code></strong> ディクショナリは、サイトまたはアプリのデータストアのサイズとその使用量の概算値を提供するために {{domxref("StorageManager")}} によって使用されます。{{domxref("StorageManager.estimate", "estimate()")}} メソッドは、その {{jsxref("Promise")}} が解決されたときにこのディクショナリに適合するオブジェクトを返します。</span></p>
+
+<p>これらの値は、パフォーマンスと、ストレージ容量データがフィンガープリント目的で使用されることの防止との両方を含む、いくつかの理由のため、単なる概算値にすぎません。詳細は各プロパティのページをご覧ください。</p>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<dl>
+ <dt>{{domxref("StorageEstimate.quota", "quota")}} {{securecontext_inline}}</dt>
+ <dd>ユーザーのデバイスやコンピューターがサイトオリジンやウェブアプリで使用できる合計ストレージの控えめな概算値を提供する数値。それが事実であることに頼ることはできませんが、この利用可能なスペースの量より多くがある可能性があります。</dd>
+ <dt>{{domxref("StorageEstimate.usage", "usage")}} {{securecontext_inline}}</dt>
+ <dd><code>quota</code> で示される利用可能スペースのうち、サイトやウェブアプリが現在使用しているストレージスペースの量を概算する数値。</dd>
+ <dt>{{domxref("StorageEstimate.usageDetails", "usageDetails")}} {{securecontext_inline}}</dt>
+ <dd>ストレージシステムごとの <code>usage</code> の内訳を含むディクショナリ。含まれるメンバーはすべて 0 より大きい <code>usage</code> を持ち、<code>usage</code> が 0 のストレージシステムはすべてディクショナリから除外されます。</dd>
+</dl>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('Storage', '#dictdef-storageestimate', 'StorageEstimate')}}</td>
+ <td>{{Spec2('Storage')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.StorageEstimate")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/API/Storage_API">Storage API</a></li>
+ <li>{{domxref("StorageManager")}}</li>
+ <li>{{domxref("StorageManager.estimate()")}}</li>
+ <li>{{domxref("NavigatorStorage.storage", "navigator.storage")}}</li>
+</ul>
diff --git a/files/ja/conflicting/web/api/storagemanager/estimate_78aa4ffd4dfacc8f94d5c05d150d36ac/index.html b/files/ja/conflicting/web/api/storagemanager/estimate_78aa4ffd4dfacc8f94d5c05d150d36ac/index.html
new file mode 100644
index 0000000000..ec31fd060d
--- /dev/null
+++ b/files/ja/conflicting/web/api/storagemanager/estimate_78aa4ffd4dfacc8f94d5c05d150d36ac/index.html
@@ -0,0 +1,65 @@
+---
+title: StorageEstimate.quota
+slug: conflicting/Web/API/StorageManager/estimate_78aa4ffd4dfacc8f94d5c05d150d36ac
+tags:
+ - API
+ - Property
+ - Quota
+ - Quotas
+ - Reference
+ - Secure context
+ - StorageEstimate
+translation_of: Web/API/StorageEstimate/quota
+original_slug: Web/API/StorageEstimate/quota
+---
+<div>{{securecontext_header}}{{APIRef("Storage")}}</div>
+
+<p><span class="seoSummary">{{domxref("StorageEstimate")}} ディクショナリの <strong><code>quota</code></strong> プロパティは、{{domxref("StorageManager.estimate()")}} を呼ぶことで得られる、オリジンやウェブアプリに割り当てられているストレージの量の控えめな概算値です。</span> より多くの利用可能なスペースがあるかもしれませんが、少なくなることはありません。この値は、フィンガープリンティング、つまり一見無害なプロパティの値を統合してデバイスを識別するための使用を防止するのに役立つ概算値です。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>quota</em> = <em>StorageEstimate</em>.quota;
+</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p>アプリで使用可能な合計ストレージ容量の概算値を指定する数値。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>{{page("/ja/docs/Web/API/StorageManager/estimate", "Example")}}</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Storage', '#site-storage-quota', 'quota')}}</td>
+ <td>{{Spec2('Storage')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.StorageEstimate.quota")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/API/Storage_API">Storage API</a></li>
+ <li>{{domxref("Navigator")}}</li>
+ <li>{{domxref("StorageManager")}}</li>
+ <li>{{domxref("StorageEstimate")}}</li>
+ <li>{{domxref("StorageEstimate.usage")}}</li>
+</ul>
diff --git a/files/ja/conflicting/web/api/storagemanager/estimate_9ffeea37c30a26922d3f1621912db8d8/index.html b/files/ja/conflicting/web/api/storagemanager/estimate_9ffeea37c30a26922d3f1621912db8d8/index.html
new file mode 100644
index 0000000000..32949e391a
--- /dev/null
+++ b/files/ja/conflicting/web/api/storagemanager/estimate_9ffeea37c30a26922d3f1621912db8d8/index.html
@@ -0,0 +1,65 @@
+---
+title: StorageEstimate.usage
+slug: conflicting/Web/API/StorageManager/estimate_9ffeea37c30a26922d3f1621912db8d8
+tags:
+ - API
+ - Reference
+ - Secure context
+ - Storage
+ - Storage API
+ - StorageEstimate
+ - Usage
+translation_of: Web/API/StorageEstimate/usage
+original_slug: Web/API/StorageEstimate/usage
+---
+<div>{{securecontext_header}}{{APIRef("Storage")}}</div>
+
+<p><span class="seoSummary">{{domxref("StorageEstimate")}} ディクショナリの <strong><code>usage</code></strong> プロパティは、{{domxref("StorageManager.estimate()")}} を呼ぶことで得られる、オリジンやウェブアプリが使用しているストレージ量の概算値です。</span> {{Glossary("user agent","ユーザーエージェント")}}がストレージ効率を改善するために圧縮、複製防止技術、および他の方法を使用することがあるため、値は概算値です。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>usage</em> = <em>StorageEstimate</em>.usage;
+</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p>アプリが現在使用しているストレージ容量の概算値を指定する数値。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>{{page("/ja/docs/Web/API/StorageManager/estimate", "Example")}}</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Storage', '#site-storage-usage', 'usage')}}</td>
+ <td>{{Spec2('Storage')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.StorageEstimate.usage")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/API/Storage_API">Storage API</a></li>
+ <li>{{domxref("Navigator")}}</li>
+ <li>{{domxref("StorageManager")}}</li>
+ <li>{{domxref("StorageEstimate")}}</li>
+ <li>{{domxref("StorageEstimate.quota")}}</li>
+</ul>