feat(logs): label the Xray access-log viewer 'Access Logs' across all languages

Distinguishes the access-log modal from the panel 'Logs' viewer it shares a
title with. Adds the accessLogs key to all 13 translation files.
This commit is contained in:
MHSanaei
2026-06-25 23:59:59 +02:00
parent df0e52cda8
commit e27f2490b2
15 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ export default function XrayLogModal({ open, onClose }: XrayLogModalProps) {
onCancel={onClose}
title={
<>
{t('pages.index.logs')}
{t('pages.index.accessLogs')}
<SyncOutlined spin={loading} className="reload-icon" onClick={refresh} />
</>
}
+1 -1
View File
@@ -92,7 +92,7 @@ export default function XrayStatusCard({
? [
<Space className="action" key="xraylogs" onClick={onOpenXrayLogs}>
<BarsOutlined />
{!isMobile && <span>{t('pages.index.logs')}</span>}
{!isMobile && <span>{t('pages.index.accessLogs')}</span>}
</Space>,
]
: []),