mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
12 lines
181 B
Python
12 lines
181 B
Python
import subprocess
|
|
|
|
TO_TRANSLATE = ["../general.py"]
|
|
|
|
|
|
def regen_messages():
|
|
subprocess.run(["pygettext", "-n"] + TO_TRANSLATE)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
regen_messages()
|