aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-01-21 01:38:53 +0300
committerValentin Popov <valentin@popov.link>2025-01-21 01:38:53 +0300
commitf1509d118d261694817bad2b52adb8b70d633883 (patch)
tree720971031e4b85101bf9130d35132794fb5a08a8
parentd90b9830bc115047217ed620342ede5ddaace83d (diff)
downloadfparkan-f1509d118d261694817bad2b52adb8b70d633883.tar.xz
fparkan-f1509d118d261694817bad2b52adb8b70d633883.zip
Added Russian languagercli
-rw-r--r--docs/index.ru.md17
-rw-r--r--mkdocs.yml15
-rw-r--r--requirements.txt1
3 files changed, 32 insertions, 1 deletions
diff --git a/docs/index.ru.md b/docs/index.ru.md
new file mode 100644
index 0000000..c14c2bb
--- /dev/null
+++ b/docs/index.ru.md
@@ -0,0 +1,17 @@
+# Добро пожаловать в MkDocs
+
+Для полной документации посетите [mkdocs.org](https://www.mkdocs.org).
+
+## Команды
+
+* `mkdocs new [dir-name]` - Создать новый проект.
+* `mkdocs serve` - Запустить сервер документации с поддержкой автообновления.
+* `mkdocs build` - Собрать сайт с документацией.
+* `mkdocs -h` - Показать справочное сообщение и выйти.
+
+## Структура проекта
+
+ mkdocs.yml # Конфигурационный файл.
+ docs/
+ index.md # Главная страница документации.
+ ... # Другие markdown-страницы, изображения и другие файлы.
diff --git a/mkdocs.yml b/mkdocs.yml
index fc95499..0020a43 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -10,7 +10,7 @@ repo_name: valentineus/fparkan
repo_url: https://github.com/valentineus/fparkan
# Copyright
-copyright: Copyright &copy; 2023 &mdash; 2024 Valentin Popov
+copyright: Copyright &copy; 2023 &mdash; 2025 Valentin Popov
# Configuration
theme:
@@ -19,6 +19,19 @@ theme:
palette:
scheme: slate
+# Plugins
+plugins:
+ - i18n:
+ docs_structure: suffix
+ languages:
+ - locale: en
+ name: English
+ default: true
+ build: true
+ - locale: ru
+ name: Russian
+ build: true
+
# Additional configuration
extra:
social:
diff --git a/requirements.txt b/requirements.txt
index 4c8f017..7832562 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1,2 @@
mkdocs-material
+mkdocs-static-i18n \ No newline at end of file