mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
7 lines
408 B
HTML
7 lines
408 B
HTML
{% import "partials/languages/" ~ config.theme.language ~ ".html" as lang %}
|
|
{% import "partials/languages/en.html" as fallback %}
|
|
{% import "overrides/strings." ~ config.theme.language ~ ".html" as customlang with context %}
|
|
{% import "overrides/strings.en.html" as customfallback %}
|
|
|
|
{% macro t(key) %}{{ lang.t(key) or fallback.t(key) or customlang.t(key) or customfallback.t(key) or key }}{% endmacro %}
|