mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-13 18:40:54 +01:00
Added distribution files
This commit is contained in:
parent
4dd7cb364a
commit
0abade5308
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -213,7 +213,7 @@
|
||||
</script>
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script src="{{ 'assets/javascripts/bundle.615eee59.min.js' | url }}"></script>
|
||||
<script src="{{ 'assets/javascripts/bundle.7ca7dfaa.min.js' | url }}"></script>
|
||||
{% for path in config["extra_javascript"] %}
|
||||
<script src="{{ path | url }}"></script>
|
||||
{% endfor %}
|
||||
|
@ -8,17 +8,31 @@
|
||||
"edit.link.title": "Редактировать страницу",
|
||||
"footer.previous": "Назад",
|
||||
"footer.next": "Вперед",
|
||||
"footer.title": "Нижний колонтитул",
|
||||
"header.title": "Верхний колонтитул",
|
||||
"meta.comments": "Комментарии",
|
||||
"meta.source": "Исходный код",
|
||||
"nav.title": "Навигация",
|
||||
"search.config.lang": "ru",
|
||||
"search.placeholder": "Поиск",
|
||||
"search.share": "Поделиться",
|
||||
"search.reset": "Очистить",
|
||||
"search.result.initializer": "Инициализация поиска",
|
||||
"search.result.placeholder": "Начните печатать для поиска",
|
||||
"search.result.none": "Совпадений не найдено",
|
||||
"search.result.one": "Найдено 1 совпадение",
|
||||
"search.result.other": "Найдено # совпадений",
|
||||
"search.result.other": "Найдено совпадений: #",
|
||||
"search.result.more.one": "Ещё 1 на этой странице",
|
||||
"search.result.more.other": "Ещё # на этой странице",
|
||||
"search.result.term.missing": "Отсутствует",
|
||||
"search.title": "Поиск",
|
||||
"select.language.title": "Выберите язык",
|
||||
"select.version.title": "Выберите версию",
|
||||
"skip.link.title": "Перейти к содержанию",
|
||||
"source.link.title": "Перейти к репозиторию",
|
||||
"source.file.date.updated": "Последнее обновление",
|
||||
"source.file.date.created": "Созданный",
|
||||
"toc.title": "Содержание"
|
||||
"source.file.date.created": "Дата создания",
|
||||
"tabs.title": "Вкладки",
|
||||
"toc.title": "Содержание раздела"
|
||||
"top.title": "К началу"
|
||||
}[key] }}{% endmacro %}
|
||||
|
@ -24,6 +24,7 @@ import {
|
||||
EMPTY,
|
||||
Observable,
|
||||
Subject,
|
||||
animationFrameScheduler,
|
||||
combineLatest,
|
||||
defer,
|
||||
finalize,
|
||||
@ -130,7 +131,7 @@ export function mountAnnotation(
|
||||
/* Track relative origin of tooltip */
|
||||
push$
|
||||
.pipe(
|
||||
throttleTime(500),
|
||||
throttleTime(500, animationFrameScheduler),
|
||||
map(() => container.getBoundingClientRect()),
|
||||
map(({ x }) => x)
|
||||
)
|
||||
|
@ -81,7 +81,7 @@ export function watchPalette(
|
||||
}
|
||||
|
||||
/* Emit changes in color palette */
|
||||
const palette$ = of(...inputs)
|
||||
return of(...inputs)
|
||||
.pipe(
|
||||
mergeMap(input => fromEvent(input, "change")
|
||||
.pipe(
|
||||
@ -99,9 +99,6 @@ export function watchPalette(
|
||||
} as Palette)),
|
||||
shareReplay(1)
|
||||
)
|
||||
|
||||
/* Return palette */
|
||||
return palette$
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -27,7 +27,7 @@
|
||||
"clipboard.copied": "Скопировано в буфер",
|
||||
"edit.link.title": "Редактировать страницу",
|
||||
"footer.previous": "Назад",
|
||||
"footer.next": "Вперед",
|
||||
"footer.next": "Вперед",
|
||||
"footer.title": "Нижний колонтитул",
|
||||
"header.title": "Верхний колонтитул",
|
||||
"meta.comments": "Комментарии",
|
||||
|
Loading…
Reference in New Issue
Block a user