fix: consistent naming migrate-csv-to-po

This commit is contained in:
barredterra 2023-10-29 01:31:27 +02:00
parent fab8ae8fd6
commit e052fe651e

View file

@ -29,7 +29,9 @@ def compile_translations(context, app: str | None = None, locale: str = None):
compile(app, locale)
@click.command("csv-to-po", help="Translation: migrate from CSV files (old) to PO files (new)")
@click.command(
"migrate-csv-to-po", help="Translation: migrate from CSV files (old) to PO files (new)"
)
@click.option("--app", help="Only migrate for this app. eg: frappe")
@click.option("--locale", help="Compile translations only for this locale. eg: de")
@pass_context