diff --git a/i18n/en.yaml b/i18n/en.yaml index d967df9..286a7f9 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -11,6 +11,9 @@ browser_no_video_support: latest_posts: other: "Latest Posts" +see_also: + other: "SEE ALSO:" + # Meta items long_date: diff --git a/i18n/es.yaml b/i18n/es.yaml index e509849..b2b21a6 100644 --- a/i18n/es.yaml +++ b/i18n/es.yaml @@ -8,6 +8,9 @@ table_of_contents: browser_no_video_support: other: "Tu navegador de internet no admite video." +see_also: + other: "Véase también:" + # Meta items long_date: diff --git a/layouts/shortcodes/see-also.html b/layouts/shortcodes/see-also.html index 94d7408..18a3dc8 100644 --- a/layouts/shortcodes/see-also.html +++ b/layouts/shortcodes/see-also.html @@ -1,6 +1,6 @@
{{ with .Site.GetPage (.Get 0) }} -

SEE ALSO: {{ .Title }}

+

{{ i18n "see_also" }} {{ .Title }}

{{ else }} {{ errorf "Page could not be found for see-also shortcode: %s" .Position }} {{ end }}