Skip to content
Snippets Groups Projects
Commit b093490b authored by squidfunk's avatar squidfunk Committed by Martin Donath
Browse files

Prepare 1.12.2 release

parent f12069ec
Branches
Tags
No related merge requests found
mkdocs-material-1.12.2 (2017-10-26)
* Added Italian, Norwegian, French and Chinese translations
mkdocs-material-1.12.1 (2017-10-22) mkdocs-material-1.12.1 (2017-10-22)
* Added Polish, Swedish and Spanish translations * Added Polish, Swedish and Spanish translations
......
...@@ -379,9 +379,10 @@ automatically included. ...@@ -379,9 +379,10 @@ automatically included.
#### Translations #### Translations
Material for MkDocs supports internationalization (i18n) and provides Material for MkDocs supports internationalization (i18n) and provides
translations for all template variables and labels in English `en`, Danish `da`, translations for all template variables and labels in English `en`, French `fr`,
German `de`, Polish `pl`, Swedish `sv` and Spanish `es`. Specify the language German `de`, Spanish `es`, Italian `it`, Danish `da`, Polish `pl`, Norwegian
with: `no`, Swedish `sv`, Chinese (Simplified) `zh` and Chinese (Traditional)
`zh-Hant`. Specify the language with:
``` yaml ``` yaml
extra: extra:
......
...@@ -12,11 +12,15 @@ To determine the currently installed version, use the following command: ...@@ -12,11 +12,15 @@ To determine the currently installed version, use the following command:
``` sh ``` sh
pip show mkdocs-material | grep -E ^Version pip show mkdocs-material | grep -E ^Version
# Version 1.12.1 # Version 1.12.2
``` ```
## Changelog ## Changelog
### 1.12.2 <small>_ October 26, 2017</small>
* Added Italian, Norwegian, French and Chinese translations
### 1.12.1 <small>_ October 22, 2017</small> ### 1.12.1 <small>_ October 22, 2017</small>
* Added Polish, Swedish and Spanish translations * Added Polish, Swedish and Spanish translations
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
{% else %} {% else %}
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png"> <link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
{% endif %} {% endif %}
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.12.1"> <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.12.2">
{% endblock %} {% endblock %}
{% block htmltitle %} {% block htmltitle %}
{% if page and page.meta.title %} {% if page and page.meta.title %}
......
<div class="md-hero">
</div>
{% macro t(key) %}{{ {
"language": "fr",
"clipboard.copy": "Copier dans le presse-papier",
"clipboard.copied": "Copié dans le presse-papier",
"edit.link.title": "Editer cette page",
"footer.previous": "Précédent",
"footer.next": "Suivant",
"meta.comments": "Commentaires",
"meta.source": "Source",
"search.placeholder": "Rechercher",
"search.result.placeholder": "Taper pour démarrer la recherche",
"search.result.none": "Aucun document trouvé",
"search.result.one": "1 document trouvé",
"search.result.other": "# documents trouvés",
"search.tokenizer": "[\s\-]+",
"source.link.title": "Aller au dépôt",
"toc.title": "Table des matières"
}[key] }}{% endmacro %}
{% macro t(key) %}{{ {
"language": "it",
"clipboard.copy": "Copia",
"clipboard.copied": "Copiato",
"edit.link.title": "Modifica",
"footer.previous": "Precedente",
"footer.next": "Prossimo",
"meta.comments": "Commenti",
"meta.source": "Sorgente",
"search.placeholder": "Cerca",
"search.result.placeholder": "Scrivi per iniziare a cercare",
"search.result.none": "Nessun documento trovato",
"search.result.one": "1 documento trovato",
"search.result.other": "# documenti trovati",
"search.tokenizer": "[\s\-]+",
"source.link.title": "Apri repository",
"toc.title": "Indice"
}[key] }}{% endmacro %}
{% macro t(key) %}{{ {
"language": "no",
"clipboard.copy": "Kopier til utklippstavlen",
"clipboard.copied": "Kopiert til utklippstavlen",
"edit.link.title": "Rediger denne siden",
"footer.previous": "Forrige",
"footer.next": "Neste",
"meta.comments": "Kommentarer",
"meta.source": "Kilde",
"search.placeholder": "Søk",
"search.result.placeholder": "Skriv søkeord",
"search.result.none": "Ingen treff",
"search.result.one": "1 treff",
"search.result.other": "# treff",
"search.tokenizer": "[\s\-]+",
"source.link.title": "Gå til kilde",
"toc.title": "Innholdsfortegnelse"
}[key] }}{% endmacro %}
{% macro t(key) %}{{ {
"language": "zh-Hant",
"clipboard.copy": "拷貝",
"clipboard.copied": "已拷貝",
"edit.link.title": "編輯此頁",
"footer.previous": "前進",
"footer.next": "後退",
"meta.comments": "評論",
"meta.source": "來源",
"search.placeholder": "搜尋",
"search.result.placeholder": "鍵入以開始檢索",
"search.result.none": "沒有找到符合條件的結果",
"search.result.one": "找到 1 个符合條件的結果",
"search.result.other": "# 個符合條件的結果",
"search.tokenizer": "[\,\。]+",
"source.link.title": "前往 Github 倉庫",
"toc.title": "目錄"
}[key] }}{% endmacro %}
{% macro t(key) %}{{ {
"language": "zh",
"clipboard.copy": "复制",
"clipboard.copied": "已复制",
"edit.link.title": "编辑此页",
"footer.previous": "后退",
"footer.next": "前进",
"meta.comments": "评论",
"meta.source": "来源",
"search.placeholder": "搜索",
"search.result.placeholder": "键入以开始搜索",
"search.result.none": "没有找到符合条件的结果",
"search.result.one": "找到 1 个符合条件的结果",
"search.result.other": "# 个符合条件的结果",
"search.tokenizer": "[\,\。]+",
"source.link.title": "前往 Github 仓库",
"toc.title": "目录"
}[key] }}{% endmacro %}
{ {
"name": "mkdocs-material", "name": "mkdocs-material",
"version": "1.12.1", "version": "1.12.2",
"description": "A Material Design theme for MkDocs", "description": "A Material Design theme for MkDocs",
"keywords": [ "keywords": [
"mkdocs", "mkdocs",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment