aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api
diff options
context:
space:
mode:
authorJuan Vásquez <juan@logicalbricks.com>2022-02-03 20:17:46 -0600
committerGitHub <noreply@github.com>2022-02-03 20:17:46 -0600
commit1a844e943b03013351395511ae0c73a37081725f (patch)
tree45f61a390fd90cf0d4d9a1ef6310de4ae9372de6 /files/es/web/api
parentf8cb1904ed8ea9c9e10d5220274e01cb488f3139 (diff)
downloadtranslated-content-1a844e943b03013351395511ae0c73a37081725f.tar.gz
translated-content-1a844e943b03013351395511ae0c73a37081725f.tar.bz2
translated-content-1a844e943b03013351395511ae0c73a37081725f.zip
Dischariging Time [es] (#3971)
* Dischariging Time [es] Related #3927 number 4 * Add cw118 suggestions * Add el subtitulo Resultado * Update files/es/web/api/batterymanager/dischargingtime/index.md Co-authored-by: Sergio.valera <67393791+sergiogval@users.noreply.github.com> Co-authored-by: Sergio.valera <67393791+sergiogval@users.noreply.github.com>
Diffstat (limited to 'files/es/web/api')
-rw-r--r--files/es/web/api/batterymanager/dischargingtime/index.html29
-rw-r--r--files/es/web/api/batterymanager/dischargingtime/index.md70
2 files changed, 70 insertions, 29 deletions
diff --git a/files/es/web/api/batterymanager/dischargingtime/index.html b/files/es/web/api/batterymanager/dischargingtime/index.html
deleted file mode 100644
index 4cc79f0b9d..0000000000
--- a/files/es/web/api/batterymanager/dischargingtime/index.html
+++ /dev/null
@@ -1,29 +0,0 @@
----
-title: BatteryManager.dischargingTime
-slug: Web/API/BatteryManager/dischargingTime
-tags:
- - API
- - Apps
- - Batería
- - Battery
- - Firefox OS
- - Gecko DOM Reference
- - WebAPI
- - aplicaciones
-translation_of: Web/API/BatteryManager/dischargingTime
----
-<p>{{ ApiRef() }}</p>
-<h2 id="Summary" name="Summary">Resumen</h2>
-<p>Indíca la cantidad de tiempo, en segundos, que restan antes de que la batería se descargue completamente.</p>
-<h2 id="Syntax" name="Syntax">Sintaxis</h2>
-<pre class="syntaxbox">var <em>time</em> = navigator.battery.dischargingTime</pre>
-<p>Valor de retorno, <code>time</code> es el tiempo restante en segundos antes que la batería esté completamente descargada y el sistema se suspenda. Este valor es <span style="line-height: inherit;"><a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity" title="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity">Infinity</a> si la batería se está cargando en vez de descargando, o si el sistema es incapaz de calcular el tiempo de descarga (o si no hay batería)</span></p>
-<h2 id="Specifications">Specifications</h2>
-<p>{{page("/en-US/docs/Web/API/BatteryManager","Specifications")}}</p>
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-<p>{{page("/en-US/docs/Web/API/BatteryManager","Browser_compatibility")}}</p>
-<h2 id="See_also">See also</h2>
-<ul>
- <li>{{domxref("BatteryManager")}}</li>
- <li>{{domxref("window.navigator.battery","navigator.battery")}}</li>
-</ul>
diff --git a/files/es/web/api/batterymanager/dischargingtime/index.md b/files/es/web/api/batterymanager/dischargingtime/index.md
new file mode 100644
index 0000000000..f9534a5fd3
--- /dev/null
+++ b/files/es/web/api/batterymanager/dischargingtime/index.md
@@ -0,0 +1,70 @@
+---
+title: BatteryManager.dischargingTime
+slug: Web/API/BatteryManager/dischargingTime
+tags:
+ - API
+ - Apps
+ - Batería
+ - Battery
+ - Firefox OS
+ - Gecko DOM Reference
+ - WebAPI
+ - aplicaciones
+translation_of: Web/API/BatteryManager/dischargingTime
+browser-compat: api.BatteryManager.dischargingTime
+---
+{{deprecated_header}}{{APIRef("Battery API")}}
+
+Indíca la cantidad de tiempo, en segundos,
+que restan antes de que la batería se descargue completamente.
+
+> **Nota:** Incluso si el tiempo devuelto es exacto al segundo, los navegadores los redondean a un intervalo más alto (típicamente a los 15 minutos más cercanos) por razones de privacidad.
+
+## Sintaxis
+
+```js
+var time = battery.dischargingTime;
+```
+
+Valor de retorno, `time` es el tiempo restante en segundos antes que la `battery`,
+que es un objeto {{domxref("BatteryManager")}},
+esté completamente descargada y el sistema se suspenda.
+Este valor es [`Infinity`](/es/docs/Web/JavaScript/Reference/Global_Objects/Infinity)
+Si la batería se está cargando en vez de descargando,
+o si el sistema es incapaz de calcular el tiempo de descarga.
+
+## Ejemplo
+
+### Contenido HTML
+
+```html
+<div id="dischargingTime">(tiempo de descarga desconocido)</div>
+```
+
+### Contenido JavaScript
+
+```js
+navigator.getBattery().then(function(battery) {
+ var time = battery.dischargingTime;
+
+ document.querySelector("#dischargingTime").textContent = battery.dischargingTime;
+});
+```
+
+### Resultado
+
+{{EmbedLiveSample('', '100%', 30)}}
+
+## Especificaciones
+
+{{Specifications}}
+
+## Compatibilidad del navegador
+
+{{Compat}}
+
+## Ver también
+
+- {{domxref("BatteryManager")}}
+- {{domxref("Navigator.getBattery")}}
+