mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Improved downward compatibility with custom partials
This commit is contained in:
parent
9dd7aac430
commit
5e7ad632de
@ -1,4 +1,7 @@
|
|||||||
{% set languages = config.extra.language | default("en") %}
|
{% set languages = "en" %}
|
||||||
|
{% if config and config.extra %}
|
||||||
|
{% set languages = config.extra.language | default("en") %}
|
||||||
|
{% endif %}
|
||||||
{% if languages is string %}
|
{% if languages is string %}
|
||||||
{% set languages = languages.split(",") | map("trim") %}
|
{% set languages = languages.split(",") | map("trim") %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
18
material/partials/language/es.html
Normal file
18
material/partials/language/es.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{% macro t(key) %}{{ {
|
||||||
|
"language": "es",
|
||||||
|
"clipboard.copy": "Copiar al portapapeles",
|
||||||
|
"clipboard.copied": "Copiado al portapapeles",
|
||||||
|
"edit.link.title": "Editar esta página",
|
||||||
|
"footer.previous": "Anterior",
|
||||||
|
"footer.next": "Siguiente",
|
||||||
|
"meta.comments": "Comentarios",
|
||||||
|
"meta.source": "Fuente",
|
||||||
|
"search.placeholder": "Búsqueda",
|
||||||
|
"search.result.placeholder": "Teclee para comenzar búsqueda",
|
||||||
|
"search.result.none": "No se encontraron documentos",
|
||||||
|
"search.result.one": "1 documento encontrado",
|
||||||
|
"search.result.other": "# documentos encontrados",
|
||||||
|
"search.tokenizer": "[\s\-]+",
|
||||||
|
"source.link.title": "Ir al repositorio",
|
||||||
|
"toc.title": "Tabla de contenidos"
|
||||||
|
}[key] }}{% endmacro %}
|
1
material/partials/language/pl.html
Executable file
1
material/partials/language/pl.html
Executable file
@ -0,0 +1 @@
|
|||||||
|
{% macro t(key) %}{{ {
"language": "pl",
"clipboard.copy": "Kopiuj do schowka",
"clipboard.copied": "Skopiowane",
"edit.link.title": "Edytuj tę stronę",
"footer.previous": "Poprzednia strona",
"footer.next": "Następna strona",
"meta.comments": "Komentarze",
"meta.source": "Kod źródłowy",
"search.placeholder": "Szukaj",
"search.result.placeholder": "Zacznij pisać, aby szukać",
"search.result.none": "Brak wyników wyszukiwania",
"search.result.one": "Wyniki wyszukiwania: 1",
"search.result.other": "Wyniki wyszukiwania: #",
"search.tokenizer": "[\s\-]+",
"source.link.title": "Idź do repozytorium",
"toc.title": "Spis treści"
}[key] }}{% endmacro %}
|
18
material/partials/language/sv.html
Normal file
18
material/partials/language/sv.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{% macro t(key) %}{{ {
|
||||||
|
"language": "sv",
|
||||||
|
"clipboard.copy": "Kopiera till urklipp",
|
||||||
|
"clipboard.copied": "Kopierat till urklipp",
|
||||||
|
"edit.link.title": "Redigera sidan",
|
||||||
|
"footer.previous": "Föregående",
|
||||||
|
"footer.next": "Nästa",
|
||||||
|
"meta.comments": "Kommentarer",
|
||||||
|
"meta.source": "Källa",
|
||||||
|
"search.placeholder": "Sök",
|
||||||
|
"search.result.placeholder": "Skriv sökord",
|
||||||
|
"search.result.none": "Inga sökresultat",
|
||||||
|
"search.result.one": "1 sökresultat",
|
||||||
|
"search.result.other": "# sökresultat",
|
||||||
|
"search.tokenizer": "[\s\-]+",
|
||||||
|
"source.link.title": "Gå till datakatalog",
|
||||||
|
"toc.title": "Innehållsförteckning"
|
||||||
|
}[key] }}{% endmacro %}
|
@ -21,7 +21,10 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Normalize language configuration -->
|
<!-- Normalize language configuration -->
|
||||||
{% set languages = config.extra.language | default("en") %}
|
{% set languages = "en" %}
|
||||||
|
{% if config and config.extra %}
|
||||||
|
{% set languages = config.extra.language | default("en") %}
|
||||||
|
{% endif %}
|
||||||
{% if languages is string %}
|
{% if languages is string %}
|
||||||
{% set languages = languages.split(",") | map("trim") %}
|
{% set languages = languages.split(",") | map("trim") %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -1,13 +1,16 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to
|
of this software and associated documentation files (the "Software"), to
|
||||||
deal in the Software without restriction, including without limitation the
|
deal in the Software without restriction, including without limitation the
|
||||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
sell copies of the Software, and to permit persons to whom the Software is
|
sell copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
The above copyright notice and this permission notice shall be included in
|
||||||
all copies or substantial portions of the Software.
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
@ -1,27 +1,26 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to
|
of this software and associated documentation files (the "Software"), to
|
||||||
deal in the Software without restriction, including without limitation the
|
deal in the Software without restriction, including without limitation the
|
||||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
sell copies of the Software, and to permit persons to whom the Software is
|
sell copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
The above copyright notice and this permission notice shall be included in
|
||||||
all copies or substantial portions of the Software.
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||||
IN THE SOFTWARE.
|
IN THE SOFTWARE.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Translations: Swedish -->
|
<!-- Translations: Swedish -->
|
||||||
|
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "sv",
|
"language": "sv",
|
||||||
"clipboard.copy": "Kopiera till urklipp",
|
"clipboard.copy": "Kopiera till urklipp",
|
||||||
|
Loading…
Reference in New Issue
Block a user