9 lines
189 B
Python
9 lines
189 B
Python
import glob
|
|
import os
|
|
|
|
from PyQt6.lupdate import lupdate
|
|
|
|
if __name__ == "__main__":
|
|
python_files = glob.glob(r"*.py")
|
|
print(python_files)
|
|
lupdate(python_files, ["messages_de.ts"]) |