Merge pull request #12552 from tth37/dev

i18n: update zh-CN
This commit is contained in:
Tim Jaeryang Baek
2025-04-08 22:17:57 -07:00
committed by GitHub
53 changed files with 122 additions and 14 deletions

View File

@@ -481,8 +481,12 @@
<div class="flex items-center relative">
<Tooltip
content={webConfig.search.trust_env
? 'Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents'
: 'Use no proxy to fetch page contents.'}
? $i18n.t(
'Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.'
)
: $i18n.t(
'Use no proxy to fetch page contents.'
)}
>
<Switch bind:state={webConfig.search.trust_env} />
</Tooltip>