From 315f9bb7e3e1a907da3c45f3566a2b5311ee6555 Mon Sep 17 00:00:00 2001 From: Arsen Mirzaev Tatyano-Muradovich Date: Sun, 6 Jul 2025 10:27:23 +0700 Subject: [PATCH] added localizations --- author/project/system/public/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/author/project/system/public/index.php b/author/project/system/public/index.php index cfdca49..aaf9f42 100755 --- a/author/project/system/public/index.php +++ b/author/project/system/public/index.php @@ -34,6 +34,9 @@ define('STORAGE', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'st // Initializing path to the databases directory define('DATABASES', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'databases'); +// Initializing path to the localizations directory +define('LOCALIZATIONS', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'localizations'); + // Initializing dependencies require ROOT . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';