You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/07/24 00:20:50 UTC

[46/75] [partial] docs commit: Moved docs to www/docs.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md b/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
deleted file mode 100644
index 59611b2..0000000
--- a/docs/de/3.1.0/cordova/geolocation/Coordinates/coordinates.md
+++ /dev/null
@@ -1,123 +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.
----
-
-# Koordinaten
-
-Eine Reihe von Eigenschaften, die die geographischen Koordinaten von einer Position zu beschreiben.
-
-## Eigenschaften
-
-*   **Breitengrad**: Latitude in Dezimalgrad. *(Anzahl)*
-
-*   **Länge**: Länge in Dezimalgrad. *(Anzahl)*
-
-*   **Höhe**: Höhe der Position in Meter über dem Ellipsoid. *(Anzahl)*
-
-*   **Genauigkeit**: Genauigkeit der breiten- und Längengrad Koordinaten in Metern. *(Anzahl)*
-
-*   **AltitudeAccuracy**: Genauigkeit der Koordinate Höhe in Metern. *(Anzahl)*
-
-*   **Rubrik**: Fahrtrichtung, angegeben in Grad relativ zu den Norden im Uhrzeigersinn gezählt. *(Anzahl)*
-
-*   **Geschwindigkeit**: aktuelle Geschwindigkeit über Grund des Geräts, in Metern pro Sekunde angegeben. *(Anzahl)*
-
-## Beschreibung
-
-Die `Coordinates` Objekt ist angefügt das `Position` -Objekt, das Callback-Funktionen in Anforderungen für die aktuelle Position zur Verfügung steht.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Tizen
-*   Windows Phone 7 und 8
-*   Windows 8
-
-## Kleines Beispiel
-
-    // onSuccess Callback
-    //
-    var onSuccess = function(position) {
-        alert('Latitude: '          + position.coords.latitude          + '\n' +
-              'Longitude: '         + position.coords.longitude         + '\n' +
-              'Altitude: '          + position.coords.altitude          + '\n' +
-              'Accuracy: '          + position.coords.accuracy          + '\n' +
-              'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
-              'Heading: '           + position.coords.heading           + '\n' +
-              'Speed: '             + position.coords.speed             + '\n' +
-              'Timestamp: '         + position.timestamp                + '\n');
-    };
-    
-    // onError Callback
-    //
-    var onError = function() {
-        alert('onError!');
-    };
-    
-    navigator.geolocation.getCurrentPosition(onSuccess, onError);
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE html>
-    <html>
-      <head>
-        <title>Geolocation Position Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        // wait for device API libraries to load
-        //
-        document.addEventListener("deviceready", onDeviceReady, false);
-    
-        // device APIs are available
-        //
-        function onDeviceReady() {
-            navigator.geolocation.getCurrentPosition(onSuccess, onError);
-        }
-    
-        // Display `Position` properties from the geolocation
-        //
-        function onSuccess(position) {
-            var div = document.getElementById('myDiv');
-    
-            div.innerHTML = 'Latitude: '             + position.coords.latitude         + '<br/>' +
-                            'Longitude: '            + position.coords.longitude        + '<br/>' +
-                            'Altitude: '             + position.coords.altitude         + '<br/>' +
-                            'Accuracy: '             + position.coords.accuracy         + '<br/>' +
-                            'Altitude Accuracy: '    + position.coords.altitudeAccuracy + '<br/>' +
-                            'Heading: '              + position.coords.heading          + '<br/>' +
-                            'Speed: '                + position.coords.speed            + '<br/>';
-        }
-    
-        // Show an alert if there is a problem getting the geolocation
-        //
-        function onError() {
-            alert('onError!');
-        }
-    
-        </script>
-      </head>
-      <body>
-        <div id="myDiv"></div>
-      </body>
-    </html>
-    
-
-## Android Macken
-
-**AltitudeAccuracy**: von Android-Geräten, Rückgabe nicht unterstützt`null`.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/Position/position.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/Position/position.md b/docs/de/3.1.0/cordova/geolocation/Position/position.md
deleted file mode 100644
index f34851d..0000000
--- a/docs/de/3.1.0/cordova/geolocation/Position/position.md
+++ /dev/null
@@ -1,111 +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.
----
-
-# Position
-
-Enthält `Position` Koordinaten und Timestamp, erstellt von der Geolocation API.
-
-## Eigenschaften
-
-*   **CoOrds**: eine Reihe von geographischen Koordinaten. *(Koordinaten)*
-
-*   **Timestamp**: Zeitstempel der Erstellung für `coords` . *(Datum)*
-
-## Beschreibung
-
-Das `Position` Objekt erstellt und bevölkert von Cordova und an den Benutzer durch eine Callback-Funktion zurückgegeben.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Tizen
-*   Windows Phone 7 und 8
-*   Windows 8
-
-## Kleines Beispiel
-
-    // onSuccess Callback
-    //
-    var onSuccess = function(position) {
-        alert('Latitude: '          + position.coords.latitude          + '\n' +
-              'Longitude: '         + position.coords.longitude         + '\n' +
-              'Altitude: '          + position.coords.altitude          + '\n' +
-              'Accuracy: '          + position.coords.accuracy          + '\n' +
-              'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
-              'Heading: '           + position.coords.heading           + '\n' +
-              'Speed: '             + position.coords.speed             + '\n' +
-              'Timestamp: '         + position.timestamp                + '\n');
-    };
-    
-    // onError Callback receives a PositionError object
-    //
-    function onError(error) {
-        alert('code: '    + error.code    + '\n' +
-              'message: ' + error.message + '\n');
-    }
-    
-    navigator.geolocation.getCurrentPosition(onSuccess, onError);
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE html>
-    <html>
-      <head>
-        <title>Device Properties Example</title>
-    
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        // Wait for device API libraries to load
-        //
-        document.addEventListener("deviceready", onDeviceReady, false);
-    
-        // device APIs are available
-        //
-        function onDeviceReady() {
-            navigator.geolocation.getCurrentPosition(onSuccess, onError);
-        }
-    
-        // onSuccess Geolocation
-        //
-        function onSuccess(position) {
-            var element = document.getElementById('geolocation');
-            element.innerHTML = 'Latitude: '          + position.coords.latitude         + '<br />' +
-                                'Longitude: '         + position.coords.longitude        + '<br />' +
-                                'Altitude: '          + position.coords.altitude         + '<br />' +
-                                'Accuracy: '          + position.coords.accuracy         + '<br />' +
-                                'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '<br />' +
-                                'Heading: '           + position.coords.heading          + '<br />' +
-                                'Speed: '             + position.coords.speed            + '<br />' +
-                                'Timestamp: '         + position.timestamp               + '<br />';
-        }
-    
-            // onError Callback receives a PositionError object
-            //
-            function onError(error) {
-                alert('code: '    + error.code    + '\n' +
-                      'message: ' + error.message + '\n');
-            }
-    
-        </script>
-      </head>
-      <body>
-        <p id="geolocation">Finding geolocation...</p>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md b/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
deleted file mode 100644
index ad8eeba..0000000
--- a/docs/de/3.1.0/cordova/geolocation/PositionError/positionError.md
+++ /dev/null
@@ -1,47 +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.
----
-
-# Positionsfehler
-
-A `PositionError` -Objekt übergeben, um die `geolocationError` Rückruf, wenn ein Fehler auftritt.
-
-## Eigenschaften
-
-*   **Code**: einer der vordefinierten Fehlercodes aufgeführt.
-
-*   **Nachricht**: Fehlermeldung, die die Informationen über den aufgetretenen Fehler beschreibt.
-
-## Konstanten
-
-*   `PositionError.PERMISSION_DENIED`
-*   `PositionError.POSITION_UNAVAILABLE`
-*   `PositionError.TIMEOUT`
-
-## Beschreibung
-
-Das `PositionError` -Objekt übergeben, um die `geolocationError` Callback-Funktion tritt ein Fehler mit Geolocation.
-
-### `PositionError.PERMISSION_DENIED`
-
-Zurückgegeben, wenn der Benutzer die Anwendung zum Abrufen von Positionsinformationen nicht zulässt. Dies ist abhängig von der Plattform.
-
-### `PositionError.POSITION_UNAVAILABLE`
-
-Zurückgegeben, wenn das Gerät nicht in der Lage, eine Position abzurufen ist. Im Allgemeinen bedeutet dies, das Gerät hat keine Netzwerkkonnektivität und/oder kann kein Satelliten-Update erhalten.
-
-### `PositionError.TIMEOUT`
-
-Zurückgegeben, wenn das Gerät nicht in der Lage, eine Position innerhalb der angegebenen abzurufen ist die `geolocationOptions` ' `timeout` Eigenschaft. Bei Verwendung mit `geolocation.watchPosition` , dieser Fehler konnte übergeben werden, um die `geolocationError` Rückruf jedes `timeout` Millisekunden.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md b/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
deleted file mode 100644
index 5dd1d36..0000000
--- a/docs/de/3.1.0/cordova/geolocation/geolocation.clearWatch.md
+++ /dev/null
@@ -1,108 +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.
----
-
-# geolocation.clearWatch
-
-Stoppen, gerade für Änderungen an dem Gerät Speicherort verweist die `watchID` Parameter.
-
-    navigator.geolocation.clearWatch(watchID);
-    
-
-## Parameter
-
-*   **WatchID**: die Id der `watchPosition` Intervall löschen. (String)
-
-## Beschreibung
-
-Die `geolocation.clearWatch` stoppt Veränderungen an dem Gerät Ort beobachten, durch Deaktivieren der `geolocation.watchPosition` verwiesen wird, von`watchID`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Tizen
-*   Windows Phone 7 und 8
-*   Windows 8
-
-## Kleines Beispiel
-
-    / / Optionen: Achten Sie auf Änderungen in Position, und verwenden Sie die / / genaue position Erwerbsart verfügbar.
-    //
-    var watchID = navigator.geolocation.watchPosition(onSuccess, onError, { enableHighAccuracy: true });
-    
-    // ...later on...
-    
-    navigator.geolocation.clearWatch(watchID);
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE html>
-    <html>
-      <head>
-        <title>Device Properties Example</title>
-    
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        // Wait for device API libraries to load
-        //
-        document.addEventListener("deviceready", onDeviceReady, false);
-    
-        var watchID = null;
-    
-        // device APIs are available
-        //
-        function onDeviceReady() {
-            // Get the most accurate position updates available on the
-            // device.
-            var options = { enableHighAccuracy: true };
-            watchID = navigator.geolocation.watchPosition(onSuccess, onError, options);
-        }
-    
-        // onSuccess Geolocation
-        //
-        function onSuccess(position) {
-            var element = document.getElementById('geolocation');
-            element.innerHTML = 'Latitude: '  + position.coords.latitude      + '<br />' +
-                                'Longitude: ' + position.coords.longitude     + '<br />' +
-                                '<hr />'      + element.innerHTML;
-        }
-    
-        // clear the watch that was started earlier
-        //
-        function clearWatch() {
-            if (watchID != null) {
-                navigator.geolocation.clearWatch(watchID);
-                watchID = null;
-            }
-        }
-    
-            // onError Callback receives a PositionError object
-            //
-            function onError(error) {
-              alert('code: '    + error.code    + '\n' +
-                    'message: ' + error.message + '\n');
-            }
-    
-        </script>
-      </head>
-      <body>
-        <p id="geolocation">Watching geolocation...</p>
-            <button onclick="clearWatch();">Clear Watch</button>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md b/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
deleted file mode 100644
index 977f507..0000000
--- a/docs/de/3.1.0/cordova/geolocation/geolocation.getCurrentPosition.md
+++ /dev/null
@@ -1,120 +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.
----
-
-# geolocation.getCurrentPosition
-
-Gibt das Gerät die aktuelle Position als ein `Position` Objekt.
-
-    navigator.geolocation.getCurrentPosition(geolocationSuccess,
-                                             [geolocationError],
-                                             [geolocationOptions]);
-    
-
-## Parameter
-
-*   **GeolocationSuccess**: der Rückruf, der die aktuelle Position übergeben wird.
-
-*   **GeolocationError**: *(Optional)* der Rückruf, der ausgeführt wird, wenn ein Fehler auftritt.
-
-*   **GeolocationOptions**: *(Optional)* die Geolocation-Optionen.
-
-## Beschreibung
-
-`geolocation.getCurrentPosition`ist eine asynchrone Funktion. Es gibt das Gerät aktuelle Position auf der `geolocationSuccess` Rückruf mit einem `Position` Objekt als Parameter. Wenn ein Fehler vorliegt der `geolocationError` Rückruf wird übergeben ein `PositionError` Objekt.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Tizen
-*   Windows Phone 7 und 8
-*   Windows 8
-
-## Kleines Beispiel
-
-    // onSuccess Callback
-    // This method accepts a Position object, which contains the
-    // current GPS coordinates
-    //
-    var onSuccess = function(position) {
-        alert('Latitude: '          + position.coords.latitude          + '\n' +
-              'Longitude: '         + position.coords.longitude         + '\n' +
-              'Altitude: '          + position.coords.altitude          + '\n' +
-              'Accuracy: '          + position.coords.accuracy          + '\n' +
-              'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
-              'Heading: '           + position.coords.heading           + '\n' +
-              'Speed: '             + position.coords.speed             + '\n' +
-              'Timestamp: '         + position.timestamp                + '\n');
-    };
-    
-    // onError Callback receives a PositionError object
-    //
-    function onError(error) {
-        alert('code: '    + error.code    + '\n' +
-              'message: ' + error.message + '\n');
-    }
-    
-    navigator.geolocation.getCurrentPosition(onSuccess, onError);
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE html>
-    <html>
-      <head>
-        <title>Device Properties Example</title>
-    
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        // Wait for device API libraries to load
-        //
-        document.addEventListener("deviceready", onDeviceReady, false);
-    
-        // device APIs are available
-        //
-        function onDeviceReady() {
-            navigator.geolocation.getCurrentPosition(onSuccess, onError);
-        }
-    
-        // onSuccess Geolocation
-        //
-        function onSuccess(position) {
-            var element = document.getElementById('geolocation');
-            element.innerHTML = 'Latitude: '           + position.coords.latitude              + '<br />' +
-                                'Longitude: '          + position.coords.longitude             + '<br />' +
-                                'Altitude: '           + position.coords.altitude              + '<br />' +
-                                'Accuracy: '           + position.coords.accuracy              + '<br />' +
-                                'Altitude Accuracy: '  + position.coords.altitudeAccuracy      + '<br />' +
-                                'Heading: '            + position.coords.heading               + '<br />' +
-                                'Speed: '              + position.coords.speed                 + '<br />' +
-                                'Timestamp: '          + position.timestamp                    + '<br />';
-        }
-    
-        // onError Callback receives a PositionError object
-        //
-        function onError(error) {
-            alert('code: '    + error.code    + '\n' +
-                  'message: ' + error.message + '\n');
-        }
-    
-        </script>
-      </head>
-      <body>
-        <p id="geolocation">Finding geolocation...</p>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/geolocation.md b/docs/de/3.1.0/cordova/geolocation/geolocation.md
deleted file mode 100644
index 3cf6187..0000000
--- a/docs/de/3.1.0/cordova/geolocation/geolocation.md
+++ /dev/null
@@ -1,103 +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.
----
-
-# Geolocation
-
-> Das `geolocation` Objekt bietet Zugriff auf Positionsdaten auf der Grundlage des Geräts GPS-Sensor oder abgeleitet von Netzwerk-Signale.
-
-`Geolocation`enthält Informationen über das Gerät Speicherort, z. B. breiten- und Längengrad. Gemeinsame Quellen von Standortinformationen sind Global Positioning System (GPS) und Lage von Netzwerk-Signale wie IP-Adresse, RFID, WLAN und Bluetooth MAC-Adressen und GSM/CDMA Zelle IDs abgeleitet. Es gibt keine Garantie, dass die API des Geräts tatsächliche Position zurückgibt.
-
-Diese API basiert auf der [W3C Geolocation API-Spezifikation][1], und nur auf Geräten, die nicht bereits eine Implementierung bieten führt.
-
- [1]: http://dev.w3.org/geo/api/spec-source.html
-
-**Wichtige Datenschutzhinweis:** Erhebung und Nutzung von Geolocation-Daten wirft wichtige Privatsphäre. Wie die app benutzt Geolocation-Daten, Ihre app-Datenschutzrichtlinien zu diskutieren, ob es mit allen anderen Parteien und das Niveau der Genauigkeit der Daten (z. B. grob, fein, Postleitzahl, etc..) freigegeben ist. Geolocation-Daten gilt allgemein als empfindlich, weil es, eine Person Aufenthaltsort erkennen lässt und, wenn gespeichert, die Geschichte von seinen Reisen. Daher neben Ihrer app-Privacy Policy sollten stark Sie eine just-in-Time Ankündigung vor Ihrer Anwendung, die Zugriff auf Geolocation-Daten (wenn das Betriebssystem des Geräts bereits tun nicht). Diese Benachrichtigung sollte der gleichen Informationen, die vorstehend, sowie die Zustimmung des Benutzers (z.B. durch Präsentation Entscheidungen für das **OK** und **Nein danke**). Weitere Informationen finden Sie in der Datenschutz-Guide.
-
-## Methoden
-
-*   geolocation.getCurrentPosition
-*   geolocation.watchPosition
-*   geolocation.clearWatch
-
-## Argumente
-
-*   geolocationSuccess
-*   geolocationError
-*   geolocationOptions
-
-## Objekte (schreibgeschützt)
-
-*   Stellung
-*   PositionError
-*   Koordinaten
-
-## Zugriff auf die Funktion
-
-Ab Version 3.0 implementiert Cordova Geräteebene APIs als *Plugins*. Verwenden Sie der CLI `plugin` Befehl, beschrieben in der Command-Line Interface, hinzufügen oder Entfernen dieses Feature für ein Projekt:
-
-        $ cordova plugin add org.apache.cordova.geolocation
-        $ cordova plugin ls
-        [ 'org.apache.cordova.geolocation' ]
-        $ cordova plugin rm org.apache.cordova.geolocation
-    
-
-Diese Befehle gelten für alle Zielplattformen, aber die unten beschriebenen Plattform-spezifische Konfigurationseinstellungen ändern:
-
-*   Android
-    
-        (in app/res/xml/config.xml)
-        <feature name="Geolocation">
-            <param name="android-package" value="org.apache.cordova.GeoBroker" />
-        </feature>
-        
-        (in app/AndroidManifest.xml)
-        <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
-        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
-        <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
-        
-
-*   BlackBerry WebWorks
-    
-        (in www/plugins.xml)
-        <feature name="Geolocation">
-            <param name="blackberry-package" value="org.apache.cordova.geolocation.Geolocation" />
-        </feature>
-        
-        (in www/config.xml)
-        <rim:permissions>
-            <rim:permit>read_geolocation</rim:permit>
-        </rim:permissions>
-        
-
-*   iOS (in`config.xml`)
-    
-        <feature name="Geolocation">
-            <param name="ios-package" value="CDVLocation" />
-        </feature>
-        
-
-*   Windows Phone (in`Properties/WPAppManifest.xml`)
-    
-        <Capabilities>
-            <Capability Name="ID_CAP_LOCATION" />
-        </Capabilities>
-        
-    
-    Bezug: [Anwendungsmanifest für Windows Phone][2]
-
- [2]: http://msdn.microsoft.com/en-us/library/ff769509%28v=vs.92%29.aspx
-
-Einige Plattformen können dieses Feature unterstützen, ohne dass eine besondere Konfiguration. Finden Sie unter *Plattform-Unterstützung* in der Übersicht.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md b/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
deleted file mode 100644
index 46bdb4c..0000000
--- a/docs/de/3.1.0/cordova/geolocation/geolocation.watchPosition.md
+++ /dev/null
@@ -1,121 +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.
----
-
-# geolocation.watchPosition
-
-Uhren für Änderungen an der aktuellen Position des Geräts.
-
-    var watchId = navigator.geolocation.watchPosition(geolocationSuccess,
-                                                      [geolocationError],
-                                                      [geolocationOptions]);
-    
-
-## Parameter
-
-*   **GeolocationSuccess**: der Rückruf, der die aktuelle Position übergeben wird.
-
-*   **GeolocationError**: (Optional) der Rückruf, der ausgeführt wird, wenn ein Fehler auftritt.
-
-*   **GeolocationOptions**: (Optional) die Geolocation-Optionen.
-
-## Gibt
-
-*   **String**: gibt eine Uhr-Id, die das Uhr Stellung Intervall verweist zurück. Die Uhr-Id sollte verwendet werden, mit `geolocation.clearWatch` , gerade für Änderungen zu stoppen.
-
-## Beschreibung
-
-`geolocation.watchPosition`ist eine asynchrone Funktion. Es gibt das Gerät aktuelle Position zurück, wenn eine Änderung erkannt wird. Wenn das Gerät einen neuen Speicherort und ruft die `geolocationSuccess` Rückruf führt mit einem `Position` Objekt als Parameter. Wenn ein Fehler vorliegt der `geolocationError` Rückruf führt mit einem `PositionError` Objekt als Parameter.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Tizen
-*   Windows Phone 7 und 8
-*   Windows 8
-
-## Kleines Beispiel
-
-    // onSuccess Callback
-    //   This method accepts a `Position` object, which contains
-    //   the current GPS coordinates
-    //
-    function onSuccess(position) {
-        var element = document.getElementById('geolocation');
-        element.innerHTML = 'Latitude: '  + position.coords.latitude      + '<br />' +
-                            'Longitude: ' + position.coords.longitude     + '<br />' +
-                            '<hr />'      + element.innerHTML;
-    }
-    
-    // onError Callback receives a PositionError object
-    //
-    function onError(error) {
-        alert('code: '    + error.code    + '\n' +
-              'message: ' + error.message + '\n');
-    }
-    
-    // Options: throw an error if no update is received every 30 seconds.
-    //
-    var watchID = navigator.geolocation.watchPosition(onSuccess, onError, { timeout: 30000 });
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE html>
-    <html>
-      <head>
-        <title>Device Properties Example</title>
-    
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        // Wait for device API libraries to load
-        //
-        document.addEventListener("deviceready", onDeviceReady, false);
-    
-        var watchID = null;
-    
-        // device APIs are available
-        //
-        function onDeviceReady() {
-            // Throw an error if no update is received every 30 seconds
-            var options = { timeout: 30000 };
-            watchID = navigator.geolocation.watchPosition(onSuccess, onError, options);
-        }
-    
-        // onSuccess Geolocation
-        //
-        function onSuccess(position) {
-            var element = document.getElementById('geolocation');
-            element.innerHTML = 'Latitude: '  + position.coords.latitude      + '<br />' +
-                                'Longitude: ' + position.coords.longitude     + '<br />' +
-                                '<hr />'      + element.innerHTML;
-        }
-    
-            // onError Callback receives a PositionError object
-            //
-            function onError(error) {
-                alert('code: '    + error.code    + '\n' +
-                      'message: ' + error.message + '\n');
-            }
-    
-        </script>
-      </head>
-      <body>
-        <p id="geolocation">Watching geolocation...</p>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md b/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
deleted file mode 100644
index e66bc9b..0000000
--- a/docs/de/3.1.0/cordova/geolocation/parameters/geolocation.options.md
+++ /dev/null
@@ -1,34 +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.
----
-
-# geolocationOptions
-
-Optionalen Parametern, um das Abrufen von der geolocation`Position`.
-
-    {MaximumAge: 3000, Timeout: 5000, EnableHighAccuracy: true};
-    
-
-## Optionen
-
-*   **EnableHighAccuracy**: stellt einen Hinweis, dass die Anwendung die bestmöglichen Ergebnisse benötigt. Standardmäßig versucht das Gerät abzurufen ein `Position` mit netzwerkbasierte Methoden. Wenn diese Eigenschaft auf `true` erzählt den Rahmenbedingungen genauere Methoden, z. B. Satellitenortung verwenden. *(Boolean)*
-
-*   **Timeout**: die maximale Länge der Zeit (in Millisekunden), die zulässig ist, übergeben Sie den Aufruf von `geolocation.getCurrentPosition` oder `geolocation.watchPosition` bis zu den entsprechenden `geolocationSuccess` Rückruf führt. Wenn die `geolocationSuccess` Rückruf wird nicht aufgerufen, in dieser Zeit die `geolocationError` Rückruf wird übergeben ein `PositionError.TIMEOUT` Fehlercode. (Beachten Sie, dass in Verbindung mit `geolocation.watchPosition` , die `geolocationError` Rückruf könnte auf ein Intervall aufgerufen werden alle `timeout` Millisekunden!) *(Anzahl)*
-
-*   **MaximumAge**: eine zwischengespeicherte Position, deren Alter nicht größer als die angegebene Zeit in Millisekunden ist, zu akzeptieren. *(Anzahl)*
-
-## Android Macken
-
-Android 2.x-Emulatoren geben ein Geolocation-Ergebnis nicht zurück, es sei denn, die `enableHighAccuracy` Option auf festgelegt ist`true`.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md b/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
deleted file mode 100644
index 6b08ae3..0000000
--- a/docs/de/3.1.0/cordova/geolocation/parameters/geolocationError.md
+++ /dev/null
@@ -1,28 +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.
----
-
-# geolocationError
-
-Des Benutzers Callback-Funktion, die ausgeführt wird, wenn ein Fehler für Geolocation-Funktionen auftritt.
-
-    function(error) {
-        // Handle the error
-    }
-    
-
-## Parameter
-
-*   **Fehler**: der Fehler, die durch das Gerät zurückgegeben. *(PositionError)*
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md b/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
deleted file mode 100644
index 405e4a2..0000000
--- a/docs/de/3.1.0/cordova/geolocation/parameters/geolocationSuccess.md
+++ /dev/null
@@ -1,41 +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.
----
-
-# geolocationSuccess
-
-Des Benutzers-Callback-Funktion, die ausgeführt wird, sobald eine Geolocation-Position verfügbar ist (beim Aufruf aus `geolocation.getCurrentPosition` ), oder wenn sich die Position ändert, (beim Aufruf aus`geolocation.watchPosition`).
-
-    function(position) {
-        // Do something
-    }
-    
-
-## Parameter
-
-*   **Lage**: die Geolocation-Position, die durch das Gerät zurückgegeben. *(Position)*
-
-## Beispiel
-
-    function geolocationSuccess(position) {
-        alert('Latitude: '          + position.coords.latitude          + '\n' +
-              'Longitude: '         + position.coords.longitude         + '\n' +
-              'Altitude: '          + position.coords.altitude          + '\n' +
-              'Accuracy: '          + position.coords.accuracy          + '\n' +
-              'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
-              'Heading: '           + position.coords.heading           + '\n' +
-              'Speed: '             + position.coords.speed             + '\n' +
-              'Timestamp: '         + position.timestamp                + '\n');
-    }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md b/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
deleted file mode 100644
index 64a3c43..0000000
--- a/docs/de/3.1.0/cordova/globalization/GlobalizationError/globalizationerror.md
+++ /dev/null
@@ -1,84 +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.
----
-
-# GlobalizationError
-
-Ein Objekt, das einen Fehler von der Globalisierung-API darstellt.
-
-## Eigenschaften
-
-*   **Code**: Einen der folgenden Codes, der den Fehlertyp *(Anzahl)* 
-    *   GlobalizationError.UNKNOWN_ERROR: 0
-    *   GlobalizationError.FORMATTING_ERROR: 1
-    *   GlobalizationError.PARSING_ERROR: 2
-    *   GlobalizationError.PATTERN_ERROR: 3
-*   **Nachricht**: eine SMS-Nachricht, die enthält den Fehler Erklärung und/oder details *(String)*
-
-## Beschreibung
-
-Dieses Objekt ist erstellt und bevölkert von Cordova und kehrte nach einem Rückruf im Fehlerfall.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-
-## Kleines Beispiel
-
-Die folgenden Fehler-Callback ausgeführt wird, zeigt einen Popup-Dialog mit dem Text ähnlich wie `code: 3` und`message:`
-
-    function errorCallback(error) {
-        alert('code: ' + error.code + '\n' +
-              'message: ' + error.message + '\n');
-    };
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>GlobalizationError Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function successCallback(date) {
-          alert('month:' + date.month +
-                ' day:' + date.day +
-                ' year:' + date.year + '\n');
-        }
-    
-        function errorCallback(error) {
-          alert('code: ' + error.code + '\n' +
-                'message: ' + error.message + '\n');
-        };
-    
-        function checkError() {
-          navigator.globalization.stringToDate(
-            'notADate',
-            successCallback,
-            errorCallback,
-            {selector:'foobar'}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkError()">Click for error</button>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md b/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
deleted file mode 100644
index f668c34..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.dateToString.md
+++ /dev/null
@@ -1,87 +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.
----
-
-# globalization.dateToString
-
-Gibt ein Datum formatiert als Zeichenfolge nach dem Client Gebietsschema und Zeitzone.
-
-    navigator.globalization.dateToString(date, successCallback, errorCallback, options);
-    
-
-## Beschreibung
-
-Gibt das formatierte Datum `String` über eine `value` -Eigenschaft zugänglich aus dem Objekt übergeben als Parameter für die`successCallback`.
-
-Die eingehende `date` -Parameter des Typs sein sollte`Date`.
-
-Wenn ein Fehler, die Formatierung des Datums vorliegt dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.FORMATTING\_ERROR`.
-
-Die `options` Parameter ist optional, und die Standardwerte sind:
-
-    {FormatLength: 'kurz', Selektor: "Datum und Uhrzeit"}
-    
-
-Die `options.formatLength` kann `short` , `medium` , `long` , oder`full`.
-
-Die `options.selector` kann `date` , `time` oder`date and time`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser so, dass eingestellt ist die `en\_US` Gebietsschema, dies zeigt einen Popup-Dialog mit Text ähnlich wie `date: 9/25/2012 4:21PM` mit den Standardoptionen:
-
-    navigator.globalization.dateToString(
-        new Date(),
-        function (date) { alert('date: ' + date.value + '\n'); },
-        function () { alert('Error getting dateString\n'); },
-        { formatLength: 'short', selector: 'date and time' }
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>dateToString Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkDateString() {
-          navigator.globalization.dateToString(
-            new Date(),
-            function (date) {alert('date: ' + date.value + '\n');},
-            function () {alert('Error getting dateString\n');,
-            {formatLength:'short', selector:'date and time'}}
-          );
-        }
-        </script>
-      </head>
-      <body>
-        <button onclick="checkDateString()">Click for date string</button>
-      </body>
-    </html>
-    
-
-## Windows Phone 8 Macken
-
-*   Die `formatLength` option unterstützt nur `short` und `full` Werte.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md b/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
deleted file mode 100644
index bf94129..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getCurrencyPattern.md
+++ /dev/null
@@ -1,105 +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.
----
-
-# globalization.getCurrencyPattern
-
-Gibt eine Musterzeichenfolge zum Formatieren und Analysieren von Währungswerten nach Benutzereinstellungen und ISO 4217 Währungscode des Kunden.
-
-     navigator.globalization.getCurrencyPattern(currencyCode, successCallback, errorCallback);
-    
-
-## Beschreibung
-
-Gibt das Muster auf der `successCallback` mit einem `properties` -Objekt als Parameter. Das Objekt sollte die folgenden Eigenschaften enthalten:
-
-*   **Muster**: das Währung-Muster zur Formatierung und zum Analysieren von Währungswerten. Die Muster folgen Unicode Technical Standard #35. <http://unicode.org/reports/tr35/tr35-4.html>. *(String)*
-
-*   **Code**: der ISO-4217-Währungscode für das Muster. *(String)*
-
-*   **Bruch**: die Anzahl von Bruchziffern zum analysieren und Formatieren einer Währung verwendet. *(Anzahl)*
-
-*   **Rundung**: die Rundung erhöhen wenn analysieren und formatieren verwenden. *(Anzahl)*
-
-*   **Dezimal**: das Dezimaltrennzeichen verwenden für analysieren und formatieren. *(String)*
-
-*   **Gruppieren**: das Symbol für Zifferngruppierung zum analysieren und formatieren verwenden. *(String)*
-
-Die eingehende `currencyCode` Parameter sollte ein `String` einer der ISO 4217 Währungscodes, z. B. 'USD'.
-
-Wenn ein Fehler, erhalten das Muster vorliegt dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.FORMATTING\_ERROR`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema und die gewählte Währung ist US-Dollar, in diesem Beispiel wird einen Popup-Dialog mit Text ähnlich wie die Ergebnisse, die Folgen:
-
-    navigator.globalization.getCurrencyPattern(
-        'USD',
-        function (pattern) {
-            alert('pattern: '  + pattern.pattern  + '\n' +
-                  'code: '     + pattern.code     + '\n' +
-                  'fraction: ' + pattern.fraction + '\n' +
-                  'rounding: ' + pattern.rounding + '\n' +
-                  'decimal: '  + pattern.decimal  + '\n' +
-                  'grouping: ' + pattern.grouping);
-        },
-        function () { alert('Error getting pattern\n'); }
-    );
-    
-
-Erwartete Ergebnis:
-
-    pattern: $#,##0.##;($#,##0.##)
-    code: USD
-    fraction: 2
-    rounding: 0
-    decimal: .
-    grouping: ,
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getCurrencyPattern Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkPattern() {
-          navigator.globalization.getCurrencyPattern(
-            'USD',
-            function (pattern) {alert('pattern: '  + pattern.pattern  + '\n' +
-                                      'code: '     + pattern.code     + '\n' +
-                                      'fraction: ' + pattern.fraction + '\n' +
-                                      'rounding: ' + pattern.rounding + '\n' +
-                                      'decimal: '  + pattern.decimal  + '\n' +
-                                      'grouping: ' + pattern.grouping);},
-            function () {alert('Error getting pattern\n');}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkPattern()">Click for pattern</button>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md b/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
deleted file mode 100644
index 860f160..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getDateNames.md
+++ /dev/null
@@ -1,87 +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.
----
-
-# globalization.getDateNames
-
-Gibt ein Array der Namen der Monate oder Tage der Woche, abhängig von dem Client Benutzereinstellungen und Kalender.
-
-    navigator.globalization.getDateNames(successCallback, errorCallback, options);
-    
-
-## Beschreibung
-
-Gibt das Array von Namen der `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt enthält eine `value` -Eigenschaft mit einer `Array` der `String` Werte. Die Namen von Array-Funktionen, entweder der erste Monat im Jahr oder der erste Tag der Woche, je nach der ausgewählten Option ab.
-
-Wenn es einen Fehler erhalten die Namen dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.UNKNOWN\_ERROR`.
-
-Die `options` Parameter ist optional, und die Standardwerte sind:
-
-    {Typ: "breit", Artikel: 'Monate'}
-    
-
-Der Wert des `options.type` kann `narrow` oder`wide`.
-
-Der Wert des `options.item` kann `months` oder`days`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, in diesem Beispiel wird eine Reihe von zwölf Popup-Dialoge, eine pro Monat, mit Text ähnlich `month: January` :
-
-    navigator.globalization.getDateNames(
-        function (names) {
-            for (var i = 0; i < names.value.length; i++) {
-                alert('month: ' + names.value[i] + '\n');
-            }
-        },
-        function () { alert('Error getting names\n'); },
-        { type: 'wide', item: 'months' }
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getDateNames Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkDateNames() {
-          navigator.globalization.getDateNames(
-            function (names) {
-              for (var i=0; i<names.value.length; i++) {
-                alert('month: ' + names.value[i] + '\n');
-              }
-            },
-            function () {alert('Error getting names\n');},
-            {type:'wide', item:'months'}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkDateNames()">Click for date names</button>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md b/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
deleted file mode 100644
index e1c7f5f..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getDatePattern.md
+++ /dev/null
@@ -1,99 +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.
----
-
-# globalization.getDatePattern
-
-Gibt eine Musterzeichenfolge zum Formatieren und Analysieren von Daten entsprechend der Client-Benutzer-Einstellungen.
-
-    navigator.globalization.getDatePattern(successCallback, errorCallback, options);
-    
-
-## Beschreibung
-
-Gibt das Muster auf der `successCallback` . Das als Parameter übergebene Objekt enthält die folgenden Eigenschaften:
-
-*   **Muster**: das Datum und die Uhrzeit-Muster zur Formatierung und zum Analysieren von Daten. Die Muster folgen Unicode Technical Standard #35. <http://unicode.org/reports/tr35/tr35-4.html>. *(String)*
-
-*   **Zeitzone**: der abgekürzte Name der Zeitzone auf dem Client. *(String)*
-
-*   **Utc_offset**: die aktuelle Differenz in Sekunden zwischen dem Client Zeitzone und koordinierte Weltzeit. *(Anzahl)*
-
-*   **Dst_offset**: der aktuelle Sommerzeit-Offset in Sekunden zwischen der Client-Sommerzeit der Zeitzone und der Client Tageslicht Speichern der Zeitzone. *(Anzahl)*
-
-Wenn es einen Fehler erhalten das Muster der `errorCallback` führt mit ein `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.PATTERN\_ERROR`.
-
-Die `options` Parameter ist optional und wird mit den folgenden Werten:
-
-    {FormatLength: 'kurz', Selektor: "Datum und Uhrzeit"}
-    
-
-Die `options.formatLength` kann `short` , `medium` , `long` , oder `full` . Die `options.selector` kann `date` , `time` oder`date and
-time`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, in diesem Beispiel wird einen Popup-Dialog mit Text wie z. B. `pattern: M/d/yyyy h:mm a` :
-
-    function checkDatePattern() {
-        navigator.globalization.getDatePattern(
-            function (date) { alert('pattern: ' + date.pattern + '\n'); },
-            function () { alert('Error getting pattern\n'); },
-            { formatLength: 'short', selector: 'date and time' }
-        );
-    }
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getDatePattern Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkDatePattern() {
-          navigator.globalization.getDatePattern(
-            function (date) {alert('pattern: ' + date.pattern + '\n');},
-            function () {alert('Error getting pattern\n');},
-            {formatLength:'short', selector:'date and time'}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkDatePattern()">Click for pattern</button>
-      </body>
-    </html>
-    
-
-## Windows Phone 8 Macken
-
-*   Die `formatLength` unterstützt nur `short` und `full` Werte.
-
-*   Die `pattern` für `date and time` Muster kehrt nur volle Datetime-Format.
-
-*   Die `timezone` gibt den Namen des Vollzeit-Zone zurück.
-
-*   Die `dst_offset` -Eigenschaft wird nicht unterstützt, und gibt immer NULL.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md b/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
deleted file mode 100644
index 8c74fdc..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getFirstDayOfWeek.md
+++ /dev/null
@@ -1,68 +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.
----
-
-# globalization.getFirstDayOfWeek
-
-Den ersten Tag der Woche laut dem Client Benutzereinstellungen und Kalender gibt.
-
-    navigator.globalization.getFirstDayOfWeek(successCallback, errorCallback);
-    
-
-## Beschreibung
-
-Die Wochentage sind nummeriert, beginnend mit 1, wo wird 1 Sonntag angenommen. Liefert den Tag auf der `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt muss eine `value` Eigenschaft mit einer `Number` Wert.
-
-Wenn ein Fehler, erhalten das Muster vorliegt dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.UNKNOWN\_ERROR`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, dies zeigt einen Popup-Dialog mit Text ähnlich`day: 1`.
-
-    navigator.globalization.getFirstDayOfWeek(
-        function (day) {alert('day: ' + day.value + '\n');},
-        function () {alert('Error getting day\n');}
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getFirstDayOfWeek Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkFirstDay() {
-          navigator.globalization.getFirstDayOfWeek(
-            function (day) {alert('day: ' + day.value + '\n');},
-            function () {alert('Error getting day\n');}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkFirstDay()">Click for first day of week</button>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md b/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
deleted file mode 100644
index 6ef7d8f..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getLocaleName.md
+++ /dev/null
@@ -1,72 +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.
----
-
-# globalization.getLocaleName
-
-Bekommen Sie der Bezeichner für die aktuelle Gebietsschema-Einstellung des Clients.
-
-    navigator.globalization.getLocaleName(successCallback, errorCallback);
-    
-
-## Beschreibung
-
-Gibt die Gebietsschemabezeichner-Zeichenfolge, die `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt muss eine `value` Eigenschaft mit einer `String` Wert.
-
-Wenn es ist ein Fehler, der immer des Gebietsschemas, dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.UNKNOWN\_ERROR`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, dies zeigt einen Popup-Dialog mit dem Text`locale: en\_US`.
-
-    navigator.globalization.getLocaleName(
-        function (locale) {alert('locale: ' + locale.value + '\n');},
-        function () {alert('Error getting locale\n');}
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getLocaleName Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkLocale() {
-          navigator.globalization.getLocaleName(
-            function (locale) {alert('locale: ' + locale.value + '\n');},
-            function () {alert('Error getting locale\n');}
-          );
-        }
-        </script>
-      </head>
-      <body>
-        <button onclick="checkLocale()">Click for locale</button>
-      </body>
-    </html>
-    
-
-## Windows Phone 8 Macken
-
-*   Gibt zwei-Buchstaben-Code gemäß ISO 3166 für das aktuelle Land/Region.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md b/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
deleted file mode 100644
index ec22540..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getNumberPattern.md
+++ /dev/null
@@ -1,121 +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.
----
-
-# globalization.getNumberPattern
-
-Gibt eine Musterzeichenfolge zum Formatieren und Analysieren von Zahlen nach der Client-Benutzer-Einstellungen.
-
-    navigator.globalization.getNumberPattern(successCallback, errorCallback, options);
-    
-
-## Beschreibung
-
-Gibt das Muster auf der `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt enthält die folgenden Eigenschaften:
-
-*   **Muster**: die Muster zur Formatierung und zum Analysieren von Zahlen. Die Muster folgen Unicode Technical Standard #35. <http://unicode.org/reports/tr35/tr35-4.html>. *(String)*
-
-*   **Symbol**: das Symbol beim Formatieren und analysieren, wie ein Prozentsatz oder Symbol verwendet. *(String)*
-
-*   **Bruch**: die Anzahl von Bruchziffern zum analysieren und Formatieren von Zahlen verwendet. *(Anzahl)*
-
-*   **Rundung**: die Rundung erhöhen wenn analysieren und formatieren verwenden. *(Anzahl)*
-
-*   **positiv**: das Symbol für positive Zahlen beim Analysieren und formatieren verwenden. *(String)*
-
-*   **negativ**: das Symbol für negative Zahlen beim Analysieren und formatieren verwenden. *(String)*
-
-*   **Dezimal**: das Dezimaltrennzeichen für analysieren und formatieren. *(String)*
-
-*   **Gruppieren**: das Symbol für Zifferngruppierung zum analysieren und formatieren verwenden. *(String)*
-
-Wenn ein Fehler, erhalten das Muster vorliegt dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.PATTERN\_ERROR`.
-
-Die `options` Parameter ist optional und Standardwerte sind:
-
-    {Typ: "decimal"}
-    
-
-Die `options.type` kann `decimal` , `percent` , oder`currency`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, dies sollte einen Popup-Dialog mit Text ähnlich wie die Ergebnisse in den folgenden anzeigen:
-
-    navigator.globalization.getNumberPattern(
-        function (pattern) {alert('pattern: '  + pattern.pattern  + '\n' +
-                                  'symbol: '   + pattern.symbol   + '\n' +
-                                  'fraction: ' + pattern.fraction + '\n' +
-                                  'rounding: ' + pattern.rounding + '\n' +
-                                  'positive: ' + pattern.positive + '\n' +
-                                  'negative: ' + pattern.negative + '\n' +
-                                  'decimal: '  + pattern.decimal  + '\n' +
-                                  'grouping: ' + pattern.grouping);},
-        function () {alert('Error getting pattern\n');},
-        {type:'decimal'}
-    );
-    
-
-Ergebnisse:
-
-    Muster: ##0 #. ### Symbol:.
-    Bruch: 0 Rundung: 0 positiv: negativ: - dezimal:.
-    Gruppieren:,
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getNumberPattern Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkPattern() {
-          navigator.globalization.getNumberPattern(
-            function (pattern) {alert('pattern: '  + pattern.pattern  + '\n' +
-                                      'symbol: '   + pattern.symbol   + '\n' +
-                                      'fraction: ' + pattern.fraction + '\n' +
-                                      'rounding: ' + pattern.rounding + '\n' +
-                                      'positive: ' + pattern.positive + '\n' +
-                                      'negative: ' + pattern.negative + '\n' +
-                                      'decimal: '  + pattern.decimal  + '\n' +
-                                      'grouping: ' + pattern.grouping);},
-            function () {alert('Error getting pattern\n');},
-            {type:'decimal'}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkPattern()">Click for pattern</button>
-      </body>
-    </html>
-    
-
-## Windows Phone 8 Macken
-
-*   Die `pattern` -Eigenschaft wird nicht unterstützt, und Retuens eine leere Zeichenfolge.
-
-*   Die `fraction` -Eigenschaft wird nicht unterstützt, und gibt NULL zurück.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md b/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
deleted file mode 100644
index a74ac0b..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.getPreferredLanguage.md
+++ /dev/null
@@ -1,72 +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.
----
-
-# globalization.getPreferredLanguage
-
-Bekommen Sie Bezeichner für die aktuelle Sprache des Clients.
-
-    navigator.globalization.getPreferredLanguage(successCallback, errorCallback);
-    
-
-## Beschreibung
-
-Gibt die Sprache-ID-Zeichenfolge, die die `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt muss eine `value` Eigenschaft mit einer `String` Wert.
-
-Wenn ein Fehler, der immer der Sprache vorliegt dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.UNKNOWN\_ERROR`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, dies sollte einen Popup-Dialog mit dem Text angezeigt `language: English` :
-
-    navigator.globalization.getPreferredLanguage(
-        function (language) {alert('language: ' + language.value + '\n');},
-        function () {alert('Error getting language\n');}
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>getPreferredLanguage Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkLanguage() {
-          navigator.globalization.getPreferredLanguage(
-            function (language) {alert('language: ' + language.value + '\n');},
-            function () {alert('Error getting language\n');}
-          );
-        }
-        </script>
-      </head>
-      <body>
-        <button onclick="checkLanguage()">Click for language</button>
-      </body>
-    </html>
-    
-
-## Windows Phone 8 Macken
-
-*   Den ISO 639-1 zwei-Buchstaben-Code für die aktuelle Sprache gibt.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md b/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
deleted file mode 100644
index 9816a9b..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.isDayLightSavingsTime.md
+++ /dev/null
@@ -1,72 +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.
----
-
-# globalization.isDayLightSavingsTime
-
-Gibt an, ob die Sommerzeit ist in der Tat für ein bestimmtes Datum unter Verwendung des Auftraggebers Zeitzone und Kalender.
-
-    navigator.globalization.isDayLightSavingsTime(date, successCallback, errorCallback);
-    
-
-## Beschreibung
-
-Gibt an, ob Sommerzeit ist in der Tat zu den `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt muss eine `dst` Eigenschaft mit einer `Boolean` Wert. A `true` Wert angibt, dass die Sommer-/Winterzeit für das angegebene Datum gültig ist und `false` weist darauf hin, dass es nicht.
-
-Die eingehenden Parameter `date` sollte vom Typ`Date`.
-
-Wenn gibt es einen Lesefehler das Datum der `errorCallback` führt. Erwarteten Fehlercode ist`GlobalizationError.UNKNOWN\_ERROR`.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Im Sommer und wenn der Browser auf eine DST-fähigen Zeitzone festgelegt ist, sollte dies einen Popup-Dialog mit Text ähnlich angezeigt `dst: true` :
-
-    navigator.globalization.isDayLightSavingsTime(
-        new Date(),
-        function (date) {alert('dst: ' + date.dst + '\n');},
-        function () {alert('Error getting names\n');}
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>isDayLightSavingsTime Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkDayLightSavings() {
-          navigator.globalization.isDayLightSavingsTime(
-            new Date(),
-            function (date) {alert('dst: ' + date.dst + '\n');},
-            function () {alert('Error getting names\n');}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkDayLightSavings()">Click for daylight savings</button>
-      </body>
-    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.md b/docs/de/3.1.0/cordova/globalization/globalization.md
deleted file mode 100644
index c215ab2..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.md
+++ /dev/null
@@ -1,67 +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.
----
-
-# Globalisierung
-
-Ruft Informationen und führt durch spezifisch für Gebietsschema und der Zeitzone des Benutzers.
-
-## Objekte
-
-*   GlobalizationError
-
-## Methoden
-
-*   globalization.getPreferredLanguage
-*   globalization.getLocaleName
-*   globalization.dateToString
-*   globalization.stringToDate
-*   globalization.getDatePattern
-*   globalization.getDateNames
-*   globalization.isDayLightSavingsTime
-*   globalization.getFirstDayOfWeek
-*   globalization.numberToString
-*   globalization.stringToNumber
-*   globalization.getNumberPattern
-*   globalization.getCurrencyPattern
-
-## Geltungsbereich von Variablen
-
-Das `globalization` -Objekt ist ein untergeordnetes Element des der `navigator` -Objekt, und daher hat globalen Gültigkeitsbereich.
-
-    // The global globalization object
-    var globalization = navigator.globalization;
-    
-
-## Zugriff auf die Funktion
-
-Ab Version 3.0 implementiert Cordova Geräteebene APIs als *Plugins*. Verwenden Sie der CLI `plugin` Befehl, beschrieben in der Command-Line Interface, hinzufügen oder Entfernen dieses Feature für ein Projekt:
-
-        $ cordova plugin add org.apache.cordova.globalization
-        $ cordova plugin ls
-        [ 'org.apache.cordova.globalization' ]
-        $ cordova plugin rm org.apache.cordova.globalization
-    
-
-Diese Befehle gelten für alle Zielplattformen, aber die unten beschriebenen Plattform-spezifische Konfigurationseinstellungen ändern:
-
-*   Android (in`app/res/xml/config.xml`)
-    
-        <feature name="Globalization">
-            <param name="android-package" value="org.apache.cordova.Globalization" />
-        </feature>
-        
-
-Einige Plattformen können dieses Feature unterstützen, ohne dass eine besondere Konfiguration. Finden Sie unter *Plattform-Unterstützung* in der Übersicht.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/17db5a3b/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
----------------------------------------------------------------------
diff --git a/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md b/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
deleted file mode 100644
index d09c996..0000000
--- a/docs/de/3.1.0/cordova/globalization/globalization.numberToString.md
+++ /dev/null
@@ -1,79 +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.
----
-
-# globalization.numberToString
-
-Gibt eine Zahl, die als Zeichenfolge nach dem Client-Benutzer-Einstellungen formatiert.
-
-    navigator.globalization.numberToString(number, successCallback, errorCallback, options);
-    
-
-## Beschreibung
-
-Gibt die formatierte Zeichenfolge, die `successCallback` mit einem `properties` -Objekt als Parameter. Dieses Objekt muss eine `value` Eigenschaft mit einer `String` Wert.
-
-Wenn es ist ein Fehler, die Formatierung der Zahl, dann die `errorCallback` führt mit einem `GlobalizationError` -Objekt als Parameter. Erwarteten Fehlercode ist`GlobalizationError.FORMATTING\_ERROR`.
-
-Die `options` Parameter ist optional, und die Standardwerte sind:
-
-    {Typ: "decimal"}
-    
-
-Die `options.type` kann sein "decimal", "Prozent" oder "Währung".
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 5.0 und höher)
-*   iOS
-*   Windows Phone 8
-
-## Kleines Beispiel
-
-Wenn der Browser auf festgelegt ist die `en\_US` Gebietsschema, dies zeigt einen Popup-Dialog mit Text ähnlich wie `number: 3.142` :
-
-    navigator.globalization.numberToString(
-        3.1415926,
-        function (number) {alert('number: ' + number.value + '\n');},
-        function () {alert('Error getting number\n');},
-        {type:'decimal'}
-    );
-    
-
-## Vollständiges Beispiel
-
-    <!DOCTYPE HTML>
-    <html>
-      <head>
-        <title>numberToString Example</title>
-        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
-        <script type="text/javascript" charset="utf-8">
-    
-        function checkNumber() {
-          navigator.globalization.numberToString(
-            3.1415926,
-            function (number) {alert('number: ' + number.value + '\n');},
-            function () {alert('Error getting number\n');},
-            {type:'decimal'}
-          );
-        }
-    
-        </script>
-      </head>
-      <body>
-        <button onclick="checkNumber()">Click for number</button>
-      </body>
-    </html>
\ No newline at end of file


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