2021-09-24 23:58:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @brief translater, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis & contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
class dcTranslaterLang
|
|
|
|
{
|
|
|
|
/** @var dCore dcCore instance */
|
|
|
|
public $core = null;
|
|
|
|
/** @var dcTranslater dcTranslater instance */
|
|
|
|
public $translater = null;
|
|
|
|
/** @var dcTranslaterModule dcTranslaterModule instance */
|
|
|
|
public $module = null;
|
|
|
|
|
|
|
|
/** @var array Lang properies */
|
|
|
|
private $prop = [];
|
|
|
|
|
|
|
|
public function __construct(dcTranslaterModule $module, string $lang)
|
|
|
|
{
|
|
|
|
$this->core = $module->core;
|
|
|
|
$this->translater = $module->translater;
|
|
|
|
$this->module = $module;
|
|
|
|
|
|
|
|
$this->prop['code'] = $lang;
|
|
|
|
$this->prop['name'] = l10n::getLanguageName($lang);
|
|
|
|
$this->prop['plural'] = explode(':', l10n::getLanguagePluralExpression($lang));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a lang property
|
|
|
|
*
|
|
|
|
* @param string $key The lang property key
|
|
|
|
* @return mixed The lang property value or null
|
|
|
|
*/
|
|
|
|
public function get(string $key)
|
|
|
|
{
|
|
|
|
return array_key_exists($key, $this->prop) ? $this->prop[$key] : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Magic get
|
|
|
|
*/
|
|
|
|
public function __get($key)
|
|
|
|
{
|
|
|
|
return $this->get($key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a lang messages
|
|
|
|
*
|
|
|
|
* @return array The messages ids and translations
|
|
|
|
*/
|
|
|
|
public function getMessages(): array
|
|
|
|
{
|
|
|
|
$res = [];
|
|
|
|
$m_msgids = $this->getMsgIds();
|
|
|
|
$m_msgstrs = $this->getMsgStrs();
|
|
|
|
|
|
|
|
foreach($this->translater->getModules() as $module) {
|
|
|
|
if ($module->id != $this->module->id) {
|
|
|
|
$m_o_msgstrs[$module->id] = $this->translater->getlang($module, $this->code)->getMsgStrs();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$dc_module = new dcTranslaterModule($this->translater, ['id' => 'dotclear', 'root' => DC_ROOT]);
|
|
|
|
$dc_lang = new dctranslaterLang($dc_module, $this->code);
|
|
|
|
$m_o_msgstrs['dotclear'] = $dc_lang->getMsgStrs();
|
|
|
|
|
|
|
|
# From id list
|
|
|
|
foreach($m_msgids as $rs) {
|
|
|
|
$res[$rs['msgid']]['files'][] = [trim($rs['file'],'/'), $rs['line']];
|
|
|
|
$res[$rs['msgid']]['group'] = 'main';
|
|
|
|
$res[$rs['msgid']]['plural'] = $rs['msgid_plural'];
|
|
|
|
$res[$rs['msgid']]['msgstr'] = [''];
|
|
|
|
$res[$rs['msgid']]['in_dc'] = false;
|
|
|
|
$res[$rs['msgid']]['o_msgstrs'] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
# From str list
|
|
|
|
foreach($m_msgstrs as $rs) {
|
|
|
|
|
|
|
|
if (!isset($res[$rs['msgid']])) {
|
|
|
|
$res[$rs['msgid']]['files'][] = [];
|
|
|
|
$res[$rs['msgid']]['in_dc'] = false;
|
|
|
|
$res[$rs['msgid']]['o_msgstrs'] = [];
|
|
|
|
}
|
|
|
|
$res[$rs['msgid']]['group'] = $rs['group'];
|
|
|
|
$res[$rs['msgid']]['plural'] = $rs['msgid_plural'];
|
|
|
|
$res[$rs['msgid']]['msgstr'] = is_array($rs['msgstr']) ? $rs['msgstr'] : [$rs['msgstr']];
|
|
|
|
$res[$rs['msgid']]['in_dc'] = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
# From others str list
|
|
|
|
foreach($m_o_msgstrs as $o_module => $o_msgstrs) {
|
|
|
|
foreach($o_msgstrs as $rs) {
|
|
|
|
if (!isset($res[$rs['msgid']])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$res[$rs['msgid']]['o_msgstrs'][] = [
|
|
|
|
'msgstr' => is_array($rs['msgstr']) ? $rs['msgstr'] : [$rs['msgstr']],
|
|
|
|
'module' => $o_module,
|
|
|
|
'file' => $rs['file']
|
|
|
|
];
|
|
|
|
if ($o_module == 'dotclear') {
|
|
|
|
$res[$rs['msgid']]['in_dc'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get messages ids
|
|
|
|
*
|
|
|
|
* @return array The messages ids
|
|
|
|
*/
|
|
|
|
public function getMsgIds(): array
|
|
|
|
{
|
|
|
|
$res = [];
|
|
|
|
$scan_ext = ['php'];
|
|
|
|
if ($this->translater->scan_tpl) {
|
2021-09-25 13:15:16 +00:00
|
|
|
$scan_ext[] = 'html';
|
2021-09-24 23:58:59 +00:00
|
|
|
}
|
|
|
|
|
2021-09-25 13:15:16 +00:00
|
|
|
$files = dcTranslater::scandir($this->module->root);
|
|
|
|
foreach($files as $file) {
|
|
|
|
$extension = files::getExtension($file);
|
|
|
|
if (is_dir($this->module->root . '/' . $file) || !in_array($extension, $scan_ext)) {
|
2021-09-24 23:58:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$contents = file_get_contents($this->module->root . '/' . $file);
|
|
|
|
# php files
|
2021-09-25 13:15:16 +00:00
|
|
|
if ($extension == 'php') {
|
|
|
|
$msgs = dcTranslater::extractPhpMsgs($contents);
|
|
|
|
|
|
|
|
# tpl files
|
|
|
|
} elseif ($extension == 'html') {
|
|
|
|
$msgs = dcTranslater::extractTplMsgs($contents);
|
|
|
|
}
|
2021-09-24 23:58:59 +00:00
|
|
|
foreach($msgs as $msg) {
|
|
|
|
$res[] = [
|
|
|
|
'msgid' => dcTranslater::encodeMsg($msg[0][0]),
|
|
|
|
'msgid_plural' => empty($msg[0][1]) ? '' : dcTranslater::encodeMsg($msg[0][1]),
|
|
|
|
'file' => $file,
|
|
|
|
'line' => $msg[1]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($contents);
|
|
|
|
}
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get messages translations
|
|
|
|
*
|
|
|
|
* @return array The messages translations
|
|
|
|
*/
|
|
|
|
public function getMsgStrs(): array
|
|
|
|
{
|
2021-09-25 12:37:49 +00:00
|
|
|
$res = $exists = $scanned = [];
|
2021-09-24 23:58:59 +00:00
|
|
|
|
|
|
|
$langs = $this->module->getLangs(true);
|
|
|
|
if (!isset($langs[$this->code])) {
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($langs[$this->code] as $file) {
|
|
|
|
if (in_array($file, $scanned)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$scanned[] = $file;
|
|
|
|
$path = path::clean($this->module->locales . '/' . $file);
|
|
|
|
|
|
|
|
if (dcTranslater::isPoFile($file)) {
|
|
|
|
$po = l10n::parsePoFile($path);
|
|
|
|
if (!is_array($po)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$entries = $po[1];
|
|
|
|
foreach($entries as $entry) {
|
2021-09-25 12:37:49 +00:00
|
|
|
$res[] = [
|
2021-09-24 23:58:59 +00:00
|
|
|
'msgid' => $entry['msgid'],
|
|
|
|
'msgid_plural' => $entry['msgid_plural'] ?? '',
|
|
|
|
'msgstr' => is_array($entry['msgstr']) ? $entry['msgstr'] : [$entry['msgstr']],
|
|
|
|
'lang' => $this->code,
|
|
|
|
'type' => 'po',
|
|
|
|
'path' => $path,
|
|
|
|
'file' => basename($file),
|
|
|
|
'group'=> str_replace('.po', '', basename($file))
|
2021-09-25 12:37:49 +00:00
|
|
|
];
|
|
|
|
$exists[] = $entry['msgid'];
|
2021-09-24 23:58:59 +00:00
|
|
|
}
|
2021-09-25 12:37:49 +00:00
|
|
|
|
2021-09-24 23:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
}
|