diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml
index 4b3800aef..8c92aebdd 100644
--- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml
+++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml
@@ -3,7 +3,7 @@ download_pictures: Download pictures onto your server
carrot: Enable share to Carrot
diaspora_url: diaspora* URL, if the service is enabled
export_epub: Enable ePub export
-export_mobi: Enable .mobi export
+export_mobi: Enable .mobi export (deprecated, will be removed soon)
export_pdf: Enable PDF export
export_csv: Enable CSV export
export_json: Enable JSON export
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml
index e598bf18b..8f82781d5 100644
--- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml
+++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml
@@ -3,7 +3,7 @@ download_pictures: Télécharger les images sur le serveur
carrot: Activer le partage vers Carrot
diaspora_url: URL de diaspora*, si le service est activé
export_epub: Activer l'export ePub
-export_mobi: Activer l'export .mobi
+export_mobi: Activer l'export .mobi (déprécié, sera supprimé prochainement)
export_pdf: Activer l'export PDF
export_csv: Activer l'export CSV
export_json: Activer l'export JSON
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml
index deda2b3ee..5e182c8e8 100644
--- a/app/config/wallabag.yml
+++ b/app/config/wallabag.yml
@@ -99,7 +99,7 @@ wallabag_core:
section: export
-
name: export_mobi
- value: 1
+ value: 0
section: export
-
name: export_pdf
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
index 4182628f6..8dc6fd507 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig
@@ -105,7 +105,7 @@
{% if craue_setting('export_epub') %}- EPUB
{% endif %}
- {% if craue_setting('export_mobi') %}- MOBI
{% endif %}
+ {% if craue_setting('export_mobi') %}- MOBI (deprecated)
{% endif %}
{% if craue_setting('export_pdf') %}- PDF
{% endif %}
{% if craue_setting('export_json') %}- JSON
{% endif %}
{% if craue_setting('export_csv') %}- CSV
{% endif %}
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig
index afae4c86d..42f33f54e 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig
@@ -36,7 +36,7 @@
{% if craue_setting('carrot') %}- Carrot
{% endif %}
{% if craue_setting('show_printlink') %}- {{ 'entry.view.left_menu.print'|trans }}
{% endif %}
{% if craue_setting('export_epub') %}- EPUB
{% endif %}
- {% if craue_setting('export_mobi') %}- MOBI
{% endif %}
+ {% if craue_setting('export_mobi') %}- MOBI (deprecated)
{% endif %}
{% if craue_setting('export_pdf') %}- PDF
{% endif %}
- {{ 'entry.view.left_menu.problem.label'|trans }}
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
index c5dc97e01..b9662b1b2 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
@@ -92,7 +92,7 @@
{{ 'entry.list.export_title'|trans }}
{% if craue_setting('export_epub') %}- EPUB
{% endif %}
- {% if craue_setting('export_mobi') %}- MOBI
{% endif %}
+ {% if craue_setting('export_mobi') %}- MOBI (deprecated)
{% endif %}
{% if craue_setting('export_pdf') %}- PDF
{% endif %}
{% if craue_setting('export_json') %}- JSON
{% endif %}
{% if craue_setting('export_csv') %}- CSV
{% endif %}
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
index e81525529..ea79cf882 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig
@@ -231,7 +231,7 @@
{% if craue_setting('export_epub') %}- EPUB
{% endif %}
- {% if craue_setting('export_mobi') %}- MOBI
{% endif %}
+ {% if craue_setting('export_mobi') %}- MOBI (deprecated)
{% endif %}
{% if craue_setting('export_pdf') %}- PDF
{% endif %}
{% if craue_setting('export_csv') %}- CSV
{% endif %}
{% if craue_setting('export_json') %}- JSON
{% endif %}