Skip to content

Add script for handling translations #195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Oct 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Swap init and extract to be didactic
As one need to have POT before initializing PO
  • Loading branch information
rffontenelle authored Oct 28, 2024
commit 2aa3a04d209e7496e2c3f08d5a2db68b83fbf9fb
2 changes: 1 addition & 1 deletion babel_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def main() -> None:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
"command",
choices=["init", "extract", "update", "compile"],
choices=["extract", "init", "update", "compile"],
help="command to be executed",
)
parser.add_argument(
Expand Down
Loading