1
1
Translation of the Python Documentation — it
2
2
============================================
3
3
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
5
5
:target: https://travis-ci.org/python/python-docs-it
6
6
7
7
@@ -10,7 +10,7 @@ Documentation Contribution Agreement
10
10
11
11
NOTE REGARDING THE LICENSE FOR TRANSLATIONS: Python's documentation is
12
12
maintained 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
14
14
you to participate, we are proposing an agreement that you will
15
15
provide your improvements to Python's documentation or the translation
16
16
of Python's documentation for the PSF's use under the CC0 license
@@ -37,7 +37,6 @@ How to Contribute
37
37
You can contribute using:
38
38
39
39
- Github
40
- - `transifex <https://www.transifex.com/python-doc/public/ >`_
41
40
- Or just by opening `an issue on github <https://github.com/python/python-docs-it/issues >`_
42
41
43
42
@@ -64,8 +63,15 @@ Step by step:
64
63
65
64
.. code-block :: bash
66
65
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
+
67
73
# 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
69
75
70
76
# Go to the cloned directory:
71
77
cd python-docs-it/
@@ -75,7 +81,7 @@ Step by step:
75
81
76
82
All the translations must be made on the latest release.
77
83
We 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.
79
85
If needed translations would be backported on the oldest versions by the
80
86
`documentation team <https://www.python.org/dev/peps/pep-8015/#documentation-team> `.
81
87
@@ -84,10 +90,10 @@ Now you're ready to start a work session, each time you'll start a new task, sta
84
90
.. code-block :: bash
85
91
86
92
# 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
88
94
# the branch "glossary":
89
95
git fetch upstream
90
- git checkout -b glossary upstream/3.7
96
+ git checkout -b glossary upstream/3.13
91
97
92
98
# You can now work on the file, typically using poedit,
93
99
poedit directory/file.po
0 commit comments