From 5860aafde4c9ac0b94844158f2ca7737e6413fd3 Mon Sep 17 00:00:00 2001 From: "John R. D'Orazio" Date: Sat, 26 Oct 2024 02:48:56 +0200 Subject: [PATCH] look for i18n one folder up --- php/src/LitSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/LitSettings.php b/php/src/LitSettings.php index 13eff17..ea1a370 100644 --- a/php/src/LitSettings.php +++ b/php/src/LitSettings.php @@ -134,7 +134,7 @@ public function __construct(array $DATA, bool $directAccess = false) ]; $this->setLocale = setlocale(LC_ALL, $localeArray); */ - $this->expectedTextDomainPath = __DIR__ . "/i18n"; + $this->expectedTextDomainPath = __DIR__ . "/../i18n"; bindtextdomain("litexmplphp", $this->expectedTextDomainPath); //textdomain("litcal"); $this->directAccess = $directAccess;