File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Commands for maintaining a language repository
5
5
This document contains instructions to guide you on managing your language
6
6
repository, hence helping you translate Python's documentation to your language.
7
7
8
+ See the :doc: `workflows ` for an automated alternative to this guide.
9
+
8
10
These commands are written in Linux Shell, and should work in Windows Subsystem
9
11
Linux (WSL), but feel free to use the same logic in other languages e.g. Python.
10
12
@@ -24,7 +26,7 @@ From inside your language repository, run:
24
26
25
27
.. code-block :: shell
26
28
27
- BRANCH=3.13
29
+ BRANCH=3.14
28
30
git clone --depth 1 https://github.com/python/cpython --branch $BRANCH
29
31
30
32
Use ``--depth 1 `` to shallow clone, which avoids downloading all the 800 MB of data
@@ -92,7 +94,7 @@ translation means pulling the translation strings.
92
94
with the pot. Alternatively, you can skip it and pull translations, but new
93
95
translation resources in Transifex could be not mapped, and hence wouldn't be pulled.
94
96
95
- .. _generate-pot ::
97
+ .. _generate-pot :
96
98
97
99
Generating pot files
98
100
^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change 28
28
# ----------------------------------------------------------------------------
29
29
30
30
# Python versions
31
- newest = "3.13 "
32
- previous = "3.12 "
31
+ newest = "3.14 "
32
+ previous = "3.13 "
33
33
34
34
rst_prolog = f"""
35
35
.. |py_new| replace:: { newest }
Original file line number Diff line number Diff line change 1
1
================
2
- GitHub Workflows
2
+ Sample Workflows
3
3
================
4
4
5
5
All Python documentation translation repositories are hosted on `GitHub <https://github.com >`_.
You can’t perform that action at this time.
0 commit comments