From d4d5c9203670cc4ae3625cafdb1499fa18688bc2 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 30 Oct 2020 16:24:10 -0300 Subject: Translate alt of link icon --- _config.yml | 5 +++++ _plugins/add-anchor-to-header-from-header-id.rb | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 9fcd728..a4e4e78 100644 --- a/_config.yml +++ b/_config.yml @@ -186,6 +186,11 @@ t: pt: "Ícone de fechadura" fr: "Icône de verrouillage" eo: "Ŝlosila ikono" + link_icon: + en: "Icon for showing link to this header" + pt: "Ícone para mostrar link para esse cabeçalho" + fr: "Icône pour afficher le lien vers cet en-tête" + eo: "Ikono por montri ligon al ĉi tiu kaplinio" footer: en: >- The content for this site is licensed under CC BY-SA 4.0. The code is AGPLv3 or later. Patches welcome. diff --git a/_plugins/add-anchor-to-header-from-header-id.rb b/_plugins/add-anchor-to-header-from-header-id.rb index 8846b24..373389a 100644 --- a/_plugins/add-anchor-to-header-from-header-id.rb +++ b/_plugins/add-anchor-to-header-from-header-id.rb @@ -1,9 +1,11 @@ Jekyll::Hooks.register [:documents, :pages], :post_render do |doc| if doc.output_ext == ".html" && doc.type != :slides + lang = doc.data["lang"] + alt = doc.site.site_payload["site"]["t"]["alt"]["link_icon"][lang] doc.output = doc.output.gsub( /(.*?)<\/h[1-6]>/, - '
\5
' + '
\5
' ) end end -- cgit v1.2.3