Fixes: 1) Adjusted Django admin translations display logic for improved clarity; 2) Updated locale files across multiple regions (e.g., `ru_RU`, `zh_Hans`, `ro_RO`) to align with new context placeholders; Extra: Removed obsolete `STOCKS_ARE_SINGLE` setting; minor formatting and spacing corrections in translations and source files.
7 lines
157 B
Python
7 lines
157 B
Python
from django.conf import settings
|
|
|
|
|
|
class RootDirectory:
|
|
def __init__(self):
|
|
self.label = "root"
|
|
self.path = settings.BASE_DIR / "evibes"
|