mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
3e9f6b0c71
Currently translated at 43.3% (13 of 30 strings) Translated using Weblate (Ukrainian) Currently translated at 35.2% (12 of 34 strings) Translated using Weblate (Ukrainian) Currently translated at 57.5% (23 of 40 strings) Translated using Weblate (Ukrainian) Currently translated at 21.1% (11 of 52 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (21 of 21 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (10 of 10 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (11 of 11 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (52 of 52 strings) Translated using Weblate (Ukrainian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/uk/ Added translation using Weblate (Ukrainian) Added translation using Weblate (Ukrainian) Added translation using Weblate (Ukrainian) Added translation using Weblate (Ukrainian) Added translation using Weblate (Ukrainian) Translated using Weblate (Spanish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/es/ Translated using Weblate (Spanish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/es/ Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Zuhualime Akoochimoya <zakooch@protonmail.ch> Co-authored-by: emma peel <emma.peel@riseup.net> Co-authored-by: ihor_ck <igor_ck@outlook.com> Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-advanced/uk/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-develop/uk/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-features/es/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-features/uk/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-help/uk/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-install/uk/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-security/uk/ Translate-URL: https://hosted.weblate.org/projects/onionshare/doc-tor/uk/ Translation: OnionShare/Doc - Advanced Translation: OnionShare/Doc - Develop Translation: OnionShare/Doc - Features Translation: OnionShare/Doc - Help Translation: OnionShare/Doc - Install Translation: OnionShare/Doc - Security Translation: OnionShare/Doc - Tor |
||
---|---|---|
.. | ||
gettext | ||
source | ||
build.sh | ||
make.bat | ||
Makefile | ||
README.md | ||
requirements.txt |
OnionShare Documentation
All these commands must be run from the docs
folder.
You must have the python dependencies installed to build the docs:
pip3 install --user -r requirements.txt
To build HTML docs:
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:
./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