From 6f47b2aea77228b70dd404783a80d31f4373a2f7 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Thu, 12 Dec 2024 22:29:15 +0100 Subject: [PATCH] I18n: fix typo --- src/I18n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/I18n.php b/src/I18n.php index a81e3de..728cce2 100644 --- a/src/I18n.php +++ b/src/I18n.php @@ -183,7 +183,7 @@ class I18n { */ public static function get_available_langs($as_locales=false) { if (!is_dir(self :: $root_path)) - Log :: fatal("Root land directory not found (%s)", self :: $root_path); + Log :: fatal("Root languages directory not found (%s)", self :: $root_path); $langs = array(($as_locales?'en_US.UTF8':'en')); if ($dh = opendir(self :: $root_path)) { while (($file = readdir($dh)) !== false) {