mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-07-22 13:53:43 -04:00
Added Serbian and Serbo-Croatian translations
This commit is contained in:
@@ -322,13 +322,13 @@
|
||||
|
||||
<!-- Theme-related JavaScript -->
|
||||
{% block scripts %}
|
||||
<script src="{{ '/assets/javascripts/application.js' | url }}"></script>
|
||||
<script src="{{ 'assets/javascripts/application.js' | url }}"></script>
|
||||
|
||||
<!-- Load additional languages for search -->
|
||||
{% if lang.t("search.language") != "en" %}
|
||||
{% set languages = lang.t("search.language").split(",") %}
|
||||
{% if languages | length and languages[0] != "" %}
|
||||
{% set path = "/assets/javascripts/lunr/" %}
|
||||
{% set path = "assets/javascripts/lunr/" %}
|
||||
<script src="{{ path ~ 'lunr.stemmer.support.js' | url }}"></script>
|
||||
{% for language in languages | map("trim") %}
|
||||
{% if language != "en" %}
|
||||
|
||||
43
src/partials/language/sh.html
Normal file
43
src/partials/language/sh.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<!--
|
||||
Copyright (c) 2016-2018 Martin Donath <martin.donath@squidfunk.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
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
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
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
|
||||
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
|
||||
IN THE SOFTWARE.
|
||||
-->
|
||||
|
||||
<!-- Translations: Serbo-Croatian -->
|
||||
{% macro t(key) %}{{ {
|
||||
"language": "sh",
|
||||
"clipboard.copy": "Kopiraj u klipbord",
|
||||
"clipboard.copied": "Iskopirano u klipbord",
|
||||
"edit.link.title": "Uredi stranicu",
|
||||
"footer.previous": "Prethodno",
|
||||
"footer.next": "Sledeće",
|
||||
"meta.comments": "Komentari",
|
||||
"meta.source": "Izvor",
|
||||
"search.language": "ro",
|
||||
"search.placeholder": "Pretraga",
|
||||
"search.result.placeholder": "Unesite pojam pretrage",
|
||||
"search.result.none": "Ništa nije pronađeno",
|
||||
"search.result.one": "1 rezultat pretrage",
|
||||
"search.result.other": "# rezultata pretrage",
|
||||
"search.tokenizer": "[\s\-]+",
|
||||
"skip.link.title": "Idi na tekst",
|
||||
"source.link.title": "Idi u repozitorijum",
|
||||
"toc.title": "Sadržaj"
|
||||
}[key] }}{% endmacro %}
|
||||
45
src/partials/language/sr.html
Normal file
45
src/partials/language/sr.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!--
|
||||
Copyright (c) 2016-2018 Martin Donath <martin.donath@squidfunk.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
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
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
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
|
||||
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
|
||||
IN THE SOFTWARE.
|
||||
-->
|
||||
|
||||
<!-- Translations: Serbian -->
|
||||
{% macro t(key) %}{{ {
|
||||
"language": "sr",
|
||||
"clipboard.copy": "Копирај у клипборд",
|
||||
"clipboard.copied": "Ископирано у клипборд",
|
||||
"edit.link.title": "Уреди страницу",
|
||||
"footer.previous": "Претходно",
|
||||
"footer.next": "Следеће",
|
||||
"meta.comments": "Коментари",
|
||||
"meta.source": "Извор",
|
||||
"search.language": "",
|
||||
"search.pipeline.stopwords": false,
|
||||
"search.pipeline.trimmer": false,
|
||||
"search.placeholder": "Претрага",
|
||||
"search.result.placeholder": "Унесите појам претраге",
|
||||
"search.result.none": "Нису пронађени документи",
|
||||
"search.result.one": "1 резултат претраге",
|
||||
"search.result.other": "# резултата претраге",
|
||||
"search.tokenizer": "[\s\-]+",
|
||||
"skip.link.title": "Иди на текст",
|
||||
"source.link.title": "Иди у репозиторијум",
|
||||
"toc.title": "Садржај"
|
||||
}[key] }}{% endmacro %}
|
||||
Reference in New Issue
Block a user