Skip to content

Commit bba2db9

Browse files
authored
Merge pull request #105 from PyCampES/stats-page
Page showing the progress of the total translation
2 parents 0dfb1d5 + bbee28c commit bba2db9

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

.overrides/progress.rst

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
:orphan:
2+
3+
===========================
4+
Progreso de la traducción
5+
===========================
6+
7+
Aquí puedes ver a la lista de todos los archivo de la documentación,
8+
con sus respectivos porcentajes de lo traducido, los párrafos marcados como ``fuzzy``,
9+
y otras estadísticas.
10+
11+
.. note::
12+
13+
Esta lista se actualiza automáticamente cuando Pull Requests se *mergean* a la rama ``3.8``.
14+
15+
.. runblock:: console
16+
17+
$ potodo --offline --path .

.overrides/tools/templates/indexsidebar.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<h3>¡Ayúdanos a traducir!</h3>
22
<ul>
33
<li><a href="CONTRIBUTING.html">Guía para contribuir</a></li>
4+
<li><a href="progress.html">Progreso de la traducción</a></li>
45
</ul>
56

67
<h3>Recursos</h3>

conf.py

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
templates_path = ['cpython/Doc/tools/templates']
3434
html_static_path = ['cpython/Doc/tools/static']
3535

36+
extensions.append('sphinx_autorun')
37+
3638
os.system('mkdir -p cpython/locales/es/')
3739
os.system('ln -nfs `pwd` cpython/locales/es/LC_MESSAGES')
3840

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ setuptools
1010
sphinx-intl
1111
transifex-client
1212
pre-commit
13+
sphinx-autorun

0 commit comments

Comments
 (0)