2023-08-11 15:57:32 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
2024-03-15 10:56:00 +00:00
|
|
|
import os
|
2023-08-11 15:57:32 +00:00
|
|
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
HERE = Path(__file__).parent
|
|
|
|
|
|
|
|
language_file = HERE / "en.json"
|
|
|
|
output_file = HERE / "order.json"
|
|
|
|
|
|
|
|
|
|
|
|
def generate_new_order() -> None:
|
|
|
|
translations = json.loads(language_file.read_text())["translations"]
|
|
|
|
old_order: dict[str, str] = json.loads(output_file.read_text())
|
|
|
|
|
|
|
|
old_unique_items: set[str] = set(old_order.values())
|
|
|
|
new_unique_items: set[str] = set(translations.keys())
|
|
|
|
|
|
|
|
new_items = sorted(new_unique_items - old_unique_items)
|
|
|
|
if new_items:
|
|
|
|
print("Found new items:")
|
|
|
|
for item in new_items:
|
|
|
|
print(item)
|
|
|
|
|
|
|
|
first_update_index = len(old_order)
|
|
|
|
for index, item in enumerate(new_items):
|
|
|
|
new_index = str(first_update_index + index)
|
|
|
|
print(f"Adding {item} to {new_index}")
|
|
|
|
old_order[new_index] = item
|
|
|
|
|
|
|
|
output_file.write_text(json.dumps(old_order, indent=2) + "\n")
|
2024-03-15 10:56:00 +00:00
|
|
|
stat = language_file.stat()
|
|
|
|
os.utime(output_file, ns=(stat.st_atime_ns, stat.st_mtime_ns))
|
2023-08-11 15:57:32 +00:00
|
|
|
else:
|
|
|
|
print("No new items found.")
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
generate_new_order()
|