Add i18n foundation and translations (#1027)

* feat: add i18n foundation

* feat: localize sessions sidebar

* Localize multirun/scheduled tasks and fix dialog dropdown interactions

* localize git sidebar surface and add zh-CN keys

* feat(ui): localize context panel, diff/plan views, and context sidebar content

* fix(config): resolve user config home via fs/home before embedded home

* localize header/chat UI and complete model/worktree panel strings

* localize worktree + github issue/pr dialog flows

* localize settings sections and split settings i18n dictionaries

* localize additional settings sections and sidebars

* localize more settings pages and dialogs

* fix settings select trigger localization

* localize tunnel settings ui surface

* localize additional settings sections

* localize keyboard shortcuts labels in settings

* localize terminal and utility dialogs surfaces

* feat(i18n): localize remaining UI strings

* Add Ukrainian locale

* Add Spanish locale

* Add Brazilian Portuguese locale

* Polish locale translations
This commit is contained in:
Bohdan Triapitsyn
2026-04-26 14:03:39 +03:00
committed by GitHub
parent 87db2ea210
commit 7d7285655d
198 changed files with 24173 additions and 4365 deletions
@@ -11,6 +11,7 @@ import {
import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '@/components/ui/collapsible';
import { useI18n } from '@/lib/i18n';
interface InlineCommentCardProps {
draft: InlineCommentDraft;
@@ -27,6 +28,7 @@ export function InlineCommentCard({
className,
maxWidth,
}: InlineCommentCardProps) {
const { t } = useI18n();
const themeContext = useOptionalThemeSystem();
const currentTheme = themeContext?.currentTheme;
const [isOpen, setIsOpen] = useState(false);
@@ -56,7 +58,7 @@ export function InlineCommentCard({
{draft.fileLabel}
</span>
<span></span>
<span>Lines {draft.startLine}-{draft.endLine}</span>
<span>{t('inlineComment.range.lines', { start: draft.startLine, end: draft.endLine })}</span>
{draft.side && <span>({draft.side})</span>}
</div>
@@ -75,12 +77,12 @@ export function InlineCommentCard({
{isOpen ? (
<>
<RiArrowUpSLine className="size-3 mr-1" />
Show less
{t('inlineComment.actions.showLess')}
</>
) : (
<>
<RiArrowDownSLine className="size-3 mr-1" />
Show more
{t('inlineComment.actions.showMore')}
</>
)}
</Button>
@@ -106,11 +108,11 @@ export function InlineCommentCard({
<DropdownMenuContent align="end">
<DropdownMenuItem onClick={onEdit}>
<RiEditLine className="size-4 mr-2" />
Edit comment
{t('inlineComment.actions.editComment')}
</DropdownMenuItem>
<DropdownMenuItem onClick={onDelete} className="text-destructive">
<RiDeleteBinLine className="size-4 mr-2" />
Delete comment
{t('inlineComment.actions.deleteComment')}
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>