mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* split global.js into its components, so it can be reasonably processed by setup * make reputation requirements configurable * move Markup and Locale back into global.js (removed associated build scripts) * extend Icon to display iconId in lightbox popup
81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Aowow;
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
if (!CLI)
|
|
die('not in cli mode');
|
|
|
|
|
|
/*
|
|
0: { // English
|
|
id: LOCALE_ENUS,
|
|
name: 'enus',
|
|
domain: 'en',
|
|
description: 'English'
|
|
},
|
|
2: { // French
|
|
id: LOCALE_FRFR,
|
|
name: 'frfr',
|
|
domain: 'fr',
|
|
description: 'Fran' + String.fromCharCode(231) + 'ais'
|
|
},
|
|
3: { // German
|
|
id: LOCALE_DEDE,
|
|
name: 'dede',
|
|
domain: 'de',
|
|
description: 'Deutsch'
|
|
},
|
|
4:{ // Chinese
|
|
id: LOCALE_ZHCN,
|
|
name: 'zhcn',
|
|
domain: 'cn',
|
|
description: String.fromCharCode(31616, 20307, 20013, 25991)
|
|
},
|
|
6: { // Spanish
|
|
id: LOCALE_ESES,
|
|
name: 'eses',
|
|
domain: 'es',
|
|
description: 'Espa' + String.fromCharCode(241) + 'ol'
|
|
},
|
|
8: { // Russian
|
|
id: LOCALE_RURU,
|
|
name: 'ruru',
|
|
domain: 'ru',
|
|
description: String.fromCharCode(1056, 1091, 1089, 1089, 1082, 1080, 1081)
|
|
}
|
|
*/
|
|
|
|
CLISetup::registerSetup("build", new class extends SetupScript
|
|
{
|
|
use TrTemplateFile;
|
|
|
|
protected $info = array(
|
|
'globaljs' => [[], CLISetup::ARGV_PARAM, 'Compiles the global javascript file (static/js/global.js).']
|
|
);
|
|
|
|
protected $fileTemplateDest = ['static/js/global.js'];
|
|
protected $fileTemplateSrc = ['global.js'];
|
|
|
|
private bool $numFmt = false;
|
|
|
|
private function locales() : string
|
|
{
|
|
$result = [];
|
|
|
|
foreach (CLISetup::$locales as $loc)
|
|
$result[$loc->value] = array(
|
|
'id' => '$LOCALE_' . strtoupper($loc->json()),
|
|
'name' => $loc->json(),
|
|
'domain' => $loc->domain(),
|
|
'description' => $loc->title()
|
|
);
|
|
|
|
return Util::toJSON($result);
|
|
}
|
|
});
|
|
|
|
?>
|