diff --git a/docs/en/installation.md b/docs/en/installation.md
index 42d567dda..508cdaef9 100644
--- a/docs/en/installation.md
+++ b/docs/en/installation.md
@@ -1,14 +1,14 @@
# Installation
-### Direct Download / CDN
+### Téléchargement direct / CDN
[https://unpkg.com/vuex](https://unpkg.com/vuex)
-[Unpkg.com](https://unpkg.com) provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like `https://unpkg.com/vuex@2.0.0`.
+[Unpkg.com](https://unpkg.com) fournit des liens CDN basés sur NPM. Le lien ci-dessus pointera toujours vers la dernière release sur NPM. Vous pouvez aussi utiliser un tag ou une version spécifique via une URL comme `https://unpkg.com/vuex@2.0.0`.
-Include `vuex` after Vue and it will install itself automatically:
+Incluez `vuex` après Vue et l'installation sera automatique :
``` html
@@ -27,7 +27,7 @@ npm install vuex --save
yarn add vuex
```
-When used with a module system, you must explicitly install Vuex via `Vue.use()`:
+Lorsqu'il est utilisé avec un système de module, vous devez explicitement installer Vuex via `Vue.use()`:
``` js
import Vue from 'vue'
@@ -36,12 +36,11 @@ import Vuex from 'vuex'
Vue.use(Vuex)
```
-You don't need to do this when using global script tags.
+Vous n'avez pas besoin de faire cela lors de l'utilisation des balises de script globales (`