diff --git a/_data/ui-text.yml b/_data/ui-text.yml index 91517e84ca55..968118e29eac 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -42,6 +42,7 @@ en: &DEFAULT_EN loading_label : "Loading..." search_placeholder_text : "Enter your search term..." results_found : "Result(s) found" + back_to_top : "Back to top" en-US: <<: *DEFAULT_EN en-CA: @@ -890,6 +891,7 @@ da: &DEFAULT_DA loading_label : "Indlæser..." search_placeholder_text : "Hvad leder du efter..." results_found : "Resultat(er) fundet" + back_to_top : "Tilbage til toppen" da-DK: <<: *DEFAULT_DA diff --git a/_layouts/categories.html b/_layouts/categories.html index 9c6d77b99ac3..0c7521f30cea 100644 --- a/_layouts/categories.html +++ b/_layouts/categories.html @@ -41,7 +41,7 @@

{{ category[0] }}

{% include archive-single.html type=page.entries_layout %} {% endfor %} - {{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} ↑ + {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ {% endif %} {% endfor %} diff --git a/_layouts/posts.html b/_layouts/posts.html index d70ce0604186..76d25f9dda8e 100644 --- a/_layouts/posts.html +++ b/_layouts/posts.html @@ -24,6 +24,6 @@

{{ year.name }}

{% include archive-single.html type=page.entries_layout %} {% endfor %} - {{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} ↑ + {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ -{% endfor %} \ No newline at end of file +{% endfor %} diff --git a/_layouts/tags.html b/_layouts/tags.html index f81986b51138..1c0e70231bdf 100644 --- a/_layouts/tags.html +++ b/_layouts/tags.html @@ -41,7 +41,7 @@

{{ tag[0] }}

{% include archive-single.html type=page.entries_layout %} {% endfor %} - {{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} ↑ + {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ {% endif %} {% endfor %}