From 72fcc81919b76a73624bac67d6d71cae6a50033b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 1 Mar 2019 14:25:24 +0300 Subject: [PATCH] support per-plugin locale directories --- classes/pluginhost.php | 23 +++++++++++++++++++++++ include/functions.php | 26 +++++++++++++++----------- 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/classes/pluginhost.php b/classes/pluginhost.php index 96b1ce499..2ad9ae11d 100755 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -1,4 +1,18 @@ pdo = Db::pdo(); @@ -211,6 +229,11 @@ class PluginHost { continue; } + if (file_exists(dirname($file) . "/locale")) { + _bindtextdomain($class, dirname($file) . "/locale"); + _bind_textdomain_codeset($class, "UTF-8"); + } + $this->last_registered = $class; switch ($kind) { diff --git a/include/functions.php b/include/functions.php index 6a612115e..8c0654f3c 100755 --- a/include/functions.php +++ b/include/functions.php @@ -141,7 +141,6 @@ } _bindtextdomain("messages", "locale"); - _textdomain("messages"); _bind_textdomain_codeset("messages", "UTF-8"); } @@ -2403,18 +2402,23 @@ return __((parseInt(n) > 1) ? msg2 : msg1); }'; - $l10n = _get_reader(); + global $text_domains; - for ($i = 0; $i < $l10n->total; $i++) { - $orig = $l10n->get_original_string($i); - if(strpos($orig, "\000") !== FALSE) { // Plural forms - $key = explode(chr(0), $orig); - print T_js_decl($key[0], _ngettext($key[0], $key[1], 1)); // Singular - print T_js_decl($key[1], _ngettext($key[0], $key[1], 2)); // Plural - } else { - $translation = __($orig); - print T_js_decl($orig, $translation); + foreach (array_keys($text_domains) as $domain) { + $l10n = _get_reader($domain); + + for ($i = 0; $i < $l10n->total; $i++) { + $orig = $l10n->get_original_string($i); + if(strpos($orig, "\000") !== FALSE) { // Plural forms + $key = explode(chr(0), $orig); + print T_js_decl($key[0], _ngettext($key[0], $key[1], 1)); // Singular + print T_js_decl($key[1], _ngettext($key[0], $key[1], 2)); // Plural + } else { + $translation = _dgettext($domain,$orig); + print T_js_decl($orig, $translation); + } } + } }