You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/08/30 19:26:09 UTC

[19/36] Add edge for Spanish, French, and Chinese.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/geolocation/geolocation.md b/docs/fr/edge/cordova/geolocation/geolocation.md
new file mode 100644
index 0000000..08803aa
--- /dev/null
+++ b/docs/fr/edge/cordova/geolocation/geolocation.md
@@ -0,0 +1,81 @@
+---
+
+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.
+---
+
+# Géolocalisation
+
+> Le `geolocation` objet fournit l'accès aux données de localisation basée sur le capteur du dispositif GPS ou déduit de signaux de réseaux.
+
+`Geolocation`fournit des informations sur l'emplacement de l'appareil, tels que la latitude et la longitude. Des sources communes d'information incluent système de positionnement Global (GPS) et l'emplacement déduit de signaux de réseaux tels qu'adresse IP, RFID, WiFi et Bluetooth MAC adresses et GSM/CDMA cell ID. Il n'y a aucune garantie que l'API retourne la position réelle de l'appareil.
+
+Cette API est basée sur la [Spécification de W3C Geolocation API][1]et s'exécute uniquement sur les périphériques qui ne fournissent déjà une implémentation.
+
+ [1]: http://dev.w3.org/geo/api/spec-source.html
+
+**Remarque importante de la vie privée :** Collecte et utilisation des données de géolocalisation soulève des questions importantes de la vie privée. Politique de confidentialité de votre application devrait discuter de comment l'application utilise les données de géolocalisation, si elle est partagée avec d'autres parties et le niveau de précision des données (par exemple, grossière et fine, ZIP code niveau, etc.). Données de géolocalisation sont généralement considéré comme sensibles car elle peut révéler l'endroit où se trouve une personne et, si stocké, l'histoire de ses voyages. Par conséquent, en plus de la politique de confidentialité de votre application, vous devez envisager fortement fournissant un avis de juste-à-temps avant votre application pour accéder aux données de géolocalisation (si le système d'exploitation de périphérique n'est pas faire déjà). Cet avis doit fournir les mêmes renseignements susmentionnées, ainsi que d'obtenir l'
 autorisation de l'utilisateur (par exemple, en présentant des choix **OK** et **Non merci**). Pour plus d'informations, consultez le Guide de la vie privée.
+
+## Méthodes
+
+*   geolocation.getCurrentPosition
+*   geolocation.watchPosition
+*   geolocation.clearWatch
+
+## Arguments
+
+*   geolocationSuccess
+*   geolocationError
+*   geolocationOptions
+
+## Objets (lecture seule)
+
+*   Position
+*   PositionError
+*   Coordonnées
+
+## Accéder à la fonctionnalité
+
+Depuis la version 3.0, Cordova implémente API au niveau du périphérique comme les *plugins*. Utiliser de la CLI `plugin` commande, décrite dans l'Interface de ligne de commande, d'ajouter ou de supprimer cette fonction pour un projet :
+
+        $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git
+        $ cordova plugin rm org.apache.cordova.core.geolocation
+    
+
+Ces commandes s'appliquent à toutes les plates-formes ciblées, mais modifier les paramètres de configuration spécifiques à la plateforme décrites ci-dessous :
+
+*   Android
+    
+        (in app/res/XML/config.Xml) < nom de la fonction = "Géolocalisation" >< param name = "android-package" value="org.apache.cordova.GeoBroker" / >< / fiction > (dans app/AndroidManifest.xml) < permissions des utilisations android:name="android.permission.ACCESS_COARSE_LOCATION" / >< permissions des utilisations android:name="android.permission.ACCESS_FINE_LOCATION" / >< permissions des utilisations android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" / >
+        
+
+*   BlackBerry WebWorks
+    
+        (in www/plugins.Xml) < nom de la fonction = "Géolocalisation" >< param name = "blackberry-package" value="org.apache.cordova.geolocation.Geolocation" / >< / fiction > (dans www/config.xml) < jante : autorisations >< jante : permis > read_geolocation < / jante : permis >< / jante : autorisations >
+        
+
+*   iOS (en`config.xml`)
+    
+        < nom de la fonction = « Géolocalisation » >< param name = « ios-paquet » value = « CDVLocation » / >< / fiction >
+        
+
+*   Windows Phone (en`Properties/WPAppManifest.xml`)
+    
+        < capacités >< capacité nom = « ID_CAP_LOCATION » / >< / capacités >
+        
+    
+    Référence : [manifeste d'Application pour Windows Phone][2]
+
+ [2]: http://msdn.microsoft.com/en-us/library/ff769509%28v=vs.92%29.aspx
+
+Certaines plates-formes peuvent prendre en charge cette fonctionnalité sans nécessiter aucune configuration spéciale. Voir plate-forme prise en charge pour une vue d'ensemble.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/geolocation/geolocation.watchPosition.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/geolocation/geolocation.watchPosition.md b/docs/fr/edge/cordova/geolocation/geolocation.watchPosition.md
new file mode 100644
index 0000000..507dcaf
--- /dev/null
+++ b/docs/fr/edge/cordova/geolocation/geolocation.watchPosition.md
@@ -0,0 +1,121 @@
+---
+
+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
+
+Montres pour faire modifier la position actuelle de l'appareil.
+
+    var watchId = navigator.geolocation.watchPosition(geolocationSuccess,
+                                                      [geolocationError],
+                                                      [geolocationOptions]);
+    
+
+## Paramètres
+
+*   **geolocationSuccess**: la fonction de rappel qui est passée de la position actuelle.
+
+*   **geolocationError**: (en option) la fonction de rappel qui s'exécute si une erreur survient.
+
+*   **geolocationOptions**: options (facultatif) la géolocalisation.
+
+## Retours
+
+*   **Chaîne**: retourne un id de montre qui fait référence à l'intervalle de position montre. L'id de la montre doit être utilisé avec `geolocation.clearWatch` d'arrêter de regarder pour les changements de position.
+
+## Description
+
+`geolocation.watchPosition`est une fonction asynchrone. Elle retourne la position actuelle de l'appareil lorsqu'un changement de position est détecté. Lorsque l'appareil récupère un nouvel emplacement, le `geolocationSuccess` rappel s'exécute avec un `Position` objet comme paramètre. Si une erreur se produit, le `geolocationError` rappel s'exécute avec un `PositionError` objet comme paramètre.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Paciarelli
+*   Windows Phone 7 et 8
+*   Windows 8
+
+## Petit exemple
+
+    // 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 });
+    
+
+## Exemple complet
+
+    <!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/992e9151/docs/fr/edge/cordova/geolocation/parameters/geolocation.options.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/geolocation/parameters/geolocation.options.md b/docs/fr/edge/cordova/geolocation/parameters/geolocation.options.md
new file mode 100644
index 0000000..85c5406
--- /dev/null
+++ b/docs/fr/edge/cordova/geolocation/parameters/geolocation.options.md
@@ -0,0 +1,34 @@
+---
+
+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
+
+Paramètres optionnels pour personnaliser la récupération de la géolocalisation`Position`.
+
+    {maximumAge : 3000, délai d'attente : 5000, enableHighAccuracy : true} ;
+    
+
+## Options
+
+*   **enableHighAccuracy**: fournit une indication que l'application doit les meilleurs résultats possibles. Par défaut, l'appareil tente de récupérer un `Position` à l'aide de méthodes basées sur le réseau. Définition de cette propriété `true` indique à l'infrastructure d'utiliser des méthodes plus précises, telles que la localisation par satellite. *(Boolean)*
+
+*   **délai d'attente**: la longueur maximale de temps (en millisecondes) qui peut passer de l'appel à `geolocation.getCurrentPosition` ou `geolocation.watchPosition` jusqu'à ce que le correspondant `geolocationSuccess` rappel s'exécute. Si le `geolocationSuccess` rappel n'est pas appelé dans ce délai, le `geolocationError` rappel est passé un `PositionError.TIMEOUT` code d'erreur. (Notez que lorsqu'il est utilisé en conjonction avec `geolocation.watchPosition` , le `geolocationError` rappel pourrait être appelé sur un intervalle tous `timeout` millisecondes!) *(Nombre)*
+
+*   **maximumAge**: accepter un poste en cache dont l'âge ne dépasse pas le délai en millisecondes. *(Nombre)*
+
+## Quirks Android
+
+Émulateurs Android 2.x ne pas retournent un résultat de géolocalisation, à moins que le `enableHighAccuracy` option est définie sur`true`.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/geolocation/parameters/geolocationError.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/geolocation/parameters/geolocationError.md b/docs/fr/edge/cordova/geolocation/parameters/geolocationError.md
new file mode 100644
index 0000000..3ea6597
--- /dev/null
+++ b/docs/fr/edge/cordova/geolocation/parameters/geolocationError.md
@@ -0,0 +1,28 @@
+---
+
+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
+
+Fonction de rappel de l'utilisateur qui s'exécute lorsqu'une erreur se produit pour les fonctions de géolocalisation.
+
+    function(error) {
+        // Handle the error
+    }
+    
+
+## Paramètres
+
+*   **erreur**: l'erreur retournée par le périphérique. *(PositionError)*
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/geolocation/parameters/geolocationSuccess.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/geolocation/parameters/geolocationSuccess.md b/docs/fr/edge/cordova/geolocation/parameters/geolocationSuccess.md
new file mode 100644
index 0000000..e0ecc4a
--- /dev/null
+++ b/docs/fr/edge/cordova/geolocation/parameters/geolocationSuccess.md
@@ -0,0 +1,41 @@
+---
+
+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
+
+Fonction de rappel de l'utilisateur qui s'exécute lorsqu'une position de géolocalisation sera disponible (lorsqu'elle est appelée de `geolocation.getCurrentPosition` ), ou lorsque la position de change (lorsqu'il est appelé par`geolocation.watchPosition`).
+
+    function(position) {
+        // Do something
+    }
+    
+
+## Paramètres
+
+*   **position**: la position de géolocalisation retournée par le périphérique. *(Position)*
+
+## Exemple
+
+    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/992e9151/docs/fr/edge/cordova/globalization/GlobalizationError/globalizationerror.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/GlobalizationError/globalizationerror.md b/docs/fr/edge/cordova/globalization/GlobalizationError/globalizationerror.md
new file mode 100644
index 0000000..7719ff7
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/GlobalizationError/globalizationerror.md
@@ -0,0 +1,84 @@
+---
+
+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
+
+Un objet qui représente une erreur de l'API de la mondialisation.
+
+## Propriétés
+
+*   **code**: Un des codes suivants qui représente le type d'erreur *(Nombre)* 
+    *   GlobalizationError.UNKNOWN _ erreur: 0
+    *   GlobalizationError.FORMATTING _ erreur: 1
+    *   GlobalizationError.PARSING _ erreur: 2
+    *   GlobalizationError.PATTERN _ erreur: 3
+*   **message**: un message texte qui comprend l'explication de l'erreur et/ou de détails *(String)*
+
+## Description
+
+Cet objet est créé et peuplé de Cordova et retourné à un rappel en cas d'erreur.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+
+## Petit exemple
+
+Lorsque le rappel d'erreur suivant s'exécute, il affiche une fenêtre popup avec le texte semblable à `code: 3` et`message:`
+
+    function errorCallback(error) {
+        alert('code: ' + error.code + '\n' +
+              'message: ' + error.message + '\n');
+    };
+    
+
+## Exemple complet
+
+    <!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/992e9151/docs/fr/edge/cordova/globalization/globalization.dateToString.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.dateToString.md b/docs/fr/edge/cordova/globalization/globalization.dateToString.md
new file mode 100644
index 0000000..474864c
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.dateToString.md
@@ -0,0 +1,87 @@
+---
+
+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
+
+Renvoie une date mise en forme comme une chaîne selon les paramètres régionaux du client et de fuseau horaire.
+
+    navigator.globalization.dateToString(date, successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne la date de mise en forme `String` par une `value` propriété accessible à partir de l'objet passé comme paramètre à la`successCallback`.
+
+Les entrants `date` paramètre doit être de type`Date`.
+
+S'il y a une erreur de mise en forme la date, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.FORMATTING\_ERROR`.
+
+Le `options` paramètre est facultatif, et ses valeurs par défaut sont :
+
+    {formatLength: « court », sélecteur: « date et heure »}
+    
+
+Le `options.formatLength` peut être `short` , `medium` , `long` , ou`full`.
+
+Le `options.selector` peut être `date` , `time` ou`date and time`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Si le navigateur est configuré pour la `en\_US` locale, cela permet d'afficher une boîte de dialogue contextuelle avec un texte semblable à `date: 9/25/2012 4:21PM` en utilisant les options par défaut :
+
+    navigator.globalization.dateToString(
+        new Date(),
+        function (date) { alert('date: ' + date.value + '\n'); },
+        function () { alert('Error getting dateString\n'); },
+        { formatLength: 'short', selector: 'date and time' }
+    );
+    
+
+## Exemple complet
+
+    <!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 Quirks
+
+*   Le `formatLength` prend en charge uniquement l'option `short` et `full` valeurs.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.getCurrencyPattern.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getCurrencyPattern.md b/docs/fr/edge/cordova/globalization/globalization.getCurrencyPattern.md
new file mode 100644
index 0000000..f0a014b
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getCurrencyPattern.md
@@ -0,0 +1,105 @@
+---
+
+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
+
+Retourne une chaîne de modèles pour formater et analyser les valeurs de monnaie selon les préférences de l'utilisateur et du code de devise ISO 4217 du client.
+
+     navigator.globalization.getCurrencyPattern(currencyCode, successCallback, errorCallback);
+    
+
+## Description
+
+Retourne le modèle de la `successCallback` avec un `properties` objet comme paramètre. Cet objet doit contenir les propriétés suivantes :
+
+*   **modèle**: le modèle de la monnaie de formater et d'analyser les valeurs de devise. Les patrons de suivent la norme technique Unicode #35. <http://unicode.org/reports/tr35/tr35-4.html>. *(String)*
+
+*   **code**: code de devise de l'ISO 4217 pour le modèle. *(String)*
+
+*   **fraction**: le nombre de chiffres fractionnaires à utiliser lors de l'analyse et de formatage de devises. *(Nombre)*
+
+*   **arrondissement**: l'arrondi incrémenter pour utiliser lors de l'analyse et de mise en forme. *(Nombre)*
+
+*   **décimal**: le symbole décimal à utiliser pour l'analyse et de mise en forme. *(String)*
+
+*   **regroupement**: le symbole de groupe à utiliser pour l'analyse et de mise en forme. *(String)*
+
+Les entrants `currencyCode` paramètre doit être un `String` de l'un des codes de devise ISO 4217, par exemple « USD ».
+
+S'il y a une erreur, obtenir le modèle, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.FORMATTING\_ERROR`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale et la devise sélectionnée est Dollars des États-Unis, cet exemple pour afficher une fenêtre popup avec un texte semblable aux résultats qui suivent :
+
+    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'); }
+    );
+    
+
+Résultat escompté :
+
+    pattern: $#,##0.##;($#,##0.##)
+    code: USD
+    fraction: 2
+    rounding: 0
+    decimal: .
+    grouping: ,
+    
+
+## Exemple complet
+
+    <!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/992e9151/docs/fr/edge/cordova/globalization/globalization.getDateNames.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getDateNames.md b/docs/fr/edge/cordova/globalization/globalization.getDateNames.md
new file mode 100644
index 0000000..1658db0
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getDateNames.md
@@ -0,0 +1,87 @@
+---
+
+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
+
+Retourne un tableau des noms des mois ou jours de la semaine, selon le calendrier et les préférences de l'utilisateur du client.
+
+    navigator.globalization.getDateNames(successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne le tableau de noms à la `successCallback` avec un `properties` objet comme paramètre. Cet objet contient une `value` propriété avec un `Array` de `String` valeurs. Les noms de fonctionnalités de tableau à partir de soit le premier mois de l'année ou le premier jour de la semaine, selon l'option choisie.
+
+S'il y a une erreur d'obtention des noms, puis les `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.UNKNOWN\_ERROR`.
+
+Le `options` paramètre est facultatif, et ses valeurs par défaut sont :
+
+    {type: « large », item: « mois »}
+    
+
+La valeur de `options.type` peut être `narrow` ou`wide`.
+
+La valeur de `options.item` peut être `months` ou`days`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cet exemple affiche une série de douze fenêtres popup, un par mois, avec un texte semblable à `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' }
+    );
+    
+
+## Exemple complet
+
+    <!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/992e9151/docs/fr/edge/cordova/globalization/globalization.getDatePattern.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getDatePattern.md b/docs/fr/edge/cordova/globalization/globalization.getDatePattern.md
new file mode 100644
index 0000000..fdf8f41
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getDatePattern.md
@@ -0,0 +1,99 @@
+---
+
+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
+
+Retourne une chaîne de modèles pour formater et d'analyser les dates selon les préférences de l'utilisateur du client.
+
+    navigator.globalization.getDatePattern(successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne le modèle de la `successCallback` . L'objet passé comme paramètre contient les propriétés suivantes :
+
+*   **modèle**: le modèle de date et d'heure pour formater et analyser des dates. Les modèles suivent Unicode Technical Standard #35. <http://unicode.org/reports/tr35/tr35-4.html>. *(String)*
+
+*   **fuseau horaire**: l'abréviation du fuseau horaire sur le client. *(String)*
+
+*   **utc_offset**: la différence actuelle en secondes entre le temps universel coordonné et du fuseau horaire du client. *(Nombre)*
+
+*   **DST_OFFSET**: l'offset d'heure actuel en secondes entre non-heure le client du fuseau horaire et l'heure du client sauver du fuseau horaire. *(Nombre)*
+
+S'il y a une erreur, obtenir le modèle, le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.PATTERN\_ERROR`.
+
+Le `options` paramètre est facultatif et par défaut les valeurs suivantes :
+
+    {formatLength: « court », sélecteur: « date et heure »}
+    
+
+Le `options.formatLength` peut être `short` , `medium` , `long` , ou `full` . Le `options.selector` peut être `date` , `time` ou`date and
+time`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cet exemple pour afficher une fenêtre popup avec texte comme `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' }
+        );
+    }
+    
+
+## Exemple complet
+
+    <!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 Quirks
+
+*   Le `formatLength` prend uniquement en charge `short` et `full` valeurs.
+
+*   Le `pattern` pour `date and time` modèle retourne uniquement datetime plein format.
+
+*   Le `timezone` retourne le nom de zone à temps plein.
+
+*   La `dst_offset` propriété n'est pas prise en charge, et toujours retourne zéro.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.getFirstDayOfWeek.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getFirstDayOfWeek.md b/docs/fr/edge/cordova/globalization/globalization.getFirstDayOfWeek.md
new file mode 100644
index 0000000..c6d9e9e
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getFirstDayOfWeek.md
@@ -0,0 +1,68 @@
+---
+
+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
+
+Retourne le premier jour de la semaine selon le calendrier et les préférences de l'utilisateur du client.
+
+    navigator.globalization.getFirstDayOfWeek(successCallback, errorCallback);
+    
+
+## Description
+
+Les jours de la semaine sont numérotés à partir de 1, où 1 est supposé pour être le dimanche. Retourne le jour de la `successCallback` avec un `properties` objet comme paramètre. Cet objet doit avoir une `value` propriété avec une `Number` valeur.
+
+S'il y a une erreur, obtenir le modèle, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.UNKNOWN\_ERROR`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cela permet d'afficher une boîte de dialogue contextuelle avec un texte semblable à`day: 1`.
+
+    navigator.globalization.getFirstDayOfWeek(
+        function (day) {alert('day: ' + day.value + '\n');},
+        function () {alert('Error getting day\n');}
+    );
+    
+
+## Exemple complet
+
+    <!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/992e9151/docs/fr/edge/cordova/globalization/globalization.getLocaleName.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getLocaleName.md b/docs/fr/edge/cordova/globalization/globalization.getLocaleName.md
new file mode 100644
index 0000000..cb47eb2
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getLocaleName.md
@@ -0,0 +1,72 @@
+---
+
+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
+
+Obtenir l'identificateur de chaîne pour paramètre de langue actuel du client.
+
+    navigator.globalization.getLocaleName(successCallback, errorCallback);
+    
+
+## Description
+
+Retourne la chaîne d'identificateur de paramètres régionaux pour le `successCallback` avec un `properties` objet comme paramètre. Cet objet doit avoir une `value` propriété avec une `String` valeur.
+
+S'il y a une erreur d'obtenir les paramètres régionaux, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.UNKNOWN\_ERROR`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, ceci pour afficher une fenêtre popup avec le texte`locale: en\_US`.
+
+    navigator.globalization.getLocaleName(
+        function (locale) {alert('locale: ' + locale.value + '\n');},
+        function () {alert('Error getting locale\n');}
+    );
+    
+
+## Exemple complet
+
+    <!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 Quirks
+
+*   Retourne le code à deux lettres défini dans ISO 3166 pour le pays/la région actuelle.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.getNumberPattern.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getNumberPattern.md b/docs/fr/edge/cordova/globalization/globalization.getNumberPattern.md
new file mode 100644
index 0000000..987fa75
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getNumberPattern.md
@@ -0,0 +1,121 @@
+---
+
+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
+
+Retourne une chaîne de modèles pour formater et d'analyser les chiffres selon les préférences de l'utilisateur du client.
+
+    navigator.globalization.getNumberPattern(successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne le modèle de la `successCallback` avec un `properties` objet comme paramètre. Cet objet contient les propriétés suivantes :
+
+*   **modèle**: le modèle de numéro de formater et d'analyser les chiffres. Les modèles suivent Unicode Technical Standard #35. <http://unicode.org/reports/tr35/tr35-4.html>. *(String)*
+
+*   **symbole**: le symbole à utiliser lors de la mise en forme et l'analyse, comme un symbole de pourcentage ou de la monnaie. *(String)*
+
+*   **fraction**: le nombre de chiffres fractionnaires à utiliser lors de l'analyse et de mise en forme des nombres. *(Nombre)*
+
+*   **arrondissement**: l'arrondi incrémenter pour utiliser lors de l'analyse et de mise en forme. *(Nombre)*
+
+*   **positif**: le symbole à utiliser pour les nombres positifs lors de l'analyse et de mise en forme. *(String)*
+
+*   **négatif**: le symbole à utiliser pour les nombres négatifs lors de l'analyse et de mise en forme. *(String)*
+
+*   **décimal**: le symbole décimal à utiliser pour l'analyse et de mise en forme. *(String)*
+
+*   **regroupement**: le symbole de groupe à utiliser pour l'analyse et de mise en forme. *(String)*
+
+S'il y a une erreur, obtenir le modèle, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.PATTERN\_ERROR`.
+
+Le `options` paramètre est facultatif, et les valeurs par défaut sont :
+
+    {type: « decimal »}
+    
+
+Le `options.type` peut être `decimal` , `percent` , ou`currency`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cela doit afficher une boîte de dialogue contextuelle avec un texte semblable aux résultats qui suivent :
+
+    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'}
+    );
+    
+
+Résultats :
+
+    modèle: #, ##0. ### symbole:.
+    fraction : arrondi 0: 0 positif : négatif: - décimal:.
+    regroupement:,
+    
+
+## Exemple complet
+
+    <!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 Quirks
+
+*   La `pattern` propriété n'est pas prise en charge et retuens une chaîne vide.
+
+*   La `fraction` propriété n'est pas prise en charge et retourne zéro.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.getPreferredLanguage.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.getPreferredLanguage.md b/docs/fr/edge/cordova/globalization/globalization.getPreferredLanguage.md
new file mode 100644
index 0000000..e4cb9f8
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.getPreferredLanguage.md
@@ -0,0 +1,72 @@
+---
+
+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
+
+Obtenir l'identificateur de chaîne pour la langue du client actuel.
+
+    navigator.globalization.getPreferredLanguage(successCallback, errorCallback);
+    
+
+## Description
+
+Retourne la chaîne d'identificateur de langue à la `successCallback` avec un `properties` objet comme paramètre. Cet objet doit avoir une `value` propriété avec une `String` valeur.
+
+S'il y a une erreur d'obtention de la langue, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.UNKNOWN\_ERROR`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cela doit afficher une boîte de dialogue contextuelle avec le texte `language: English` :
+
+    navigator.globalization.getPreferredLanguage(
+        function (language) {alert('language: ' + language.value + '\n');},
+        function () {alert('Error getting language\n');}
+    );
+    
+
+## Exemple complet
+
+    <!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 Quirks
+
+*   Retourne le code à deux lettres ISO 639-1 pour la langue actuelle.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.isDayLightSavingsTime.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.isDayLightSavingsTime.md b/docs/fr/edge/cordova/globalization/globalization.isDayLightSavingsTime.md
new file mode 100644
index 0000000..910eed4
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.isDayLightSavingsTime.md
@@ -0,0 +1,72 @@
+---
+
+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
+
+Indique si l'heure avancée est en vigueur pour une date donnée en utilisant le calendrier et le fuseau horaire du client.
+
+    navigator.globalization.isDayLightSavingsTime(date, successCallback, errorCallback);
+    
+
+## Description
+
+Indique si l'heure avancée est en vigueur à la `successCallback` avec un `properties` objet comme paramètre. Cet objet doit avoir une `dst` propriété avec une `Boolean` valeur. A `true` valeur indique que l'heure avancée est en vigueur à la date donnée, et `false` indique qu'il ne l'est pas.
+
+Le paramètre entrant `date` doit être de type`Date`.
+
+S'il y a une erreur de lecture de la date, puis le `errorCallback` s'exécute. Code attendu de l'erreur est`GlobalizationError.UNKNOWN\_ERROR`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Au cours de l'été, et si le navigateur est défini sur un fuseau horaire la DST-activé, il doit afficher une boîte de dialogue contextuelle avec un texte semblable à `dst: true` :
+
+    navigator.globalization.isDayLightSavingsTime(
+        new Date(),
+        function (date) {alert('dst: ' + date.dst + '\n');},
+        function () {alert('Error getting names\n');}
+    );
+    
+
+## Exemple complet
+
+    <!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/992e9151/docs/fr/edge/cordova/globalization/globalization.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.md b/docs/fr/edge/cordova/globalization/globalization.md
new file mode 100644
index 0000000..4c692a3
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.md
@@ -0,0 +1,63 @@
+---
+
+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.
+---
+
+# Mondialisation
+
+Obtient des informations et effectue des opérations spécifiques aux paramètres régionaux et le fuseau horaire de l'utilisateur.
+
+## Objets
+
+*   GlobalizationError
+
+## Méthodes
+
+*   globalization.getPreferredLanguage
+*   globalization.getLocaleName
+*   globalization.dateToString
+*   globalization.stringToDate
+*   globalization.getDatePattern
+*   globalization.getDateNames
+*   globalization.isDayLightSavingsTime
+*   globalization.getFirstDayOfWeek
+*   globalization.numberToString
+*   globalization.stringToNumber
+*   globalization.getNumberPattern
+*   globalization.getCurrencyPattern
+
+## Portée des variables
+
+Le `globalization` objet est un enfant de la `navigator` s'opposent, et a donc une portée globale.
+
+    // The global globalization object
+    var globalization = navigator.globalization;
+    
+
+## Accéder à la fonctionnalité
+
+Depuis la version 3.0, Cordova implémente API au niveau du périphérique comme les *plugins*. Utiliser de la CLI `plugin` commande, décrite dans l'Interface de ligne de commande, d'ajouter ou de supprimer cette fonction pour un projet :
+
+        $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization.git
+        $ cordova plugin rm org.apache.cordova.core.globalization
+    
+
+Ces commandes s'appliquent à toutes les plates-formes ciblées, mais modifier les paramètres de configuration spécifiques à la plateforme décrites ci-dessous :
+
+*   Android (dans`app/res/xml/config.xml`)
+    
+        < nom de la fonction = "Mondialisation" >< param name = "android-package" value="org.apache.cordova.Globalization" / >< / fiction >
+        
+
+Certaines plates-formes peuvent prendre en charge cette fonctionnalité sans nécessiter aucune configuration spéciale. Voir plate-forme prise en charge pour une vue d'ensemble.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.numberToString.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.numberToString.md b/docs/fr/edge/cordova/globalization/globalization.numberToString.md
new file mode 100644
index 0000000..fd6f73e
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.numberToString.md
@@ -0,0 +1,79 @@
+---
+
+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
+
+Renvoie un nombre mis en forme comme une chaîne selon les préférences de l'utilisateur du client.
+
+    navigator.globalization.numberToString(number, successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne la chaîne mise en forme de nombre à la `successCallback` avec un `properties` objet comme paramètre. Cet objet doit avoir une `value` propriété avec une `String` valeur.
+
+S'il y a une erreur de mise en forme le nombre, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.FORMATTING\_ERROR`.
+
+Le `options` paramètre est facultatif, et ses valeurs par défaut sont :
+
+    {type: « decimal »}
+    
+
+Le `options.type` peut être « decimal », « % » ou « monnaie ».
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cela permet d'afficher une boîte de dialogue contextuelle avec un texte semblable à `number: 3.142` :
+
+    navigator.globalization.numberToString(
+        3.1415926,
+        function (number) {alert('number: ' + number.value + '\n');},
+        function () {alert('Error getting number\n');},
+        {type:'decimal'}
+    );
+    
+
+## Exemple complet
+
+    <!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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.stringToDate.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.stringToDate.md b/docs/fr/edge/cordova/globalization/globalization.stringToDate.md
new file mode 100644
index 0000000..3c6d576
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.stringToDate.md
@@ -0,0 +1,105 @@
+---
+
+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.stringToDate
+
+Analyse une date mise en forme comme une chaîne, en fonction des préférences de l'utilisateur et du calendrier en utilisant le fuseau horaire du client, du client et retourne l'objet date correspondante.
+
+    navigator.globalization.stringToDate(dateString, successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne la date du rappel de succès avec un `properties` objet comme paramètre. Cet objet doit avoir les propriétés suivantes :
+
+*   **année**: l'année à quatre chiffres. *(Nombre)*
+
+*   **mois**: le mois de (0-11). *(Nombre)*
+
+*   **jour**: le jour de (1-31). *(Nombre)*
+
+*   **heure**: l'heure du (0-23). *(Nombre)*
+
+*   **minute**: la minute (0-59). *(Nombre)*
+
+*   **deuxième**: la seconde de (0 à 59). *(Nombre)*
+
+*   **milliseconde**: les millisecondes (entre 0 et 999), non disponibles sur toutes les plateformes. *(Nombre)*
+
+Les entrants `dateString` paramètre doit être de type`String`.
+
+Le `options` paramètre est facultatif et par défaut les valeurs suivantes :
+
+    {formatLength: « court », sélecteur: « date et heure »}
+    
+
+Le `options.formatLength` peut être `short` , `medium` , `long` , ou `full` . Le `options.selector` peut être `date` , `time` ou`date and
+time`.
+
+S'il y a une erreur, l'analyse de la chaîne de date, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.PARSING\_ERROR`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cela permet d'afficher une boîte de dialogue contextuelle avec un texte semblable à `month:8 day:25 year:2012` . Notez que le mois entier est l'un de moins que la chaîne, comme le nombre entier de mois représente un index de tableau.
+
+    navigator.globalization.stringToDate(
+        '9/25/2012',
+        function (date) {alert('month:' + date.month +
+                               ' day:'  + date.day   +
+                               ' year:' + date.year  + '\n');},
+        function () {alert('Error getting date\n');},
+        {selector: 'date'}
+    );
+    
+
+## Exemple complet
+
+    <!DOCTYPE HTML>
+    <html>
+      <head>
+        <title>stringToDate Example</title>
+        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
+        <script type="text/javascript" charset="utf-8">
+    
+        function checkStringDate() {
+          navigator.globalization.stringToDate(
+            '9/25/2012',
+            function (date) {alert('month:' + date.month +
+                                   ' day:' + date.day +
+                                   ' year:' + date.year + '\n');},
+            function () {alert('Error getting date\n');},
+            {selector:'date'}
+          );
+        }
+    
+        </script>
+      </head>
+      <body>
+        <button onclick="checkStringDate()">Click for parsed date</button>
+      </body>
+    </html>
+    
+
+## Windows Phone 8 Quirks
+
+*   Le `formatLength` prend en charge uniquement l'option `short` et `full` valeurs.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/globalization/globalization.stringToNumber.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/globalization/globalization.stringToNumber.md b/docs/fr/edge/cordova/globalization/globalization.stringToNumber.md
new file mode 100644
index 0000000..7a0d277
--- /dev/null
+++ b/docs/fr/edge/cordova/globalization/globalization.stringToNumber.md
@@ -0,0 +1,79 @@
+---
+
+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.stringToNumber
+
+Analyse un nombre mis en forme comme une chaîne selon les préférences de l'utilisateur du client et renvoie le numéro du correspondant.
+
+    navigator.globalization.stringToNumber(string, successCallback, errorCallback, options);
+    
+
+## Description
+
+Retourne le nombre de la `successCallback` avec un `properties` objet comme paramètre. Cet objet doit avoir une `value` propriété avec une `Number` valeur.
+
+S'il y a une erreur, l'analyse de la chaîne de numéro, puis le `errorCallback` s'exécute avec un `GlobalizationError` objet comme paramètre. Code attendu de l'erreur est`GlobalizationError.PARSING\_ERROR`.
+
+Le `options` paramètre est facultatif et par défaut les valeurs suivantes :
+
+    {type: « decimal »}
+    
+
+Le `options.type` peut être `decimal` , `percent` , ou`currency`.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry WebWorks (OS 5.0 et plus)
+*   iOS
+*   Windows Phone 8
+
+## Petit exemple
+
+Lorsque le navigateur est configuré pour la `en\_US` locale, cela doit afficher une boîte de dialogue contextuelle avec un texte semblable à `number: 1234.56` :
+
+    navigator.globalization.stringToNumber(
+        '1234.56',
+        function (number) {alert('number: ' + number.value + '\n');},
+        function () {alert('Error getting number\n');},
+        {type:'decimal'}
+    );
+    
+
+## Exemple complet
+
+    <!DOCTYPE HTML>
+    <html>
+      <head>
+        <title>stringToNumber Example</title>
+        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
+        <script type="text/javascript" charset="utf-8">
+    
+        function checkNumber() {
+          navigator.globalization.stringToNumber(
+            '1234.56',
+            function (number) {alert('number: ' + number.value + '\n');},
+            function () {alert('Error getting number\n');},
+            {type:'decimal'}
+          );
+        }
+    
+        </script>
+      </head>
+      <body>
+        <button onclick="checkNumber()">Click for parsed number</button>
+      </body>
+    </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/992e9151/docs/fr/edge/cordova/inappbrowser/inappbrowser.md
----------------------------------------------------------------------
diff --git a/docs/fr/edge/cordova/inappbrowser/inappbrowser.md b/docs/fr/edge/cordova/inappbrowser/inappbrowser.md
new file mode 100644
index 0000000..173e6d5
--- /dev/null
+++ b/docs/fr/edge/cordova/inappbrowser/inappbrowser.md
@@ -0,0 +1,326 @@
+---
+
+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.
+---
+
+# InAppBrowser
+
+> Le `InAppBrowser` est un navigateur web qui s'affiche dans l'application lors de l'appel`window.open`.
+
+    var ref = window.open('http://apache.org', '_blank', 'location=yes');
+    
+
+## Description
+
+L'objet retourné par un appel à`window.open`.
+
+## Méthodes
+
+*   addEventListener
+*   removeEventListener
+*   fermer
+*   Voir l'établissement
+*   executeScript
+*   insertCSS
+
+## Accéder à la fonctionnalité
+
+Depuis la version 3.0, Cordova implémente API au niveau du périphérique comme les *plugins*. Utiliser de la CLI `plugin` commande, décrite dans l'Interface de ligne de commande, d'ajouter ou de supprimer cette fonction pour un projet :
+
+        $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git
+        $ cordova plugin rm org.apache.cordova.core.inappbrowser
+    
+
+Ces commandes s'appliquent à toutes les plates-formes ciblées, mais modifier les paramètres de configuration spécifiques à la plateforme décrites ci-dessous :
+
+*   Android (dans`app/res/xml/config.xml`)
+    
+        < nom de la fonction = "InAppBrowser" >< param name = "android-package" value="org.apache.cordova.InAppBrowser" / >< / fiction >
+        
+
+*   iOS (en`config.xml`)
+    
+        < nom de la fonction = « InAppBrowser » >< param name = « ios-paquet » value = « CDVInAppBrowser » / >< / fiction >
+        
+
+*   Windows Phone 7 et 8 (en`config.xml`)
+    
+        < nom de la fonction = « InAppBrowser » / >
+        
+
+Certaines plates-formes peuvent prendre en charge cette fonctionnalité sans nécessiter aucune configuration spéciale. Voir plate-forme prise en charge pour une vue d'ensemble.
+
+# addEventListener
+
+> Ajoute un écouteur pour un événement de la`InAppBrowser`.
+
+    ref.addEventListener (eventname, callback) ;
+    
+
+*   **Réf**: référence à la `InAppBrowser` fenêtre *(InAppBrowser)*
+
+*   **EventName**: l'événement pour écouter les *(String)*
+    
+    *   **loadstart**: événement déclenche quand le `InAppBrowser` commence à charger une URL.
+    *   **loadstop**: événement déclenche lorsque la `InAppBrowser` finit de charger une URL.
+    *   **LoadError**: événement déclenche lorsque la `InAppBrowser` rencontre une erreur lors du chargement d'une URL.
+    *   **sortie**: événement déclenche quand le `InAppBrowser` fenêtre est fermée.
+
+*   **rappel**: la fonction qui s'exécute lorsque l'événement se déclenche. La fonction est passée un `InAppBrowserEvent` objet comme paramètre.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry
+*   iOS
+*   Windows Phone 7 et 8
+
+## Petit exemple
+
+    var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+    ref.addEventListener ('loadstart', function() {alert(event.url);}) ;
+    
+
+## Exemple complet
+
+    < !DOCTYPE html >< html >< tête >< titre > exemple InAppBrowser.addEventListener < / titre >< script type = "text/javascript" charset = "utf-8" src="cordova.js" >< / script >< script type = "text/javascript" charset = "utf-8" > / / attendre pour les bibliothèques de périphérique API charger / / document.addEventListener ("deviceready", onDeviceReady, false) ;
+    
+        / / périphérique API sont disponibles / / function onDeviceReady() {var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+             ref.addEventListener (« loadstart », function(event) {alert (' commencer: "+ event.url);}) ;
+             ref.addEventListener (« loadstop », function(event) {alert (' arrêter: "+ event.url);}) ;
+             ref.addEventListener (« loaderror », function(event) {alert ("error:" + event.message);}) ;
+             ref.addEventListener ("exit", function(event) {alert(event.type);}) ;
+        } < /script >< / chef >< corps >< body / >< / html >
+    
+
+# removeEventListener
+
+> Supprime un écouteur pour un événement de la`InAppBrowser`.
+
+    ref.removeEventListener (eventname, callback) ;
+    
+
+*   **Réf**: référence à la `InAppBrowser` fenêtre. *(InAppBrowser)*
+
+*   **EventName**: l'événement pour arrêter l'écoute. *(String)*
+    
+    *   **loadstart**: événement déclenche quand le `InAppBrowser` commence à charger une URL.
+    *   **loadstop**: événement déclenche lorsque la `InAppBrowser` finit de charger une URL.
+    *   **LoadError**: événement déclenche lorsque la `InAppBrowser` rencontre une erreur lors du chargement d'une URL.
+    *   **sortie**: événement déclenche quand le `InAppBrowser` fenêtre est fermée.
+
+*   **rappel**: la fonction à exécuter lorsque l'événement se déclenche. La fonction est passée un `InAppBrowserEvent` objet.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry
+*   iOS
+*   Windows Phone 7 et 8
+
+## Petit exemple
+
+    var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+    myCallback var = function() {alert(event.url);} ref.addEventListener ('loadstart', myCallback) ;
+    ref.removeEventListener ('loadstart', myCallback) ;
+    
+
+## Exemple complet
+
+    < !DOCTYPE html >< html >< tête >< titre > exemple InAppBrowser.removeEventListener < / titre >< script type = "text/javascript" charset = "utf-8" src="cordova.js" >< / script >< script type = "text/javascript" charset = "utf-8" > / / attendre pour les bibliothèques de périphérique API charger / / document.addEventListener ("deviceready", onDeviceReady, false) ;
+    
+        / / InAppBrowser global référence var iabRef = null ;
+    
+        function iabLoadStart(event) {alert (event.type + «-» + event.url) ;
+        } function iabLoadStop(event) {alert (event.type + «-» + event.url) ;
+        } function iabLoadError(event) {alert (event.type + «-» + event.message) ;
+        } function iabClose(event) {alert(event.type) ;
+             iabRef.removeEventListener ('loadstart', iabLoadStart) ;
+             iabRef.removeEventListener ('loadstop', iabLoadStop) ;
+             iabRef.removeEventListener ('loaderror', iabLoadError) ;
+             iabRef.removeEventListener ("quitter", iabClose) ;
+        } / / périphérique API sont disponibles / / function onDeviceReady() {iabRef = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+             iabRef.addEventListener ('loadstart', iabLoadStart) ;
+             iabRef.addEventListener ('loadstop', iabLoadStop) ;
+             iabRef.removeEventListener ('loaderror', iabLoadError) ;
+             iabRef.addEventListener ("quitter", iabClose) ;
+        } < /script >< / chef >< corps >< body / >< / html >
+    
+
+# fermer
+
+> Ferme la `InAppBrowser` fenêtre.
+
+    Ref.Close() ;
+    
+
+*   **Réf**: référence à la `InAppBrowser` fenêtre *(InAppBrowser)*
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry
+*   iOS
+*   Windows Phone 7 et 8
+
+## Petit exemple
+
+    var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+    Ref.Close() ;
+    
+
+## Exemple complet
+
+    < !DOCTYPE html >< html >< tête >< titre > exemple InAppBrowser.close < / titre >< script type = "text/javascript" charset = "utf-8" src="cordova.js" >< / script >< script type = "text/javascript" charset = "utf-8" > / / attendre pour les bibliothèques de périphérique API charger / / document.addEventListener ("deviceready", onDeviceReady, false) ;
+    
+        / / périphérique API sont disponibles / / function onDeviceReady() {var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+             / / fermer InAppBrowser après 5 secondes setTimeout(function() {ref.close() ;
+             }, 5000) ;
+        } < /script >< / chef >< corps >< body / >< / html >
+    
+
+# Voir l'établissement
+
+> Afficher une fenêtre de InAppBrowser qui ouvrit ses portes cachée. Appeler cela n'a aucun effet si la InAppBrowser était déjà visible.
+
+    Ref.Show() ;
+    
+
+*   **Réf :** référence à la fenêtre () InAppBrowser`InAppBrowser`)
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry
+*   iOS
+
+## Petit exemple
+
+    var Réf = window.open (« http://apache.org », « _blank », ' caché = « Oui) ;
+    Ref.Show() ;
+    
+
+## Exemple complet
+
+    < !DOCTYPE html >< html >< tête >< titre > exemple InAppBrowser.show < / titre >< script type = "text/javascript" charset = "utf-8" src="cordova.js" >< / script >< script type = "text/javascript" charset = "utf-8" > / / attendre Cordova charger / / document.addEventListener ("deviceready", onDeviceReady, false) ;
+    
+        / / Cordova est prêt / / function onDeviceReady() {var Réf = window.open (« http://apache.org », « _blank », ' caché = « Oui) ;
+             ref.addEventListener ('loadstop', function(event) {alert ('arrière-plan fenêtre chargé") ; 
+             });
+             / / fermer InAppBrowser après 5 secondes setTimeout(function() {ref.close() ;
+             }, 5000) ;
+        } < /script >< / chef >< corps >< body / >< / html >
+    
+
+# executeScript
+
+> Injecte du code JavaScript dans la `InAppBrowser` fenêtre
+
+    ref.executeScript (détails, callback) ;
+    
+
+*   **Réf**: référence à la `InAppBrowser` fenêtre. *(InAppBrowser)*
+
+*   **injectDetails**: Détails du script à exécuter, spécifiant soit un `file` ou `code` clés. *(Objet)*
+    
+    *   **fichier**: URL du script à injecter.
+    *   **code**: texte du script à injecter.
+
+*   **rappel**: la fonction qui s'exécute après le code JavaScript est injecté.
+    
+    *   Si le script injecté est de type `code` , le rappel s'exécute avec un seul paramètre, qui est la valeur renvoyée par le script, enveloppé dans une `Array` . Pour les scripts multilignes, c'est la valeur de retour de la dernière instruction, ou la dernière expression évaluée.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry
+*   iOS
+
+## Petit exemple
+
+    var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+    ref.addEventListener (« loadstop », function() {ref.executeSript ({fichier: « myscript.js »});}) ;
+    
+
+## Exemple complet
+
+    < !DOCTYPE html >< html >< tête >< titre > exemple InAppBrowser.executeScript < / titre >< script type = "text/javascript" charset = "utf-8" src="cordova.js" >< / script >< script type = "text/javascript" charset = "utf-8" > / / attendre pour les bibliothèques de périphérique API charger / / document.addEventListener ("deviceready", onDeviceReady, false) ;
+    
+        / / InAppBrowser global référence var iabRef = null ;
+    
+        / / Injecter notre JavaScript personnalisé dans la fenêtre de InAppBrowser / / function replaceHeaderImage() {iabRef.executeScript ({code: "var img=document.querySelector ('#header img') ; "img.src= 'http://cordova.apache.org/images/cordova_bot.png';"}, function() {alert ("Image élément avec succès détourné") ;
+            }} function iabClose(event) {iabRef.removeEventListener ('loadstop', replaceHeaderImage) ;
+             iabRef.removeEventListener ("quitter", iabClose) ;
+        } / / périphérique API sont disponibles / / function onDeviceReady() {iabRef = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+             iabRef.addEventListener ('loadstop', replaceHeaderImage) ;
+             iabRef.addEventListener ("quitter", iabClose) ;
+        } < /script >< / chef >< corps >< body / >< / html >
+    
+
+# insertCSS
+
+> Injecte CSS dans le `InAppBrowser` fenêtre.
+
+    ref.insertCSS (détails, callback) ;
+    
+
+*   **Réf**: référence à la `InAppBrowser` fenêtre *(InAppBrowser)*
+
+*   **injectDetails**: Détails du script à exécuter, spécifiant soit un `file` ou `code` clés. *(Objet)*
+    
+    *   **fichier**: URL de la feuille de style à injecter.
+    *   **code**: texte de la feuille de style à injecter.
+
+*   **rappel**: la fonction qui s'exécute après que le CSS est injecté.
+
+## Plates-formes prises en charge
+
+*   Android
+*   BlackBerry
+*   iOS
+
+## Petit exemple
+
+    var Réf = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+    ref.addEventListener (« loadstop », function() {ref.insertCSS ({fichier: « Messtyles.CSS »});}) ;
+    
+
+## Exemple complet
+
+    < !DOCTYPE html >< html >< tête >< titre > exemple InAppBrowser.insertCSS < / titre >< script type = "text/javascript" charset = "utf-8" src="cordova.js" >< / script >< script type = "text/javascript" charset = "utf-8" > / / attendre pour les bibliothèques de périphérique API charger / / document.addEventListener ("deviceready", onDeviceReady, false) ;
+    
+        / / InAppBrowser global référence var iabRef = null ;
+    
+        / / Injecter notre CSS personnalisé dans la fenêtre de InAppBrowser / / function changeBackgroundColor() {iabRef.insertCSS ({code: "corps {background : #ffff00"}, function() {alert ("Styles modifiés") ;
+            }} function iabClose(event) {iabRef.removeEventListener ('loadstop', changeBackgroundColor) ;
+             iabRef.removeEventListener ("quitter", iabClose) ;
+        } / / périphérique API sont disponibles / / function onDeviceReady() {iabRef = window.open (« http://apache.org », « _blank », ' emplacement = « Oui) ;
+             iabRef.addEventListener ('loadstop', changeBackgroundColor) ;
+             iabRef.addEventListener ("quitter", iabClose) ;
+        } < /script >< / chef >< corps >< body / >< / html >
+    
+
+# InAppBrowserEvent
+
+L'objet qui est passé à la fonction de rappel d'un `addEventListener` donne la parole à un `InAppBrowser` objet.
+
+## Propriétés
+
+*   **type**: l'eventname, soit `loadstart` , `loadstop` , `loaderror` , ou `exit` . *(String)*
+
+*   **URL**: l'URL qui a été chargé. *(String)*
+
+*   **code**: le code d'erreur, que dans le cas de `loaderror` . *(Nombre)*
+
+*   **message**: le message d'erreur que dans le cas de `loaderror` . *(String)*
\ No newline at end of file