prepare i18n

This commit is contained in:
2021-10-26 09:15:49 +02:00
parent 16abe95dac
commit aea1e49fe8
3 changed files with 49 additions and 5 deletions

9
pylupdate.py Normal file
View File

@@ -0,0 +1,9 @@
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"])