mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix missing heading in translated online class reference
(cherry picked from commit 9c83d3db5b
)
This commit is contained in:
parent
c219ffe5eb
commit
075a5a174f
1 changed files with 2 additions and 7 deletions
|
@ -1552,16 +1552,11 @@ def make_rst_index(grouped_classes: Dict[str, List[str]], dry_run: bool, output_
|
|||
|
||||
f.write(".. _doc_class_reference:\n\n")
|
||||
|
||||
main_title = translate("All classes")
|
||||
f.write(f"{main_title}\n")
|
||||
f.write(f"{'=' * len(main_title)}\n\n")
|
||||
f.write(make_heading("All classes", "="))
|
||||
|
||||
for group_name in CLASS_GROUPS:
|
||||
if group_name in grouped_classes:
|
||||
group_title = translate(CLASS_GROUPS[group_name])
|
||||
|
||||
f.write(f"{group_title}\n")
|
||||
f.write(f"{'=' * len(group_title)}\n\n")
|
||||
f.write(make_heading(CLASS_GROUPS[group_name], "="))
|
||||
|
||||
f.write(".. toctree::\n")
|
||||
f.write(" :maxdepth: 1\n")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue