@shepai/cli 1.156.0 → 1.157.0-pr496.7e3ce96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +253 -142
- package/apis/json-schema/Language.yaml +13 -0
- package/apis/json-schema/UserProfile.yaml +3 -0
- package/apis/json-schema/WorkflowConfig.yaml +5 -0
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +5 -0
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +7 -0
- package/dist/packages/core/src/application/use-cases/features/auto-archive-completed.use-case.d.ts +30 -0
- package/dist/packages/core/src/application/use-cases/features/auto-archive-completed.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/auto-archive-completed.use-case.js +75 -0
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +11 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +3 -0
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +5 -0
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +18 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +11 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +2 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +7 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-auto-archive-delay-minutes.d.ts +15 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-auto-archive-delay-minutes.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-auto-archive-delay-minutes.js +20 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts +14 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.js +19 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +9 -5
- package/dist/packages/core/src/infrastructure/services/auto-archive/auto-archive-watcher.service.d.ts +48 -0
- package/dist/packages/core/src/infrastructure/services/auto-archive/auto-archive-watcher.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/auto-archive/auto-archive-watcher.service.js +101 -0
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.js +3 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/claude-code.json +3 -4
- package/dist/src/presentation/cli/commands/_serve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/_serve.command.js +10 -3
- package/dist/src/presentation/cli/commands/agent/approve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/approve.command.js +9 -4
- package/dist/src/presentation/cli/commands/agent/delete.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/delete.command.js +9 -5
- package/dist/src/presentation/cli/commands/agent/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/index.js +3 -1
- package/dist/src/presentation/cli/commands/agent/logs.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/logs.command.js +7 -5
- package/dist/src/presentation/cli/commands/agent/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/ls.command.js +12 -10
- package/dist/src/presentation/cli/commands/agent/reject.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/reject.command.js +10 -5
- package/dist/src/presentation/cli/commands/agent/resolve-run.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/resolve-run.js +7 -2
- package/dist/src/presentation/cli/commands/agent/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/show.command.js +8 -6
- package/dist/src/presentation/cli/commands/agent/stop.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/stop.command.js +9 -4
- package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/daemon/start-daemon.js +10 -8
- package/dist/src/presentation/cli/commands/daemon/stop-daemon.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/daemon/stop-daemon.js +5 -3
- package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/adopt.command.js +14 -12
- package/dist/src/presentation/cli/commands/feat/approve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/approve.command.js +8 -6
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/archive.command.js +10 -8
- package/dist/src/presentation/cli/commands/feat/del.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/del.command.js +17 -15
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +2 -1
- package/dist/src/presentation/cli/commands/feat/logs.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/logs.command.js +8 -6
- package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/ls.command.js +14 -12
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +43 -37
- package/dist/src/presentation/cli/commands/feat/reject.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/reject.command.js +11 -9
- package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.js +12 -5
- package/dist/src/presentation/cli/commands/feat/resume.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/resume.command.js +8 -6
- package/dist/src/presentation/cli/commands/feat/review.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/review.command.js +17 -15
- package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.js +89 -45
- package/dist/src/presentation/cli/commands/feat/start.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/start.command.js +12 -10
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/unarchive.command.js +8 -6
- package/dist/src/presentation/cli/commands/ide-open.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/ide-open.command.js +10 -5
- package/dist/src/presentation/cli/commands/install.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/install.command.js +29 -21
- package/dist/src/presentation/cli/commands/log-viewer.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/log-viewer.js +6 -3
- package/dist/src/presentation/cli/commands/repo/add.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/add.command.js +12 -10
- package/dist/src/presentation/cli/commands/repo/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/index.js +3 -1
- package/dist/src/presentation/cli/commands/repo/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/ls.command.js +11 -9
- package/dist/src/presentation/cli/commands/repo/resolve-repository.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/resolve-repository.js +7 -2
- package/dist/src/presentation/cli/commands/repo/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/show.command.js +21 -10
- package/dist/src/presentation/cli/commands/restart.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/restart.command.js +6 -4
- package/dist/src/presentation/cli/commands/run.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/run.command.js +21 -17
- package/dist/src/presentation/cli/commands/session/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/session/index.js +3 -1
- package/dist/src/presentation/cli/commands/session/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/session/ls.command.js +11 -9
- package/dist/src/presentation/cli/commands/session/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/session/show.command.js +26 -18
- package/dist/src/presentation/cli/commands/settings/agent.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/agent.command.js +12 -8
- package/dist/src/presentation/cli/commands/settings/ide.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/ide.command.js +13 -7
- package/dist/src/presentation/cli/commands/settings/index.d.ts +1 -0
- package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/index.js +7 -3
- package/dist/src/presentation/cli/commands/settings/init.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/init.command.js +8 -7
- package/dist/src/presentation/cli/commands/settings/language.command.d.ts +14 -0
- package/dist/src/presentation/cli/commands/settings/language.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/language.command.js +79 -0
- package/dist/src/presentation/cli/commands/settings/model.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/model.command.js +7 -6
- package/dist/src/presentation/cli/commands/settings/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/show.command.js +4 -3
- package/dist/src/presentation/cli/commands/settings/workflow.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/workflow.command.js +20 -18
- package/dist/src/presentation/cli/commands/start.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/start.command.js +5 -3
- package/dist/src/presentation/cli/commands/status.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/status.command.js +32 -24
- package/dist/src/presentation/cli/commands/stop.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/stop.command.js +4 -2
- package/dist/src/presentation/cli/commands/tools.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/tools.command.js +8 -4
- package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/ui.command.js +17 -10
- package/dist/src/presentation/cli/commands/upgrade.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/upgrade.command.js +18 -13
- package/dist/src/presentation/cli/commands/version.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/version.command.js +5 -3
- package/dist/src/presentation/cli/i18n.d.ts +41 -0
- package/dist/src/presentation/cli/i18n.d.ts.map +1 -0
- package/dist/src/presentation/cli/i18n.js +100 -0
- package/dist/src/presentation/cli/index.js +13 -1
- package/dist/src/presentation/cli/ui/install-messages.d.ts.map +1 -1
- package/dist/src/presentation/cli/ui/install-messages.js +16 -6
- package/dist/src/presentation/tui/i18n.d.ts +24 -0
- package/dist/src/presentation/tui/i18n.d.ts.map +1 -0
- package/dist/src/presentation/tui/i18n.js +48 -0
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts +13 -31
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/agent-select.prompt.js +17 -15
- package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts +7 -11
- package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/auth-method.prompt.js +7 -5
- package/dist/src/presentation/tui/prompts/ide-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/ide-select.prompt.js +2 -1
- package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.js +8 -6
- package/dist/src/presentation/tui/wizards/agent-config.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/agent-config.wizard.js +2 -1
- package/dist/src/presentation/tui/wizards/github-import.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/github-import.wizard.js +15 -11
- package/dist/src/presentation/tui/wizards/merge-review.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/merge-review.wizard.js +10 -8
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.js +10 -7
- package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts +0 -41
- package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.js +15 -15
- package/dist/src/presentation/tui/wizards/plan-review.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/plan-review.wizard.js +10 -8
- package/dist/src/presentation/tui/wizards/prd-review.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/prd-review.wizard.js +3 -2
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +4 -2
- package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/create-feature.js +3 -0
- package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
- package/dist/src/presentation/web/app/layout.js +5 -2
- package/dist/src/presentation/web/components/assistant-ui/thread.d.ts.map +1 -1
- package/dist/src/presentation/web/components/assistant-ui/thread.js +13 -10
- package/dist/src/presentation/web/components/common/add-repository-button/add-repository-button.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/add-repository-button/add-repository-button.js +3 -1
- package/dist/src/presentation/web/components/common/attachment-chip/attachment-chip.js +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +5 -2
- package/dist/src/presentation/web/components/common/ci-status-badge/ci-status-badge.js +3 -3
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +4 -4
- package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +7 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +1 -1
- package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.js +3 -1
- package/dist/src/presentation/web/components/common/deployment-status-badge/deployment-status-badge.js +2 -2
- package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +6 -2
- package/dist/src/presentation/web/components/common/empty-state/empty-state.stories.js +2 -2
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +34 -22
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +11 -7
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.stories.js +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +3 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +4 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.stories.js +2 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.js +5 -3
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +9 -5
- package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.js +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +22 -22
- package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.js +49 -36
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.js +7 -3
- package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.js +4 -2
- package/dist/src/presentation/web/components/common/feature-status-config.d.ts +2 -1
- package/dist/src/presentation/web/components/common/feature-status-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-status-config.js +6 -6
- package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.js +1 -1
- package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.js +4 -2
- package/dist/src/presentation/web/components/common/github-import-dialog/github-repo-browser.js +1 -1
- package/dist/src/presentation/web/components/common/merge-review/diff-view.js +2 -2
- package/dist/src/presentation/web/components/common/merge-review/merge-review.js +2 -2
- package/dist/src/presentation/web/components/common/merge-review/merge-review.stories.js +1 -1
- package/dist/src/presentation/web/components/common/prd-questionnaire/prd-questionnaire.js +3 -3
- package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.js +6 -4
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +3 -3
- package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +18 -11
- package/dist/src/presentation/web/components/common/repository-node/repository-node.stories.js +12 -12
- package/dist/src/presentation/web/components/common/server-log-viewer/server-log-viewer.js +1 -1
- package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.js +7 -4
- package/dist/src/presentation/web/components/common/tech-decisions-review/tech-decisions-review.js +2 -2
- package/dist/src/presentation/web/components/common/version-badge/version-badge.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/version-badge/version-badge.js +3 -1
- package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatComposer.js +3 -1
- package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.js +7 -5
- package/dist/src/presentation/web/components/features/chat/ChatMessageList.js +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatSheet.js +5 -3
- package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatTab.js +5 -3
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +15 -11
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +14 -6
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +1 -1
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +2 -2
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +8 -6
- package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.js +3 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +4 -2
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +6 -6
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +2 -2
- package/dist/src/presentation/web/components/features/settings/ModelPicker/index.js +2 -2
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts +5 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.js +54 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +18 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +36 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +100 -88
- package/dist/src/presentation/web/components/features/settings/timeout-slider.js +1 -1
- package/dist/src/presentation/web/components/features/skills/category-filter.js +1 -1
- package/dist/src/presentation/web/components/features/skills/skills-page-client.js +1 -1
- package/dist/src/presentation/web/components/features/tools/tool-card.js +1 -1
- package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +2 -2
- package/dist/src/presentation/web/components/features/version/version-page-client.js +1 -1
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +5 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +13 -7
- package/dist/src/presentation/web/components/providers/i18n-provider.d.ts +17 -0
- package/dist/src/presentation/web/components/providers/i18n-provider.d.ts.map +1 -0
- package/dist/src/presentation/web/components/providers/i18n-provider.js +36 -0
- package/dist/src/presentation/web/components/ui/alert-dialog.js +1 -1
- package/dist/src/presentation/web/components/ui/alert.js +1 -1
- package/dist/src/presentation/web/components/ui/checkbox-group.js +1 -1
- package/dist/src/presentation/web/components/ui/command.js +1 -1
- package/dist/src/presentation/web/components/ui/dialog.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/dialog.js +2 -2
- package/dist/src/presentation/web/components/ui/dialog.stories.js +1 -1
- package/dist/src/presentation/web/components/ui/drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/drawer.js +2 -8
- package/dist/src/presentation/web/components/ui/dropdown-menu.js +6 -6
- package/dist/src/presentation/web/components/ui/scroll-area.js +1 -1
- package/dist/src/presentation/web/components/ui/select.js +1 -1
- package/dist/src/presentation/web/components/ui/sheet.js +3 -3
- package/dist/src/presentation/web/components/ui/sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/sidebar.js +15 -15
- package/dist/src/presentation/web/components/ui/switch.js +1 -1
- package/dist/src/presentation/web/dev-server.js +10 -0
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.js +7 -4
- package/dist/src/presentation/web/hooks/use-sound-action.stories.js +1 -1
- package/dist/src/presentation/web/lib/i18n.d.ts +15 -0
- package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/i18n.js +64 -0
- package/dist/src/presentation/web/lib/language.d.ts +23 -0
- package/dist/src/presentation/web/lib/language.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/language.js +37 -0
- package/dist/src/presentation/web/lib/layout-with-dagre.d.ts +2 -0
- package/dist/src/presentation/web/lib/layout-with-dagre.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/layout-with-dagre.js +4 -0
- package/dist/src/presentation/web/lib/rtl-fonts.d.ts +19 -0
- package/dist/src/presentation/web/lib/rtl-fonts.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/rtl-fonts.js +51 -0
- package/dist/translations/ar/cli.json +613 -0
- package/dist/translations/ar/common.json +55 -0
- package/dist/translations/ar/tui.json +130 -0
- package/dist/translations/ar/web.json +594 -0
- package/dist/translations/de/cli.json +613 -0
- package/dist/translations/de/common.json +55 -0
- package/dist/translations/de/tui.json +109 -0
- package/dist/translations/de/web.json +580 -0
- package/dist/translations/en/cli.json +613 -0
- package/dist/translations/en/common.json +55 -0
- package/dist/translations/en/tui.json +130 -0
- package/dist/translations/en/web.json +594 -0
- package/dist/translations/es/cli.json +613 -0
- package/dist/translations/es/common.json +55 -0
- package/dist/translations/es/tui.json +130 -0
- package/dist/translations/es/web.json +594 -0
- package/dist/translations/fr/cli.json +613 -0
- package/dist/translations/fr/common.json +55 -0
- package/dist/translations/fr/tui.json +130 -0
- package/dist/translations/fr/web.json +594 -0
- package/dist/translations/he/cli.json +613 -0
- package/dist/translations/he/common.json +55 -0
- package/dist/translations/he/tui.json +130 -0
- package/dist/translations/he/web.json +594 -0
- package/dist/translations/pt/cli.json +613 -0
- package/dist/translations/pt/common.json +55 -0
- package/dist/translations/pt/tui.json +130 -0
- package/dist/translations/pt/web.json +594 -0
- package/dist/translations/ru/cli.json +613 -0
- package/dist/translations/ru/common.json +55 -0
- package/dist/translations/ru/tui.json +130 -0
- package/dist/translations/ru/web.json +594 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -3
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +2 -2
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +7 -7
- package/web/.next/required-server-files.json +7 -7
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/chat/page.js +3 -3
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/create/page.js +3 -3
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/page.js +3 -3
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +5 -5
- package/web/.next/server/app/_not-found/page.js +2 -2
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
- package/web/.next/server/app/settings/page.js +2 -2
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +10 -10
- package/web/.next/server/app/skills/page.js +3 -4
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +10 -10
- package/web/.next/server/app/tools/page.js +3 -4
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +5 -5
- package/web/.next/server/app/version/page.js +2 -2
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +3 -3
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__209c9597._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__88f7e8e6._.js.map → [root-of-the-server]__209c9597._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__27301e38._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__17ed7ed1._.js.map → [root-of-the-server]__27301e38._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6fecf886._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__42bf1807._.js.map → [root-of-the-server]__6fecf886._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9f3504c7._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__f80bfc75._.js.map → [root-of-the-server]__9f3504c7._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0dc06d07._.js +3 -0
- package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
- package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_3a0b989f._.js +2 -2
- package/web/.next/server/chunks/ssr/_3a0b989f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_67104d9e._.js → _3bcda5d7._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_67104d9e._.js.map → _3bcda5d7._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_5119a3df._.js +3 -0
- package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_b354e40a._.js → _54af0d8c._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_b354e40a._.js.map → _54af0d8c._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_5d73b993._.js +4 -0
- package/web/.next/server/chunks/ssr/_5d73b993._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_5f69c13f._.js +1 -1
- package/web/.next/server/chunks/ssr/_5f69c13f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_7c5b97c6._.js +1 -1
- package/web/.next/server/chunks/ssr/_7c5b97c6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_82c57f10._.js +1 -1
- package/web/.next/server/chunks/ssr/_82c57f10._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8b57edb8._.js +1 -1
- package/web/.next/server/chunks/ssr/_8b57edb8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8d733ce4._.js +1 -1
- package/web/.next/server/chunks/ssr/_8d733ce4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8e3fa3c7._.js +3 -0
- package/web/.next/server/chunks/ssr/{_08dc06df._.js.map → _8e3fa3c7._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_9495d50b._.js +1 -1
- package/web/.next/server/chunks/ssr/_9495d50b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_a0e3f7e4._.js +1 -1
- package/web/.next/server/chunks/ssr/_a0e3f7e4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_ac4a3873._.js +1 -1
- package/web/.next/server/chunks/ssr/_ac4a3873._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_507a8382._.js → _b9ba2473._.js} +2 -2
- package/web/.next/server/chunks/ssr/_b9ba2473._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_bcaea66b._.js +3 -0
- package/web/.next/server/chunks/ssr/_bcaea66b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_bcfa8457._.js +9 -0
- package/web/.next/server/chunks/ssr/_bcfa8457._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_ca0aa7f0._.js +1 -1
- package/web/.next/server/chunks/ssr/_ca0aa7f0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_cb5a021e._.js +1 -1
- package/web/.next/server/chunks/ssr/_cb5a021e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +1 -1
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d86175ae._.js +1 -1
- package/web/.next/server/chunks/ssr/_d86175ae._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d8bedf13._.js +1 -1
- package/web/.next/server/chunks/ssr/_d8bedf13._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d90b0a06._.js +3 -0
- package/web/.next/server/chunks/ssr/_d90b0a06._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_fa7efce3._.js +2 -2
- package/web/.next/server/chunks/ssr/_fa7efce3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_a5e6c910._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_a5e6c910._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +3 -0
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -0
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +45 -45
- package/web/.next/static/chunks/{5064470ab185e453.js → 02eb9809370f1b44.js} +2 -2
- package/web/.next/static/chunks/{3e1e0f9bde3530d2.js → 08ff9ace090d2691.js} +1 -1
- package/web/.next/static/chunks/{b4cde06eff374c59.js → 0a79dfbb8486b66e.js} +2 -2
- package/web/.next/static/chunks/0b1c2bbc0169229f.js +1 -0
- package/web/.next/static/chunks/18d0ec4f7b848983.js +1 -0
- package/web/.next/static/chunks/2273b81cd7c7d2af.css +1 -0
- package/web/.next/static/chunks/36768c59216eeaf9.js +1 -0
- package/web/.next/static/chunks/{688971d5bad5dc7c.js → 3deefc76ea55047c.js} +1 -1
- package/web/.next/static/chunks/{11091b676d1b3bd4.js → 47477ed4c5871747.js} +1 -1
- package/web/.next/static/chunks/4864ff06a738d58b.js +1 -0
- package/web/.next/static/chunks/504d1bd34e9f7dd8.js +7 -0
- package/web/.next/static/chunks/{22c459f1877b1e4f.js → 74db65fa7bfb80bd.js} +1 -1
- package/web/.next/static/chunks/7b9ed1c6d9eea406.js +2 -0
- package/web/.next/static/chunks/{f98f811478ff3d9e.js → 7e2465210c64ed91.js} +1 -1
- package/web/.next/static/chunks/9061f08ab7e537a8.js +1 -0
- package/web/.next/static/chunks/{37156b1c0646309f.js → 9d314b2b855bc050.js} +1 -1
- package/web/.next/static/chunks/a272e115fd5ca5a0.js +5 -0
- package/web/.next/static/chunks/{baa593a4681fc66e.js → b8196a574b97e029.js} +1 -1
- package/web/.next/static/chunks/d2cbeefbc8967b16.js +1 -0
- package/web/.next/static/chunks/d5366257d6b9f855.js +1 -0
- package/web/.next/static/chunks/{5ae60a052ab5f437.js → d6e702c209c413ce.js} +2 -2
- package/web/.next/static/chunks/ec99e6be5b32ecc9.js +1 -0
- package/web/.next/static/chunks/ed078ae150b9499a.js +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17ed7ed1._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__42bf1807._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__88f7e8e6._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f80bfc75._.js +0 -4
- package/web/.next/server/chunks/ssr/_08dc06df._.js +0 -3
- package/web/.next/server/chunks/ssr/_140901ed._.js +0 -4
- package/web/.next/server/chunks/ssr/_140901ed._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_4b432739._.js +0 -3
- package/web/.next/server/chunks/ssr/_4b432739._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_507a8382._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_8219712a._.js +0 -3
- package/web/.next/server/chunks/ssr/_8219712a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_d4b20e29._.js +0 -3
- package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e9a73a63._.js +0 -9
- package/web/.next/server/chunks/ssr/_e9a73a63._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js.map +0 -1
- package/web/.next/static/chunks/0104ee32c0b12767.js +0 -7
- package/web/.next/static/chunks/1555e75b3393cfe1.js +0 -1
- package/web/.next/static/chunks/4b2c4a5c35ebb70d.js +0 -1
- package/web/.next/static/chunks/697bbb4ddfc7aed8.js +0 -1
- package/web/.next/static/chunks/8590bd2e69b24b9e.css +0 -1
- package/web/.next/static/chunks/88a729f218d9628b.js +0 -5
- package/web/.next/static/chunks/88ffe4a8760a3559.js +0 -1
- package/web/.next/static/chunks/8ba1c07ef18b15a9.js +0 -1
- package/web/.next/static/chunks/92629ccb27a1bdb9.js +0 -2
- package/web/.next/static/chunks/ae30b66927c676ff.js +0 -1
- package/web/.next/static/chunks/cd54b758f58061d0.js +0 -1
- package/web/.next/static/chunks/f5c527d3f8699035.js +0 -1
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → jBQpz78BQ7UsAMcJbVOPf}/_buildManifest.js +0 -0
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → jBQpz78BQ7UsAMcJbVOPf}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → jBQpz78BQ7UsAMcJbVOPf}/_ssgManifest.js +0 -0
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"settings": {
|
|
4
|
+
"description": "إدارة إعدادات Shep العامة",
|
|
5
|
+
"wizardFailed": "فشل معالج الإعدادات",
|
|
6
|
+
"show": {
|
|
7
|
+
"description": "عرض الإعدادات الحالية",
|
|
8
|
+
"formatOption": "تنسيق الإخراج: table|json|yaml",
|
|
9
|
+
"failedToLoad": "فشل تحميل الإعدادات"
|
|
10
|
+
},
|
|
11
|
+
"init": {
|
|
12
|
+
"description": "تهيئة الإعدادات إلى القيم الافتراضية",
|
|
13
|
+
"forceOption": "تخطي مطالبة التأكيد",
|
|
14
|
+
"resetWarning": "سيؤدي هذا إلى إعادة تعيين جميع الإعدادات إلى القيم الافتراضية. يُنصح بعمل نسخة احتياطية من ~/.shep/data أولاً.",
|
|
15
|
+
"confirmPrompt": "هل أنت متأكد؟ (y/N): ",
|
|
16
|
+
"cancelled": "تم إلغاء العملية.",
|
|
17
|
+
"success": "تمت تهيئة الإعدادات إلى القيم الافتراضية.",
|
|
18
|
+
"failed": "فشلت تهيئة الإعدادات"
|
|
19
|
+
},
|
|
20
|
+
"agent": {
|
|
21
|
+
"description": "تكوين وكيل البرمجة بالذكاء الاصطناعي",
|
|
22
|
+
"agentOption": "نوع الوكيل (مثال: claude-code)",
|
|
23
|
+
"authOption": "طريقة المصادقة (session أو token)",
|
|
24
|
+
"tokenOption": "رمز API للمصادقة القائمة على الرمز",
|
|
25
|
+
"authRequired": "--auth مطلوب عند استخدام علامة --agent",
|
|
26
|
+
"success": "تم تكوين الوكيل: {{type}} ({{authMethod}})",
|
|
27
|
+
"cancelled": "تم إلغاء التكوين.",
|
|
28
|
+
"failed": "فشل تكوين الوكيل"
|
|
29
|
+
},
|
|
30
|
+
"ide": {
|
|
31
|
+
"description": "تكوين بيئة التطوير/المحرر المفضل",
|
|
32
|
+
"editorOption": "اسم بيئة التطوير/المحرر ({{editors}})",
|
|
33
|
+
"unknownEditor": "محرر غير معروف \"{{editor}}\". الخيارات الصالحة: {{validEditors}}",
|
|
34
|
+
"notInPath": "المحرر '{{editor}}' غير موجود في PATH. سيتم حفظ المحرر على أي حال.",
|
|
35
|
+
"success": "تم تعيين المحرر الافتراضي إلى: {{editor}}",
|
|
36
|
+
"cancelled": "تم إلغاء التكوين.",
|
|
37
|
+
"failed": "فشل تكوين بيئة التطوير"
|
|
38
|
+
},
|
|
39
|
+
"model": {
|
|
40
|
+
"description": "تكوين نموذج LLM الافتراضي لتشغيل الوكيل",
|
|
41
|
+
"selectPrompt": "اختر نموذج LLM الافتراضي",
|
|
42
|
+
"noModels": "لا توجد نماذج متاحة للوكيل \"{{agentType}}\". قم بتكوين وكيل مختلف باستخدام: shep settings agent",
|
|
43
|
+
"success": "تم تكوين النموذج: {{model}}",
|
|
44
|
+
"cancelled": "تم إلغاء التكوين.",
|
|
45
|
+
"failed": "فشل تكوين النموذج"
|
|
46
|
+
},
|
|
47
|
+
"workflow": {
|
|
48
|
+
"description": "تكوين سلوك سير العمل الافتراضي للميزات الجديدة",
|
|
49
|
+
"allowPrdOption": "الموافقة التلقائية على مرحلة المتطلبات",
|
|
50
|
+
"allowPlanOption": "الموافقة التلقائية على مرحلة التخطيط",
|
|
51
|
+
"allowMergeOption": "الموافقة التلقائية والدمج التلقائي بعد التنفيذ",
|
|
52
|
+
"allowAllOption": "تمكين جميع بوابات الموافقة",
|
|
53
|
+
"pushOption": "دفع الفرع إلى الخادم البعيد عند الاكتمال",
|
|
54
|
+
"noPushOption": "عدم دفع الفرع عند الاكتمال",
|
|
55
|
+
"prOption": "فتح PR عند الاكتمال",
|
|
56
|
+
"noPrOption": "عدم فتح PR عند الاكتمال",
|
|
57
|
+
"success": "تم تحديث إعدادات سير العمل الافتراضية: {{summary}}",
|
|
58
|
+
"summaryNone": "لا شيء",
|
|
59
|
+
"allowPrd": "السماح بـ PRD",
|
|
60
|
+
"allowPlan": "السماح بالخطة",
|
|
61
|
+
"allowMerge": "السماح بالدمج",
|
|
62
|
+
"push": "دفع",
|
|
63
|
+
"pr": "PR",
|
|
64
|
+
"cancelled": "تم إلغاء التكوين.",
|
|
65
|
+
"failed": "فشل تكوين إعدادات سير العمل الافتراضية"
|
|
66
|
+
},
|
|
67
|
+
"language": {
|
|
68
|
+
"description": "تكوين لغة العرض",
|
|
69
|
+
"selectPrompt": "اختر لغة العرض",
|
|
70
|
+
"success": "تم تعيين اللغة إلى: {{language}}",
|
|
71
|
+
"cancelled": "تم إلغاء التكوين.",
|
|
72
|
+
"failed": "فشل تكوين اللغة"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"version": {
|
|
76
|
+
"description": "عرض معلومات الإصدار",
|
|
77
|
+
"nodeLabel": "Node:",
|
|
78
|
+
"platformLabel": "المنصة:"
|
|
79
|
+
},
|
|
80
|
+
"start": {
|
|
81
|
+
"description": "بدء واجهة Shep الويب كخدمة خلفية",
|
|
82
|
+
"portOption": "رقم المنفذ (1024-65535)",
|
|
83
|
+
"portValidation": "يجب أن يكون المنفذ عددًا صحيحًا بين 1024 و 65535"
|
|
84
|
+
},
|
|
85
|
+
"stop": {
|
|
86
|
+
"description": "إيقاف خدمة Shep الويب الخلفية العاملة",
|
|
87
|
+
"noDaemonRunning": "لا توجد خدمة Shep خلفية قيد التشغيل."
|
|
88
|
+
},
|
|
89
|
+
"restart": {
|
|
90
|
+
"description": "إعادة تشغيل خدمة Shep الويب الخلفية بسلاسة (تبدأها إذا لم تكن قيد التشغيل)",
|
|
91
|
+
"portOption": "رقم المنفذ (1024-65535)",
|
|
92
|
+
"portValidation": "يجب أن يكون المنفذ عددًا صحيحًا بين 1024 و 65535",
|
|
93
|
+
"daemonNotRunning": "الخدمة الخلفية لم تكن قيد التشغيل — جارٍ البدء..."
|
|
94
|
+
},
|
|
95
|
+
"status": {
|
|
96
|
+
"description": "عرض حالة خدمة Shep الويب الخلفية",
|
|
97
|
+
"logsOption": "عرض آخر N سطر من سجل الخدمة الخلفية (الافتراضي 50)",
|
|
98
|
+
"followOption": "متابعة مخرجات سجل الخدمة الخلفية في الوقت الفعلي",
|
|
99
|
+
"noLogFile": "لم يتم العثور على ملف سجل الخدمة الخلفية.",
|
|
100
|
+
"expectedAt": "المتوقع في: {{path}}",
|
|
101
|
+
"logEmpty": "ملف السجل فارغ.",
|
|
102
|
+
"followHint": "--- متابعة daemon.log (Ctrl+C للإيقاف) ---",
|
|
103
|
+
"notRunning": "خدمة Shep الخلفية ليست قيد التشغيل.",
|
|
104
|
+
"startHint": "شغّل `shep start` لتشغيلها.",
|
|
105
|
+
"title": "حالة خدمة Shep الخلفية",
|
|
106
|
+
"pidLabel": "PID",
|
|
107
|
+
"portLabel": "المنفذ",
|
|
108
|
+
"urlLabel": "URL",
|
|
109
|
+
"startedLabel": "بدأت في",
|
|
110
|
+
"uptimeLabel": "وقت التشغيل",
|
|
111
|
+
"cpuLabel": "المعالج %",
|
|
112
|
+
"memoryLabel": "الذاكرة (RSS)",
|
|
113
|
+
"envTitle": "البيئة",
|
|
114
|
+
"shepHomeLabel": "مجلد Shep الرئيسي",
|
|
115
|
+
"cliVersionLabel": "إصدار CLI",
|
|
116
|
+
"nodeVersionLabel": "إصدار Node",
|
|
117
|
+
"dbPathLabel": "مسار قاعدة البيانات",
|
|
118
|
+
"logFileLabel": "ملف السجل",
|
|
119
|
+
"daemonConfigLabel": "تكوين الخدمة الخلفية"
|
|
120
|
+
},
|
|
121
|
+
"ui": {
|
|
122
|
+
"description": "بدء واجهة Shep الويب",
|
|
123
|
+
"portOption": "رقم المنفذ (1024-65535)",
|
|
124
|
+
"noOpenOption": "عدم فتح المتصفح تلقائيًا",
|
|
125
|
+
"portValidation": "يجب أن يكون المنفذ عددًا صحيحًا بين 1024 و 65535",
|
|
126
|
+
"heading": "واجهة Shep الويب",
|
|
127
|
+
"startingDev": "جارٍ بدء خادم الويب (وضع التطوير)...",
|
|
128
|
+
"starting": "جارٍ بدء خادم الويب...",
|
|
129
|
+
"serverReady": "الخادم جاهز على {{url}}",
|
|
130
|
+
"pressCtrlC": "اضغط Ctrl+C للإيقاف",
|
|
131
|
+
"shuttingDown": "جارٍ الإيقاف...",
|
|
132
|
+
"failedToStart": "فشل بدء واجهة الويب"
|
|
133
|
+
},
|
|
134
|
+
"run": {
|
|
135
|
+
"description": "تشغيل سير عمل وكيل الذكاء الاصطناعي",
|
|
136
|
+
"agentArgument": "اسم الوكيل المراد تشغيله (مثال: analyze-repository)",
|
|
137
|
+
"promptOption": "الأمر المرسل للوكيل",
|
|
138
|
+
"promptDefault": "تحليل هذا المستودع",
|
|
139
|
+
"repoOption": "مسار المستودع (الافتراضي: المجلد الحالي)",
|
|
140
|
+
"streamOption": "بث المخرجات في الوقت الفعلي",
|
|
141
|
+
"runningAgent": "تشغيل الوكيل:",
|
|
142
|
+
"repositoryLabel": "المستودع: {{path}}",
|
|
143
|
+
"promptLabel": "الأمر: {{prompt}}",
|
|
144
|
+
"agentCompleted": "اكتمل الوكيل {{name}}",
|
|
145
|
+
"resultHeading": "النتيجة:",
|
|
146
|
+
"noOutput": "لا توجد مخرجات",
|
|
147
|
+
"agentWorking": "الوكيل {{name}} يعمل...",
|
|
148
|
+
"agentFailed": "فشل تنفيذ الوكيل",
|
|
149
|
+
"failedToRun": "فشل تشغيل الوكيل"
|
|
150
|
+
},
|
|
151
|
+
"install": {
|
|
152
|
+
"description": "تثبيت أداة تطوير",
|
|
153
|
+
"toolArgument": "الأداة المراد تثبيتها ({{tools}})",
|
|
154
|
+
"howOption": "عرض تعليمات التثبيت دون التنفيذ",
|
|
155
|
+
"runWithTool": "شغّل {{command}} مع أحد هذه الخيارات:",
|
|
156
|
+
"unrecognizedTool": "لا أتعرف على '{{tool}}'. هل تقصد واحدة من هذه؟",
|
|
157
|
+
"alreadyInstalled": "{{tool}} مثبت بالفعل",
|
|
158
|
+
"noAutoInstall": "{{tool}} لا يدعم التثبيت التلقائي",
|
|
159
|
+
"installSuccess": "تم تثبيت {{tool}} بنجاح",
|
|
160
|
+
"installFailed": "فشل تثبيت {{tool}}: {{error}}",
|
|
161
|
+
"failedToInstall": "فشل تثبيت {{tool}}",
|
|
162
|
+
"instructionsHeading": "تعليمات التثبيت لـ {{name}}",
|
|
163
|
+
"nameLabel": "الاسم:",
|
|
164
|
+
"summaryLabel": "الملخص:",
|
|
165
|
+
"descriptionLabel": "الوصف:",
|
|
166
|
+
"tagsLabel": "الوسوم:",
|
|
167
|
+
"binaryLabel": "الملف الثنائي:",
|
|
168
|
+
"packageManagerLabel": "مدير الحزم:",
|
|
169
|
+
"installCommandsHeading": "أوامر التثبيت",
|
|
170
|
+
"verifyHeading": "التحقق من التثبيت",
|
|
171
|
+
"openDirHeading": "فتح المجلد",
|
|
172
|
+
"docsHeading": "التوثيق"
|
|
173
|
+
},
|
|
174
|
+
"ide": {
|
|
175
|
+
"description": "فتح شجرة عمل ميزة في بيئة التطوير",
|
|
176
|
+
"featArgument": "معرّف الميزة أو بادئته",
|
|
177
|
+
"openInOption": "فتح في {{name}}",
|
|
178
|
+
"openedSuccess": "تم فتح {{editor}} في {{path}}",
|
|
179
|
+
"failedToOpen": "فشل فتح بيئة التطوير"
|
|
180
|
+
},
|
|
181
|
+
"tools": {
|
|
182
|
+
"description": "إدارة أدوات التطوير",
|
|
183
|
+
"list": {
|
|
184
|
+
"description": "عرض جميع الأدوات المتاحة مع حالة التثبيت",
|
|
185
|
+
"installed": "مثبت",
|
|
186
|
+
"missing": "مفقود",
|
|
187
|
+
"failedToList": "خطأ في عرض الأدوات: {{error}}"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"feat": {
|
|
191
|
+
"description": "إدارة الميزات عبر دورة حياة تطوير البرمجيات",
|
|
192
|
+
"new": {
|
|
193
|
+
"description": "إنشاء ميزة جديدة",
|
|
194
|
+
"descriptionArgument": "وصف الميزة",
|
|
195
|
+
"repoOption": "مسار المستودع (الافتراضي: المجلد الحالي)",
|
|
196
|
+
"pushOption": "دفع الفرع إلى الخادم البعيد بعد التنفيذ",
|
|
197
|
+
"prOption": "فتح PR عند اكتمال التنفيذ (يتضمن --push)",
|
|
198
|
+
"noPrOption": "عدم فتح PR عند اكتمال التنفيذ",
|
|
199
|
+
"allowPrdOption": "الموافقة التلقائية حتى المتطلبات، التوقف بعدها",
|
|
200
|
+
"allowPlanOption": "الموافقة التلقائية حتى التخطيط، التوقف عند التنفيذ",
|
|
201
|
+
"allowMergeOption": "الموافقة التلقائية على مرحلة الدمج",
|
|
202
|
+
"allowAllOption": "التشغيل بشكل مستقل بالكامل (بدون توقف للموافقة)",
|
|
203
|
+
"parentOption": "معرّف الميزة الأصلية (كامل أو بادئة جزئية)",
|
|
204
|
+
"pendingOption": "إنشاء الميزة بدون بدء الوكيل",
|
|
205
|
+
"fastOption": "تخطي مراحل SDLC والتنفيذ مباشرة من الأمر",
|
|
206
|
+
"modelOption": "معرّف نموذج LLM لهذا التشغيل (مثال: claude-opus-4-6)",
|
|
207
|
+
"attachOption": "إرفاق ملف (قابل للتكرار)",
|
|
208
|
+
"parentNotFound": "الميزة الأصلية غير موجودة: {{id}}",
|
|
209
|
+
"attachmentNotFound": "المرفق غير موجود: {{path}}",
|
|
210
|
+
"spinnerText": "جارٍ التفكير",
|
|
211
|
+
"featureCreated": "تم إنشاء الميزة",
|
|
212
|
+
"blockedInfo": "تم إنشاء الميزة في حالة محظورة — في انتظار وصول الميزة الأصلية إلى مرحلة التنفيذ",
|
|
213
|
+
"pendingInfo": "تم إنشاء الميزة في حالة انتظار — شغّل {{command}} للبدء",
|
|
214
|
+
"idLabel": "المعرّف:",
|
|
215
|
+
"nameLabel": "الاسم:",
|
|
216
|
+
"branchLabel": "الفرع:",
|
|
217
|
+
"statusLabel": "الحالة:",
|
|
218
|
+
"worktreeLabel": "شجرة العمل:",
|
|
219
|
+
"specLabel": "المواصفات:",
|
|
220
|
+
"agentLabel": "الوكيل:",
|
|
221
|
+
"pendingStatus": "قيد الانتظار",
|
|
222
|
+
"spawnedStatus": "تم التشغيل",
|
|
223
|
+
"pushPr": "دفع + PR",
|
|
224
|
+
"pushOnly": "دفع فقط",
|
|
225
|
+
"pushLabel": "الدفع:",
|
|
226
|
+
"reviewLabel": "المراجعة:",
|
|
227
|
+
"fullyAutonomous": "مستقل بالكامل",
|
|
228
|
+
"pauseAfterEvery": "توقف بعد كل مرحلة",
|
|
229
|
+
"autoApprove": "موافقة تلقائية: {{approved}}",
|
|
230
|
+
"failedToCreate": "فشل إنشاء الميزة"
|
|
231
|
+
},
|
|
232
|
+
"ls": {
|
|
233
|
+
"description": "عرض الميزات",
|
|
234
|
+
"repoOption": "تصفية حسب مسار المستودع",
|
|
235
|
+
"includeDeletedOption": "تضمين الميزات المحذوفة",
|
|
236
|
+
"showArchivedOption": "تضمين الميزات المؤرشفة",
|
|
237
|
+
"noFeatures": "لم يتم العثور على ميزات",
|
|
238
|
+
"featuresHeading": "الميزات ({{count}})",
|
|
239
|
+
"nameHeader": "الاسم",
|
|
240
|
+
"statusHeader": "الحالة",
|
|
241
|
+
"gatesHeader": "R P M ↑",
|
|
242
|
+
"elapsedHeader": "الوقت المنقضي",
|
|
243
|
+
"doneHeader": "مكتمل",
|
|
244
|
+
"failedToList": "فشل عرض الميزات"
|
|
245
|
+
},
|
|
246
|
+
"show": {
|
|
247
|
+
"description": "عرض تفاصيل الميزة",
|
|
248
|
+
"idArgument": "معرّف الميزة",
|
|
249
|
+
"title": "الميزة: {{name}}",
|
|
250
|
+
"idLabel": "المعرّف",
|
|
251
|
+
"slugLabel": "الاسم المختصر",
|
|
252
|
+
"descriptionLabel": "الوصف",
|
|
253
|
+
"userQueryLabel": "استعلام المستخدم",
|
|
254
|
+
"repositoryLabel": "المستودع",
|
|
255
|
+
"branchLabel": "الفرع",
|
|
256
|
+
"statusLabel": "الحالة",
|
|
257
|
+
"lifecycleLabel": "دورة الحياة",
|
|
258
|
+
"agentLabel": "الوكيل",
|
|
259
|
+
"modelLabel": "النموذج",
|
|
260
|
+
"worktreeLabel": "شجرة العمل",
|
|
261
|
+
"specDirLabel": "مجلد المواصفات",
|
|
262
|
+
"agentRunLabel": "تشغيل الوكيل",
|
|
263
|
+
"timestampsTitle": "الطوابع الزمنية",
|
|
264
|
+
"createdLabel": "تاريخ الإنشاء",
|
|
265
|
+
"updatedLabel": "تاريخ التحديث",
|
|
266
|
+
"workflowTitle": "سير العمل",
|
|
267
|
+
"pushLabel": "الدفع",
|
|
268
|
+
"openPrLabel": "فتح PR",
|
|
269
|
+
"gatesLabel": "البوابات",
|
|
270
|
+
"gatesNotSet": "غير محدد",
|
|
271
|
+
"pullRequestTitle": "طلب السحب",
|
|
272
|
+
"urlLabel": "URL",
|
|
273
|
+
"numberLabel": "الرقم",
|
|
274
|
+
"prStatusLabel": "الحالة",
|
|
275
|
+
"commitLabel": "الإيداع",
|
|
276
|
+
"ciLabel": "CI",
|
|
277
|
+
"ciFixesLabel": "إصلاحات CI",
|
|
278
|
+
"ciFixAttempts": "{{count}} محاولة(محاولات)",
|
|
279
|
+
"yesValue": "نعم",
|
|
280
|
+
"noValue": "لا",
|
|
281
|
+
"planTitle": "الخطة",
|
|
282
|
+
"planState": "الحالة {{state}}",
|
|
283
|
+
"planTasks": "المهام {{count}}",
|
|
284
|
+
"messagesTitle": "الرسائل ({{count}})",
|
|
285
|
+
"phaseTimingTitle": "توقيت المراحل",
|
|
286
|
+
"ciFixHistoryTitle": "سجل إصلاحات CI",
|
|
287
|
+
"awaitingApprovalTitle": "في انتظار الموافقة",
|
|
288
|
+
"awaitingApprovalMessage": "{{phase}} في انتظار مراجعتك.",
|
|
289
|
+
"awaitingApprovalApprove": "استئناف الوكيل",
|
|
290
|
+
"awaitingApprovalReject": "إلغاء مع ملاحظات",
|
|
291
|
+
"currentPhase": "المرحلة الحالية",
|
|
292
|
+
"failedToShow": "فشل عرض الميزة"
|
|
293
|
+
},
|
|
294
|
+
"start": {
|
|
295
|
+
"description": "بدء ميزة قيد الانتظار (تشغيل الوكيل)",
|
|
296
|
+
"idArgument": "معرّف الميزة (أو بادئته)",
|
|
297
|
+
"spinnerText": "جارٍ بدء الميزة",
|
|
298
|
+
"blockedWarning": "انتقلت الميزة إلى حالة محظورة — الميزة الأصلية لم تصل إلى مرحلة التنفيذ",
|
|
299
|
+
"featureStarted": "تم بدء الميزة",
|
|
300
|
+
"featureLabel": "الميزة:",
|
|
301
|
+
"branchLabel": "الفرع:",
|
|
302
|
+
"statusLabel": "الحالة:",
|
|
303
|
+
"agentLabel": "الوكيل:",
|
|
304
|
+
"spawnedStatus": "تم التشغيل",
|
|
305
|
+
"failedToStart": "فشل بدء الميزة"
|
|
306
|
+
},
|
|
307
|
+
"approve": {
|
|
308
|
+
"description": "الموافقة على ميزة في انتظار المراجعة",
|
|
309
|
+
"idArgument": "معرّف الميزة (يتم الحل تلقائيًا إذا لم يُحدد)",
|
|
310
|
+
"approvedSuccess": "تمت الموافقة: {{name}}",
|
|
311
|
+
"phaseLabel": "المرحلة:",
|
|
312
|
+
"approved": "تمت الموافقة",
|
|
313
|
+
"agentLabel": "الوكيل:",
|
|
314
|
+
"agentResumed": "تم الاستئناف",
|
|
315
|
+
"failedToApprove": "فشلت الموافقة على الميزة"
|
|
316
|
+
},
|
|
317
|
+
"reject": {
|
|
318
|
+
"description": "رفض ميزة في انتظار المراجعة",
|
|
319
|
+
"idArgument": "معرّف الميزة (يتم الحل تلقائيًا إذا لم يُحدد)",
|
|
320
|
+
"reasonOption": "ملاحظات الرفض (مطلوبة)",
|
|
321
|
+
"rejectedWarning": "تم الرفض: {{name}}",
|
|
322
|
+
"reasonLabel": "السبب:",
|
|
323
|
+
"iterationLabel": "التكرار:",
|
|
324
|
+
"iterationWarning": "تحذير: أكثر من 5 تكرارات. فكر في تحسين الأمر بدلاً من ذلك.",
|
|
325
|
+
"agentLabel": "الوكيل:",
|
|
326
|
+
"agentRerunning": "إعادة تشغيل المتطلبات",
|
|
327
|
+
"failedToReject": "فشل رفض الميزة"
|
|
328
|
+
},
|
|
329
|
+
"del": {
|
|
330
|
+
"description": "حذف ميزة",
|
|
331
|
+
"idArgument": "معرّف الميزة أو بادئته",
|
|
332
|
+
"forceOption": "تخطي مطالبة التأكيد",
|
|
333
|
+
"noCleanupOption": "تخطي تنظيف شجرة العمل والفروع",
|
|
334
|
+
"noClosePrOption": "إبقاء طلب السحب مفتوحًا",
|
|
335
|
+
"confirmDelete": "حذف الميزة \"{{name}}\"؟",
|
|
336
|
+
"cancelled": "تم الإلغاء",
|
|
337
|
+
"confirmCleanup": "هل تريد أيضًا تنظيف شجرة العمل والفروع؟",
|
|
338
|
+
"confirmClosePr": "هل تريد أيضًا إغلاق طلب السحب؟ (PR #{{number}})",
|
|
339
|
+
"featureDeleted": "تم حذف الميزة",
|
|
340
|
+
"nameLabel": "الاسم:",
|
|
341
|
+
"branchLabel": "الفرع:",
|
|
342
|
+
"cleanupLabel": "التنظيف:",
|
|
343
|
+
"cleanupDetail": "شجرة العمل، الفرع المحلي، الفرع البعيد",
|
|
344
|
+
"prLabel": "PR:",
|
|
345
|
+
"prClosed": "#{{number}} تم الإغلاق",
|
|
346
|
+
"failedToDelete": "فشل حذف الميزة"
|
|
347
|
+
},
|
|
348
|
+
"resume": {
|
|
349
|
+
"description": "استئناف وكيل ميزة متوقف أو فاشل",
|
|
350
|
+
"idArgument": "معرّف الميزة (أو بادئته)",
|
|
351
|
+
"agentResumed": "تم استئناف وكيل الميزة",
|
|
352
|
+
"featureLabel": "الميزة:",
|
|
353
|
+
"runIdLabel": "معرّف التشغيل:",
|
|
354
|
+
"failedToResume": "فشل استئناف الميزة"
|
|
355
|
+
},
|
|
356
|
+
"review": {
|
|
357
|
+
"description": "مراجعة تفاعلية لميزة في انتظار الموافقة",
|
|
358
|
+
"idArgument": "معرّف الميزة (يتم الحل تلقائيًا إذا لم يُحدد)",
|
|
359
|
+
"reviewing": "مراجعة: {{name}}",
|
|
360
|
+
"phaseLabel": "المرحلة:",
|
|
361
|
+
"branchLabel": "الفرع:",
|
|
362
|
+
"approvedSuccess": "تمت الموافقة: {{name}}",
|
|
363
|
+
"changesLabel": "التغييرات:",
|
|
364
|
+
"changesUpdated": "تم تحديث {{count}} تحديد(تحديدات)",
|
|
365
|
+
"commentLabel": "التعليق:",
|
|
366
|
+
"agentLabel": "الوكيل:",
|
|
367
|
+
"proceedingTo": "الانتقال إلى {{phase}}",
|
|
368
|
+
"rejectedWarning": "تم الرفض: {{name}}",
|
|
369
|
+
"feedbackLabel": "الملاحظات:",
|
|
370
|
+
"iterationLabel": "التكرار:",
|
|
371
|
+
"iterationWarning": "تحذير: أكثر من 5 تكرارات. فكر في تحسين الأمر بدلاً من ذلك.",
|
|
372
|
+
"agentRerunning": "إعادة تشغيل {{phase}}",
|
|
373
|
+
"failedToReview": "فشلت مراجعة الميزة"
|
|
374
|
+
},
|
|
375
|
+
"logs": {
|
|
376
|
+
"description": "عرض سجلات وكيل الميزة",
|
|
377
|
+
"idArgument": "معرّف الميزة (أو بادئته)",
|
|
378
|
+
"followOption": "متابعة مخرجات السجل (مثل tail -f)",
|
|
379
|
+
"linesOption": "عدد الأسطر المعروضة من النهاية",
|
|
380
|
+
"noAgentRun": "الميزة \"{{name}}\" ليس لديها تشغيل وكيل",
|
|
381
|
+
"failedToRead": "فشل قراءة سجلات الميزة"
|
|
382
|
+
},
|
|
383
|
+
"adopt": {
|
|
384
|
+
"description": "تبني فرع موجود كميزة متتبعة",
|
|
385
|
+
"branchArgument": "اسم الفرع المراد تبنيه",
|
|
386
|
+
"repoOption": "مسار المستودع (الافتراضي: المجلد الحالي)",
|
|
387
|
+
"spinnerText": "جارٍ تبني الفرع",
|
|
388
|
+
"branchAdopted": "تم تبني الفرع",
|
|
389
|
+
"idLabel": "المعرّف:",
|
|
390
|
+
"nameLabel": "الاسم:",
|
|
391
|
+
"branchLabel": "الفرع:",
|
|
392
|
+
"statusLabel": "الحالة:",
|
|
393
|
+
"prLabel": "PR:",
|
|
394
|
+
"worktreeLabel": "شجرة العمل:",
|
|
395
|
+
"failedToAdopt": "فشل تبني الفرع"
|
|
396
|
+
},
|
|
397
|
+
"archive": {
|
|
398
|
+
"description": "أرشفة ميزة لإخفائها من اللوحة",
|
|
399
|
+
"idArgument": "معرّف الميزة أو بادئته",
|
|
400
|
+
"forceOption": "تخطي مطالبة التأكيد",
|
|
401
|
+
"confirmArchive": "أرشفة الميزة \"{{name}}\"؟",
|
|
402
|
+
"cancelled": "تم الإلغاء",
|
|
403
|
+
"featureArchived": "تمت أرشفة الميزة",
|
|
404
|
+
"nameLabel": "الاسم:",
|
|
405
|
+
"failedToArchive": "فشلت أرشفة الميزة"
|
|
406
|
+
},
|
|
407
|
+
"unarchive": {
|
|
408
|
+
"description": "استعادة ميزة مؤرشفة إلى حالتها السابقة",
|
|
409
|
+
"idArgument": "معرّف الميزة أو بادئته",
|
|
410
|
+
"featureUnarchived": "تم إلغاء أرشفة الميزة",
|
|
411
|
+
"nameLabel": "الاسم:",
|
|
412
|
+
"restoredLabel": "تمت الاستعادة:",
|
|
413
|
+
"failedToUnarchive": "فشل إلغاء أرشفة الميزة"
|
|
414
|
+
},
|
|
415
|
+
"resolveWaiting": {
|
|
416
|
+
"featureNotFound": "الميزة غير موجودة: \"{{id}}\"",
|
|
417
|
+
"noAgentRun": "الميزة \"{{name}}\" ليس لديها تشغيل وكيل",
|
|
418
|
+
"notWaitingForApproval": "الميزة \"{{name}}\" ليست في انتظار الموافقة (الحالة: {{status}})",
|
|
419
|
+
"noFeaturesWaiting": "لا توجد ميزات في انتظار الموافقة في هذا المستودع",
|
|
420
|
+
"multipleFeaturesWaiting": "ميزات متعددة في انتظار الموافقة. حدد واحدة:"
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
"repo": {
|
|
424
|
+
"description": "إدارة المستودعات المتتبعة",
|
|
425
|
+
"add": {
|
|
426
|
+
"description": "استيراد مستودع GitHub (استنساخ وتسجيل)",
|
|
427
|
+
"urlOption": "رابط مستودع GitHub أو الاختصار owner/repo",
|
|
428
|
+
"destOption": "تجاوز مجلد وجهة الاستنساخ",
|
|
429
|
+
"importSuccess": "تم استيراد المستودع: {{name}}",
|
|
430
|
+
"pathInfo": "المسار: {{path}}",
|
|
431
|
+
"authError": "GitHub CLI غير مصادق. شغّل `gh auth login` لتسجيل الدخول.",
|
|
432
|
+
"invalidUrl": "رابط GitHub غير صالح: {{error}}",
|
|
433
|
+
"supportedFormats": "التنسيقات المدعومة: https://github.com/owner/repo أو git@github.com:owner/repo.git أو owner/repo",
|
|
434
|
+
"cloneFailed": "فشل الاستنساخ: {{error}}",
|
|
435
|
+
"failedToImport": "فشل استيراد المستودع"
|
|
436
|
+
},
|
|
437
|
+
"ls": {
|
|
438
|
+
"description": "عرض المستودعات المتتبعة",
|
|
439
|
+
"title": "المستودعات",
|
|
440
|
+
"idColumn": "المعرّف",
|
|
441
|
+
"nameColumn": "الاسم",
|
|
442
|
+
"featuresColumn": "الميزات",
|
|
443
|
+
"pathColumn": "المسار",
|
|
444
|
+
"createdColumn": "تاريخ الإنشاء",
|
|
445
|
+
"noRepos": "لم يتم العثور على مستودعات",
|
|
446
|
+
"failedToList": "فشل عرض المستودعات"
|
|
447
|
+
},
|
|
448
|
+
"show": {
|
|
449
|
+
"description": "عرض تفاصيل مستودع متتبع",
|
|
450
|
+
"idArgument": "معرّف المستودع (أو بادئته)",
|
|
451
|
+
"title": "المستودع",
|
|
452
|
+
"timestampsTitle": "الطوابع الزمنية",
|
|
453
|
+
"createdLabel": "تاريخ الإنشاء",
|
|
454
|
+
"updatedLabel": "تاريخ التحديث",
|
|
455
|
+
"deletedLabel": "تاريخ الحذف",
|
|
456
|
+
"featuresTitle": "الميزات ({{count}})",
|
|
457
|
+
"noFeatures": "لم يتم العثور على ميزات",
|
|
458
|
+
"failedToShow": "فشل عرض المستودع"
|
|
459
|
+
},
|
|
460
|
+
"resolve": {
|
|
461
|
+
"multipleMatch": "عدة مستودعات تطابق البادئة \"{{id}}\": {{matches}}",
|
|
462
|
+
"notFound": "المستودع غير موجود: {{id}}"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"agent": {
|
|
466
|
+
"description": "إدارة وعرض تشغيلات الوكيل",
|
|
467
|
+
"show": {
|
|
468
|
+
"description": "عرض تفاصيل تشغيل وكيل",
|
|
469
|
+
"idArgument": "معرّف تشغيل الوكيل (أو بادئته)",
|
|
470
|
+
"title": "تشغيل الوكيل",
|
|
471
|
+
"pathsTitle": "المسارات",
|
|
472
|
+
"timingTitle": "التوقيت",
|
|
473
|
+
"failedToShow": "فشل عرض تشغيل الوكيل"
|
|
474
|
+
},
|
|
475
|
+
"ls": {
|
|
476
|
+
"description": "عرض جميع تشغيلات الوكيل",
|
|
477
|
+
"title": "تشغيلات الوكيل",
|
|
478
|
+
"idColumn": "المعرّف",
|
|
479
|
+
"agentColumn": "الوكيل",
|
|
480
|
+
"statusColumn": "الحالة",
|
|
481
|
+
"durationColumn": "المدة",
|
|
482
|
+
"pidColumn": "PID",
|
|
483
|
+
"warningColumn": "تحذير",
|
|
484
|
+
"noRuns": "لم يتم العثور على تشغيلات وكيل",
|
|
485
|
+
"failedToList": "فشل عرض تشغيلات الوكيل"
|
|
486
|
+
},
|
|
487
|
+
"stop": {
|
|
488
|
+
"description": "إيقاف وكيل قيد التشغيل",
|
|
489
|
+
"idArgument": "معرّف تشغيل الوكيل (أو بادئته)",
|
|
490
|
+
"stoppedSuccess": "تم إيقاف {{id}}: {{reason}}",
|
|
491
|
+
"failedToStop": "فشل إيقاف تشغيل الوكيل"
|
|
492
|
+
},
|
|
493
|
+
"logs": {
|
|
494
|
+
"description": "عرض سجلات تشغيل الوكيل",
|
|
495
|
+
"idArgument": "معرّف تشغيل الوكيل (أو بادئته)",
|
|
496
|
+
"followOption": "متابعة مخرجات السجل (مثل tail -f)",
|
|
497
|
+
"linesOption": "عدد الأسطر المعروضة من النهاية",
|
|
498
|
+
"failedToRead": "فشل قراءة سجلات الوكيل"
|
|
499
|
+
},
|
|
500
|
+
"delete": {
|
|
501
|
+
"description": "حذف سجل تشغيل وكيل",
|
|
502
|
+
"idArgument": "معرّف تشغيل الوكيل (أو بادئته)",
|
|
503
|
+
"forceOption": "فرض الحذف حتى لو كان قيد التشغيل",
|
|
504
|
+
"deletedSuccess": "تم حذف {{id}}",
|
|
505
|
+
"failedToDelete": "فشل حذف تشغيل الوكيل"
|
|
506
|
+
},
|
|
507
|
+
"approve": {
|
|
508
|
+
"description": "الموافقة على تشغيل وكيل متوقف واستئناف التنفيذ",
|
|
509
|
+
"idArgument": "معرّف تشغيل الوكيل (أو بادئته)",
|
|
510
|
+
"approvedSuccess": "تمت الموافقة على {{id}}: {{reason}}",
|
|
511
|
+
"failedToApprove": "فشلت الموافقة على تشغيل الوكيل"
|
|
512
|
+
},
|
|
513
|
+
"reject": {
|
|
514
|
+
"description": "رفض تشغيل وكيل متوقف وإلغاؤه",
|
|
515
|
+
"idArgument": "معرّف تشغيل الوكيل (أو بادئته)",
|
|
516
|
+
"reasonOption": "سبب الرفض",
|
|
517
|
+
"rejectedSuccess": "تم رفض {{id}}: {{reason}}",
|
|
518
|
+
"failedToReject": "فشل رفض تشغيل الوكيل"
|
|
519
|
+
},
|
|
520
|
+
"resolve": {
|
|
521
|
+
"multipleMatch": "عدة تشغيلات تطابق البادئة \"{{id}}\": {{matches}}",
|
|
522
|
+
"notFound": "تشغيل الوكيل غير موجود: {{id}}"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"session": {
|
|
526
|
+
"description": "إدارة وعرض جلسات مزود الوكيل CLI",
|
|
527
|
+
"ls": {
|
|
528
|
+
"description": "عرض جلسات مزود الوكيل CLI",
|
|
529
|
+
"claudeCodeOption": "عرض جلسات Claude Code",
|
|
530
|
+
"cursorCliOption": "عرض جلسات Cursor CLI",
|
|
531
|
+
"geminiCliOption": "عرض جلسات Gemini CLI",
|
|
532
|
+
"limitOption": "الحد الأقصى لعدد الجلسات المعروضة (0 = الكل)",
|
|
533
|
+
"flatOption": "عرض قائمة مسطحة بدون تجميع",
|
|
534
|
+
"oneProviderOnly": "يمكن تحديد علامة مزود واحد فقط في كل مرة",
|
|
535
|
+
"noSessions": "لم يتم العثور على جلسات",
|
|
536
|
+
"failedToList": "فشل عرض الجلسات"
|
|
537
|
+
},
|
|
538
|
+
"show": {
|
|
539
|
+
"description": "عرض تفاصيل جلسة مزود الوكيل",
|
|
540
|
+
"idArgument": "معرّف الجلسة",
|
|
541
|
+
"claudeCodeOption": "الاستعلام عن جلسات Claude Code",
|
|
542
|
+
"cursorCliOption": "الاستعلام عن جلسات Cursor CLI",
|
|
543
|
+
"geminiCliOption": "الاستعلام عن جلسات Gemini CLI",
|
|
544
|
+
"messagesOption": "عدد الرسائل المعروضة (0 = الكل)",
|
|
545
|
+
"oneProviderOnly": "يمكن تحديد علامة مزود واحد فقط في كل مرة",
|
|
546
|
+
"sessionNotFound": "الجلسة غير موجودة: {{error}}",
|
|
547
|
+
"failedToShow": "فشل عرض الجلسة",
|
|
548
|
+
"title": "الجلسة",
|
|
549
|
+
"noMessages": "لا توجد رسائل في هذه الجلسة",
|
|
550
|
+
"noDisplayableMessages": "لا توجد رسائل قابلة للعرض في هذه الجلسة",
|
|
551
|
+
"messageCount": "{{count}} رسائل",
|
|
552
|
+
"showingMessages": "عرض أول {{first}} وآخر {{last}} من {{total}} رسالة",
|
|
553
|
+
"messagesSkipped": "··· تم تخطي {{count}} رسائل ···",
|
|
554
|
+
"userLabel": "أنت",
|
|
555
|
+
"assistantLabel": "المساعد",
|
|
556
|
+
"toolUsage": "استخدام الأدوات"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"upgrade": {
|
|
560
|
+
"description": "ترقية Shep CLI إلى أحدث إصدار",
|
|
561
|
+
"versionCheckTimeout": "تعذر إكمال فحص الإصدار (انتهت المهلة)",
|
|
562
|
+
"versionCheckFailed": "تعذر إكمال فحص الإصدار",
|
|
563
|
+
"alreadyUpToDate": "محدّث بالفعل (v{{version}})",
|
|
564
|
+
"upgradingFromTo": "الترقية من v{{current}} إلى v{{latest}}",
|
|
565
|
+
"upgradingToLatest": "الترقية من v{{current}} إلى الأحدث",
|
|
566
|
+
"stoppingDaemon": "جارٍ إيقاف الخدمة الخلفية قبل الترقية...",
|
|
567
|
+
"restartingDaemon": "جارٍ إعادة تشغيل الخدمة الخلفية...",
|
|
568
|
+
"daemonRestarted": "تمت إعادة تشغيل الخدمة الخلفية بنجاح.",
|
|
569
|
+
"upgradeSuccess": "تمت ترقية Shep CLI بنجاح",
|
|
570
|
+
"upgradeFailed": "فشلت الترقية",
|
|
571
|
+
"upgradeFailedDaemonRestored": "فشلت الترقية — تمت استعادة الخدمة الخلفية على الإصدار السابق."
|
|
572
|
+
},
|
|
573
|
+
"_serve": {
|
|
574
|
+
"description": "بدء خادم الويب كخدمة خلفية (للاستخدام الداخلي فقط)",
|
|
575
|
+
"portOption": "المنفذ للاستماع عليه",
|
|
576
|
+
"portValidation": "يجب أن يكون المنفذ عددًا صحيحًا بين 1024 و 65535"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"ui": {
|
|
580
|
+
"installMessages": {
|
|
581
|
+
"alreadyInstalled": "{{tool}} مثبت بالفعل",
|
|
582
|
+
"installSuccess": "تم تثبيت {{tool}} بنجاح",
|
|
583
|
+
"installFailed": "فشل تثبيت {{tool}}: {{error}}",
|
|
584
|
+
"unknownTool": "أداة غير معروفة: \"{{tool}}\". المتاح: {{available}}",
|
|
585
|
+
"checkingAvailability": "جارٍ التحقق من توفر {{tool}}...",
|
|
586
|
+
"installingHeading": "جارٍ تثبيت {{tool}}"
|
|
587
|
+
},
|
|
588
|
+
"daemon": {
|
|
589
|
+
"alreadyRunning": "Shep يعمل بالفعل على {{url}}",
|
|
590
|
+
"heading": "واجهة Shep الويب",
|
|
591
|
+
"startingServer": "جارٍ بدء الخادم",
|
|
592
|
+
"daemonSpawned": "تم تشغيل الخدمة الخلفية على {{url}}",
|
|
593
|
+
"serverReady": "الخادم جاهز على {{url}}",
|
|
594
|
+
"serverMayBeStarting": "قد يكون الخادم لا يزال في مرحلة البدء على {{url}}",
|
|
595
|
+
"daemonFailed": "فشلت الخدمة الخلفية في البدء (رمز الخروج {{code}}).",
|
|
596
|
+
"checkLogs": "تحقق من السجلات: {{path}}",
|
|
597
|
+
"stoppingDaemon": "جارٍ إيقاف خدمة Shep الخلفية (PID {{pid}})...",
|
|
598
|
+
"sigkillFallback": "لم تتوقف الخدمة الخلفية بسلاسة، جارٍ إرسال SIGKILL...",
|
|
599
|
+
"daemonStopped": "تم إيقاف خدمة Shep الخلفية."
|
|
600
|
+
},
|
|
601
|
+
"logViewer": {
|
|
602
|
+
"noLogFile": "لم يتم العثور على ملف سجل لـ {{label}}",
|
|
603
|
+
"expectedAt": "المتوقع: {{path}}",
|
|
604
|
+
"logEmpty": "ملف السجل فارغ لـ {{label}}"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"bootstrap": {
|
|
608
|
+
"failedDatabase": "فشلت تهيئة قاعدة البيانات",
|
|
609
|
+
"failedSettings": "فشلت تهيئة الإعدادات",
|
|
610
|
+
"unexpectedError": "حدث خطأ غير متوقع",
|
|
611
|
+
"unhandledRejection": "رفض وعد غير معالج"
|
|
612
|
+
}
|
|
613
|
+
}
|