diff --git a/src/BackendBundle/Entity/Device.php b/src/BackendBundle/Entity/Device.php
index eb3e92fd309ba7769d87fa4ff615bceaaaf52662..271a70b79c901c561f26367d8f9377147ba08fe5 100644
--- a/src/BackendBundle/Entity/Device.php
+++ b/src/BackendBundle/Entity/Device.php
@@ -204,9 +204,13 @@ class Device
 
     /**
      * @param string $locale
+     *
+     * @return Device
      */
     public function setLocale($locale)
     {
         $this->locale = $locale;
+
+        return $this;
     }
 }
diff --git a/src/BackendBundle/Repository/DeviceRepository.php b/src/BackendBundle/Repository/DeviceRepository.php
index 3a907de63c9cbbe5f616c0813d1c83fef9d76d97..7b8ae0a75aeb545f88f4bb66ea0a6fcfb783ab59 100644
--- a/src/BackendBundle/Repository/DeviceRepository.php
+++ b/src/BackendBundle/Repository/DeviceRepository.php
@@ -44,6 +44,7 @@ class DeviceRepository extends EntityRepository
             ->setModel($data['model'])
             ->setPlatform($data['platform'])
             ->setToken($data['token'])
+            ->setLocale($data['locale'])
             ->setVersion($data['version']);
     }
 }
diff --git a/web/apple-touch-icon.png b/web/apple-touch-icon.png
index 6e6b6ce170b949de35108974b6b05ecc90cc5f5d..2f0eaaf5a869361c6a719b44a42218cca2b253b7 100644
Binary files a/web/apple-touch-icon.png and b/web/apple-touch-icon.png differ
diff --git a/web/favicon.ico b/web/favicon.ico
index 479f7f50f404ada1e42c536097521d19f2c22f35..949e4b722e1ec82ed6e8eab98a1c49d27c7f09e3 100644
Binary files a/web/favicon.ico and b/web/favicon.ico differ