onionshare/docs
Hosted Weblate 2695edccb2
Translated using Weblate (Arabic)
Currently translated at 100.0% (2 of 2 strings)

Translated using Weblate (Arabic)

Currently translated at 100.0% (2 of 2 strings)

Translated using Weblate (Arabic)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ar/

Translated using Weblate (French)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/fr/

Translated using Weblate (Galician)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/gl/

Translated using Weblate (Russian)

Currently translated at 100.0% (22 of 22 strings)

Translated using Weblate (Russian)

Currently translated at 81.8% (9 of 11 strings)

Translated using Weblate (Russian)

Currently translated at 100.0% (29 of 29 strings)

Translated using Weblate (Croatian)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/hr/

Translated using Weblate (Japanese)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ja/

Translated using Weblate (Bengali)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/bn/

Translated using Weblate (Chinese (Traditional))
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/zh_Hant/

Translated using Weblate (Chinese (Simplified))
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/zh_Hans/

Translated using Weblate (Icelandic)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/is/

Translated using Weblate (Turkish)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/tr/

Translated using Weblate (Russian)
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ru/

Translated using Weblate (Chinese (Simplified))
Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/zh_Hans/

Co-authored-by: AO Localisation Lab <ao@localizationlab.org>
Co-authored-by: Alexander Tarasenko <alexound.login@gmail.com>
Co-authored-by: Eric <spice2wolf@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kaede <contact+hosted_weblate@kaede.ch>
Co-authored-by: Milo Ivir <mail@milotype.de>
Co-authored-by: Mohamed Elghdban <Mohamed.Elghdban@gmail.com>
Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com>
Co-authored-by: Saptak Sengupta <saptak013@gmail.com>
Co-authored-by: Sveinn í Felli <sv1@fellsnet.is>
Co-authored-by: Xosé M <xosem@disroot.org>
Co-authored-by: morir soanando <morirsonando@riseup.net>
Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-advanced/ru/
Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-index/ar/
Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-install/ru/
Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-security/ru/
Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-sphinx/ar/
Translation: OnionShare/Doc - Advanced
Translation: OnionShare/Doc - Index
Translation: OnionShare/Doc - Install
Translation: OnionShare/Doc - Security
Translation: OnionShare/Doc - Sphinx
2021-02-19 22:35:48 +01:00
..
gettext Update docs screenshots, and re-build docs for all locales 2020-12-13 15:50:01 -08:00
source Translated using Weblate (Arabic) 2021-02-19 22:35:48 +01:00
build.sh Update docs translations 2020-11-15 14:44:58 -08:00
make.bat Start adding documentation into the source tree 2020-08-23 22:52:43 -04:00
Makefile Start adding documentation into the source tree 2020-08-23 22:52:43 -04:00
poetry.lock Update poetry deps for docs 2020-11-15 13:10:47 -08:00
pyproject.toml Version bump to 2.3.dev2, and update Linux installation in docs 2020-11-08 20:45:54 -08:00
README.md Migrate docs dependencies from requirements.txt to poetry 2020-09-20 20:30:54 -07:00

OnionShare Documentation

All these commands must be run from the docs folder.

You must have the python dependencies installed to build the docs:

poetry install

To build HTML docs:

poetry run make html

Then open docs/build/html/index.html in a browser to see it.

To update all of the translations and build all the html, run:

poetry run ./build.sh

You will end up with the documentation in all supported locales in docs/localized_html.

Here's how preparing translations works:

# Generate .po files in build/gettext 
make gettext

# Create a new blank German locale in source/locale, based on .po files
sphinx-intl update -p build/gettext -l de

# Build German translated document
make -e SPHINXOPTS="-D language='de'" html