mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 10:37:30 -07:00
Added translations for debug panel (#699)
This commit is contained in:
parent
33625c6ed6
commit
553fd5c6e6
2 changed files with 5 additions and 3 deletions
|
@ -63,10 +63,9 @@ if ($show_dbg_info) {
|
|||
|
||||
$stat .= ' ]';
|
||||
$stat .= '
|
||||
<label><input type="checkbox" onclick="setCookie(\'sql_log\', this.checked ? 1 : 0); window.location.reload();" ' . (!empty($_COOKIE['sql_log']) ? HTML_CHECKED : '') . ' />show log </label>
|
||||
<label><input type="checkbox" onclick="setCookie(\'explain\', this.checked ? 1 : 0); window.location.reload();" ' . (!empty($_COOKIE['explain']) ? HTML_CHECKED : '') . ' />explain </label>
|
||||
<label><input type="checkbox" onclick="setCookie(\'sql_log\', this.checked ? 1 : 0); window.location.reload();" ' . (!empty($_COOKIE['sql_log']) ? HTML_CHECKED : '') . ' />' . $lang['SHOW_LOG'] . '</label> <label><input type="checkbox" onclick="setCookie(\'explain\', this.checked ? 1 : 0); window.location.reload();" ' . (!empty($_COOKIE['explain']) ? HTML_CHECKED : '') . ' />' . $lang['EXPLAINED_LOG'] . '</label>
|
||||
';
|
||||
$stat .= !empty($_COOKIE['sql_log']) ? '[ <a href="#" class="med" onclick="$p(\'sqlLog\').className=\'sqlLog sqlLogWrapped\'; return false;">wrap</a> · <a href="#sqlLog" class="med" onclick="$(\'#sqlLog\').css({ height: $(window).height()-50 }); return false;">max</a> · <label title="cut long queries"><input type="checkbox" onclick="setCookie(\'sql_log_full\', this.checked ? 1 : 0); window.location.reload();" ' . (!empty($_COOKIE['sql_log_full']) ? HTML_CHECKED : '') . ' />cut</label> ]' : '';
|
||||
$stat .= !empty($_COOKIE['sql_log']) ? ' [ <a href="#" class="med" onclick="$p(\'sqlLog\').className=\'sqlLog sqlLogWrapped\'; return false;">wrap</a> · <a href="#sqlLog" class="med" onclick="$(\'#sqlLog\').css({ height: $(window).height()-50 }); return false;">max</a> · <label title="cut long queries"><input type="checkbox" onclick="setCookie(\'sql_log_full\', this.checked ? 1 : 0); window.location.reload();" ' . (!empty($_COOKIE['sql_log_full']) ? HTML_CHECKED : '') . ' />' . $lang['CUT_LOG'] . '</label> ]' : '';
|
||||
|
||||
echo '<div style="margin: 6px; font-size:10px; color: #444444; letter-spacing: -1px; text-align: center;">' . $stat . '</div>';
|
||||
}
|
||||
|
|
|
@ -1481,6 +1481,9 @@ $lang['OFF'] = 'off';
|
|||
$lang['MEMORY'] = 'Mem: ';
|
||||
$lang['QUERIES'] = 'queries';
|
||||
$lang['LIMIT'] = 'Limit:';
|
||||
$lang['SHOW_LOG'] = 'Show log';
|
||||
$lang['EXPLAINED_LOG'] = 'Explained log';
|
||||
$lang['CUT_LOG'] = 'Cut long queries';
|
||||
|
||||
// Attach Guest
|
||||
$lang['DOWNLOAD_INFO'] = 'Download free and at maximum speed!';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue