diff --git a/i18n/en.yml b/i18n/en.yml
index 7dbcacee0a54d6ad88b015aeb5101392af9ea59d..90f5e8f3f106b546243c14c023452583fbd37cd2 100644
--- a/i18n/en.yml
+++ b/i18n/en.yml
@@ -1,22 +1,42 @@
 blocks:
-  call_to_action: Call to action
-  chapter: Chapter
-  contact: Contact
-  datatable: Table
-  definitions: Definitions
-  embed: HTML embed
-  files: Files
-  gallery: Gallery
-  image: Image
-  key_figures: Key figures
-  organization_chart: People
-  pages: Pages
-  partners: Organizations
-  posts: Posts
-  programs: Programs
-  testimonials: Testimonials
-  timeline: Timeline
-  video: Video
+  call_to_action:
+    title: Call to action
+  chapter:
+    title: Chapter
+  contact:
+    title: Contact
+  datatable:
+    title: Table
+  definitions:
+    title: Definitions
+  embed:
+    title: HTML embed
+  files:
+    title: Files
+  gallery:
+    title: Gallery
+  image:
+    title: Image
+  key_figures:
+    title: Key figures
+  organization_chart:
+    title: People
+  pages:
+    title: Pages
+  partners:
+    title: Organizations
+  posts:
+    title: Posts
+  programs:
+    title: Programs
+  testimonials:
+    title: Testimonials
+  timeline:
+    title: Timeline
+    next: Next element
+    previous: Previous element
+  video:
+    title: Video
 categories:
   no_post: No post in this category
   see_more:
diff --git a/i18n/fr.yml b/i18n/fr.yml
index 751a8185bc7bd8351243d6fc7b54131e1967f668..2487a98682868ecf88c8011742a3ad2e14c9e308 100644
--- a/i18n/fr.yml
+++ b/i18n/fr.yml
@@ -1,22 +1,42 @@
 blocks:
-  call_to_action: Appel à actions
-  chapter: Chapitre
-  contact: Contact
-  datatable: Tableau
-  definitions: Définitions
-  embed: Intégration HTML
-  files: Fichiers
-  gallery: Galerie
-  image: Image
-  key_figures: Chiffres-clés
-  organization_chart: Personnes
-  pages: Pages
-  partners: Organisations
-  posts: Actualités
-  programs: Formations
-  testimonials: Témoignages
-  timeline: Frise chronologique
-  video: Vidéo
+  call_to_action: 
+    title: Appel à actions
+  chapter: 
+    title: Chapitre
+  contact: 
+    title: Contact
+  datatable: 
+    title: Tableau
+  definitions: 
+    title: Définitions
+  embed: 
+    title: Intégration HTML
+  files: 
+    title: Fichiers
+  gallery: 
+    title: Galerie
+  image: 
+    title: Image
+  key_figures: 
+    title: Chiffres-clés
+  organization_chart: 
+    title: Personnes
+  pages: 
+    title: Pages
+  partners: 
+    title: Organisations
+  posts: 
+    title: Actualités
+  programs: 
+    title: Formations
+  testimonials: 
+    title: Témoignages
+  timeline: 
+    title: Frise chronologique
+    next: Élément suivant
+    previous: Élément précédent
+  video: 
+    title: Vidéo
 categories:
   no_post: Aucun article dans cette catégorie
   see_more:
@@ -197,8 +217,4 @@ volumes:
   plural_name: Volumes
   singular_name: Volume
   table_contents: Table des matières
-  volume_number: Volume {{ .Number }}
-blocks:
-  timeline:
-    next: Élément suivant
-    previous: Élément précédent
+  volume_number: Volume {{ .Number }}
\ No newline at end of file
diff --git a/layouts/partials/blocks/default_title.html b/layouts/partials/blocks/default_title.html
index f9770abf5a2e9b11e843d7094c567fb1a20bc0c4..c0c1d655904d224db8b6748477211859919769a8 100644
--- a/layouts/partials/blocks/default_title.html
+++ b/layouts/partials/blocks/default_title.html
@@ -1 +1 @@
-<h2 class="hidden">{{- i18n (printf "blocks.%s" . ) -}}</h2>
\ No newline at end of file
+<h2 class="hidden">{{- i18n (printf "blocks.%s.title" . ) -}}</h2>
\ No newline at end of file