mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
8 lines
266 B
Python
8 lines
266 B
Python
import os
|
|
|
|
|
|
for entry in os.scandir("."):
|
|
if entry.is_dir():
|
|
print(entry.name)
|
|
os.system(f"msgmerge /home/mcjlnrtwcz/Repositories/reforis/reforis/translations/{entry.name}/LC_MESSAGES/messages.po forisjs.pot -o {entry.name}/LC_MESSAGES/forisjs.po")
|