Browse Source

Enable Hindi language translation

pull/15554/head
Yurii Motov 2 weeks ago
parent
commit
5e5e855d76
  1. 2
      docs/en/mkdocs.yml
  2. 1
      docs/hi/mkdocs.yml
  3. 1
      pyproject.toml
  4. 1
      scripts/docs.py

2
docs/en/mkdocs.yml

@ -347,6 +347,8 @@ extra:
name: zh - 简体中文
- link: /zh-hant/
name: zh-hant - 繁體中文
- link: /hi/
name: hi - हिन्दी
extra_css:
- css/termynal.css
- css/custom.css

1
docs/hi/mkdocs.yml

@ -0,0 +1 @@
INHERIT: ../en/mkdocs.yml

1
pyproject.toml

@ -354,6 +354,7 @@ extend-exclude = [
"docs/uk/",
"docs/zh/",
"docs/zh-hant/",
"docs/hi/",
"htmlcov/",
"scripts/general-llm-prompt.md",
"scripts/tests/test_translation_fixer/test_complex_doc/",

1
scripts/docs.py

@ -32,6 +32,7 @@ SUPPORTED_LANGS = {
"uk",
"zh",
"zh-hant",
"hi",
}

Loading…
Cancel
Save