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