Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
4a42d0f
Add Russian translations for Apollo lessons 1 and 2
anastas93 Nov 21, 2025
ef57d15
Merge pull request #1 from anastas93/codex/-apollo
anastas93 Nov 21, 2025
bc10723
Add Russian translations for Apollo lessons 3-5
anastas93 Nov 21, 2025
a4b87d2
Merge branch 'main' into codex/-apollo-n8dzm7
anastas93 Nov 21, 2025
9a9a1fb
Merge pull request #2 from anastas93/codex/-apollo-n8dzm7
anastas93 Nov 21, 2025
49a9d51
Add Russian translation for Apollo lesson 6
anastas93 Nov 21, 2025
a957fe7
Merge branch 'main' into codex/-apollo-odbyfq
anastas93 Nov 21, 2025
7666fd2
Merge pull request #3 from anastas93/codex/-apollo-odbyfq
anastas93 Nov 21, 2025
6a83ca4
Added Russian localization for the Lunar Module Descent Propulsion Sy…
anastas93 Nov 21, 2025
0eb1b5e
Added a Russian-localized version Lesson 7
anastas93 Nov 21, 2025
44fd882
Delete tools directory
anastas93 Nov 21, 2025
c3af150
Minor
anastas93 Nov 21, 2025
94a6e8d
Added Russian translations for all MissionCommands in the Apollo Less…
anastas93 Nov 21, 2025
6f88ea8
Added Russian translations for Lesson 9
anastas93 Nov 21, 2025
68d6ef5
Added Russian translations for the Apollo transposition and docking
anastas93 Nov 21, 2025
891deb4
Localized the Lunar Module powered descent lesson instructions
anastas93 Nov 21, 2025
620edf3
Added Russian translations for all mission prompts in the Trans-Lunar…
anastas93 Nov 21, 2025
a632480
Russian localization LM lesson1
anastas93 Nov 21, 2025
382905c
Lunar Module lesson 2
anastas93 Nov 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,975 changes: 1,975 additions & 0 deletions Apollo/lesson10_docking.ru-ru.jsonjson

Large diffs are not rendered by default.

1,939 changes: 1,939 additions & 0 deletions Apollo/lesson11_tli.ru-ru.json

Large diffs are not rendered by default.

3,984 changes: 3,984 additions & 0 deletions Apollo/lesson1_prelaunch.ru-ru.json

Large diffs are not rendered by default.

2,544 changes: 2,544 additions & 0 deletions Apollo/lesson2_boost.ru-ru.json

Large diffs are not rendered by default.

1,968 changes: 1,968 additions & 0 deletions Apollo/lesson3_eps.ru-ru.json

Large diffs are not rendered by default.

1,428 changes: 1,428 additions & 0 deletions Apollo/lesson4_rcs.ru-ru.json

Large diffs are not rendered by default.

1,896 changes: 1,896 additions & 0 deletions Apollo/lesson5_agc.ru-ru.json

Large diffs are not rendered by default.

1,716 changes: 1,716 additions & 0 deletions Apollo/lesson6_sps.ru-ru.json

Large diffs are not rendered by default.

4,711 changes: 4,711 additions & 0 deletions Apollo/lesson7_automaneuver.ru-ru.json

Large diffs are not rendered by default.

3,373 changes: 3,373 additions & 0 deletions Apollo/lesson8_SPSBurns.ru-ru.json

Large diffs are not rendered by default.

4,279 changes: 4,279 additions & 0 deletions Apollo/lesson9_reentry.ru-ru.json

Large diffs are not rendered by default.

4,063 changes: 4,063 additions & 0 deletions Apollo/lm_lesson10_descent.ru-ru.json

Large diffs are not rendered by default.

1,686 changes: 1,686 additions & 0 deletions Apollo/lm_lesson1_init.ru-ru.json

Large diffs are not rendered by default.

2,334 changes: 2,334 additions & 0 deletions Apollo/lm_lesson2_activation.ru-ru.json

Large diffs are not rendered by default.

1,615 changes: 1,615 additions & 0 deletions Apollo/lm_lesson7_dps.ru-ru.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions tools/json-prettifier/prettifier.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import json
import glob
for checklist in glob.glob('**/*.json', recursive=True) + glob.glob('**/*.desc', recursive=True):
print(checklist)
j = json.load(open(checklist))
try:
s = json.dumps(j, ensure_ascii=False, indent=4, sort_keys=True)
open(checklist, 'w').write(s)
except UnicodeEncodeError:
raise
import json
import glob

for checklist in glob.glob('**/*.json', recursive=True) + glob.glob('**/*.desc', recursive=True):
print(checklist)
j = json.load(open(checklist))
try:
s = json.dumps(j, ensure_ascii=False, indent=4, sort_keys=True)
open(checklist, 'w').write(s)
except UnicodeEncodeError:
raise