diff --git a/basetheme_bootstrap/locale/en/LC_MESSAGES/django.po b/basetheme_bootstrap/locale/en/LC_MESSAGES/django.po
index cccb51ec1afeb6fd7ebc82621b1a0c430ba1ac3e..9801c67bcf90b182068410913f043520a5c838f2 100644
--- a/basetheme_bootstrap/locale/en/LC_MESSAGES/django.po
+++ b/basetheme_bootstrap/locale/en/LC_MESSAGES/django.po
@@ -236,7 +236,7 @@ msgid "Delete account and all related data"
 msgstr ""
 
 #, python-format
-msgid "Preferences successfully saved on %s"
+msgid "Preferences successfully saved at %s"
 msgstr ""
 
 msgid ""
diff --git a/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.mo b/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.mo
index ccbc6d40936690797a81aba3be87d88805c41c53..9b9778b1ad191ca5552193b0cd125100303a3964 100644
Binary files a/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.mo and b/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.mo differ
diff --git a/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.po b/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.po
index d31079ddbe4bf764f422026c0d0e658d2cbb1f20..423648ff69f298e90454d0acf87983bc32e60dcb 100644
--- a/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.po
+++ b/basetheme_bootstrap/locale/fr/LC_MESSAGES/django.po
@@ -276,8 +276,8 @@ msgid "Delete account and all related data"
 msgstr "Supprimer le compte et toutes les données associées"
 
 #, python-format
-msgid "Preferences successfully saved on %s"
-msgstr "Préférences enregistrées avec succès le %s"
+msgid "Preferences successfully saved at %s"
+msgstr "Préférences enregistrées avec succès à %s"
 
 msgid ""
 "Thank you for your email confirmation, you account have been activated and "
diff --git a/basetheme_bootstrap/views.py b/basetheme_bootstrap/views.py
index f3704111e8126e18d837fbd93d4be792004ca950..f063a45c77243385379ea5128db54bfeb1bf784f 100644
--- a/basetheme_bootstrap/views.py
+++ b/basetheme_bootstrap/views.py
@@ -236,7 +236,7 @@ def account_detail(request):
             form_prefs.save()
             messages.success(
                 request=request,
-                message=gettext("Preferences successfully saved on %s") % time_filter(datetime.now()),
+                message=gettext("Preferences successfully saved at %s") % time_filter(datetime.now()),
             )
             return redirect(reverse("basetheme_bootstrap:account"))
         # dirty patch for time field (don't know why django doesn't express the correct type by default)
diff --git a/setup.py b/setup.py
index 68cdac1193847076b7ff3466fd03c47c9594a8e9..32e62725ec3aa11b76a05c3e597ceffeb58c148a 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ readme = open('README.rst').read()
 
 setup(
     name='django-basetheme-bootstrap',
-    version='0.2.79',
+    version='0.2.80',
     description='Django Basetheme Bootstrap',
     long_description=readme,
     author='Bryan Brancotte',