11Translation of the Python Documentation — it
22============================================
33
4- .. image :: https://travis-ci.org/python/python-docs-it.svg?branch=3.7
4+ .. image :: https://travis-ci.org/python/python-docs-it.svg?branch=3.13
55 :target: https://travis-ci.org/python/python-docs-it
66
77
@@ -10,7 +10,7 @@ Documentation Contribution Agreement
1010
1111NOTE REGARDING THE LICENSE FOR TRANSLATIONS: Python's documentation is
1212maintained using a global network of volunteers. By posting this
13- project on Transifex, Github, and other public places, and inviting
13+ project on Github, and other public places, and inviting
1414you to participate, we are proposing an agreement that you will
1515provide your improvements to Python's documentation or the translation
1616of Python's documentation for the PSF's use under the CC0 license
@@ -37,7 +37,6 @@ How to Contribute
3737You can contribute using:
3838
3939- Github
40- - `transifex <https://www.transifex.com/python-doc/public/ >`_
4140- Or just by opening `an issue on github <https://github.com/python/python-docs-it/issues >`_
4241
4342
@@ -64,8 +63,15 @@ Step by step:
6463
6564.. code-block :: bash
6665
66+ # Create a working directory
67+ mkdir cpython_projects
68+ cd cpython_projects
69+
70+ # Git clone cpython code
71+ git clone git@github.com:python/cpython.git
72+
6773 # Git clone your github fork using ssh:
68- git clone git@github.com:alessandrocucci /python-docs-it.git
74+ git clone git@github.com:yourusername /python-docs-it.git
6975
7076 # Go to the cloned directory:
7177 cd python-docs-it/
@@ -75,7 +81,7 @@ Step by step:
7581
7682 All the translations must be made on the latest release.
7783We never translate on an oldest version, by example, the latest python release
78- is python 3.7 , we don't want to translate directly on the python 3.5 release.
84+ is python 3.13 , we don't want to translate directly on the python 3.12 release.
7985If needed translations would be backported on the oldest versions by the
8086`documentation team <https://www.python.org/dev/peps/pep-8015/#documentation-team> `.
8187
@@ -84,10 +90,10 @@ Now you're ready to start a work session, each time you'll start a new task, sta
8490.. code-block :: bash
8591
8692 # To work, we'll need a branch, based on an up-to-date (freshly fetched)
87- # upstream/3.7 branch, let's say we'll work on glossary so we name
93+ # upstream/3.13 branch, let's say we'll work on glossary so we name
8894 # the branch "glossary":
8995 git fetch upstream
90- git checkout -b glossary upstream/3.7
96+ git checkout -b glossary upstream/3.13
9197
9298 # You can now work on the file, typically using poedit,
9399 poedit directory/file.po
0 commit comments