Added translation for "Share on" social network

This commit is contained in:
Pedro Moreno 2023-02-15 12:58:07 +01:00
parent c17bf36b24
commit 688aaa02de
2 changed files with 8 additions and 2 deletions

View file

@ -218,6 +218,8 @@ en:
FEATURED: Featured
PRIVACY: By using this form you agree our terms
FORM_SUMMARY: Here is the summary of what you wrote to us
MISC:
SHARE_ON: Share on
de:
FUTURE:
@ -436,6 +438,8 @@ de:
FEATURED: Hervorgehoben
PRIVACY: Durch die Nutzung dieses Formulars stimmen Sie unseren Bedingungen zu
FORM_SUMMARY: Hier ist die Zusammenfassung dessen, was Sie uns geschrieben haben
MISC:
SHARE_ON:
es:
FUTURE:
@ -642,4 +646,6 @@ es:
LATESTPOSTS: Últimos posts
FEATURED: Destacados
PRIVACY: Al usar este formulario estás de acuerdo con nuestra
FORM_SUMMARY: Aquí está el resumen de lo que nos escribió
FORM_SUMMARY: Aquí está el resumen de lo que nos escribió
MISC:
SHARE_ON: Compartir en

View file

@ -108,7 +108,7 @@
] %}
{% for item in share %}
{% if item.enabled|defined(true) %}
<li><a class="icon brands {{ item.icon }}" target="_blank" href="{{- item.url -}}{{- item.params|url_encode-}}" {% if item.action is defined %}data-action="{{ item.action }}"{% endif %} aria-label="{{ item.name|capitalize }}" title="{{ item.name|capitalize }}"></a></li>
<li><a class="icon brands {{ item.icon }}" target="_blank" href="{{- item.url -}}{{- item.params|url_encode-}}" {% if item.action is defined %}data-action="{{ item.action }}"{% endif %} aria-label="{{ 'FUTURE.MISC.SHARE_ON'|t }} {{ item.name|capitalize }}" title="{{ 'FUTURE.MISC.SHARE_ON'|t }} {{item.name|capitalize }}"></a></li>
{% endif %}
{% endfor %}
</ul>