# feat(i18n): Hebrew locale + full RTL support ## Summary This PR adds full Hebrew (he) locale support to the UI, including a complete translation of all user-facing strings and comprehensive RTL layout support across all components. ## What was done ### Hebrew translation - Full translation of all i18n message files for the `he` locale (17 translation files) - Registered the language in the i18n system and the language picker ### RTL support - Automatic direction detection (`dir="rtl"`) when Hebrew is selected - Replaced physical CSS properties (`left`/`right`) with logical equivalents (`inline-start`/`inline-end`) across the project - Fixed resize direction, file path alignment, and textarea padding - Fixed navigation button positioning in textarea for RTL - Fixed scrollbar direction in RTL - Fixed code block direction and selector alignment - Fixed Monaco editor direction in the file viewer - Auto-detect text direction in reasoning block (`dir="auto"` + `unicode-bidi: plaintext`) ### Adapted components - `session-layout` — sidebar and resize handle - `prompt-input` — text direction and buttons - `message-base` — message blocks and reasoning - `message-timeline` — timeline bar - `right-panel` — right side panel - `tool-call` — tool call display - `settings-screen` — settings page - `selector` — selection component - `instance-shell` — main shell ## New files ``` packages/ui/src/lib/i18n/messages/he/ advancedSettings.ts app.ts commands.ts dialogs.ts filesystem.ts folderSelection.ts index.ts instance.ts loadingScreen.ts logs.ts markdown.ts messaging.ts remoteAccess.ts session.ts settings.ts time.ts toolCall.ts ``` ## Suggested testing - Switch language to Hebrew and verify all strings are translated - Verify RTL layout is correct across all screens (session, settings, file viewer) - Verify that English text inside a reasoning block is displayed LTR - Switch back to English and verify everything returns to LTR --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: Shantur Rathore <i@shantur.com>
43 lines
2.4 KiB
TypeScript
43 lines
2.4 KiB
TypeScript
export const appMessages = {
|
|
"app.launchError.title": "לא ניתן להפעיל את OpenCode",
|
|
"app.launchError.description": "לא הצלחנו להפעיל את קובץ ה-OpenCode שנבחר. בדוק את פלט השגיאה למטה או בחר קובץ בינארי אחר מהגדרות OpenCode.",
|
|
"app.launchError.binaryPathLabel": "נתיב הקובץ הבינארי",
|
|
"app.launchError.errorOutputLabel": "פלט שגיאה",
|
|
"app.launchError.openAdvancedSettings": "פתח הגדרות OpenCode",
|
|
"app.launchError.close": "סגור",
|
|
"app.launchError.closeTitle": "סגור (Esc)",
|
|
"app.launchError.fallbackMessage": "הפעלת סביבת העבודה נכשלה",
|
|
|
|
"app.stopInstance.confirmMessage": "לעצור את מופע OpenCode? פעולה זו תעצור את השרת.",
|
|
"app.stopInstance.title": "עצור מופע",
|
|
"app.stopInstance.confirmLabel": "עצור",
|
|
"app.stopInstance.cancelLabel": "המשך להריץ",
|
|
|
|
"emptyState.logoAlt": "לוגו CodeNomad",
|
|
"emptyState.brandTitle": "CodeNomad",
|
|
"emptyState.tagline": "בחר תיקייה כדי להתחיל לתכנת עם AI",
|
|
"emptyState.actions.selectFolder": "בחר תיקייה",
|
|
"emptyState.actions.selecting": "בוחר...",
|
|
"emptyState.keyboardShortcut": "קיצור מקלדת: {shortcut}",
|
|
"emptyState.examples": "דוגמאות: {example}",
|
|
"emptyState.multipleInstances": "ניתן לפתוח מספר מופעים של אותה תיקייה",
|
|
|
|
"releases.upgradeRequired.title": "נדרש שדרוג",
|
|
"releases.upgradeRequired.message.withVersion": "שדרג ל-CodeNomad {version} כדי להשתמש בממשק המעודכן.",
|
|
"releases.upgradeRequired.message.noVersion": "שדרג את CodeNomad כדי להשתמש בממשק המעודכן.",
|
|
"releases.upgradeRequired.action.getUpdate": "קבל עדכון",
|
|
|
|
"releases.uiUpdated.title": "הממשק עודכן",
|
|
"releases.uiUpdated.message": "הממשק עודכן לגרסה {version}.",
|
|
|
|
"releases.devUpdateAvailable.title": "גרסת פיתוח זמינה",
|
|
"releases.devUpdateAvailable.message": "גרסת פיתוח חדשה זמינה: {version}.",
|
|
"releases.devUpdateAvailable.action": "צפה בגרסה",
|
|
|
|
"theme.mode.system": "מערכת",
|
|
"theme.mode.light": "בהיר",
|
|
"theme.mode.dark": "כהה",
|
|
"theme.toggle.title": "ערכת נושא: {mode}",
|
|
"theme.toggle.ariaLabel": "ערכת נושא: {mode}",
|
|
} as const
|