mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
580 B
32 lines
580 B
<?php
|
|
|
|
$SOURCE_DIRS = [
|
|
__DIR__ . '/../../index.html',
|
|
__DIR__ . '/../../src/js/core/',
|
|
__DIR__ . '/../../src/js/modules/',
|
|
__DIR__ . '/../../src/js/tools/',
|
|
__DIR__ . '/../../src/js/config.js',
|
|
__DIR__ . '/../../src/js/config-menu.js',
|
|
__DIR__ . '/../../src/js/main.js',
|
|
__DIR__ . '/../../src/js/libs/popup.js',
|
|
];
|
|
|
|
$LANGUAGES = [
|
|
'ar',
|
|
'de',
|
|
'es',
|
|
'fr',
|
|
'it',
|
|
'ja',
|
|
'ko',
|
|
'lt',
|
|
'pt',
|
|
'ru',
|
|
'tr',
|
|
'zh',
|
|
'el',
|
|
'nl',
|
|
];
|
|
|
|
$LANG_DIR = __DIR__ . '/../../src/js/languages/';
|
|
$LANG_DIR_EMPTY = __DIR__ . '/../../src/js/languages/empty.json'; //leave empty to skip
|
|
|