2021-08-18 19:42:30 +00:00
|
|
|
<?php
|
2021-11-01 21:32:32 +00:00
|
|
|
/**
|
2023-10-21 09:45:02 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin translater locales resources
|
|
|
|
* @ingroup translater
|
2021-11-01 21:32:32 +00:00
|
|
|
*
|
2023-10-21 09:45:02 +00:00
|
|
|
* @author Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-11-01 21:32:32 +00:00
|
|
|
*/
|
|
|
|
foreach (['index', 'type', 'module', 'lang', 'config'] as $v) {
|
2023-10-21 09:45:02 +00:00
|
|
|
\Dotclear\App::backend()->resources()->set('help', 'translater.' . $v, __DIR__ . '/help/translater.' . $v . '.html');
|
2021-11-01 21:32:32 +00:00
|
|
|
}
|