mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-04-30 18:04:43 +00:00
8 lines
226 B
Python
8 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",]
|
|
)
|