improve i18n pac menu

This commit is contained in:
mercury
2023-07-02 01:10:01 +04:00
parent 1642c0a40c
commit 8680e8e18f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2199,7 +2199,7 @@ DNS-over-HTTPS with IP:
$mpac = stat(__DIR__ . '/zapretlists/mpac');
$pac = stat(__DIR__ . '/zapretlists/pac');
$conf = $this->getPacConf();
$zapret = $conf['zapret'] ? 'ON' : 'OFF';
$zapret = $conf['zapret'] ? $this->i18n('on') : $this->i18n('off');
$ip = $conf['domain'] ?: $this->ip;
$hash = substr(md5($this->key), 0, 8);
$scheme = empty($this->nginxGetTypeCert()) ? 'http' : 'https';