diff options
Diffstat (limited to 'files/fr/web/api/storage')
-rw-r--r-- | files/fr/web/api/storage/clear/index.html | 4 | ||||
-rw-r--r-- | files/fr/web/api/storage/getitem/index.html | 8 | ||||
-rw-r--r-- | files/fr/web/api/storage/key/index.html | 2 | ||||
-rw-r--r-- | files/fr/web/api/storage/length/index.html | 2 | ||||
-rw-r--r-- | files/fr/web/api/storage/removeitem/index.html | 12 | ||||
-rw-r--r-- | files/fr/web/api/storage/setitem/index.html | 2 |
6 files changed, 15 insertions, 15 deletions
diff --git a/files/fr/web/api/storage/clear/index.html b/files/fr/web/api/storage/clear/index.html index 8d9d33100a..c177f94657 100644 --- a/files/fr/web/api/storage/clear/index.html +++ b/files/fr/web/api/storage/clear/index.html @@ -34,7 +34,7 @@ translation_of: Web/API/Storage/clear }</pre> <div class="note"> -<p><strong>Note</strong>: Pour voir un exemple réel, vous pouvez visitez notre <a href="https://mdn.github.io/dom-examples/web-storage/">Démo de stockage web</a>. Les modifications sont visibles dans la console, vous pouvez actualiser la page et conserver les modifications.</p> +<p><strong>Note :</strong> Pour voir un exemple réel, vous pouvez visitez notre <a href="https://mdn.github.io/dom-examples/web-storage/">Démo de stockage web</a>. Les modifications sont visibles dans la console, vous pouvez actualiser la page et conserver les modifications.</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -63,5 +63,5 @@ translation_of: Web/API/Storage/clear <h2 id="Voir_aussi">Voir aussi</h2> <ul> - <li><a href="https://developer.mozilla.org/fr/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Utilisation de l'API de stockage web</a></li> + <li><a href="/fr/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Utilisation de l'API de stockage web</a></li> </ul> diff --git a/files/fr/web/api/storage/getitem/index.html b/files/fr/web/api/storage/getitem/index.html index a81ccb0ccf..1e3f950436 100644 --- a/files/fr/web/api/storage/getitem/index.html +++ b/files/fr/web/api/storage/getitem/index.html @@ -13,7 +13,7 @@ translation_of: Web/API/Storage/getItem <h2 id="Syntax">Syntax</h2> -<pre class="syntaxbox notranslate">var <em>aValue</em> = <em>storage</em>.getItem(<em>keyName</em>); +<pre class="syntaxbox">var <em>aValue</em> = <em>storage</em>.getItem(<em>keyName</em>); </pre> <h3 id="Paramètre">Paramètre</h3> @@ -31,7 +31,7 @@ translation_of: Web/API/Storage/getItem <p>La fonction suivante récupère trois élément du stockage local, puis réutilise les valeurs renvoyés afin de modifier le style de la page .</p> -<pre class="brush: js notranslate">function setStyles() { +<pre class="brush: js">function setStyles() { var currentColor = localStorage.getItem('bgcolor'); var currentFont = localStorage.getItem('font'); var currentImage = localStorage.getItem('image'); @@ -46,7 +46,7 @@ translation_of: Web/API/Storage/getItem }</pre> <div class="note"> -<p><strong>Note</strong>: Pour voir cette fonction utilisée dans un exemple réel, dirigez-vous vers notre <a href="https://github.com/mdn/web-storage-demo">Demo de Stockage Web (en)</a>.</p> +<p><strong>Note :</strong> Pour voir cette fonction utilisée dans un exemple réel, dirigez-vous vers notre <a href="https://github.com/mdn/web-storage-demo">Demo de Stockage Web (en)</a>.</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -74,4 +74,4 @@ translation_of: Web/API/Storage/getItem <h2 id="Voir_aussi">Voir aussi</h2> -<p><a href="https://developer.mozilla.org/fr/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Utilisation de l'API de stockage web</a></p> +<p><a href="/fr/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Utilisation de l'API de stockage web</a></p> diff --git a/files/fr/web/api/storage/key/index.html b/files/fr/web/api/storage/key/index.html index 50cbfaaabe..97e9160b4c 100644 --- a/files/fr/web/api/storage/key/index.html +++ b/files/fr/web/api/storage/key/index.html @@ -40,7 +40,7 @@ translation_of: Web/API/Storage/key }</pre> <div class="note"> -<p><strong>Note</strong>: Pour un exemple plus poussé, consultez la <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> +<p><strong>Note :</strong> Pour un exemple plus poussé, consultez la <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> </div> <h2 id="Autre_exemple">Autre exemple</h2> diff --git a/files/fr/web/api/storage/length/index.html b/files/fr/web/api/storage/length/index.html index 09ccc26c76..b8479be8fa 100644 --- a/files/fr/web/api/storage/length/index.html +++ b/files/fr/web/api/storage/length/index.html @@ -34,7 +34,7 @@ translation_of: Web/API/Storage/length }</pre> <div class="note"> -<p><strong>Note</strong> : Pour voir ceci utilisé dans un exemple concret, regardez notre <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> +<p><strong>Note :</strong> Pour voir ceci utilisé dans un exemple concret, regardez notre <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> </div> <h2 id="Spécifications">Spécifications</h2> diff --git a/files/fr/web/api/storage/removeitem/index.html b/files/fr/web/api/storage/removeitem/index.html index f978fceb95..40a61a48e0 100644 --- a/files/fr/web/api/storage/removeitem/index.html +++ b/files/fr/web/api/storage/removeitem/index.html @@ -16,12 +16,12 @@ translation_of: Web/API/Storage/removeItem <h2 id="Syntaxe">Syntaxe</h2> -<pre class="syntaxbox notranslate"><em>storage</em>.removeItem(<em>nomCle</em>);</pre> +<pre class="syntaxbox"><em>storage</em>.removeItem(<em>nomCle</em>);</pre> <h3 id="Paramètres">Paramètres</h3> <dl> - <dt><em><u>nomCle</u></em></dt> + <dt><code>nomCle</code></dt> <dd>Un {{domxref("DOMString")}} contenant le nom de la clé que vous voulez supprimer.</dd> </dl> @@ -33,7 +33,7 @@ translation_of: Web/API/Storage/removeItem <p>La fonction suivante crée trois données dans le stockage local, puis va supprimer la donnée image.</p> -<pre class="brush: js notranslate">function populateStorage() { +<pre class="brush: js">function populateStorage() { localStorage.setItem('bgcolor', 'red'); localStorage.setItem('font', 'Helvetica'); localStorage.setItem('image', 'myCat.png'); @@ -43,7 +43,7 @@ translation_of: Web/API/Storage/removeItem <p>Nous pouvons également faire ceci avec le stockage de session.</p> -<pre class="brush: js notranslate">function populateStorage() { +<pre class="brush: js">function populateStorage() { <code>sessionStorage</code>.setItem('bgcolor', 'red'); <code>sessionStorage</code>.setItem('font', 'Helvetica'); <code>sessionStorage</code>.setItem('image', 'myCat.png'); @@ -52,7 +52,7 @@ translation_of: Web/API/Storage/removeItem }</pre> <div class="note"> -<p><strong>Note</strong>: Pour voir ce code en fonctionnement, voir <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> +<p><strong>Note :</strong> Pour voir ce code en fonctionnement, voir <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -80,4 +80,4 @@ translation_of: Web/API/Storage/removeItem <h2 id="Voir_aussi">Voir aussi</h2> -<p><a href="https://developer.mozilla.org/fr/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Utilisation de l'API de stockage Web</a></p> +<p><a href="/fr/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API">Utilisation de l'API de stockage Web</a></p> diff --git a/files/fr/web/api/storage/setitem/index.html b/files/fr/web/api/storage/setitem/index.html index 88bc71a4d1..ce945681ff 100644 --- a/files/fr/web/api/storage/setitem/index.html +++ b/files/fr/web/api/storage/setitem/index.html @@ -45,7 +45,7 @@ translation_of: Web/API/Storage/setItem }</pre> <div class="note"> -<p><strong>Note</strong> : Pour voir ceci utilisé dans un exemple concret, regardez notre <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> +<p><strong>Note :</strong> Pour voir ceci utilisé dans un exemple concret, regardez notre <a href="https://mdn.github.io/dom-examples/web-storage/">Web Storage Demo</a>.</p> </div> <h2 id="Spécifications">Spécifications</h2> |