Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0febc053
Commit
0febc053
authored
Feb 23, 2018
by
cocoatomo
Committed by
INADA Naoki
Feb 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473)
parent
58a10967
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
Doc/tools/extensions/pyspecific.py
Doc/tools/extensions/pyspecific.py
+7
-5
Doc/tools/templates/dummy.html
Doc/tools/templates/dummy.html
+1
-0
No files found.
Doc/tools/extensions/pyspecific.py
View file @
0febc053
...
...
@@ -196,7 +196,7 @@ class DeprecatedRemoved(Directive):
final_argument_whitespace
=
True
option_spec
=
{}
_label
=
'Deprecated since version
%s, will be removed in version %s
'
_label
=
'Deprecated since version
{deprecated}, will be removed in version {removed}
'
def
run
(
self
):
node
=
addnodes
.
versionmodified
()
...
...
@@ -204,11 +204,12 @@ class DeprecatedRemoved(Directive):
node
[
'type'
]
=
'deprecated-removed'
version
=
(
self
.
arguments
[
0
],
self
.
arguments
[
1
])
node
[
'version'
]
=
version
text
=
self
.
_label
%
version
label
=
translators
[
'sphinx'
].
gettext
(
self
.
_label
)
text
=
label
.
format
(
deprecated
=
self
.
arguments
[
0
],
removed
=
self
.
arguments
[
1
])
if
len
(
self
.
arguments
)
==
3
:
inodes
,
messages
=
self
.
state
.
inline_text
(
self
.
arguments
[
2
],
self
.
lineno
+
1
)
para
=
nodes
.
paragraph
(
self
.
arguments
[
2
],
''
,
*
inodes
)
para
=
nodes
.
paragraph
(
self
.
arguments
[
2
],
''
,
*
inodes
,
translatable
=
False
)
node
.
append
(
para
)
else
:
messages
=
[]
...
...
@@ -220,13 +221,14 @@ class DeprecatedRemoved(Directive):
content
.
source
=
node
[
0
].
source
content
.
line
=
node
[
0
].
line
content
+=
node
[
0
].
children
node
[
0
].
replace_self
(
nodes
.
paragraph
(
''
,
''
,
content
))
node
[
0
].
replace_self
(
nodes
.
paragraph
(
''
,
''
,
content
,
translatable
=
False
))
node
[
0
].
insert
(
0
,
nodes
.
inline
(
''
,
'%s: '
%
text
,
classes
=
[
'versionmodified'
]))
else
:
para
=
nodes
.
paragraph
(
''
,
''
,
nodes
.
inline
(
''
,
'%s.'
%
text
,
classes
=
[
'versionmodified'
]))
classes
=
[
'versionmodified'
]),
translatable
=
False
)
node
.
append
(
para
)
env
=
self
.
state
.
document
.
settings
.
env
env
.
note_versionchange
(
'deprecated'
,
version
[
0
],
node
,
self
.
lineno
)
...
...
Doc/tools/templates/dummy.html
View file @
0febc053
...
...
@@ -4,3 +4,4 @@ texts in extensions to sphinx.pot file.
In extensions/pyspecific.py:
{% trans %}CPython implementation detail:{% endtrans %}
{% trans %}Deprecated since version {deprecated}, will be removed in version {removed}{% endtrans %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment