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.
22 lines
483 B
22 lines
483 B
7 years ago
|
<?php
|
||
|
|
||
|
/* This script is run on demand to generate JS version of tr() */
|
||
|
|
||
|
require_once __DIR__ . '/base.php';
|
||
|
|
||
|
$selected = [
|
||
|
'wifi.connected_ip_is',
|
||
|
'wifi.not_conn',
|
||
|
];
|
||
|
|
||
|
$out = [];
|
||
|
foreach ($selected as $key) {
|
||
|
$out[$key] = $_messages[$key];
|
||
|
}
|
||
|
|
||
|
file_put_contents(__DIR__. '/jssrc/lang.js',
|
||
|
"// Generated from PHP locale file\n" .
|
||
|
'var _tr = ' . json_encode($out, JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE) . ";\n\n" .
|
||
|
"function tr(key) { return _tr[key] || '?'+key+'?'; }\n"
|
||
|
);
|