# 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>
44 lines
2.8 KiB
TypeScript
44 lines
2.8 KiB
TypeScript
export const filesystemMessages = {
|
|
"directoryBrowser.defaultDescription": "עיון בתיקיות תחת שורש סביבת העבודה המוגדר.",
|
|
"directoryBrowser.close": "סגור",
|
|
"directoryBrowser.currentFolder": "תיקייה נוכחית",
|
|
"directoryBrowser.selectCurrent": "בחר נוכחית",
|
|
"directoryBrowser.newFolder": "תיקייה חדשה",
|
|
"directoryBrowser.creating": "יוצר…",
|
|
"directoryBrowser.loadingFolders": "טוען תיקיות…",
|
|
"directoryBrowser.noFolders": "אין תיקיות זמינות.",
|
|
"directoryBrowser.upOneLevel": "עלה רמה אחת",
|
|
"directoryBrowser.select": "בחר",
|
|
"directoryBrowser.load.errorFallback": "לא ניתן לטעון את מערכת הקבצים",
|
|
"directoryBrowser.createFolder.promptMessage": "צור תיקייה חדשה בספרייה הנוכחית.",
|
|
"directoryBrowser.createFolder.title": "תיקייה חדשה",
|
|
"directoryBrowser.createFolder.inputLabel": "שם תיקייה",
|
|
"directoryBrowser.createFolder.inputPlaceholder": "למשל: my-new-project",
|
|
"directoryBrowser.createFolder.confirmLabel": "צור",
|
|
"directoryBrowser.createFolder.cancelLabel": "ביטול",
|
|
"directoryBrowser.createFolder.invalidNameMessage": "נא להזין שם תיקייה יחיד.",
|
|
"directoryBrowser.createFolder.invalidNameDetail": "שמות תיקיות אינם יכולים לכלול נטויות, '..', או '~'.",
|
|
"directoryBrowser.createFolder.errorFallback": "יצירת התיקייה נכשלה",
|
|
|
|
"filesystemBrowser.descriptionFallback": "חפש נתיב תחת שורש סביבת העבודה המוגדר.",
|
|
"filesystemBrowser.rootLabel": "שורש: {root}",
|
|
"filesystemBrowser.actions.close": "סגור",
|
|
"filesystemBrowser.actions.retry": "נסה שוב",
|
|
"filesystemBrowser.actions.select": "בחר",
|
|
"filesystemBrowser.filterLabel": "סינון",
|
|
"filesystemBrowser.search.placeholder.directories": "חפש תיקיות",
|
|
"filesystemBrowser.search.placeholder.files": "חפש קבצים",
|
|
"filesystemBrowser.currentFolder.label": "תיקייה נוכחית",
|
|
"filesystemBrowser.currentFolder.selectCurrent": "בחר נוכחית",
|
|
"filesystemBrowser.loading.filesystem": "מערכת קבצים",
|
|
"filesystemBrowser.loading.workspaceRoot": "שורש סביבת עבודה",
|
|
"filesystemBrowser.loading.loadingWithPath": "טוען {path}…",
|
|
"filesystemBrowser.empty.noEntries": "לא נמצאו רשומות.",
|
|
"filesystemBrowser.navigation.upOneLevel": "עלה רמה אחת",
|
|
"filesystemBrowser.hints.navigate": "ניווט",
|
|
"filesystemBrowser.hints.select": "בחירה",
|
|
"filesystemBrowser.hints.close": "סגירה",
|
|
"filesystemBrowser.errors.loadFilesystemFallback": "לא ניתן לטעון את מערכת הקבצים",
|
|
"filesystemBrowser.errors.openDirectoryFallback": "לא ניתן לפתוח את הספרייה",
|
|
} as const
|