* Refactor translation imports and update text for localization across settings and system monitor routes - Changed translation import from 'react-i18next' to '@/i18n/react-i18next-compat' in multiple files. - Updated various text strings to use translation keys for better localization support in: - Local API Server settings - MCP Servers settings - Privacy settings - Provider settings - Shortcuts settings - System Monitor - Thread details - Ensured consistent use of translation keys for all user-facing text. Update web-app/src/routes/settings/appearance.tsx Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Update web-app/src/routes/settings/appearance.tsx Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Update web-app/src/locales/vn/settings.json Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Update web-app/src/containers/dialogs/DeleteMCPServerConfirm.tsx Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Update web-app/src/locales/id/common.json Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Add Chinese (Simplified and Traditional) localization files for various components - Created `tools.json`, `updater.json`, `assistants.json`, `chat.json`, `common.json`, `hub.json`, `logs.json`, `mcp-servers.json`, `provider.json`, `providers.json`, `settings.json`, `setup.json`, `system-monitor.json`, `tool-approval.json` in both `zh-CN` and `zh-TW` locales. - Added translations for tool approval, updater notifications, assistant management, chat interface, common UI elements, hub interactions, logging messages, MCP server configurations, provider management, settings options, setup instructions, and system monitoring. * Refactor localization strings for improved clarity and consistency in English, Indonesian, and Vietnamese settings files * Fix missing key and reword * fix pr comment --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
64 lines
2.7 KiB
TypeScript
64 lines
2.7 KiB
TypeScript
import { Skeleton } from '@/components/ui/skeleton'
|
|
import { useAppearance } from '@/hooks/useAppearance'
|
|
import { cn } from '@/lib/utils'
|
|
import { IconCircleCheckFilled } from '@tabler/icons-react'
|
|
import { useTranslation } from '@/i18n/react-i18next-compat'
|
|
|
|
export function ChatWidthSwitcher() {
|
|
const { chatWidth, setChatWidth } = useAppearance()
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="flex gap-4">
|
|
<button
|
|
className={cn(
|
|
'w-full overflow-hidden border border-main-view-fg/10 rounded-md my-2 pb-2 cursor-pointer',
|
|
chatWidth === 'compact' && 'border-accent'
|
|
)}
|
|
onClick={() => setChatWidth('compact')}
|
|
>
|
|
<div className="flex items-center justify-between px-4 py-2 bg-main-view-fg/10">
|
|
<span className="font-medium text-xs font-sans">{t('common:compactWidth')}</span>
|
|
{chatWidth === 'compact' && (
|
|
<IconCircleCheckFilled className="size-4 text-accent" />
|
|
)}
|
|
</div>
|
|
<div className="overflow-auto p-2">
|
|
<div className="flex flex-col px-10 gap-2 mt-2">
|
|
<Skeleton className="h-2 w-full rounded-full" />
|
|
<Skeleton className="h-2 w-full rounded-full" />
|
|
<Skeleton className="h-2 w-full rounded-full" />
|
|
<div className="bg-main-view-fg/10 h-8 px-4 w-full flex-shrink-0 border-none resize-none outline-0 rounded-2xl flex items-center">
|
|
<span className="text-main-view-fg/50">{t('common:placeholder.chatInput')}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
<button
|
|
className={cn(
|
|
'w-full overflow-hidden border border-main-view-fg/10 rounded-md my-2 pb-2 cursor-pointer',
|
|
chatWidth === 'full' && 'border-accent'
|
|
)}
|
|
onClick={() => setChatWidth('full')}
|
|
>
|
|
<div className="flex items-center justify-between px-4 py-2 bg-main-view-fg/10">
|
|
<span className="font-medium text-xs font-sans">{t('common:fullWidth')}</span>
|
|
{chatWidth === 'full' && (
|
|
<IconCircleCheckFilled className="size-4 text-accent" />
|
|
)}
|
|
</div>
|
|
<div className="overflow-auto p-2">
|
|
<div className="flex flex-col gap-2 mt-2">
|
|
<Skeleton className="h-2 w-full rounded-full" />
|
|
<Skeleton className="h-2 w-full rounded-full" />
|
|
<Skeleton className="h-2 w-full rounded-full" />
|
|
<div className="bg-main-view-fg/10 h-8 px-4 w-full flex-shrink-0 border-none resize-none outline-0 rounded-2xl flex items-center">
|
|
<span className="text-main-view-fg/50">{t('common:placeholder.chatInput')}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|