一点点改进

This commit is contained in:
Chenx221 2024-04-01 14:12:50 +08:00
parent 96c60d7bad
commit e166bb2991
Signed by: chenx221
GPG Key ID: D7A9EC07024C3021

View File

@ -26,7 +26,7 @@ class SiteConfig extends Model
public string $turnstileSecret; // Turnstile Secret public string $turnstileSecret; // Turnstile Secret
public bool $enableIpinfo; // 启用 ipinfo.io 查询 public bool $enableIpinfo; // 启用 ipinfo.io 查询
public string $ipinfoToken; // IPinfo Token public string $ipinfoToken; // IPinfo Token
public bool $clarityEnabled; // 启用 Clarity public bool $clarityEnabled; // 启用 Microsoft Clarity
public string $clarityId; // Clarity ID public string $clarityId; // Clarity ID
public bool $gaEnabled; // 启用 Google Analytics public bool $gaEnabled; // 启用 Google Analytics
public string $gaId; // Google Analytics ID public string $gaId; // Google Analytics ID
@ -87,9 +87,9 @@ class SiteConfig extends Model
'turnstileSecret' => 'Turnstile Secret', 'turnstileSecret' => 'Turnstile Secret',
'enableIpinfo' => '启用 ipinfo.io 查询', 'enableIpinfo' => '启用 ipinfo.io 查询',
'ipinfoToken' => 'IPinfo Token', 'ipinfoToken' => 'IPinfo Token',
'clarityEnabled' => '启用 Clarity', 'clarityEnabled' => '启用 Microsoft Clarity',
'clarityId' => 'Clarity ID', 'clarityId' => 'Clarity ID',
'gaEnabled' => '启用 Google Analytics', 'gaEnabled' => '启用 Google Analytics (GA4)',
'gaId' => 'Google Analytics ID', 'gaId' => 'Google Analytics ID',
]; ];
} }