Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c351ce6a
Kaydet (Commit)
c351ce6a
authored
Mar 08, 2017
tarafından
INADA Naoki
Kaydeden (comit)
GitHub
Mar 08, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-28331: fix impl-detail label is removed when content is translated. (GH-195)
üst
c45cd167
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
pyspecific.py
Doc/tools/extensions/pyspecific.py
+12
-2
dummy.html
Doc/tools/templates/dummy.html
+6
-0
No files found.
Doc/tools/extensions/pyspecific.py
Dosyayı görüntüle @
c351ce6a
...
...
@@ -21,6 +21,7 @@ from docutils import nodes, utils
from
sphinx
import
addnodes
from
sphinx.builders
import
Builder
from
sphinx.locale
import
translators
from
sphinx.util.nodes
import
split_explicit_title
from
sphinx.util.compat
import
Directive
from
sphinx.writers.html
import
HTMLTranslator
...
...
@@ -103,16 +104,25 @@ class ImplementationDetail(Directive):
optional_arguments
=
1
final_argument_whitespace
=
True
# This text is copied to templates/dummy.html
label_text
=
'CPython implementation detail:'
def
run
(
self
):
pnode
=
nodes
.
compound
(
classes
=
[
'impl-detail'
])
label
=
translators
[
'sphinx'
]
.
gettext
(
self
.
label_text
)
content
=
self
.
content
add_text
=
nodes
.
strong
(
'CPython implementation detail:'
,
'CPython implementation detail:'
)
add_text
=
nodes
.
strong
(
label
,
label
)
if
self
.
arguments
:
n
,
m
=
self
.
state
.
inline_text
(
self
.
arguments
[
0
],
self
.
lineno
)
pnode
.
append
(
nodes
.
paragraph
(
''
,
''
,
*
(
n
+
m
)))
self
.
state
.
nested_parse
(
content
,
self
.
content_offset
,
pnode
)
if
pnode
.
children
and
isinstance
(
pnode
[
0
],
nodes
.
paragraph
):
content
=
nodes
.
inline
(
pnode
[
0
]
.
rawsource
,
translatable
=
True
)
content
.
source
=
pnode
[
0
]
.
source
content
.
line
=
pnode
[
0
]
.
line
content
+=
pnode
[
0
]
.
children
pnode
[
0
]
.
replace_self
(
nodes
.
paragraph
(
''
,
''
,
content
,
translatable
=
False
))
pnode
[
0
]
.
insert
(
0
,
add_text
)
pnode
[
0
]
.
insert
(
1
,
nodes
.
Text
(
' '
))
else
:
...
...
Doc/tools/templates/dummy.html
0 → 100644
Dosyayı görüntüle @
c351ce6a
This file is not an actual template, but used to add some
texts in extensions to sphinx.pot file.
In extensions/pyspecific.py:
{% trans %}CPython implementation detail:{% 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