diff --git a/i18n/en.toml b/i18n/en.toml
index dd89621..61c5e4a 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -5,7 +5,7 @@
     other = "Related contents"
 
 [lastUpdatedOn]
-    other ="Last updated on "
+    other ="Last updated on {{ .Count }}"
 
 [widgetArchiveTitle]
     other = "Archive"
diff --git a/layouts/partials/article/components/footer.html b/layouts/partials/article/components/footer.html
index 0360a00..9787f8f 100644
--- a/layouts/partials/article/components/footer.html
+++ b/layouts/partials/article/components/footer.html
@@ -18,7 +18,7 @@
     <section class="article-time">
         {{ (resources.Get "icons/clock.svg").Content | safeHTML }}
         <span class="article-time--modified">
-            {{ T "lastUpdatedOn" }} {{ .Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }}
+            {{ T "lastUpdatedOn" (.Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" )) }} 
         </span>
     </section>
     {{- end -}}