i18n(common): add i18n translation

This commit is contained in:
orenzhang
2025-03-06 20:16:34 +08:00
parent 1173459eee
commit 92fb1109b6
56 changed files with 315 additions and 16 deletions

View File

@@ -462,8 +462,8 @@
<div class="flex items-center relative">
<Tooltip
content={webConfig.BYPASS_WEB_SEARCH_EMBEDDING_AND_RETRIEVAL
? 'Inject the entire content as context for comprehensive processing, this is recommended for complex queries.'
: 'Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.'}
? $i18n.t('Inject the entire content as context for comprehensive processing, this is recommended for complex queries.')
: $i18n.t('Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.')}
>
<Switch bind:state={webConfig.BYPASS_WEB_SEARCH_EMBEDDING_AND_RETRIEVAL} />
</Tooltip>