schon/payments/apps.py
Egor fureunoir Gorbunov b96ad5aa80 Features: 1) Added "eVibes Engine" translation for multiple languages; 2) Updated priorities for applications in settings/daisy.py;
Fixes: 1) Corrected mismatched line references in translations; 2) Adjusted timestamps in locale files for accuracy;

Extra: Refactored and cleaned up unused or misplaced translation entries.
2025-06-21 18:45:14 +03:00

15 lines
413 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class PaymentsConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "payments"
verbose_name = _("payments")
icon = "fa fa-solid fa-wallet"
divider_title = _("eVibes Engine")
priority = 87
hide = False
def ready(self):
import payments.signals # noqa: F401