mirror of
https://github.com/hacks-guide/Guide_3DS.git
synced 2025-08-20 07:21:52 +02:00
Add script to clean up after Crowdin
Crowdin does not delete files from translations when the main language has a deleted file. This script will do that job for them.
This commit is contained in:
25
clean_translations.py
Normal file
25
clean_translations.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
files_in_main = []
|
||||||
|
files_in_main_include = []
|
||||||
|
|
||||||
|
|
||||||
|
for i in os.listdir("_pages/en_US/"):
|
||||||
|
files_in_main.append(i)
|
||||||
|
|
||||||
|
for i in os.listdir("_pages/en_US/include"):
|
||||||
|
files_in_main_include.append(i)
|
||||||
|
|
||||||
|
for i in os.listdir("_pages/"):
|
||||||
|
if i == "en_US":
|
||||||
|
continue
|
||||||
|
for j in os.listdir(f"_pages/{i}"):
|
||||||
|
if j == "include":
|
||||||
|
for k in os.listdir(f"_pages/{i}/include"):
|
||||||
|
if k not in files_in_main_include:
|
||||||
|
print(f"Deleting _pages/{i}/include/{k}")
|
||||||
|
os.remove(f"_pages/{i}/include/{k}")
|
||||||
|
elif j not in files_in_main:
|
||||||
|
print(f"Deleting _pages/{i}/{j}")
|
||||||
|
os.remove(f"_pages/{i}/{j}")
|
Reference in New Issue
Block a user