From a101c2f3857be9d799b0ee5b2c7d04b61f9e2f18 Mon Sep 17 00:00:00 2001 From: MDN Date: Mon, 11 Oct 2021 00:51:25 +0000 Subject: [CRON] sync translated content --- files/ja/web/api/positionoptions/index.html | 64 ----------------------- files/ja/web/api/storageestimate/index.html | 64 ----------------------- files/ja/web/api/storageestimate/quota/index.html | 64 ----------------------- files/ja/web/api/storageestimate/usage/index.html | 64 ----------------------- 4 files changed, 256 deletions(-) delete mode 100644 files/ja/web/api/positionoptions/index.html delete mode 100644 files/ja/web/api/storageestimate/index.html delete mode 100644 files/ja/web/api/storageestimate/quota/index.html delete mode 100644 files/ja/web/api/storageestimate/usage/index.html (limited to 'files/ja/web/api') diff --git a/files/ja/web/api/positionoptions/index.html b/files/ja/web/api/positionoptions/index.html deleted file mode 100644 index b411a84640..0000000000 --- a/files/ja/web/api/positionoptions/index.html +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: PositionOptions -slug: Web/API/PositionOptions -tags: - - API - - Geolocation API - - Interface - - PositionOptions - - Reference - - Secure context -translation_of: Web/API/PositionOptions ---- -
-
{{securecontext_header}}{{APIRef("Geolocation API")}}
-
- -

PositionOptions インターフェイスは {{domxref("Geolocation.getCurrentPosition()")}} や {{domxref("Geolocation.watchPosition()")}} に渡すオプションプロパティを含んだオブジェクトを表します。

- -

プロパティ

- -

PositionOptions インターフェイスが継承するプロパティはありません。

- -
-
{{domxref("PositionOptions.enableHighAccuracy")}} {{securecontext_inline}}
-
アプリケーションが可能な限り高精度の結果を求めることを表す {{domxref("Boolean")}} 型の値です。このプロパティに true を指定すると、デバイスが高精度な位置情報を提供できる場合に、それを利用することができます。これによって測位結果の取得に時間がかかったり、 (GPS チップを搭載したモバイル端末などで) 電力消費が増える可能性があります。逆に false を指定することで、短時間で結果を返したり消費電力を節約したりといった選択をデバイスに任せることができます。デフォルトは false です。
-
{{domxref("PositionOptions.timeout")}} {{securecontext_inline}}
-
位置情報の取得にかかる時間の上限 (ミリ秒) を表す、 long 型の正の値です。デフォルトは Infinity で、位置情報が得られるまで getCurrentPosition() が待ち続けることを意味します。
-
{{domxref("PositionOptions.maximumAge")}} {{securecontext_inline}}
-
キャッシュ済みの位置情報の有効期限 (ミリ秒) を表す、 long 型の正の値です。これに 0 を指定すると、デバイスはキャッシュ済みの位置情報を返すことができず、常に最新の位置情報を取得しようとします。Infinity を指定した場合、デバイスは常にキャッシュから位置情報を返します。デフォルトは 0 です。
-
- -

メソッド

- -

PositionOptions インターフェイスが実装・継承するメソッドはありません。

- -

仕様

- - - - - - - - - - - - - - - - -
仕様書策定状況コメント
{{SpecName('Geolocation', '#positionoptions', 'PositionOptions')}}{{Spec2('Geolocation')}}最初の定義
- -

ブラウザ実装状況

- -

{{Compat("api.PositionOptions")}}

- -

関連情報

- - diff --git a/files/ja/web/api/storageestimate/index.html b/files/ja/web/api/storageestimate/index.html deleted file mode 100644 index a21d3e4b6c..0000000000 --- a/files/ja/web/api/storageestimate/index.html +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: StorageEstimate -slug: Web/API/StorageEstimate -tags: - - API - - Dictionary - - Interface - - Quotas - - Reference - - Secure context - - Storage - - Storage API - - StorageEstimate - - Usage -translation_of: Web/API/StorageEstimate ---- -
{{securecontext_header}}{{APIRef("Storage")}}
- -

StorageEstimate ディクショナリは、サイトまたはアプリのデータストアのサイズとその使用量の概算値を提供するために {{domxref("StorageManager")}} によって使用されます。{{domxref("StorageManager.estimate", "estimate()")}} メソッドは、その {{jsxref("Promise")}} が解決されたときにこのディクショナリに適合するオブジェクトを返します。

- -

これらの値は、パフォーマンスと、ストレージ容量データがフィンガープリント目的で使用されることの防止との両方を含む、いくつかの理由のため、単なる概算値にすぎません。詳細は各プロパティのページをご覧ください。

- -

プロパティ

- -
-
{{domxref("StorageEstimate.quota", "quota")}} {{securecontext_inline}}
-
ユーザーのデバイスやコンピューターがサイトオリジンやウェブアプリで使用できる合計ストレージの控えめな概算値を提供する数値。それが事実であることに頼ることはできませんが、この利用可能なスペースの量より多くがある可能性があります。
-
{{domxref("StorageEstimate.usage", "usage")}} {{securecontext_inline}}
-
quota で示される利用可能スペースのうち、サイトやウェブアプリが現在使用しているストレージスペースの量を概算する数値。
-
{{domxref("StorageEstimate.usageDetails", "usageDetails")}} {{securecontext_inline}}
-
ストレージシステムごとの usage の内訳を含むディクショナリ。含まれるメンバーはすべて 0 より大きい usage を持ち、usage が 0 のストレージシステムはすべてディクショナリから除外されます。
-
- -

仕様

- - - - - - - - - - - - - - -
仕様状態コメント
{{SpecName('Storage', '#dictdef-storageestimate', 'StorageEstimate')}}{{Spec2('Storage')}}初期定義
- -

ブラウザーの互換性

- - - -

{{Compat("api.StorageEstimate")}}

- -

関連情報

- - diff --git a/files/ja/web/api/storageestimate/quota/index.html b/files/ja/web/api/storageestimate/quota/index.html deleted file mode 100644 index 8dff3c3883..0000000000 --- a/files/ja/web/api/storageestimate/quota/index.html +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: StorageEstimate.quota -slug: Web/API/StorageEstimate/quota -tags: - - API - - Property - - Quota - - Quotas - - Reference - - Secure context - - StorageEstimate -translation_of: Web/API/StorageEstimate/quota ---- -
{{securecontext_header}}{{APIRef("Storage")}}
- -

{{domxref("StorageEstimate")}} ディクショナリの quota プロパティは、{{domxref("StorageManager.estimate()")}} を呼ぶことで得られる、オリジンやウェブアプリに割り当てられているストレージの量の控えめな概算値です。 より多くの利用可能なスペースがあるかもしれませんが、少なくなることはありません。この値は、フィンガープリンティング、つまり一見無害なプロパティの値を統合してデバイスを識別するための使用を防止するのに役立つ概算値です。

- -

構文

- -
quota = StorageEstimate.quota;
-
- -

- -

アプリで使用可能な合計ストレージ容量の概算値を指定する数値。

- -

- -

{{page("/ja/docs/Web/API/StorageManager/estimate", "Example")}}

- -

仕様

- - - - - - - - - - - - - - - - -
仕様状態コメント
{{SpecName('Storage', '#site-storage-quota', 'quota')}}{{Spec2('Storage')}}初期定義
- -

ブラウザーの互換性

- - - -

{{Compat("api.StorageEstimate.quota")}}

- -

関連情報

- - diff --git a/files/ja/web/api/storageestimate/usage/index.html b/files/ja/web/api/storageestimate/usage/index.html deleted file mode 100644 index 820de4ba72..0000000000 --- a/files/ja/web/api/storageestimate/usage/index.html +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: StorageEstimate.usage -slug: Web/API/StorageEstimate/usage -tags: - - API - - Reference - - Secure context - - Storage - - Storage API - - StorageEstimate - - Usage -translation_of: Web/API/StorageEstimate/usage ---- -
{{securecontext_header}}{{APIRef("Storage")}}
- -

{{domxref("StorageEstimate")}} ディクショナリの usage プロパティは、{{domxref("StorageManager.estimate()")}} を呼ぶことで得られる、オリジンやウェブアプリが使用しているストレージ量の概算値です。 {{Glossary("user agent","ユーザーエージェント")}}がストレージ効率を改善するために圧縮、複製防止技術、および他の方法を使用することがあるため、値は概算値です。

- -

構文

- -
usage = StorageEstimate.usage;
-
- -

- -

アプリが現在使用しているストレージ容量の概算値を指定する数値。

- -

- -

{{page("/ja/docs/Web/API/StorageManager/estimate", "Example")}}

- -

仕様

- - - - - - - - - - - - - - - - -
仕様状態コメント
{{SpecName('Storage', '#site-storage-usage', 'usage')}}{{Spec2('Storage')}}初期定義
- -

ブラウザーの互換性

- - - -

{{Compat("api.StorageEstimate.usage")}}

- -

関連情報

- - -- cgit v1.2.3-54-g00ecf