2015-09-25 14:07:00 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Flarum\Events\RegisterLocales;
|
2015-10-03 14:55:17 +08:00
|
|
|
use Flarum\Core\Application;
|
2015-09-25 14:07:00 +08:00
|
|
|
|
2015-10-03 14:55:17 +08:00
|
|
|
return function (Application $app) {
|
|
|
|
$app->make('events')->listen(RegisterLocales::class, function(RegisterLocales $event) {
|
|
|
|
$name = $title = basename(__DIR__);
|
2015-09-25 14:07:00 +08:00
|
|
|
|
2015-10-03 14:55:17 +08:00
|
|
|
if (file_exists($manifest = __DIR__.'/composer.json')) {
|
2015-09-25 14:07:00 +08:00
|
|
|
$json = json_decode(file_get_contents($manifest), true);
|
|
|
|
|
2015-10-03 14:55:17 +08:00
|
|
|
if (empty($json)) {
|
|
|
|
throw new RuntimeException("Error parsing composer.json in $name: ".json_last_error_msg());
|
|
|
|
}
|
|
|
|
|
|
|
|
$locale = array_get($json, 'extra.flarum-locale.code');
|
|
|
|
$title = array_get($json, 'extra.flarum-locale.title', $title);
|
2015-09-25 14:07:00 +08:00
|
|
|
}
|
|
|
|
|
2015-10-03 14:55:17 +08:00
|
|
|
if (! isset($locale)) {
|
|
|
|
throw new RuntimeException("Language pack $name must define \"extra.flarum-locale.code\" in composer.json.");
|
2015-09-25 14:07:00 +08:00
|
|
|
}
|
|
|
|
|
2015-10-03 14:55:17 +08:00
|
|
|
$event->addLocale($locale, $title);
|
2015-09-25 14:07:00 +08:00
|
|
|
|
|
|
|
if (! is_dir($localeDir = __DIR__.'/locale')) {
|
2015-10-03 14:55:17 +08:00
|
|
|
throw new RuntimeException("Language pack $name must have a \"locale\" subdirectory.");
|
2015-09-25 14:07:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (file_exists($file = $localeDir.'/config.js')) {
|
|
|
|
$event->addJsFile($locale, $file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file_exists($file = $localeDir.'/config.php')) {
|
|
|
|
$event->addConfig($locale, $file);
|
|
|
|
}
|
|
|
|
|
2015-10-03 14:55:17 +08:00
|
|
|
foreach (new DirectoryIterator($localeDir) as $file) {
|
2015-09-25 14:07:00 +08:00
|
|
|
if ($file->isFile() && in_array($file->getExtension(), ['yml', 'yaml'])) {
|
|
|
|
$event->addTranslations($locale, $file->getPathname());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|