mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-05-02 02:44:42 +00:00
9 lines
226 B
Python
9 lines
226 B
Python
from django import dispatch
|
|
|
|
entry_changed = dispatch.Signal(
|
|
providing_args=["user", "old_msgstr", "old_fuzzy", "pofile", "language_code"]
|
|
)
|
|
|
|
post_save = dispatch.Signal(
|
|
providing_args=["language_code", "request"]
|
|
)
|