This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rffontenelle
Recipients docs@python, rffontenelle
Date 2020-01-06.05:38:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578289110.04.0.11997957012.issue39229@roundup.psfhosted.org>
In-reply-to
Content
Documentation file library/functions.rst has a syntax issue that when building documentation with warnings as errors, the following message appears:

cpython/Doc/library/functions.rst:: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`evento de auditoria <auditing>`']

After several testing, it seems that what is causing this is librar/functions.rst's line 795 not having a reference ":ref:`auditing event <auditing>`".


Steps to reproduce the issue:

1. git clone --depth 1 https://github.com/python/cpython

2. mkdir -p locale/pt_BR/LC_MESSAGES
3. git clone --depth 1 https://github.com/python/python-docs-pt-br locale/pt_BR/LC_MESSAGES

4. cd locale/pt_BR/LC_MESSAGES

# This takes about 40 minutes (can be ignored for outdated po files with more unrelated syntax errors) 
5. tx pull --force --language pt_BR --parallel

6. cd ../../..

7. cd cpython/Doc/

8. make venv

9. make html                                \
    SPHINXOPTS='-q --keep-going -jauto      \
        -D locale_dirs=../../locale         \
        -D language=pt_BR                   \
        -D gettext_compact=0                \
        -D latex_engine=xelatex             \
        -D latex_elements.inputenc=         \
        -D latex_elements.fontenc='

10. Look for library/functions.rst "WARNING" error message between the output.
History
Date User Action Args
2020-01-06 05:38:30rffontenellesetrecipients: + rffontenelle, docs@python
2020-01-06 05:38:30rffontenellesetmessageid: <1578289110.04.0.11997957012.issue39229@roundup.psfhosted.org>
2020-01-06 05:38:29rffontenellelinkissue39229 messages
2020-01-06 05:38:29rffontenellecreate