You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2019/06/19 10:38:23 UTC

[cordova-plugin-network-information] 01/02: docs: remove outdated translations

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-plugin-network-information.git

commit 24e50f810eeaaf2e41babb2e15fad7cff1186713
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Wed Jun 19 12:37:53 2019 +0200

    docs: remove outdated translations
---
 doc/de/README.md | 190 -------------------------------------------------------
 doc/de/index.md  | 186 -----------------------------------------------------
 doc/es/README.md | 190 -------------------------------------------------------
 doc/es/index.md  | 186 -----------------------------------------------------
 doc/fr/README.md | 188 ------------------------------------------------------
 doc/fr/index.md  | 184 -----------------------------------------------------
 doc/it/README.md | 190 -------------------------------------------------------
 doc/it/index.md  | 186 -----------------------------------------------------
 doc/ja/README.md | 190 -------------------------------------------------------
 doc/ja/index.md  | 186 -----------------------------------------------------
 doc/ko/README.md | 190 -------------------------------------------------------
 doc/ko/index.md  | 186 -----------------------------------------------------
 doc/pl/README.md | 190 -------------------------------------------------------
 doc/pl/index.md  | 186 -----------------------------------------------------
 doc/ru/index.md  | 182 ----------------------------------------------------
 doc/zh/README.md | 190 -------------------------------------------------------
 doc/zh/index.md  | 186 -----------------------------------------------------
 17 files changed, 3186 deletions(-)

diff --git a/doc/de/README.md b/doc/de/README.md
deleted file mode 100644
index f6292b2..0000000
--- a/doc/de/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-Dieses Plugin stellt eine Implementierung einer alten Version der [Netzwerk-Informationen-API](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/). Es werden Informationen über das Gerät Mobilfunk und Wifi-Anschluss, und ob das Gerät über eine Internetverbindung verfügt.
-
-## Installation
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Unterstützte Plattformen
-
-  * Amazon Fire OS
-  * Android
-  * BlackBerry 10
-  * Browser
-  * iOS
-  * Windows Phone 7 und 8
-  * Tizen
-  * Windows
-  * Firefox OS
-
-# Connection
-
-> Das `connection` Objekt, verfügbar gemachten über `navigator.connection`, enthält Informationen über die Mobilfunk- und Wi-Fi-Verbindung des Gerätes.
-
-## Eigenschaften
-
-  * connection.type
-
-## Konstanten
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-Diese Eigenschaft bietet eine schnelle Möglichkeit, um den Netzwerkverbindungsstatus und die Art der Verbindung zu bestimmen.
-
-### Kurzes Beispiel
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API Änderung
-
-Bis Cordova 2.3.0 wurde auf das `Connection` Objekt über `navigator.network.connection` zugegriffen, danach wurde der Zugriff auf `navigator.connection` geändert, um der W3C-Spezifikation zu entsprechen. Es steht immer noch an seiner ursprünglichen Stelle, aber ist veraltet und wird schliesslich entfernt.
-
-### iOS Macken
-
-  * iOS kann Mobilfunknetz Verbindungstyp nicht erkennen. 
-      * `navigator.connection.type`auf festgelegt ist `Connection.CELL` für alle Handy-Daten.
-
-### Windows Phone Macken
-
-  * Wenn im Emulator ausgeführt wird, erkennt immer `navigator.connection.type` als`Connection.UNKNOWN`.
-
-  * Windows Phone kann Mobilfunknetz Verbindungstyp nicht erkennen.
-    
-      * `navigator.connection.type`auf festgelegt ist `Connection.CELL` für alle Handy-Daten.
-
-### Windows-Eigenheiten
-
-  * Wenn im Telefon 8.1 Emulator ausgeführt wird, erkennt immer `navigator.connection.type` als `Connection.ETHERNET`.
-
-### Tizen Macken
-
-  * Tizen kann nur ein WiFi oder Mobilfunkverbindung erkennen. 
-      * `Navigator.Connection.Type` ist für alle Handy-Daten auf `Connection.CELL_2G` festgelegt.
-
-### Firefox OS Macken
-
-  * Firefox-OS kann Mobilfunknetz Verbindungstyp nicht erkennen. 
-      * `navigator.connection.type`auf festgelegt ist `Connection.CELL` für alle Handy-Daten.
-
-### Browser-Eigenheiten
-
-  * Browser kann die Art der Netzwerkverbindung nicht erkennen. `navigator.connection.type` ist immer auf `Connection.UNKNOWN` beim online gesetzt.
-
-# Netzwerk-Veranstaltungen
-
-## offline
-
-Das Ereignis wird ausgelöst, wenn eine Anwendung offline geht, und das Gerät nicht mit dem Internet verbunden ist.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Details
-
-Das `offline` -Ereignis wird ausgelöst, wenn ein bereits angeschlossenes Gerät eine Netzwerkverbindung verliert, so dass eine Anwendung nicht mehr auf das Internet zugreifen kann. Es stützt sich auf die gleichen Informationen wie die Verbindung-API und wird ausgelöst, wenn der Wert des `connection.type` wird`NONE`.
-
-Anwendungen sollten in der Regel verwenden `document.addEventListener` einmal einen Ereignis-Listener hinzufügen das `deviceready` -Ereignis ausgelöst.
-
-### Kurzes Beispiel
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS Macken
-
-Beim ersten Start dauert das erste offline-Event (falls zutreffend) mindestens eine Sekunde zu schießen.
-
-### Windows Phone 7 Macken
-
-Bei der Ausführung im Emulator, der `connection.status` ist immer unbekannt, so dass dieses Ereignis *nicht* Feuer.
-
-### Windows Phone 8 Macken
-
-Der Emulator meldet den Verbindungstyp als `Cellular` , die wird nicht geändert, so dass das Ereignis *nicht* Feuer.
-
-## online
-
-Dieses Ereignis wird ausgelöst, wenn eine Anwendung online geht, und das Gerät wird mit dem Internet verbunden.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Details
-
-Das `online` -Ereignis wird ausgelöst, wenn ein zuvor unverbundenen Gerät eine Netzwerkverbindung zu einem Anwendung Zugriff auf das Internet empfängt. Es stützt sich auf die gleichen Informationen wie die Verbindung-API und wird ausgelöst, wenn die `connection.type` ändert sich von `NONE` auf einen anderen Wert.
-
-Anwendungen sollten in der Regel verwenden `document.addEventListener` einmal einen Ereignis-Listener hinzufügen das `deviceready` -Ereignis ausgelöst.
-
-### Kurzes Beispiel
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS Macken
-
-Beim ersten Start die erste `online` Ereignis (falls zutreffend) dauert mindestens eine Sekunde vor dem Feuer `connection.type` ist`UNKNOWN`.
-
-### Windows Phone 7 Macken
-
-Bei der Ausführung im Emulator, der `connection.status` ist immer unbekannt, so dass dieses Ereignis *nicht* Feuer.
-
-### Windows Phone 8 Macken
-
-Der Emulator meldet den Verbindungstyp als `Cellular` , die wird nicht geändert, so dass Ereignisse *nicht* Feuer.
\ No newline at end of file
diff --git a/doc/de/index.md b/doc/de/index.md
deleted file mode 100644
index 537328a..0000000
--- a/doc/de/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-Dieses Plugin stellt eine Implementierung einer alten Version der [Netzwerk-Informationen-API][1]. Es werden Informationen über das Gerät Mobilfunk und Wifi-Anschluss, und ob das Gerät über eine Internetverbindung verfügt.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## Installation
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Unterstützte Plattformen
-
-*   Amazon Fire OS
-*   Android
-*   BlackBerry 10
-*   Browser
-*   iOS
-*   Windows Phone 7 und 8
-*   Tizen
-*   Windows
-*   Firefox OS
-
-# Connection
-
-> Das `connection` Objekt, verfügbar gemachten über `navigator.connection`, enthält Informationen über die Mobilfunk- und Wi-Fi-Verbindung des Gerätes.
-
-## Eigenschaften
-
-*   connection.type
-
-## Konstanten
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-Diese Eigenschaft bietet eine schnelle Möglichkeit, um den Netzwerkverbindungsstatus und die Art der Verbindung zu bestimmen.
-
-### Kurzes Beispiel
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API Änderung
-
-Bis Cordova 2.3.0 wurde auf das `Connection` Objekt über `navigator.network.connection` zugegriffen, danach wurde der Zugriff auf `navigator.connection` geändert, um der W3C-Spezifikation zu entsprechen. Es steht immer noch an seiner ursprünglichen Stelle, aber ist veraltet und wird schliesslich entfernt.
-
-### iOS Macken
-
-*   iOS kann Mobilfunknetz Verbindungstyp nicht erkennen. 
-    *   `navigator.connection.type`auf festgelegt ist `Connection.CELL` für alle Handy-Daten.
-
-### Windows Phone Macken
-
-*   Wenn im Emulator ausgeführt wird, erkennt immer `navigator.connection.type` als`Connection.UNKNOWN`.
-
-*   Windows Phone kann Mobilfunknetz Verbindungstyp nicht erkennen.
-    
-    *   `navigator.connection.type`auf festgelegt ist `Connection.CELL` für alle Handy-Daten.
-
-### Windows-Eigenheiten
-
-*   Wenn im Telefon 8.1 Emulator ausgeführt wird, erkennt immer `navigator.connection.type` als `Connection.ETHERNET`.
-
-### Tizen Macken
-
-*   Tizen kann nur ein WiFi oder Mobilfunkverbindung erkennen. 
-    *   `Navigator.Connection.Type` ist für alle Handy-Daten auf `Connection.CELL_2G` festgelegt.
-
-### Firefox OS Macken
-
-*   Firefox-OS kann Mobilfunknetz Verbindungstyp nicht erkennen. 
-    *   `navigator.connection.type`auf festgelegt ist `Connection.CELL` für alle Handy-Daten.
-
-# Netzwerk-Veranstaltungen
-
-## offline
-
-Das Ereignis wird ausgelöst, wenn eine Anwendung offline geht, und das Gerät nicht mit dem Internet verbunden ist.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Details
-
-Das `offline` -Ereignis wird ausgelöst, wenn ein bereits angeschlossenes Gerät eine Netzwerkverbindung verliert, so dass eine Anwendung nicht mehr auf das Internet zugreifen kann. Es stützt sich auf die gleichen Informationen wie die Verbindung-API und wird ausgelöst, wenn der Wert des `connection.type` wird`NONE`.
-
-Anwendungen sollten in der Regel verwenden `document.addEventListener` einmal einen Ereignis-Listener hinzufügen das `deviceready` -Ereignis ausgelöst.
-
-### Kurzes Beispiel
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS Macken
-
-Beim ersten Start dauert das erste offline-Event (falls zutreffend) mindestens eine Sekunde zu schießen.
-
-### Windows Phone 7 Macken
-
-Bei der Ausführung im Emulator, der `connection.status` ist immer unbekannt, so dass dieses Ereignis *nicht* Feuer.
-
-### Windows Phone 8 Macken
-
-Der Emulator meldet den Verbindungstyp als `Cellular` , die wird nicht geändert, so dass das Ereignis *nicht* Feuer.
-
-## online
-
-Dieses Ereignis wird ausgelöst, wenn eine Anwendung online geht, und das Gerät wird mit dem Internet verbunden.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Details
-
-Das `online` -Ereignis wird ausgelöst, wenn ein zuvor unverbundenen Gerät eine Netzwerkverbindung zu einem Anwendung Zugriff auf das Internet empfängt. Es stützt sich auf die gleichen Informationen wie die Verbindung-API und wird ausgelöst, wenn die `connection.type` ändert sich von `NONE` auf einen anderen Wert.
-
-Anwendungen sollten in der Regel verwenden `document.addEventListener` einmal einen Ereignis-Listener hinzufügen das `deviceready` -Ereignis ausgelöst.
-
-### Kurzes Beispiel
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS Macken
-
-Beim ersten Start die erste `online` Ereignis (falls zutreffend) dauert mindestens eine Sekunde vor dem Feuer `connection.type` ist`UNKNOWN`.
-
-### Windows Phone 7 Macken
-
-Bei der Ausführung im Emulator, der `connection.status` ist immer unbekannt, so dass dieses Ereignis *nicht* Feuer.
-
-### Windows Phone 8 Macken
-
-Der Emulator meldet den Verbindungstyp als `Cellular` , die wird nicht geändert, so dass Ereignisse *nicht* Feuer.
diff --git a/doc/es/README.md b/doc/es/README.md
deleted file mode 100644
index 4e30593..0000000
--- a/doc/es/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-Este plugin proporciona una implementación de una versión antigua de la [Red de información API](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/). Proporciona información acerca del dispositivo móvil y conexión wifi, y si el dispositivo tiene una conexión a internet.
-
-## Instalación
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Plataformas soportadas
-
-  * Amazon fire OS
-  * Android
-  * BlackBerry 10
-  * Explorador
-  * iOS
-  * Windows Phone 7 y 8
-  * Tizen
-  * Windows
-  * Firefox OS
-
-# Connection
-
-> El objeto de `connection`, expuesto a través de `navigator.connection`, proporciona información sobre conexión celular y wifi del dispositivo.
-
-## Propiedades
-
-  * connection.type
-
-## Constantes
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-Esta propiedad ofrece una forma rápida de determinar el estado de conexión de red del dispositivo y el tipo de conexión.
-
-### Ejemplo rápido
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Cambio de API
-
-Hasta Cordova 2.3.0, el objeto de `conexión` era acceder a través de `navigator.network.connection`, tras lo cual fue cambiada a `navigator.connection` para que coincida con la especificación del W3C. Sigue estando disponible en su ubicación original, pero es obsoleto y eventualmente desaparecerá.
-
-### iOS rarezas
-
-  * iOS no puede detectar el tipo de conexión de red celular. 
-      * `navigator.connection.type` está establecido en `Connection.CELL` para todos los datos de celulares.
-
-### Windows Phone rarezas
-
-  * Cuando se ejecuta en el emulador, siempre detecta `navigator.connection.type` como `Connection.UNKNOWN`.
-
-  * Windows Phone no puede detectar el tipo de conexión de red celular.
-    
-      * `navigator.connection.type` está establecido en `Connection.CELL` para todos los datos de celulares.
-
-### Windows rarezas
-
-  * Cuando se ejecuta en el emulador de teléfono 8.1, siempre detecta `navigator.connection.type` como`Connection.ETHERNET`.
-
-### Rarezas Tizen
-
-  * Tizen sólo puede detectar un Wi-Fi o conexión celular. 
-      * `navigator.connection.type`se establece en `Connection.CELL_2G` para todos los datos celulares.
-
-### Firefox OS rarezas
-
-  * Firefox OS no puede detectar el tipo de conexión de red celular. 
-      * `navigator.connection.type` está establecido en `Connection.CELL` para todos los datos de celulares.
-
-### Navegador rarezas
-
-  * Navegador no puede detectar el tipo de conexión de red. `Navigator.Connection.Type` se encuentra siempre a `Connection.UNKNOWN` cuando en línea.
-
-# Eventos relacionados con la red
-
-## offline
-
-El evento se desencadena cuando una aplicación está desconectada, y el dispositivo no está conectado a Internet.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Detalles
-
-El evento `offline` se desencadena cuando un dispositivo conectado previamente pierde una conexión de red para que una aplicación no puede acceder a Internet. Se basa en la misma información que la API de conexión y cuando se dispara el valor del `connection.type` se convierte`NONE`.
-
-Las aplicaciones normalmente deben utilizar `document.addEventListener` para conectar un detector de eventos una vez que se desencadene el evento `deviceready`.
-
-### Ejemplo rápido
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS rarezas
-
-Durante el arranque inicial, el primer evento offline (si es aplicable) tarda al menos un segundo en fuego.
-
-### Windows Phone 7 rarezas
-
-Cuando se ejecuta en el emulador, la `connection.status` siempre es desconocido, así que este evento no se ** fuego.
-
-### Windows Phone 8 rarezas
-
-El emulador informa el tipo de conexión como `celular`, que no cambia, así que el evento *no se* fuego.
-
-## online
-
-Este evento se desencadena cuando una aplicación va en línea, y el dispositivo se conecta a Internet.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Detalles
-
-El evento `online` se desencadena cuando un dispositivo previamente inconexos recibe una conexión de red para permitir un acceso a las aplicaciones para Internet. Se basa en la misma información que la API de conexión y se desencadena cuando el `connection.type` cambia de `ninguno` a cualquier otro valor.
-
-Las aplicaciones normalmente deben utilizar `document.addEventListener` para conectar un detector de eventos una vez que se desencadene el evento `deviceready`.
-
-### Ejemplo rápido
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS rarezas
-
-Durante el arranque inicial, el primer evento `en línea` (si procede) al menos toma un segundo para disparar, antes de que `connection.type` es `desconocido`.
-
-### Windows Phone 7 rarezas
-
-Cuando se ejecuta en el emulador, la `connection.status` siempre es desconocido, así que este evento no se ** fuego.
-
-### Windows Phone 8 rarezas
-
-El emulador, informa el tipo de conexión como `Cellular` , que no cambia, así que se lo eventos *no* fuego.
\ No newline at end of file
diff --git a/doc/es/index.md b/doc/es/index.md
deleted file mode 100644
index 65158ef..0000000
--- a/doc/es/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-Este plugin proporciona una implementación de una versión antigua de la [Red de información API][1]. Proporciona información acerca del dispositivo móvil y conexión wifi, y si el dispositivo tiene una conexión a internet.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## Instalación
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Plataformas soportadas
-
-*   Amazon fire OS
-*   Android
-*   BlackBerry 10
-*   Explorador
-*   iOS
-*   Windows Phone 7 y 8
-*   Tizen
-*   Windows
-*   Firefox OS
-
-# Conexión
-
-> El objeto de `connection`, expuesto a través de `navigator.connection`, proporciona información sobre conexión celular y wifi del dispositivo.
-
-## Propiedades
-
-*   connection.type
-
-## Constantes
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_4G
-*   Connection.CELL_3G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-Esta propiedad ofrece una forma rápida de determinar el estado de conexión de red del dispositivo y el tipo de conexión.
-
-### Ejemplo rápido
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Cambio de API
-
-Hasta Cordova 2.3.0, el objeto de `conexión` era acceder a través de `navigator.network.connection`, tras lo cual fue cambiada a `navigator.connection` para que coincida con la especificación del W3C. Sigue estando disponible en su ubicación original, pero es obsoleto y eventualmente desaparecerá.
-
-### iOS rarezas
-
-*   iOS no puede detectar el tipo de conexión de red celular. 
-    *   `navigator.connection.type` está establecido en `Connection.CELL` para todos los datos de celulares.
-
-### Windows Phone rarezas
-
-*   Cuando se ejecuta en el emulador, siempre detecta `navigator.connection.type` como `Connection.UNKNOWN`.
-
-*   Windows Phone no puede detectar el tipo de conexión de red celular.
-    
-    *   `navigator.connection.type` está establecido en `Connection.CELL` para todos los datos de celulares.
-
-### Windows rarezas
-
-*   Cuando se ejecuta en el emulador de teléfono 8.1, siempre detecta `navigator.connection.type` como`Connection.ETHERNET`.
-
-### Rarezas Tizen
-
-*   Tizen sólo puede detectar un Wi-Fi o conexión celular. 
-    *   `navigator.connection.type`se establece en `Connection.CELL_2G` para todos los datos celulares.
-
-### Firefox OS rarezas
-
-*   Firefox OS no puede detectar el tipo de conexión de red celular. 
-    *   `navigator.connection.type`se establece en `Connection.CELL` para todos los datos celulares.
-
-# Eventos relacionados con la red
-
-## offline
-
-El evento se desencadena cuando una aplicación está desconectada, y el dispositivo no está conectado a Internet.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Detalles
-
-El evento `offline` se desencadena cuando un dispositivo conectado previamente pierde una conexión de red para que una aplicación no puede acceder a Internet. Se basa en la misma información que la API de conexión y cuando se dispara el valor del `connection.type` se convierte`NONE`.
-
-Las aplicaciones normalmente deben utilizar `document.addEventListener` para conectar un detector de eventos una vez que se desencadene el evento `deviceready`.
-
-### Ejemplo rápido
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS rarezas
-
-Durante el arranque inicial, el primer evento offline (si es aplicable) tarda al menos un segundo en fuego.
-
-### Windows Phone 7 rarezas
-
-Cuando se ejecuta en el emulador, la `connection.status` siempre es desconocido, así que este evento no se ** fuego.
-
-### Windows Phone 8 rarezas
-
-El emulador informa el tipo de conexión como `celular`, que no cambia, así que el evento *no se* fuego.
-
-## online
-
-Este evento se desencadena cuando una aplicación va en línea, y el dispositivo se conecta a Internet.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Detalles
-
-El evento `online` se desencadena cuando un dispositivo previamente inconexos recibe una conexión de red para permitir un acceso a las aplicaciones para Internet. Se basa en la misma información que la API de conexión y se desencadena cuando el `connection.type` cambia de `ninguno` a cualquier otro valor.
-
-Las aplicaciones normalmente deben utilizar `document.addEventListener` para conectar un detector de eventos una vez que se desencadene el evento `deviceready`.
-
-### Ejemplo rápido
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS rarezas
-
-Durante el arranque inicial, el primer evento `en línea` (si procede) al menos toma un segundo para disparar, antes de que `connection.type` es `desconocido`.
-
-### Windows Phone 7 rarezas
-
-Cuando se ejecuta en el emulador, la `connection.status` siempre es desconocido, así que este evento no se ** fuego.
-
-### Windows Phone 8 rarezas
-
-El emulador, informa el tipo de conexión como `Cellular` , que no cambia, así que se lo eventos *no* fuego.
diff --git a/doc/fr/README.md b/doc/fr/README.md
deleted file mode 100644
index 8f2b82c..0000000
--- a/doc/fr/README.md
+++ /dev/null
@@ -1,188 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-Ce plugin fournit une implémentation d'une ancienne version de l' [API Information Network](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/). Il fournit des informations sur l'appareil cellulaire et connexion wifi, et si l'appareil dispose d'une connexion internet.
-
-## Installation
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Plates-formes supportées
-
-  * Amazon Fire OS
-  * Android
-  * BlackBerry 10
-  * Navigateur
-  * iOS
-  * Windows Phone 7 et 8
-  * Paciarelli
-  * Windows
-  * Firefox OS
-
-# Connexion
-
-> L'objet `connection`, disponible via `navigator.connection`, fournit des informations sur la connection cellulaire/wifi de l'appareil.
-
-## Propriétés
-
-  * connection.type
-
-## Constantes
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-Cette propriété offre un moyen rapide pour déterminer l'état et le type de la connexion réseau de l'appareil.
-
-### Exemple court
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Changement d'API
-
-Jusqu'à Cordova 2.3.0, l'objet `Connection` était accessible via `navigator.network.connection` ; ceci a été changé pour `navigator.connection` afin de concorder avec la spécification du W3C. L'accès est toujours possible à l'emplacement d'origine, mais est considéré comme obsolète et sera bientôt supprimé.
-
-### Notes au sujet d'iOS
-
-  * iOS ne peut pas détecter le type de connexion au réseau cellulaire. 
-      * `navigator.connection.type`a la valeur `Connection.CELL` pour toutes les données cellulaires.
-
-### Windows Phone Quirks
-
-  * Lors de l'exécution dans l'émulateur, détecte toujours `navigator.connection.type` comme`Connection.UNKNOWN`.
-
-  * Windows Phone ne peut pas détecter le type de connexion au réseau cellulaire.
-    
-      * `navigator.connection.type`a la valeur `Connection.CELL` pour toutes les données cellulaires.
-
-### Bizarreries de Windows
-
-  * Lors de l'exécution dans l'émulateur de téléphone 8.1, `Connection.ETHERNET` détecte toujours `navigator.connection.type`.
-
-### Bizarreries de paciarelli
-
-  * Paciarelli ne peut détecter une connexion cellulaire ou le WiFi. 
-      * `navigator.connection.type` a la valeur `Connection.CELL_2G` pour toutes les données cellulaires.
-
-### Firefox OS Quirks
-
-  * Firefox OS ne peut pas détecter le type de connexion au réseau cellulaire. 
-      * `navigator.connection.type`a la valeur `Connection.CELL` pour toutes les données cellulaires.
-
-### Bizarreries navigateur
-
-  * Navigateur ne peut pas détecter le type de connexion réseau. `navigator.connection.type` est toujours définie sur `Connection.UNKNOWN` en ligne.
-
-# Événements liés au réseau
-
-## offline
-
-L'évènement se déclenche lorsqu'une application se déconnecte, quand l'appareil n'est pas connecté à Internet.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Détails
-
-L'évènement `offline` se déclenche lorsqu'un appareil précédemment connecté perd sa connexion au réseau, empêchant ainsi l'application d'accéder à Internet. Il s'appuie sur les mêmes informations que l'API de connexion et se déclenche lorsque la valeur de `connection.type` devient`NONE`.
-
-Les applications devraient en général utiliser `document.addEventListener` pour attacher un écouteur d'évènements, une fois l'évènement `deviceready` déclenché.
-
-### Exemple court
-
-    document.addEventListener (« hors ligne », onOffline, false) ;
-    
-    function onOffline() {/ / gestion de l'événement en mode hors connexion}
-    
-
-### Notes au sujet d'iOS
-
-Lors du démarrage initial, le déclenchement du premier évènement offline (si applicable) prend au moins une seconde.
-
-### Windows Phone 7 Quirks
-
-Lors de l'exécution dans l'émulateur, le `connection.status` est toujours inconnu, ainsi cet événement ne fait *pas* de feu.
-
-### Notes au sujet de Windows Phone 8
-
-L'émulateur signale le type de connexion comme `Cellular`, type qui ne change jamais, ainsi l'évènement n'est *pas* déclenché.
-
-## online
-
-L'évènement se déclenche lorsqu'une application se connecte, quand l'appareil est connecté à Internet.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Détails
-
-L'évènement `online` se déclenche lorsqu'un appareil précédemment non-connecté se connecte au réseau, permettant ainsi à l'application d'accéder à Internet. Il s'appuie sur les mêmes informations que l'API de connexion et se déclenche quand le `connection.type` passe de `NONE` à une autre valeur.
-
-Les applications devraient en général utiliser `document.addEventListener` pour attacher un écouteur d'évènements, une fois l'évènement `deviceready` déclenché.
-
-### Exemple court
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### Notes au sujet d'iOS
-
-Lors du démarrage initial, le déclenchement du premier évènement `online` (si applicable) prend au moins une seconde avant quoi `connection.type` vaut `UNKNOWN`.
-
-### Windows Phone 7 Quirks
-
-Lors de l'exécution dans l'émulateur, le `connection.status` est toujours inconnu, ainsi cet événement ne fait *pas* de feu.
-
-### Notes au sujet de Windows Phone 8
-
-L'émulateur signale le type de connexion comme `Cellular` , qui ne change pas, aussi des événements ne fait *pas* de feu.
\ No newline at end of file
diff --git a/doc/fr/index.md b/doc/fr/index.md
deleted file mode 100644
index e49c5d5..0000000
--- a/doc/fr/index.md
+++ /dev/null
@@ -1,184 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-Ce plugin fournit une implémentation d'une ancienne version de l' [API Information Network][1]. Il fournit des informations sur l'appareil cellulaire et connexion wifi, et si l'appareil dispose d'une connexion internet.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## Installation
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Plates-formes prises en charge
-
-*   Amazon Fire OS
-*   Android
-*   BlackBerry 10
-*   Navigateur
-*   iOS
-*   Windows Phone 7 et 8
-*   Paciarelli
-*   Windows
-*   Firefox OS
-
-# Connexion
-
-> L'objet `connection`, disponible via `navigator.connection`, fournit des informations sur la connection cellulaire/wifi de l'appareil.
-
-## Propriétés
-
-*   connection.type
-
-## Constantes
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-Cette propriété offre un moyen rapide pour déterminer l'état et le type de la connexion réseau de l'appareil.
-
-### Petit exemple
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Changement d'API
-
-Jusqu'à Cordova 2.3.0, l'objet `Connection` était accessible via `navigator.network.connection` ; ceci a été changé pour `navigator.connection` afin de concorder avec la spécification du W3C. L'accès est toujours possible à l'emplacement d'origine, mais est considéré comme obsolète et sera bientôt supprimé.
-
-### iOS Quirks
-
-*   iOS ne peut pas détecter le type de connexion au réseau cellulaire. 
-    *   `navigator.connection.type`a la valeur `Connection.CELL` pour toutes les données cellulaires.
-
-### Windows Phone Quirks
-
-*   Lors de l'exécution dans l'émulateur, détecte toujours `navigator.connection.type` comme`Connection.UNKNOWN`.
-
-*   Windows Phone ne peut pas détecter le type de connexion au réseau cellulaire.
-    
-    *   `navigator.connection.type`a la valeur `Connection.CELL` pour toutes les données cellulaires.
-
-### Bizarreries de Windows
-
-*   Lors de l'exécution dans l'émulateur de téléphone 8.1, `Connection.ETHERNET` détecte toujours `navigator.connection.type`.
-
-### Bizarreries de paciarelli
-
-*   Paciarelli ne peut détecter une connexion cellulaire ou le WiFi. 
-    *   `navigator.connection.type` a la valeur `Connection.CELL_2G` pour toutes les données cellulaires.
-
-### Firefox OS Quirks
-
-*   Firefox OS ne peut pas détecter le type de connexion au réseau cellulaire. 
-    *   `navigator.connection.type` a la valeur `Connection.CELL` pour toutes les données cellulaires.
-
-# Événements liés au réseau
-
-## offline
-
-L'évènement se déclenche lorsqu'une application se déconnecte, quand l'appareil n'est pas connecté à Internet.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Détails
-
-L'évènement `offline` se déclenche lorsqu'un appareil précédemment connecté perd sa connexion au réseau, empêchant ainsi l'application d'accéder à Internet. Il s'appuie sur les mêmes informations que l'API de connexion et se déclenche lorsque la valeur de `connection.type` devient`NONE`.
-
-Les applications doivent généralement utiliser `document.addEventListener` pour attacher un écouteur d'événements une fois le `deviceready` événement se déclenche.
-
-### Exemple court
-
-    document.addEventListener (« hors ligne », onOffline, false) ;
-    
-    function onOffline() {/ / gestion de l'événement en mode hors connexion}
-    
-
-### Notes au sujet d'iOS
-
-Lors du démarrage initial, le déclenchement du premier évènement offline (si applicable) prend au moins une seconde.
-
-### Windows Phone 7 Quirks
-
-Lors de l'exécution dans l'émulateur, le `connection.status` est toujours inconnu, ainsi cet événement ne fait *pas* de feu.
-
-### Notes au sujet de Windows Phone 8
-
-L'émulateur signale le type de connexion comme `Cellular`, type qui ne change jamais, ainsi l'évènement n'est *pas* déclenché.
-
-## online
-
-L'évènement se déclenche lorsqu'une application se connecte, quand l'appareil est connecté à Internet.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Détails
-
-L'évènement `online` se déclenche lorsqu'un appareil précédemment non-connecté se connecte au réseau, permettant ainsi à l'application d'accéder à Internet. Il s'appuie sur les mêmes informations que l'API de connexion et se déclenche quand le `connection.type` passe de `NONE` à une autre valeur.
-
-Les applications doivent généralement utiliser `document.addEventListener` pour attacher un écouteur d'événements une fois le `deviceready` événement se déclenche.
-
-### Exemple court
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### Notes au sujet d'iOS
-
-Lors du démarrage initial, le déclenchement du premier évènement `online` (si applicable) prend au moins une seconde avant quoi `connection.type` vaut `UNKNOWN`.
-
-### Windows Phone 7 Quirks
-
-Lors de l'exécution dans l'émulateur, le `connection.status` est toujours inconnu, ainsi cet événement ne fait *pas* de feu.
-
-### Notes au sujet de Windows Phone 8
-
-L'émulateur signale le type de connexion comme `Cellular` , qui ne change pas, aussi des événements ne fait *pas* de feu.
diff --git a/doc/it/README.md b/doc/it/README.md
deleted file mode 100644
index f434359..0000000
--- a/doc/it/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-Questo plugin fornisce un'implementazione di una vecchia versione dell' [API di informazioni di rete](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/). Fornisce informazioni sul dispositivo cellulare e connessione wifi, e se il dispositivo dispone di una connessione internet.
-
-## Installazione
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Piattaforme supportate
-
-  * Amazon fuoco OS
-  * Android
-  * BlackBerry 10
-  * Browser
-  * iOS
-  * Windows Phone 7 e 8
-  * Tizen
-  * Windows
-  * Firefox OS
-
-# Connessione
-
-> Il `connection` oggetto, esposto tramite `navigator.connection` , fornisce informazioni sulla connessione wifi e cellulare del dispositivo.
-
-## Proprietà
-
-  * connection.type
-
-## Costanti
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-Questa proprietà offre un modo rapido per determinare stato della connessione di rete del dispositivo e il tipo di connessione.
-
-### Esempio rapido
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Cambiamento di API
-
-Fino a Cordova 2.3.0, il `Connection` oggetto era accessibile tramite `navigator.network.connection` , dopo che è stato cambiato in `navigator.connection` per abbinare la specifica W3C. È ancora disponibile nella sua posizione originale, ma è obsoleto e verrà rimosso alla fine.
-
-### iOS stranezze
-
-  * iOS non è possibile rilevare il tipo di connessione di rete cellulare. 
-      * `navigator.connection.type`è impostata su `Connection.CELL` per tutti i dati cellulare.
-
-### Stranezze di Windows Phone
-
-  * Quando è in esecuzione nell'emulatore, rileva sempre `navigator.connection.type` come`Connection.UNKNOWN`.
-
-  * Windows Phone non riesce a rilevare il tipo di connessione di rete cellulare.
-    
-      * `navigator.connection.type`è impostata su `Connection.CELL` per tutti i dati cellulare.
-
-### Stranezze di Windows
-
-  * Quando è in esecuzione nell'emulatore Phone 8.1, sempre rileva `navigator.connection.type` come `Connection.ETHERNET`.
-
-### Tizen stranezze
-
-  * Tizen può rilevare solo un WiFi o una connessione cellulare. 
-      * `navigator.connection.type` è impostata su `Connection.CELL_2G` per tutti i dati cellulare.
-
-### Firefox OS stranezze
-
-  * Sistema operativo Firefox non riesce a rilevare il tipo di connessione di rete cellulare. 
-      * `navigator.connection.type`è impostata su `Connection.CELL` per tutti i dati cellulare.
-
-### Stranezze browser
-
-  * Browser non è in grado di rilevare il tipo di connessione di rete. `navigator.connection.type` è sempre impostata su `Connection.UNKNOWN` quando si è online.
-
-# Eventi relativi alla rete
-
-## offline
-
-L'evento viene generato quando un'applicazione passa alla modalità offline, e il dispositivo non è connesso a Internet.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Dettagli
-
-Il `offline` evento viene generato quando un dispositivo precedentemente connesso perde una connessione di rete in modo che un'applicazione non è più possibile accedere a Internet. Esso si basa sulle stesse informazioni come l'API di connessione e viene generato quando il valore di `connection.type` diventa`NONE`.
-
-Applicazioni in genere è necessario utilizzare `document.addEventListener` per fissare un listener di eventi una volta il `deviceready` evento incendi.
-
-### Esempio rapido
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS stranezze
-
-Durante l'avvio iniziale, il primo evento offline (se applicabile) richiede almeno un secondo al fuoco.
-
-### Windows Phone 7 capricci
-
-Quando è in esecuzione nell'emulatore, il `connection.status` è sempre sconosciuto, così fa di questo evento *non* fuoco.
-
-### Windows Phone 8 stranezze
-
-L'emulatore riporta il tipo di connessione come `Cellular` , che non cambia, così fa l'evento *non* fuoco.
-
-## online
-
-Questo evento viene generato quando un'applicazione va online, e il dispositivo diventa collegato a Internet.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Dettagli
-
-Il `online` evento viene generato quando un dispositivo precedentemente scollegato riceve una connessione di rete per consentire un'accesso di applicazione a Internet. Esso si basa sulle stesse informazioni come l'API di connessione e viene attivato quando il `connection.type` cambia da `NONE` a qualsiasi altro valore.
-
-Applicazioni in genere è necessario utilizzare `document.addEventListener` per fissare un listener di eventi una volta il `deviceready` evento incendi.
-
-### Esempio rapido
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS stranezze
-
-Durante l'avvio iniziale, il primo `online` evento (se applicabile) richiede almeno un secondo al fuoco, prima che `connection.type` è`UNKNOWN`.
-
-### Windows Phone 7 capricci
-
-Quando è in esecuzione nell'emulatore, il `connection.status` è sempre sconosciuto, così fa di questo evento *non* fuoco.
-
-### Windows Phone 8 stranezze
-
-L'emulatore riporta il tipo di connessione come `Cellular` , che non cambia, quindi, non gli eventi *non* a fuoco.
\ No newline at end of file
diff --git a/doc/it/index.md b/doc/it/index.md
deleted file mode 100644
index e191719..0000000
--- a/doc/it/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-Questo plugin fornisce un'implementazione di una vecchia versione dell' [API di informazioni di rete][1]. Fornisce informazioni sul dispositivo cellulare e connessione wifi, e se il dispositivo dispone di una connessione internet.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## Installazione
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Piattaforme supportate
-
-*   Amazon fuoco OS
-*   Android
-*   BlackBerry 10
-*   Browser
-*   iOS
-*   Windows Phone 7 e 8
-*   Tizen
-*   Windows
-*   Firefox OS
-
-# Connessione
-
-> Il `connection` oggetto, esposto tramite `navigator.connection` , fornisce informazioni sulla connessione wifi e cellulare del dispositivo.
-
-## Proprietà
-
-*   connection.type
-
-## Costanti
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-Questa proprietà offre un modo rapido per determinare stato della connessione di rete del dispositivo e il tipo di connessione.
-
-### Esempio rapido
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Cambiamento di API
-
-Fino a Cordova 2.3.0, il `Connection` oggetto era accessibile tramite `navigator.network.connection` , dopo che è stato cambiato in `navigator.connection` per abbinare la specifica W3C. È ancora disponibile nella sua posizione originale, ma è obsoleto e verrà rimosso alla fine.
-
-### iOS stranezze
-
-*   iOS non è possibile rilevare il tipo di connessione di rete cellulare. 
-    *   `navigator.connection.type`è impostata su `Connection.CELL` per tutti i dati cellulare.
-
-### Stranezze di Windows Phone
-
-*   Quando è in esecuzione nell'emulatore, rileva sempre `navigator.connection.type` come`Connection.UNKNOWN`.
-
-*   Windows Phone non riesce a rilevare il tipo di connessione di rete cellulare.
-    
-    *   `navigator.connection.type`è impostata su `Connection.CELL` per tutti i dati cellulare.
-
-### Stranezze di Windows
-
-*   Quando è in esecuzione nell'emulatore Phone 8.1, sempre rileva `navigator.connection.type` come `Connection.ETHERNET`.
-
-### Tizen stranezze
-
-*   Tizen può rilevare solo un WiFi o una connessione cellulare. 
-    *   `navigator.connection.type` è impostata su `Connection.CELL_2G` per tutti i dati cellulare.
-
-### Firefox OS stranezze
-
-*   Sistema operativo Firefox non riesce a rilevare il tipo di connessione di rete cellulare. 
-    *   `navigator.connection.type`è impostata su `Connection.CELL` per tutti i dati cellulare.
-
-# Eventi relativi alla rete
-
-## offline
-
-L'evento viene generato quando un'applicazione passa alla modalità offline, e il dispositivo non è connesso a Internet.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Dettagli
-
-Il `offline` evento viene generato quando un dispositivo precedentemente connesso perde una connessione di rete in modo che un'applicazione non è più possibile accedere a Internet. Esso si basa sulle stesse informazioni come l'API di connessione e viene generato quando il valore di `connection.type` diventa`NONE`.
-
-Applicazioni in genere è necessario utilizzare `document.addEventListener` per fissare un listener di eventi una volta il `deviceready` evento incendi.
-
-### Esempio rapido
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS stranezze
-
-Durante l'avvio iniziale, il primo evento offline (se applicabile) richiede almeno un secondo al fuoco.
-
-### Windows Phone 7 capricci
-
-Quando è in esecuzione nell'emulatore, il `connection.status` è sempre sconosciuto, così fa di questo evento *non* fuoco.
-
-### Windows Phone 8 stranezze
-
-L'emulatore riporta il tipo di connessione come `Cellular` , che non cambia, così fa l'evento *non* fuoco.
-
-## online
-
-Questo evento viene generato quando un'applicazione va online, e il dispositivo diventa collegato a Internet.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Dettagli
-
-Il `online` evento viene generato quando un dispositivo precedentemente scollegato riceve una connessione di rete per consentire un'accesso di applicazione a Internet. Esso si basa sulle stesse informazioni come l'API di connessione e viene attivato quando il `connection.type` cambia da `NONE` a qualsiasi altro valore.
-
-Applicazioni in genere è necessario utilizzare `document.addEventListener` per fissare un listener di eventi una volta il `deviceready` evento incendi.
-
-### Esempio rapido
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS stranezze
-
-Durante l'avvio iniziale, il primo `online` evento (se applicabile) richiede almeno un secondo al fuoco, prima che `connection.type` è`UNKNOWN`.
-
-### Windows Phone 7 capricci
-
-Quando è in esecuzione nell'emulatore, il `connection.status` è sempre sconosciuto, così fa di questo evento *non* fuoco.
-
-### Windows Phone 8 stranezze
-
-L'emulatore riporta il tipo di connessione come `Cellular` , che non cambia, quindi, non gli eventi *non* a fuoco.
diff --git a/doc/ja/README.md b/doc/ja/README.md
deleted file mode 100644
index 797b741..0000000
--- a/doc/ja/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-このプラグインは、古いバージョンの[ネットワーク情報 API](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/)の実装を提供します。 デバイスの携帯電話や wifi 接続に関する情報を提供し、かどうか、デバイスがインターネットに接続します。
-
-## インストール
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## サポートされているプラットフォーム
-
-  * アマゾン火 OS
-  * アンドロイド
-  * ブラックベリー 10
-  * ブラウザー
-  * iOS
-  * Windows Phone 7 と 8
-  * Tizen
-  * Windows
-  * Firefox の OS
-
-# Connection
-
-> `connection`オブジェクトによって公開されて `navigator.connection` 、デバイスの携帯電話や wifi 接続に関する情報を提供します。
-
-## プロパティ
-
-  * connection.type
-
-## 定数
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-このプロパティはデバイスのネットワーク接続状態を確認する速い方法を提供し、接続の種類。
-
-### 簡単な例
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API の変更
-
-コルドバ 2.3.0、まで、 `Connection` 経由でアクセスされたオブジェクトが `navigator.network.connection` 、それに変更されましたが後 `navigator.connection` W3C の仕様に一致します。 それはまだ元の場所は廃止され、最終的に削除されます。
-
-### iOS の癖
-
-  * iOS は、携帯電話のネットワーク接続の種類を検出できません。 
-      * `navigator.connection.type`設定する `Connection.CELL` すべての携帯電話データの。
-
-### Windows Phone の癖
-
-  * エミュレーターで実行しているときを常に検出 `navigator.connection.type` として`Connection.UNKNOWN`.
-
-  * Windows Phone 携帯電話ネットワーク接続の種類を検出できません。
-    
-      * `navigator.connection.type`設定する `Connection.CELL` すべての携帯電話データの。
-
-### Windows の癖
-
-  * 電話 8.1 エミュレーターで実行する場合は、常に `Connection.ETHERNET` として `navigator.connection.type` を検出します.
-
-### Tizen の癖
-
-  * Tizen には、WiFi または携帯電話の接続だけを検出できます。 
-      * `navigator.connection.type` は、すべての携帯電話のデータを `Connection.CELL_2G` に設定されます。
-
-### Firefox OS 癖
-
-  * Firefox の OS は、携帯電話のネットワーク接続の種類を検出できません。 
-      * `navigator.connection.type`設定する `Connection.CELL` すべての携帯電話データの。
-
-### ブラウザーの癖
-
-  * ブラウザーは、ネットワーク接続の種類を検出できません。 `navigator.connection.type`は、 `Connection.UNKNOWN`オンライン時に常に設定されます。
-
-# ネットワーク関連のイベント
-
-## offline
-
-アプリケーションがオフラインになり、デバイスがインターネットに接続されていないときに発生します。
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### 詳細
-
-`offline`アプリケーションはもはや、インターネットにアクセスできるように、以前接続されたデバイスは、ネットワーク接続が失われたときに発生します。 接続 API と同じ情報に依存しており、火災時の値 `connection.type` になります。`NONE`.
-
-通常アプリケーションに使用する必要があります `document.addEventListener` 一度のイベント リスナーをアタッチし、 `deviceready` イベントが発生します。
-
-### 簡単な例
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS の癖
-
-初回起動時 (当てはまる場合) の最初のオフライン イベントは火に 1 秒以上かかります。
-
-### Windows Phone 7 の癖
-
-エミュレーターで実行しているとき、 `connection.status` は常に知られている、このイベントは*ない*火。
-
-### Windows Phone 8 癖
-
-エミュレーターと接続の種類のレポート `Cellular` は変化しません、イベントは*ない*火。
-
-## online
-
-アプリケーションは、オンラインになるし、デバイスがインターネットに接続するときに発生します。
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### 詳細
-
-`online`以前接続されていないデバイスが、インターネットへのアプリケーション アクセスを許可するネットワーク接続を受信するときに発生します。 接続 API と同じ情報に依存しており、場合に適用されます、 `connection.type` から変更 `NONE` 以外の値にします。
-
-通常アプリケーションに使用する必要があります `document.addEventListener` 一度のイベント リスナーをアタッチし、 `deviceready` イベントが発生します。
-
-### 簡単な例
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS の癖
-
-初回起動時には、最初の `online` (当てはまる場合) イベントが少なくとも火を前に第 2 `connection.type` は`UNKNOWN`.
-
-### Windows Phone 7 の癖
-
-エミュレーターで実行しているとき、 `connection.status` は常に知られている、このイベントは*ない*火。
-
-### Windows Phone 8 癖
-
-エミュレーターと接続の種類のレポート `Cellular` は変化しません、イベントは*ない*火。
\ No newline at end of file
diff --git a/doc/ja/index.md b/doc/ja/index.md
deleted file mode 100644
index 71b6f82..0000000
--- a/doc/ja/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-このプラグインは、古いバージョンの[ネットワーク情報 API][1]の実装を提供します。 デバイスの携帯電話や wifi 接続に関する情報を提供し、かどうか、デバイスがインターネットに接続します。
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## インストール
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## サポートされているプラットフォーム
-
-*   アマゾン火 OS
-*   アンドロイド
-*   ブラックベリー 10
-*   ブラウザー
-*   iOS
-*   Windows Phone 7 と 8
-*   Tizen
-*   Windows
-*   Firefox の OS
-
-# Connection
-
-> `connection`オブジェクトによって公開されて `navigator.connection` 、デバイスの携帯電話や wifi 接続に関する情報を提供します。
-
-## プロパティ
-
-*   connection.type
-
-## 定数
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-このプロパティはデバイスのネットワーク接続状態を確認する速い方法を提供し、接続の種類。
-
-### 簡単な例
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API の変更
-
-コルドバ 2.3.0、まで、 `Connection` 経由でアクセスされたオブジェクトが `navigator.network.connection` 、それに変更されましたが後 `navigator.connection` W3C の仕様に一致します。 それはまだ元の場所は廃止され、最終的に削除されます。
-
-### iOS の癖
-
-*   iOS は、携帯電話のネットワーク接続の種類を検出できません。 
-    *   `navigator.connection.type`設定する `Connection.CELL` すべての携帯電話データの。
-
-### Windows Phone の癖
-
-*   エミュレーターで実行しているときを常に検出 `navigator.connection.type` として`Connection.UNKNOWN`.
-
-*   Windows Phone 携帯電話ネットワーク接続の種類を検出できません。
-    
-    *   `navigator.connection.type`設定する `Connection.CELL` すべての携帯電話データの。
-
-### Windows の癖
-
-*   電話 8.1 エミュレーターで実行する場合は、常に `Connection.ETHERNET` として `navigator.connection.type` を検出します.
-
-### Tizen の癖
-
-*   Tizen には、WiFi または携帯電話の接続だけを検出できます。 
-    *   `navigator.connection.type` は、すべての携帯電話のデータを `Connection.CELL_2G` に設定されます。
-
-### Firefox OS 癖
-
-*   Firefox の OS は、携帯電話のネットワーク接続の種類を検出できません。 
-    *   `navigator.connection.type`設定する `Connection.CELL` すべての携帯電話データの。
-
-# ネットワーク関連のイベント
-
-## offline
-
-アプリケーションがオフラインになり、デバイスがインターネットに接続されていないときに発生します。
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### 詳細
-
-`offline`アプリケーションはもはや、インターネットにアクセスできるように、以前接続されたデバイスは、ネットワーク接続が失われたときに発生します。 接続 API と同じ情報に依存しており、火災時の値 `connection.type` になります。`NONE`.
-
-通常アプリケーションに使用する必要があります `document.addEventListener` 一度のイベント リスナーをアタッチし、 `deviceready` イベントが発生します。
-
-### 簡単な例
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS の癖
-
-初回起動時 (当てはまる場合) の最初のオフライン イベントは火に 1 秒以上かかります。
-
-### Windows Phone 7 の癖
-
-エミュレーターで実行しているとき、 `connection.status` は常に知られている、このイベントは*ない*火。
-
-### Windows Phone 8 癖
-
-エミュレーターと接続の種類のレポート `Cellular` は変化しません、イベントは*ない*火。
-
-## online
-
-アプリケーションは、オンラインになるし、デバイスがインターネットに接続するときに発生します。
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### 詳細
-
-`online`以前接続されていないデバイスが、インターネットへのアプリケーション アクセスを許可するネットワーク接続を受信するときに発生します。 接続 API と同じ情報に依存しており、場合に適用されます、 `connection.type` から変更 `NONE` 以外の値にします。
-
-通常アプリケーションに使用する必要があります `document.addEventListener` 一度のイベント リスナーをアタッチし、 `deviceready` イベントが発生します。
-
-### 簡単な例
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS の癖
-
-初回起動時には、最初の `online` (当てはまる場合) イベントが少なくとも火を前に第 2 `connection.type` は`UNKNOWN`.
-
-### Windows Phone 7 の癖
-
-エミュレーターで実行しているとき、 `connection.status` は常に知られている、このイベントは*ない*火。
-
-### Windows Phone 8 癖
-
-エミュレーターと接続の種類のレポート `Cellular` は変化しません、イベントは*ない*火。
diff --git a/doc/ko/README.md b/doc/ko/README.md
deleted file mode 100644
index a667539..0000000
--- a/doc/ko/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-이 플러그인 [네트워크 정보 API](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/)의 이전 버전에 대 한 구현을 제공합니다. 소자의 셀룰러와 와이파이 연결에 대 한 정보를 제공 합니다 장치는 인터넷 연결에 있는지 여부.
-
-## 설치
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## 지원 되는 플랫폼
-
-  * 아마존 화재 운영 체제
-  * 안 드 로이드
-  * 블랙베리 10
-  * 브라우저
-  * iOS
-  * Windows Phone 7과 8
-  * Tizen
-  * 윈도우
-  * Firefox 운영 체제
-
-# 연결
-
-> `connection`개체를 통해 노출 `navigator.connection` , 소자의 셀룰러와 와이파이 연결에 대 한 정보를 제공 합니다.
-
-## 속성
-
-  * connection.type
-
-## 상수
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-이 디바이스의 네트워크 연결 상태를 확인 하는 빠른 방법을 제공 합니다 및 연결의 종류.
-
-### 빠른 예제
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API 변경
-
-코르 도우 바 2.3.0까지 `Connection` 개체를 통해 액세스 했습니다 `navigator.network.connection` , 후에 변경 된 `navigator.connection` W3C 사양에 맞게. 그것은 그것의 원래 위치에 계속 사용할 수 하지만 사용 되지 않습니다 및 결국 제거 될 것 이다.
-
-### iOS 단점
-
-  * iOS는 셀룰러 네트워크 연결의 종류를 감지할 수 없습니다. 
-      * `navigator.connection.type`로 설정 된 `Connection.CELL` 모든 셀룰러 데이터에 대 한.
-
-### Windows Phone 단점
-
-  * 에뮬레이터에서 실행할 때 항상 검색 `navigator.connection.type` 으로`Connection.UNKNOWN`.
-
-  * Windows Phone 셀룰러 네트워크 연결 유형을 검색할 수 없습니다.
-    
-      * `navigator.connection.type`로 설정 된 `Connection.CELL` 모든 셀룰러 데이터에 대 한.
-
-### 윈도우 특수
-
-  * 전화 8.1 에뮬레이터에서 실행 하는 경우 항상 `Connection.ETHERNET`로 `navigator.connection.type`를 감지합니다.
-
-### Tizen 특수
-
-  * Tizen은 와이파이 또는 휴대 전화 연결에만 검색할 수 있습니다. 
-      * `navigator.connection.type`는 모든 셀룰러 데이터에 대 한 `Connection.CELL_2G`로 설정 됩니다.
-
-### 파이어 폭스 OS 단점
-
-  * 파이어 폭스 OS 셀룰러 네트워크 연결 유형을 검색할 수 없습니다. 
-      * `navigator.connection.type`로 설정 된 `Connection.CELL` 모든 셀룰러 데이터에 대 한.
-
-### 브라우저 만지면
-
-  * 브라우저는 네트워크 연결의 종류를 검색할 수 없습니다. `navigator.connection.type` `Connection.UNKNOWN` 때 온라인으로 항상 설정 됩니다.
-
-# 네트워크 관련 이벤트
-
-## offline
-
-이벤트가 발생 하면 응용 프로그램 오프 라인, 이동 및 장치가 인터넷에 연결 되어 있지.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### 세부 정보
-
-`offline`이벤트가 발생 하면 응용 프로그램이 더 이상 인터넷에 액세스할 수 있도록 이전 연결 된 장치가 네트워크 연결 손실. 그것은 연결 API와 동일한 정보에 의존 하 고 경우의 값 `connection.type` 된다`NONE`.
-
-일반적으로 응용 프로그램을 사용 해야 합니다 `document.addEventListener` 한번 이벤트 리스너를 연결 하는 `deviceready` 이벤트가 발생 합니다.
-
-### 빠른 예제
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS 단점
-
-처음 시작 하는 동안 첫 번째 오프 라인 이벤트 (있는 경우)를 적어도 초를 걸립니다.
-
-### Windows Phone 7 단점
-
-에뮬레이터에서 실행 하는 경우는 `connection.status` 항상 불명 하다, 그래서이 이벤트는 *없는* 불.
-
-### Windows Phone 8 단점
-
-에뮬레이터도 연결 형식을 보고 `Cellular` 는 변경 되지 않습니다, 그래서 이벤트 않습니다 *하지* 불.
-
-## online
-
-응용 프로그램은 온라인 및 장치가 인터넷에 연결 된다 때이 이벤트가 발생 합니다.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### 세부 정보
-
-`online`이전 연결 되지 않은 장치는 인터넷에 대 한 응용 프로그램 액세스를 허용 하도록 네트워크 연결을 받을 때 이벤트가 발생 합니다. 그것은 연결 API와 동일한 정보에 의존 하 고 경우에 `connection.type` 에서 변경 `NONE` 다른 값으로.
-
-일반적으로 응용 프로그램을 사용 해야 합니다 `document.addEventListener` 한번 이벤트 리스너를 연결 하는 `deviceready` 이벤트가 발생 합니다.
-
-### 빠른 예제
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS 단점
-
-처음 시작 하는 동안 첫 번째 `online` 이벤트 (있는 경우) 이전에 불 초 걸립니다 이상 `connection.type` 입니다`UNKNOWN`.
-
-### Windows Phone 7 단점
-
-에뮬레이터에서 실행 하는 경우는 `connection.status` 항상 불명 하다, 그래서이 이벤트는 *없는* 불.
-
-### Windows Phone 8 단점
-
-에뮬레이터도 연결 형식을 보고 `Cellular` 는 변경 되지 않습니다, 그래서 이벤트 않습니다 *하지* 불.
\ No newline at end of file
diff --git a/doc/ko/index.md b/doc/ko/index.md
deleted file mode 100644
index cb4c727..0000000
--- a/doc/ko/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-이 플러그인 [네트워크 정보 API][1]의 이전 버전에 대 한 구현을 제공합니다. 소자의 셀룰러와 와이파이 연결에 대 한 정보를 제공 합니다 장치는 인터넷 연결에 있는지 여부.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## 설치
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## 지원 되는 플랫폼
-
-*   아마존 화재 운영 체제
-*   안 드 로이드
-*   블랙베리 10
-*   브라우저
-*   iOS
-*   Windows Phone 7과 8
-*   Tizen
-*   윈도우
-*   Firefox 운영 체제
-
-# 연결
-
-> `connection`개체를 통해 노출 `navigator.connection` , 소자의 셀룰러와 와이파이 연결에 대 한 정보를 제공 합니다.
-
-## 속성
-
-*   connection.type
-
-## 상수
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-이 디바이스의 네트워크 연결 상태를 확인 하는 빠른 방법을 제공 합니다 및 연결의 종류.
-
-### 빠른 예제
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API 변경
-
-코르 도우 바 2.3.0까지 `Connection` 개체를 통해 액세스 했습니다 `navigator.network.connection` , 후에 변경 된 `navigator.connection` W3C 사양에 맞게. 그것은 그것의 원래 위치에 계속 사용할 수 하지만 사용 되지 않습니다 및 결국 제거 될 것 이다.
-
-### iOS 단점
-
-*   iOS는 셀룰러 네트워크 연결의 종류를 감지할 수 없습니다. 
-    *   `navigator.connection.type`로 설정 된 `Connection.CELL` 모든 셀룰러 데이터에 대 한.
-
-### Windows Phone 단점
-
-*   에뮬레이터에서 실행할 때 항상 검색 `navigator.connection.type` 으로`Connection.UNKNOWN`.
-
-*   Windows Phone 셀룰러 네트워크 연결 유형을 검색할 수 없습니다.
-    
-    *   `navigator.connection.type`로 설정 된 `Connection.CELL` 모든 셀룰러 데이터에 대 한.
-
-### 윈도우 특수
-
-*   전화 8.1 에뮬레이터에서 실행 하는 경우 항상 `Connection.ETHERNET`로 `navigator.connection.type`를 감지합니다.
-
-### Tizen 특수
-
-*   Tizen은 와이파이 또는 휴대 전화 연결에만 검색할 수 있습니다. 
-    *   `navigator.connection.type`는 모든 셀룰러 데이터에 대 한 `Connection.CELL_2G`로 설정 됩니다.
-
-### 파이어 폭스 OS 단점
-
-*   파이어 폭스 OS 셀룰러 네트워크 연결 유형을 검색할 수 없습니다. 
-    *   `navigator.connection.type`로 설정 된 `Connection.CELL` 모든 셀룰러 데이터에 대 한.
-
-# 네트워크 관련 이벤트
-
-## offline
-
-이벤트가 발생 하면 응용 프로그램 오프 라인, 이동 및 장치가 인터넷에 연결 되어 있지.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### 세부 정보
-
-`offline`이벤트가 발생 하면 응용 프로그램이 더 이상 인터넷에 액세스할 수 있도록 이전 연결 된 장치가 네트워크 연결 손실. 그것은 연결 API와 동일한 정보에 의존 하 고 경우의 값 `connection.type` 된다`NONE`.
-
-일반적으로 응용 프로그램을 사용 해야 합니다 `document.addEventListener` 한번 이벤트 리스너를 연결 하는 `deviceready` 이벤트가 발생 합니다.
-
-### 빠른 예제
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS 단점
-
-처음 시작 하는 동안 첫 번째 오프 라인 이벤트 (있는 경우)를 적어도 초를 걸립니다.
-
-### Windows Phone 7 단점
-
-에뮬레이터에서 실행 하는 경우는 `connection.status` 항상 불명 하다, 그래서이 이벤트는 *없는* 불.
-
-### Windows Phone 8 단점
-
-에뮬레이터도 연결 형식을 보고 `Cellular` 는 변경 되지 않습니다, 그래서 이벤트 않습니다 *하지* 불.
-
-## online
-
-응용 프로그램은 온라인 및 장치가 인터넷에 연결 된다 때이 이벤트가 발생 합니다.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### 세부 정보
-
-`online`이전 연결 되지 않은 장치는 인터넷에 대 한 응용 프로그램 액세스를 허용 하도록 네트워크 연결을 받을 때 이벤트가 발생 합니다. 그것은 연결 API와 동일한 정보에 의존 하 고 경우에 `connection.type` 에서 변경 `NONE` 다른 값으로.
-
-일반적으로 응용 프로그램을 사용 해야 합니다 `document.addEventListener` 한번 이벤트 리스너를 연결 하는 `deviceready` 이벤트가 발생 합니다.
-
-### 빠른 예제
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS 단점
-
-처음 시작 하는 동안 첫 번째 `online` 이벤트 (있는 경우) 이전에 불 초 걸립니다 이상 `connection.type` 입니다`UNKNOWN`.
-
-### Windows Phone 7 단점
-
-에뮬레이터에서 실행 하는 경우는 `connection.status` 항상 불명 하다, 그래서이 이벤트는 *없는* 불.
-
-### Windows Phone 8 단점
-
-에뮬레이터도 연결 형식을 보고 `Cellular` 는 변경 되지 않습니다, 그래서 이벤트 않습니다 *하지* 불.
diff --git a/doc/pl/README.md b/doc/pl/README.md
deleted file mode 100644
index 4b66cbb..0000000
--- a/doc/pl/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-Wtyczka stanowi implementację starą wersję [API informacji w sieci](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/). Udostępnia informacje na temat urządzenia komórkowe i wifi połączenie, i czy urządzenie ma połączenie z Internetem.
-
-## Instalacja
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Obsługiwane platformy
-
-  * Amazon Fire OS
-  * Android
-  * BlackBerry 10
-  * Przeglądarka
-  * iOS
-  * Windows Phone 7 i 8
-  * Tizen
-  * Windows
-  * Firefox OS
-
-# Połączenie
-
-> `connection`Obiektu, wystawiony przez `navigator.connection` , zawiera informacje o połączeniu urządzenia komórkowe i wifi.
-
-## Właściwości
-
-  * Connection.Type
-
-## Stałe
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## Connection.Type
-
-Oferuje szybki sposób ustalić stan połączenia sieciowego urządzenia i typ połączenia.
-
-### Szybki przykład
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Zmiana interfejsu API
-
-Do Cordova 2.3.0 `Connection` obiekt uzyskano za pośrednictwem `navigator.network.connection` , po którym został zmieniony na `navigator.connection` odpowiadać specyfikacji W3C. To jest nadal dostępne w jego oryginalnej lokalizacji, ale jest niezalecane i zostaną ostatecznie usunięte.
-
-### Dziwactwa iOS
-
-  * iOS nie może wykryć typ połączenia w sieci komórkowej. 
-      * `navigator.connection.type`jest zestaw `Connection.CELL` dla wszystkich komórek danych.
-
-### Windows Phone dziwactwa
-
-  * Po uruchomieniu w emulatorze, zawsze wykrywa `navigator.connection.type` jako`Connection.UNKNOWN`.
-
-  * Windows Phone nie może wykryć typ połączenia w sieci komórkowej.
-    
-      * `navigator.connection.type`jest zestaw `Connection.CELL` dla wszystkich komórek danych.
-
-### Windows dziwactwa
-
-  * Po uruchomieniu w emulatorze telefonu 8.1, zawsze wykrywa `navigator.connection.type` jako `Connection.ETHERNET`.
-
-### Dziwactwa Tizen
-
-  * Tizen można tylko dostrzegać Wi-Fi lub połączenia komórkowe. 
-      * `Navigator.Connection.Type` jest zestaw do `Connection.CELL_2G` dla wszystkich komórek danych.
-
-### Firefox OS dziwactwa
-
-  * Firefox OS nie można wykryć typ połączenia w sieci komórkowej. 
-      * `navigator.connection.type`jest zestaw `Connection.CELL` dla wszystkich komórek danych.
-
-### Quirks przeglądarki
-
-  * Przeglądarka nie może wykryć typ połączenia sieciowego. `Navigator.Connection.Type` jest zawsze zestaw do `Connection.UNKNOWN` podczas online.
-
-# Zdarzenia związane z sieci
-
-## offline
-
-Zdarzenie odpala gdy aplikacja przejdzie do trybu offline, a urządzenie nie jest podłączone do Internetu.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Szczegóły
-
-`offline`Zdarzenie fires po wcześniej podłączone urządzenie traci połączenia z siecią, dzięki czemu aplikacja może już dostęp do Internetu. Opiera się na te same informacje połączenia API i gdy odpalam wartość `connection.type` staje się`NONE`.
-
-Aplikacje zwykle należy użyć `document.addEventListener` Aby dołączyć słuchacza raz `deviceready` pożary zdarzenia.
-
-### Szybki przykład
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### Dziwactwa iOS
-
-Podczas uruchamiania systemu pierwsza impreza offline (jeśli dotyczy) trwa co najmniej drugi ognia.
-
-### Dziwactwa Windows Phone 7
-
-Po uruchomieniu w emulatorze, `connection.status` zawsze jest nieznana, więc to wydarzenie *nie* ogień.
-
-### Windows Phone 8 dziwactwa
-
-Emulator raporty typ połączenia, jako `Cellular` , co nie zmienia, więc zdarzenie *nie* ogień.
-
-## online
-
-Wydarzenie to odpala gdy aplikacja przechodzi w tryb online i urządzenie staje się połączenie z Internetem.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Szczegóły
-
-`online`Zdarzenie odpala gdy wcześniej niezwiązane urządzenie odbiera połączenie sieciowe, aby umożliwić aplikacji dostęp do Internetu. Opiera się na te same informacje połączenia API i gdy odpalam `connection.type` zmienia się z `NONE` na inną wartość.
-
-Aplikacje zwykle należy użyć `document.addEventListener` Aby dołączyć słuchacza raz `deviceready` pożary zdarzenia.
-
-### Szybki przykład
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### Dziwactwa iOS
-
-Podczas uruchamiania systemu pierwszy `online` zdarzenia (w stosownych przypadkach) zajmuje co najmniej drugie ognia, przed którym `connection.type` jest`UNKNOWN`.
-
-### Dziwactwa Windows Phone 7
-
-Po uruchomieniu w emulatorze, `connection.status` zawsze jest nieznana, więc to wydarzenie *nie* ogień.
-
-### Windows Phone 8 dziwactwa
-
-Emulator sprawozdania jako typ połączenia `Cellular` , które nie zmienia, więc wydarzenia czy *nie* ogień.
\ No newline at end of file
diff --git a/doc/pl/index.md b/doc/pl/index.md
deleted file mode 100644
index a42b973..0000000
--- a/doc/pl/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-Wtyczka stanowi implementację starą wersję [API informacji w sieci][1]. Udostępnia informacje na temat urządzenia komórkowe i wifi połączenie, i czy urządzenie ma połączenie z Internetem.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## Instalacja
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Obsługiwane platformy
-
-*   Amazon Fire OS
-*   Android
-*   BlackBerry 10
-*   Przeglądarka
-*   iOS
-*   Windows Phone 7 i 8
-*   Tizen
-*   Windows
-*   Firefox OS
-
-# Połączenie
-
-> `connection`Obiektu, wystawiony przez `navigator.connection` , zawiera informacje o połączeniu urządzenia komórkowe i wifi.
-
-## Właściwości
-
-*   Connection.Type
-
-## Stałe
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## Connection.Type
-
-Oferuje szybki sposób ustalić stan połączenia sieciowego urządzenia i typ połączenia.
-
-### Szybki przykład
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Zmiana interfejsu API
-
-Do Cordova 2.3.0 `Connection` obiekt uzyskano za pośrednictwem `navigator.network.connection` , po którym został zmieniony na `navigator.connection` odpowiadać specyfikacji W3C. To jest nadal dostępne w jego oryginalnej lokalizacji, ale jest niezalecane i zostaną ostatecznie usunięte.
-
-### Dziwactwa iOS
-
-*   iOS nie może wykryć typ połączenia w sieci komórkowej. 
-    *   `navigator.connection.type`jest zestaw `Connection.CELL` dla wszystkich komórek danych.
-
-### Windows Phone dziwactwa
-
-*   Po uruchomieniu w emulatorze, zawsze wykrywa `navigator.connection.type` jako`Connection.UNKNOWN`.
-
-*   Windows Phone nie może wykryć typ połączenia w sieci komórkowej.
-    
-    *   `navigator.connection.type`jest zestaw `Connection.CELL` dla wszystkich komórek danych.
-
-### Windows dziwactwa
-
-*   Po uruchomieniu w emulatorze telefonu 8.1, zawsze wykrywa `navigator.connection.type` jako `Connection.ETHERNET`.
-
-### Dziwactwa Tizen
-
-*   Tizen można tylko dostrzegać Wi-Fi lub połączenia komórkowe. 
-    *   `Navigator.Connection.Type` jest zestaw do `Connection.CELL_2G` dla wszystkich komórek danych.
-
-### Firefox OS dziwactwa
-
-*   Firefox OS nie można wykryć typ połączenia w sieci komórkowej. 
-    *   `navigator.connection.type`jest zestaw `Connection.CELL` dla wszystkich komórek danych.
-
-# Zdarzenia związane z sieci
-
-## offline
-
-Zdarzenie odpala gdy aplikacja przejdzie do trybu offline, a urządzenie nie jest podłączone do Internetu.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Szczegóły
-
-`offline`Zdarzenie fires po wcześniej podłączone urządzenie traci połączenia z siecią, dzięki czemu aplikacja może już dostęp do Internetu. Opiera się na te same informacje połączenia API i gdy odpalam wartość `connection.type` staje się`NONE`.
-
-Aplikacje zwykle należy użyć `document.addEventListener` Aby dołączyć słuchacza raz `deviceready` pożary zdarzenia.
-
-### Szybki przykład
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### Dziwactwa iOS
-
-Podczas uruchamiania systemu pierwsza impreza offline (jeśli dotyczy) trwa co najmniej drugi ognia.
-
-### Dziwactwa Windows Phone 7
-
-Po uruchomieniu w emulatorze, `connection.status` zawsze jest nieznana, więc to wydarzenie *nie* ogień.
-
-### Windows Phone 8 dziwactwa
-
-Emulator raporty typ połączenia, jako `Cellular` , co nie zmienia, więc zdarzenie *nie* ogień.
-
-## online
-
-Wydarzenie to odpala gdy aplikacja przechodzi w tryb online i urządzenie staje się połączenie z Internetem.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Szczegóły
-
-`online`Zdarzenie odpala gdy wcześniej niezwiązane urządzenie odbiera połączenie sieciowe, aby umożliwić aplikacji dostęp do Internetu. Opiera się na te same informacje połączenia API i gdy odpalam `connection.type` zmienia się z `NONE` na inną wartość.
-
-Aplikacje zwykle należy użyć `document.addEventListener` Aby dołączyć słuchacza raz `deviceready` pożary zdarzenia.
-
-### Szybki przykład
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### Dziwactwa iOS
-
-Podczas uruchamiania systemu pierwszy `online` zdarzenia (w stosownych przypadkach) zajmuje co najmniej drugie ognia, przed którym `connection.type` jest`UNKNOWN`.
-
-### Dziwactwa Windows Phone 7
-
-Po uruchomieniu w emulatorze, `connection.status` zawsze jest nieznana, więc to wydarzenie *nie* ogień.
-
-### Windows Phone 8 dziwactwa
-
-Emulator sprawozdania jako typ połączenia `Cellular` , które nie zmienia, więc wydarzenia czy *nie* ogień.
diff --git a/doc/ru/index.md b/doc/ru/index.md
deleted file mode 100644
index 481c1b1..0000000
--- a/doc/ru/index.md
+++ /dev/null
@@ -1,182 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-Этот плагин обеспечивает реализацию старой версии [API Сетевой информации][1]. Он предоставляет информацию о сотовых и Wi-Fi подключениях устройства, и информацию имеет ли устройство подключение к Интернету.
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## Установка
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## Поддерживаемые платформы
-
-*   Amazon Fire OS
-*   Android
-*   BlackBerry 10
-*   Браузер
-*   iOS
-*   Windows Phone 7 и 8
-*   Tizen
-*   Windows 8
-*   Firefox OS
-
-# Connection
-
-> Объект `connection`, доступный через `navigator.connection`, предоставляет информацию о сотовых и wifi подключениях устройства.
-
-## Свойства
-
-*   connection.type
-
-## Константы
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-Это свойство предоставляет быстрый способ для определения состояния подключения устройства к сети и тип этого подключения.
-
-### Краткий пример
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### Изменения в API
-
-До Cordova 2.3.0 объект `Connection` был доступен через `navigator.network.connection`, после чего это свойство было изменено на `navigator.connection` в соответствии со спецификацией консорциума W3C. Он все еще доступен в его исходном расположении, но это расположение является устаревшим и в конечном итоге будет удалено.
-
-### Особенности iOS
-
-*   iOS не может определить тип подключения к сотовой сети. 
-    *   `navigator.connection.type` имеет значение `Connection.CELL` для всех сотовых данных.
-
-### Особенности Windows Phone
-
-*   Когда работает в эмуляторе, тип подключения всегда определяется `navigator.connection.type` как `Connection.UNKNOWN`.
-
-*   Windows Phone не может определить тип подключения к сотовой сети.
-    
-    *   `navigator.connection.type` имеет значение `Connection.CELL` для всех сотовых данных.
-
-### Особенности Tizen
-
-*   Tizen может обнаружить только соединения Wi-Fi или наличие сотовой связи. 
-    *   `navigator.connection.type` имеет значение `Connection.CELL_2G` для всех сотовых данных.
-
-### Особенности Firefox OS
-
-*   Firefox OS не может определить тип подключения к сотовой сети. 
-    *   `navigator.connection.type` имеет значение `Connection.CELL` для всех сотовых данных.
-
-# События, связанные с сетью
-
-## offline
-
-Событие возникает, когда приложение переходит в автономный режим, и устройство не подключено к сети Интернет.
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### Подробности
-
-Событие `offline` возникает, когда ранее подключенное устройство теряет подключение к сети, так что приложение больше не может получить доступ к Интернет. Он опирается на ту же информацию, что и Connection API и срабатывает, когда значение `connection.type` становится равным `NONE`.
-
-Приложения обычно должно использовать `window.addEventListener` чтобы добавить обработчик события после того как произойдет событие `deviceready`.
-
-### Краткий пример
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### Особенности iOS
-
-Во время первоначального запуска первому событию offline (если применимо) требуется по крайней мере секунду на срабатывание.
-
-### Особенности Windows Phone 7
-
-Когда работает в эмуляторе, `connection.status` всегда неизвестен, так что это событие *не* срабатывает.
-
-### Особенности Windows Phone 8
-
-Эмулятор сообщает тип подключения как `Cellular` , которое не меняется, поэтому событие не *не* срабатывает.
-
-## online
-
-Это событие возникает, когда приложение выходит в онлайн, и устройство подключается к Интернету.
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### Подробности
-
-Событие `online` возникает, когда ранее не подключенное к сети устройство получает сетевое подключение, разрешающее приложению доступ к Интернету. Оно опирается на ту же информацию, Connection API и вызывается когда `connection.type` меняется с `NONE` в любое другое значение.
-
-Приложения обычно должны использовать `window.addEventListener` чтобы добавить обработчик события после того как произойдет событие `deviceready`.
-
-### Краткий пример
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### Особенности iOS
-
-Во время первоначального запуска первое событие `online` (если применимо) занимает по меньшей мере секунду на срабатывание, до этого момента `connection.type` является равным `UNKNOWN`.
-
-### Особенности Windows Phone 7
-
-Когда работает в эмуляторе, `connection.status` всегда неизвестен, так что это событие *не* срабатывает.
-
-### Особенности Windows Phone 8
-
-Эмулятор сообщает тип подключения как `Cellular` , которое не меняется, поэтому событие не *не* срабатывает.
diff --git a/doc/zh/README.md b/doc/zh/README.md
deleted file mode 100644
index 09e11e7..0000000
--- a/doc/zh/README.md
+++ /dev/null
@@ -1,190 +0,0 @@
-<!--
-# license: Licensed to the Apache Software Foundation (ASF) under one
-#         or more contributor license agreements.  See the NOTICE file
-#         distributed with this work for additional information
-#         regarding copyright ownership.  The ASF licenses this file
-#         to you under the Apache License, Version 2.0 (the
-#         "License"); you may not use this file except in compliance
-#         with the License.  You may obtain a copy of the License at
-#
-#           http://www.apache.org/licenses/LICENSE-2.0
-#
-#         Unless required by applicable law or agreed to in writing,
-#         software distributed under the License is distributed on an
-#         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#         KIND, either express or implied.  See the License for the
-#         specific language governing permissions and limitations
-#         under the License.
--->
-
-# cordova-plugin-network-information
-
-[![Build Status](https://travis-ci.org/apache/cordova-plugin-network-information.svg)](https://travis-ci.org/apache/cordova-plugin-network-information)
-
-這個外掛程式提供的舊版本的[網路資訊 API](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/)實現的。 它提供了有關該設備的行動電話和無線網路連接的資訊和設備是否已連接到 internet。
-
-## 安裝
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## 支援的平臺
-
-  * 亞馬遜火 OS
-  * Android 系統
-  * 黑莓 10
-  * 瀏覽器
-  * iOS
-  * Windows Phone 7 和 8
-  * Tizen
-  * Windows
-  * 火狐瀏覽器作業系統
-
-# 連接
-
-> `connection`物件,通過公開 `navigator.connection` ,提供了有關該設備的行動電話和無線網路連接的資訊。
-
-## 屬性
-
-  * connection.type
-
-## 常量
-
-  * Connection.UNKNOWN
-  * Connection.ETHERNET
-  * Connection.WIFI
-  * Connection.CELL_2G
-  * Connection.CELL_3G
-  * Connection.CELL_4G
-  * Connection.CELL
-  * Connection.NONE
-
-## connection.type
-
-此屬性提供快速的方法來確定設備的網路連接狀態,和連線類型。
-
-### 快速的示例
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API 更改
-
-科爾多瓦 2.3.0,直到 `Connection` 物件的訪問通過 `navigator.network.connection` 後才改為其中, `navigator.connection` 以匹配的 W3C 規範。 它在其原始位置,是仍然可用,但已廢棄,最終將被刪除。
-
-### iOS 的怪癖
-
-  * iOS 無法檢測到蜂窩網路連接的類型。 
-      * `navigator.connection.type`設置為 `Connection.CELL` 為所有蜂窩資料。
-
-### Windows Phone 怪癖
-
-  * 當運行在模擬器中,總能檢測到 `navigator.connection.type` 作為`Connection.UNKNOWN`.
-
-  * Windows Phone 不能檢測的蜂窩網路連接的類型。
-    
-      * `navigator.connection.type`設置為 `Connection.CELL` 為所有蜂窩資料。
-
-### Windows 的怪癖
-
-  * 當電話 8.1 在模擬器中運行,總能檢測到 `navigator.connection.type` 作為 `Connection.ETHERNET`.
-
-### Tizen 怪癖
-
-  * 泰只能檢測一個 WiFi 或細胞連接。 
-      * `navigator.connection.type` 是所有蜂窩資料設置為 `Connection.CELL_2G`。
-
-### 火狐瀏覽器作業系統的怪癖
-
-  * 火狐瀏覽器作業系統無法檢測到蜂窩網路連接的類型。 
-      * `navigator.connection.type`設置為 `Connection.CELL` 為所有蜂窩資料。
-
-### 瀏覽器的怪癖
-
-  * 瀏覽器無法檢測到網路連接的類型。 `navigator.connection.type`總是被設置為`Connection.UNKNOWN`時線上。
-
-# 與網路相關的事件
-
-## offline
-
-當一個應用程式離線時,與該設備未連接到互聯網時,將觸發該事件。
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### 詳細資訊
-
-`offline`以前連接的設備失去網路連接,這樣,應用程式不再可以訪問互聯網時激發的事件。 它依賴于連接 API,相同的資訊和火災時的值 `connection.type` 變得`NONE`.
-
-應用程式通常應使用 `document.addEventListener` 將一個事件攔截器附加一次 `deviceready` 事件火災。
-
-### 快速的示例
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS 的怪癖
-
-在初始啟動期間,第一次離線事件 (如果適用) 需至少一秒的火。
-
-### Windows Phone 7 的怪癖
-
-當運行在模擬器中, `connection.status` 始終是未知的因此此事件不會*不*火。
-
-### Windows Phone 8 怪癖
-
-模擬程式報告連線類型為 `Cellular` ,而不會更改,所以該事件不會*不*火。
-
-## online
-
-當應用程式進入線上狀態,和該設備將成為連接到互聯網時觸發此事件。
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### 詳細資訊
-
-`online`當先前連接的行動裝置接收到一個網路連接以允許應用程式訪問互聯網時激發的事件。 它依賴于連接 API,相同的資訊,則會激發 `connection.type` 從更改 `NONE` 為任何其他值。
-
-應用程式通常應使用 `document.addEventListener` 將一個事件攔截器附加一次 `deviceready` 事件火災。
-
-### 快速的示例
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS 的怪癖
-
-在初始啟動期間第一次 `online` 事件 (如果適用),至少需一秒的火災之前的, `connection.type` 是`UNKNOWN`.
-
-### Windows Phone 7 的怪癖
-
-當運行在模擬器中, `connection.status` 始終是未知的因此此事件不會*不*火。
-
-### Windows Phone 8 怪癖
-
-模擬程式報告連線類型為 `Cellular` ,而不會更改,所以事件不**火。
\ No newline at end of file
diff --git a/doc/zh/index.md b/doc/zh/index.md
deleted file mode 100644
index 2041467..0000000
--- a/doc/zh/index.md
+++ /dev/null
@@ -1,186 +0,0 @@
-<!---
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-
-# cordova-plugin-network-information
-
-這個外掛程式提供的舊版本的[網路資訊 API][1]實現的。 它提供了有關該設備的行動電話和無線網路連接的資訊和設備是否已連接到 internet。
-
- [1]: http://www.w3.org/TR/2011/WD-netinfo-api-20110607/
-
-## 安裝
-
-    cordova plugin add cordova-plugin-network-information
-    
-
-## 支援的平臺
-
-*   亞馬遜火 OS
-*   Android 系統
-*   黑莓 10
-*   瀏覽器
-*   iOS
-*   Windows Phone 7 和 8
-*   泰
-*   Windows
-*   火狐瀏覽器的作業系統
-
-# 連接
-
-> `connection`物件,通過公開 `navigator.connection` ,提供了有關該設備的行動電話和無線網路連接的資訊。
-
-## 屬性
-
-*   connection.type
-
-## 常量
-
-*   Connection.UNKNOWN
-*   Connection.ETHERNET
-*   Connection.WIFI
-*   Connection.CELL_2G
-*   Connection.CELL_3G
-*   Connection.CELL_4G
-*   Connection.CELL
-*   Connection.NONE
-
-## connection.type
-
-此屬性提供快速的方法來確定設備的網路連接狀態,和連線類型。
-
-### 快速的示例
-
-    function checkConnection() {
-        var networkState = navigator.connection.type;
-    
-        var states = {};
-        states[Connection.UNKNOWN]  = 'Unknown connection';
-        states[Connection.ETHERNET] = 'Ethernet connection';
-        states[Connection.WIFI]     = 'WiFi connection';
-        states[Connection.CELL_2G]  = 'Cell 2G connection';
-        states[Connection.CELL_3G]  = 'Cell 3G connection';
-        states[Connection.CELL_4G]  = 'Cell 4G connection';
-        states[Connection.CELL]     = 'Cell generic connection';
-        states[Connection.NONE]     = 'No network connection';
-    
-        alert('Connection type: ' + states[networkState]);
-    }
-    
-    checkConnection();
-    
-
-### API 更改
-
-科爾多瓦 2.3.0,直到 `Connection` 物件的訪問通過 `navigator.network.connection` 後才改為其中, `navigator.connection` 以匹配的 W3C 規範。 它在其原始位置,是仍然可用,但已廢棄,最終將被刪除。
-
-### iOS 的怪癖
-
-*   iOS 無法檢測到蜂窩網路連接的類型。 
-    *   `navigator.connection.type`設置為 `Connection.CELL` 為所有蜂窩資料。
-
-### Windows Phone 怪癖
-
-*   當運行在模擬器中,總能檢測到 `navigator.connection.type` 作為`Connection.UNKNOWN`.
-
-*   Windows Phone 不能檢測的蜂窩網路連接的類型。
-    
-    *   `navigator.connection.type`設置為 `Connection.CELL` 為所有蜂窩資料。
-
-### Windows 的怪癖
-
-*   當電話 8.1 在模擬器中運行,總能檢測到 `navigator.connection.type` 作為 `Connection.ETHERNET`.
-
-### Tizen 怪癖
-
-*   泰只能檢測一個 WiFi 或細胞連接。 
-    *   `navigator.connection.type` 是所有蜂窩資料設置為 `Connection.CELL_2G`。
-
-### 火狐瀏覽器作業系統的怪癖
-
-*   火狐瀏覽器作業系統無法檢測到蜂窩網路連接的類型。 
-    *   `navigator.connection.type`設置為 `Connection.CELL` 為所有蜂窩資料。
-
-# 與網路相關的事件
-
-## offline
-
-當一個應用程式離線時,與該設備未連接到互聯網時,將觸發該事件。
-
-    document.addEventListener("offline", yourCallbackFunction, false);
-    
-
-### 詳細資訊
-
-`offline`以前連接的設備失去網路連接,這樣,應用程式不再可以訪問互聯網時激發的事件。 它依賴于連接 API,相同的資訊和火災時的值 `connection.type` 變得`NONE`.
-
-應用程式通常應使用 `document.addEventListener` 將一個事件攔截器附加一次 `deviceready` 事件火災。
-
-### 快速的示例
-
-    document.addEventListener("offline", onOffline, false);
-    
-    function onOffline() {
-        // Handle the offline event
-    }
-    
-
-### iOS 的怪癖
-
-在初始啟動期間,第一次離線事件 (如果適用) 需至少一秒的火。
-
-### Windows Phone 7 的怪癖
-
-當運行在模擬器中, `connection.status` 始終是未知的因此此事件不會*不*火。
-
-### Windows Phone 8 怪癖
-
-模擬程式報告連線類型為 `Cellular` ,而不會更改,所以該事件不會*不*火。
-
-## online
-
-當應用程式進入線上狀態,和該設備將成為連接到互聯網時觸發此事件。
-
-    document.addEventListener("online", yourCallbackFunction, false);
-    
-
-### 詳細資訊
-
-`online`當先前連接的行動裝置接收到一個網路連接以允許應用程式訪問互聯網時激發的事件。 它依賴于連接 API,相同的資訊,則會激發 `connection.type` 從更改 `NONE` 為任何其他值。
-
-應用程式通常應使用 `document.addEventListener` 將一個事件攔截器附加一次 `deviceready` 事件火災。
-
-### 快速的示例
-
-    document.addEventListener("online", onOnline, false);
-    
-    function onOnline() {
-        // Handle the online event
-    }
-    
-
-### iOS 的怪癖
-
-在初始啟動期間第一次 `online` 事件 (如果適用),至少需一秒的火災之前的, `connection.type` 是`UNKNOWN`.
-
-### Windows Phone 7 的怪癖
-
-當運行在模擬器中, `connection.status` 始終是未知的因此此事件不會*不*火。
-
-### Windows Phone 8 怪癖
-
-模擬程式報告連線類型為 `Cellular` ,而不會更改,所以事件不**火。


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org