- Translate all templates: login, dashboard, expense success, categories CRUD, subcategory CRUD, month start page, nav bar, partials - Translate seed categories: Survival, Leisure & vice, Culture, Extras with all subcategories in English - Translate form placeholders and view titles - Translate error messages (login, delete confirmations) - Change LANGUAGE_CODE from "es" to "en-us" - Change html lang from "es" to "en" - Format all Python files with Ruff (tabs)
13 lines
257 B
Python
13 lines
257 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ExpensesConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "app.expenses"
|
|
|
|
def ready(self):
|
|
try:
|
|
import app.expenses.liveview_handlers # noqa: F401
|
|
except ImportError:
|
|
pass
|