mustflow 1.15.97
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/LICENSE +16 -0
- package/README.md +422 -0
- package/dist/cli/commands/check.js +73 -0
- package/dist/cli/commands/classify.js +104 -0
- package/dist/cli/commands/context.js +95 -0
- package/dist/cli/commands/contract-lint.js +74 -0
- package/dist/cli/commands/dashboard.js +654 -0
- package/dist/cli/commands/docs.js +382 -0
- package/dist/cli/commands/doctor.js +232 -0
- package/dist/cli/commands/explain.js +293 -0
- package/dist/cli/commands/help.js +148 -0
- package/dist/cli/commands/impact.js +120 -0
- package/dist/cli/commands/index.js +70 -0
- package/dist/cli/commands/init.js +986 -0
- package/dist/cli/commands/line-endings.js +102 -0
- package/dist/cli/commands/map.js +95 -0
- package/dist/cli/commands/run.js +442 -0
- package/dist/cli/commands/search.js +166 -0
- package/dist/cli/commands/status.js +65 -0
- package/dist/cli/commands/update.js +443 -0
- package/dist/cli/commands/verify.js +448 -0
- package/dist/cli/commands/version-sources.js +79 -0
- package/dist/cli/commands/version.js +57 -0
- package/dist/cli/i18n/en.js +702 -0
- package/dist/cli/i18n/es.js +702 -0
- package/dist/cli/i18n/fr.js +702 -0
- package/dist/cli/i18n/hi.js +702 -0
- package/dist/cli/i18n/ko.js +702 -0
- package/dist/cli/i18n/zh.js +702 -0
- package/dist/cli/index.js +218 -0
- package/dist/cli/lib/agent-context.js +342 -0
- package/dist/cli/lib/browser-open.js +58 -0
- package/dist/cli/lib/cli-output.js +36 -0
- package/dist/cli/lib/command-contract.js +1 -0
- package/dist/cli/lib/command-registry.js +107 -0
- package/dist/cli/lib/dashboard-html.js +1866 -0
- package/dist/cli/lib/dashboard-locale.js +309 -0
- package/dist/cli/lib/dashboard-preferences.js +405 -0
- package/dist/cli/lib/doc-review-ledger.js +226 -0
- package/dist/cli/lib/filesystem.js +125 -0
- package/dist/cli/lib/git-changes.js +13 -0
- package/dist/cli/lib/i18n.js +55 -0
- package/dist/cli/lib/local-index.js +1014 -0
- package/dist/cli/lib/locale-tags.js +4 -0
- package/dist/cli/lib/manifest-lock.js +131 -0
- package/dist/cli/lib/npm-version-check.js +97 -0
- package/dist/cli/lib/package-info.js +13 -0
- package/dist/cli/lib/preferences-options.js +8 -0
- package/dist/cli/lib/project-root.js +23 -0
- package/dist/cli/lib/repo-map.js +635 -0
- package/dist/cli/lib/reporter.js +8 -0
- package/dist/cli/lib/run-receipt.js +1 -0
- package/dist/cli/lib/template-i18n.js +265 -0
- package/dist/cli/lib/templates.js +188 -0
- package/dist/cli/lib/toml.js +1 -0
- package/dist/cli/lib/validation.js +1639 -0
- package/dist/cli/lib/version-sources.js +1 -0
- package/dist/core/authority-resolution.js +155 -0
- package/dist/core/change-classification.js +122 -0
- package/dist/core/change-verification.js +80 -0
- package/dist/core/check-issues.js +67 -0
- package/dist/core/command-classification.js +22 -0
- package/dist/core/command-contract-rules.js +27 -0
- package/dist/core/command-contract-validation.js +197 -0
- package/dist/core/command-cwd.js +12 -0
- package/dist/core/command-effects.js +182 -0
- package/dist/core/command-explanation.js +135 -0
- package/dist/core/command-intent-eligibility.js +76 -0
- package/dist/core/config-loading.js +54 -0
- package/dist/core/contract-lint.js +110 -0
- package/dist/core/contract-models.js +53 -0
- package/dist/core/dashboard-verification.js +132 -0
- package/dist/core/doc-review-triage.js +92 -0
- package/dist/core/line-endings.js +144 -0
- package/dist/core/public-json-contracts.js +112 -0
- package/dist/core/public-surface-explanation.js +49 -0
- package/dist/core/release-version-validation.js +53 -0
- package/dist/core/retention-explanation.js +74 -0
- package/dist/core/retention-policy.js +57 -0
- package/dist/core/run-receipt.js +77 -0
- package/dist/core/skill-route-alignment.js +100 -0
- package/dist/core/skill-route-explanation.js +117 -0
- package/dist/core/source-anchor-explanation.js +33 -0
- package/dist/core/source-anchor-status.js +269 -0
- package/dist/core/source-anchor-symbols.js +181 -0
- package/dist/core/source-anchor-validation.js +158 -0
- package/dist/core/source-anchors.js +194 -0
- package/dist/core/surface-decision-model.js +18 -0
- package/dist/core/toml.js +11 -0
- package/dist/core/verification-plan.js +41 -0
- package/dist/core/verification-scheduler.js +92 -0
- package/dist/core/version-impact.js +54 -0
- package/dist/core/version-sources.js +235 -0
- package/dist/core/version-sync-policy.js +85 -0
- package/examples/README.md +13 -0
- package/examples/docs-only/README.md +72 -0
- package/examples/host-instruction-conflicts/README.md +47 -0
- package/examples/minimal-js/README.md +98 -0
- package/examples/missing-command-contracts/README.md +70 -0
- package/examples/nested-repos/README.md +62 -0
- package/package.json +80 -0
- package/schemas/README.md +32 -0
- package/schemas/change-verification-report.schema.json +319 -0
- package/schemas/classify-report.schema.json +113 -0
- package/schemas/commands.schema.json +116 -0
- package/schemas/context-report.schema.json +341 -0
- package/schemas/contract-lint-report.schema.json +61 -0
- package/schemas/docs-review-list.schema.json +72 -0
- package/schemas/doctor-report.schema.json +175 -0
- package/schemas/explain-report.schema.json +471 -0
- package/schemas/impact-report.schema.json +121 -0
- package/schemas/line-endings-report.schema.json +63 -0
- package/schemas/run-receipt.schema.json +75 -0
- package/schemas/verify-report.schema.json +67 -0
- package/schemas/version-sources-report.schema.json +42 -0
- package/templates/default/common/.mustflow/config/commands.toml +251 -0
- package/templates/default/common/.mustflow/config/mustflow.toml +424 -0
- package/templates/default/common/.mustflow/config/preferences.toml +125 -0
- package/templates/default/common/gitignore.mustflow +9 -0
- package/templates/default/i18n.toml +483 -0
- package/templates/default/locales/en/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/en/.mustflow/context/PROJECT.md +66 -0
- package/templates/default/locales/en/.mustflow/docs/agent-workflow.md +345 -0
- package/templates/default/locales/en/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/en/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/en/.mustflow/skills/artifact-integrity-check/SKILL.md +121 -0
- package/templates/default/locales/en/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/en/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/en/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/en/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/en/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/en/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/en/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/diff-risk-review/SKILL.md +143 -0
- package/templates/default/locales/en/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/en/.mustflow/skills/docs-update/SKILL.md +100 -0
- package/templates/default/locales/en/.mustflow/skills/external-prompt-injection-defense/SKILL.md +124 -0
- package/templates/default/locales/en/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/en/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/en/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/en/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/en/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/en/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/en/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/en/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/en/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/en/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/en/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/en/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/en/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/en/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/en/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/en/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/en/.mustflow/skills/security-privacy-review/SKILL.md +130 -0
- package/templates/default/locales/en/.mustflow/skills/security-regression-tests/SKILL.md +157 -0
- package/templates/default/locales/en/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/en/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/en/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/en/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/en/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/en/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/en/.mustflow/skills/ui-quality-gate/SKILL.md +119 -0
- package/templates/default/locales/en/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/en/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/en/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/en/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/en/AGENTS.md +114 -0
- package/templates/default/locales/es/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/es/.mustflow/context/PROJECT.md +63 -0
- package/templates/default/locales/es/.mustflow/docs/agent-workflow.md +365 -0
- package/templates/default/locales/es/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/es/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/es/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/es/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/es/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/es/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/es/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/es/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/es/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/es/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/es/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/es/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/es/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/es/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/es/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/es/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/es/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/es/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/es/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/es/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/es/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/es/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/es/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/es/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/es/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/es/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/es/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/es/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/es/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/es/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/es/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/es/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/es/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/es/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/es/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/es/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/es/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/es/AGENTS.md +83 -0
- package/templates/default/locales/fr/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/fr/.mustflow/context/PROJECT.md +63 -0
- package/templates/default/locales/fr/.mustflow/docs/agent-workflow.md +368 -0
- package/templates/default/locales/fr/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/fr/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/fr/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/fr/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/fr/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/fr/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/fr/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/fr/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/fr/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/fr/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/fr/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/fr/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/fr/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/fr/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/fr/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/fr/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/fr/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/fr/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/fr/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/fr/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/fr/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/fr/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/fr/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/fr/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/fr/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/fr/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/fr/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/fr/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/fr/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/fr/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/fr/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/fr/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/fr/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/fr/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/fr/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/fr/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/fr/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/fr/AGENTS.md +84 -0
- package/templates/default/locales/hi/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/hi/.mustflow/context/PROJECT.md +65 -0
- package/templates/default/locales/hi/.mustflow/docs/agent-workflow.md +359 -0
- package/templates/default/locales/hi/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/hi/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/hi/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/hi/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/hi/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/hi/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/hi/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/hi/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/hi/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/hi/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/hi/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/hi/.mustflow/skills/failure-triage/SKILL.md +97 -0
- package/templates/default/locales/hi/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/hi/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/hi/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/hi/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/hi/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/hi/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/hi/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/hi/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/hi/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/hi/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/hi/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/hi/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/hi/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/hi/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/hi/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/hi/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/hi/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/hi/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/hi/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/hi/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/hi/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/hi/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/hi/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/hi/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/hi/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/hi/AGENTS.md +83 -0
- package/templates/default/locales/ko/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/ko/.mustflow/context/PROJECT.md +66 -0
- package/templates/default/locales/ko/.mustflow/docs/agent-workflow.md +506 -0
- package/templates/default/locales/ko/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/ko/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/ko/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/ko/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/ko/.mustflow/skills/code-review/SKILL.md +118 -0
- package/templates/default/locales/ko/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/ko/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/ko/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/ko/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/ko/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/ko/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/ko/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/ko/.mustflow/skills/docs-update/SKILL.md +107 -0
- package/templates/default/locales/ko/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/ko/.mustflow/skills/failure-triage/SKILL.md +119 -0
- package/templates/default/locales/ko/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/ko/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/ko/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/ko/.mustflow/skills/multi-agent-work-coordination/SKILL.md +259 -0
- package/templates/default/locales/ko/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/ko/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/ko/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/ko/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/ko/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/ko/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/ko/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/ko/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/ko/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/ko/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/ko/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/ko/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/ko/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/ko/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/ko/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/ko/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/ko/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/ko/.mustflow/skills/test-maintenance/SKILL.md +130 -0
- package/templates/default/locales/ko/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/ko/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/ko/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/ko/AGENTS.md +85 -0
- package/templates/default/locales/zh/.mustflow/context/INDEX.md +39 -0
- package/templates/default/locales/zh/.mustflow/context/PROJECT.md +64 -0
- package/templates/default/locales/zh/.mustflow/docs/agent-workflow.md +310 -0
- package/templates/default/locales/zh/.mustflow/skills/INDEX.md +78 -0
- package/templates/default/locales/zh/.mustflow/skills/adapter-boundary/SKILL.md +193 -0
- package/templates/default/locales/zh/.mustflow/skills/artifact-integrity-check/SKILL.md +114 -0
- package/templates/default/locales/zh/.mustflow/skills/behavior-preserving-refactor/SKILL.md +182 -0
- package/templates/default/locales/zh/.mustflow/skills/code-review/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/codebase-orientation/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/command-pattern/SKILL.md +247 -0
- package/templates/default/locales/zh/.mustflow/skills/composition-over-inheritance/SKILL.md +176 -0
- package/templates/default/locales/zh/.mustflow/skills/contract-sync-check/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/date-number-audit/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/dependency-injection/SKILL.md +161 -0
- package/templates/default/locales/zh/.mustflow/skills/dependency-reality-check/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/diff-risk-review/SKILL.md +136 -0
- package/templates/default/locales/zh/.mustflow/skills/docs-prose-review/SKILL.md +119 -0
- package/templates/default/locales/zh/.mustflow/skills/docs-update/SKILL.md +97 -0
- package/templates/default/locales/zh/.mustflow/skills/external-prompt-injection-defense/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/facade-pattern/SKILL.md +210 -0
- package/templates/default/locales/zh/.mustflow/skills/failure-triage/SKILL.md +96 -0
- package/templates/default/locales/zh/.mustflow/skills/instruction-conflict-scope-check/SKILL.md +118 -0
- package/templates/default/locales/zh/.mustflow/skills/line-ending-hygiene/SKILL.md +111 -0
- package/templates/default/locales/zh/.mustflow/skills/migration-safety-check/SKILL.md +117 -0
- package/templates/default/locales/zh/.mustflow/skills/multi-agent-work-coordination/SKILL.md +260 -0
- package/templates/default/locales/zh/.mustflow/skills/null-object-pattern/SKILL.md +196 -0
- package/templates/default/locales/zh/.mustflow/skills/pattern-scout/SKILL.md +110 -0
- package/templates/default/locales/zh/.mustflow/skills/performance-budget-check/SKILL.md +121 -0
- package/templates/default/locales/zh/.mustflow/skills/project-context-authoring/SKILL.md +107 -0
- package/templates/default/locales/zh/.mustflow/skills/pure-core-imperative-shell/SKILL.md +212 -0
- package/templates/default/locales/zh/.mustflow/skills/readme-authoring/SKILL.md +115 -0
- package/templates/default/locales/zh/.mustflow/skills/repo-improvement-loop/SKILL.md +150 -0
- package/templates/default/locales/zh/.mustflow/skills/repro-first-debug/SKILL.md +112 -0
- package/templates/default/locales/zh/.mustflow/skills/requirement-regression-guard/SKILL.md +152 -0
- package/templates/default/locales/zh/.mustflow/skills/result-option/SKILL.md +186 -0
- package/templates/default/locales/zh/.mustflow/skills/security-privacy-review/SKILL.md +116 -0
- package/templates/default/locales/zh/.mustflow/skills/security-regression-tests/SKILL.md +131 -0
- package/templates/default/locales/zh/.mustflow/skills/skill-authoring/SKILL.md +110 -0
- package/templates/default/locales/zh/.mustflow/skills/source-freshness-check/SKILL.md +111 -0
- package/templates/default/locales/zh/.mustflow/skills/state-machine-pattern/SKILL.md +214 -0
- package/templates/default/locales/zh/.mustflow/skills/strategy-pattern/SKILL.md +215 -0
- package/templates/default/locales/zh/.mustflow/skills/structure-discovery-gate/SKILL.md +159 -0
- package/templates/default/locales/zh/.mustflow/skills/test-maintenance/SKILL.md +122 -0
- package/templates/default/locales/zh/.mustflow/skills/ui-quality-gate/SKILL.md +117 -0
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/SKILL.md +127 -0
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/assets/review-template.html +286 -0
- package/templates/default/locales/zh/.mustflow/skills/visual-review-artifact/resources.toml +7 -0
- package/templates/default/locales/zh/.mustflow/skills/web-asset-optimization/SKILL.md +108 -0
- package/templates/default/locales/zh/AGENTS.md +86 -0
- package/templates/default/manifest.toml +339 -0
|
@@ -0,0 +1,702 @@
|
|
|
1
|
+
export const hiMessages = {
|
|
2
|
+
"cli.error.withUsage": "त्रुटि: {message}\nउपयोग देखने के लिए `{helpCommand}` चलाएँ।",
|
|
3
|
+
"cli.error.prefix": "त्रुटि: {message}",
|
|
4
|
+
"cli.error.unknownCommand": "अज्ञात कमांड: {command}",
|
|
5
|
+
"cli.error.unsupportedLanguage": "असमर्थित CLI भाषा: {language}",
|
|
6
|
+
"cli.error.missingLangValue": "--lang का मान नहीं दिया गया",
|
|
7
|
+
"cli.option.help": "यह सहायता संदेश दिखाएँ",
|
|
8
|
+
"cli.option.json": "मशीन-पठनीय JSON प्रिंट करें",
|
|
9
|
+
"cli.heading.usage": "उपयोग",
|
|
10
|
+
"cli.heading.commands": "कमांड",
|
|
11
|
+
"cli.heading.topics": "विषय",
|
|
12
|
+
"cli.heading.options": "विकल्प",
|
|
13
|
+
"cli.heading.examples": "उदाहरण",
|
|
14
|
+
"cli.heading.exitCodes": "एक्ज़िट कोड",
|
|
15
|
+
"cli.common.invalidInput": "अमान्य इनपुट दिया गया",
|
|
16
|
+
"cli.error.unknownOption": "अज्ञात विकल्प: {option}",
|
|
17
|
+
"cli.error.unexpectedArgument": "अनपेक्षित आर्ग्युमेंट: {argument}",
|
|
18
|
+
"cli.error.unexpectedValue": "{option} के लिए अनपेक्षित मान",
|
|
19
|
+
"cli.error.missingValue": "{option} का मान नहीं दिया गया",
|
|
20
|
+
"value.yes": "हाँ",
|
|
21
|
+
"value.no": "नहीं",
|
|
22
|
+
"value.none": "none",
|
|
23
|
+
"command.init.summary": "डिफ़ॉल्ट mustflow एजेंट वर्कफ़्लो कॉपी करें",
|
|
24
|
+
"command.check.summary": "mustflow फ़ाइलों की जाँच करें",
|
|
25
|
+
"command.classify.summary": "बदली फ़ाइलों और सार्वजनिक सतहों को वर्गीकृत करें",
|
|
26
|
+
"command.contractLint.summary": "कमांड अनुबंध की जाँच करें",
|
|
27
|
+
"command.status.summary": "स्थानीय mustflow इंस्टॉल स्थिति दिखाएँ",
|
|
28
|
+
"command.update.summary": "mustflow वर्कफ़्लो अपडेट का पूर्वावलोकन करें या लागू करें",
|
|
29
|
+
"command.map.summary": "REPO_MAP.md बनाएँ",
|
|
30
|
+
"command.lineEndings.summary": "लाइन-एंडिंग नीति की जाँच और सामान्यीकरण करें",
|
|
31
|
+
"command.run.summary": "कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ",
|
|
32
|
+
"command.context.summary": "मशीन-पठनीय एजेंट संदर्भ प्रिंट करें",
|
|
33
|
+
"command.doctor.summary": "mustflow स्वास्थ्य और अगले कदम जाँचें",
|
|
34
|
+
"command.docs.summary": "दस्तावेज़ review queue entries track करें",
|
|
35
|
+
"command.index.summary": "स्थानीय mustflow SQLite इंडेक्स बनाएँ",
|
|
36
|
+
"command.search.summary": "स्थानीय mustflow SQLite इंडेक्स में खोजें",
|
|
37
|
+
"command.dashboard.summary": "स्थानीय mustflow डैशबोर्ड शुरू करें",
|
|
38
|
+
"command.version.summary": "Package version और npm update status दिखाएँ",
|
|
39
|
+
"command.versionSources.summary": "पहचाने गए संस्करण स्रोत दिखाएँ",
|
|
40
|
+
"command.verify.summary": "किसी reason के लिए required verification चलाएँ",
|
|
41
|
+
"command.explain.summary": "mustflow नीति निर्णय समझाएँ",
|
|
42
|
+
"command.impact.summary": "बदली फ़ाइलों से version impact रिपोर्ट करें",
|
|
43
|
+
"command.help.summary": "इंस्टॉल किए गए वर्कफ़्लो की सहायता दिखाएँ",
|
|
44
|
+
"top.help.option.lang": "CLI आउटपुट भाषा चुनें। समर्थित मान: {languages}",
|
|
45
|
+
"top.help.option.version": "पैकेज संस्करण दिखाएँ",
|
|
46
|
+
"top.help.exit.ok": "कमांड सफलतापूर्वक पूरी हुई",
|
|
47
|
+
"top.help.exit.fail": "सत्यापन समस्याओं या अमान्य इनपुट के कारण कमांड विफल हुई",
|
|
48
|
+
"check.help.summary": "वर्तमान रिपॉज़िटरी में mustflow फ़ाइलों की जाँच करें।",
|
|
49
|
+
"check.help.option.strict": "एजेंट सुरक्षा के लिए अतिरिक्त कठोर जाँच चलाएँ",
|
|
50
|
+
"check.help.exit.ok": "सभी आवश्यक mustflow फ़ाइलें और सेटिंग्स मान्य हैं",
|
|
51
|
+
"check.help.exit.fail": "सत्यापन विफल हुआ या कमांड को अमान्य इनपुट मिला",
|
|
52
|
+
"check.result.passed": "mustflow check पास हुआ",
|
|
53
|
+
"check.result.strictPassed": "mustflow strict check पास हुआ",
|
|
54
|
+
"contractLint.help.summary": ".mustflow/config/commands.toml में command-contract errors और warnings जाँचें.",
|
|
55
|
+
"contractLint.help.exit.ok": "कमांड अनुबंध बिना blocking errors के जाँचा गया",
|
|
56
|
+
"contractLint.help.exit.fail": "कमांड अनुबंध errors मिले या input अमान्य था",
|
|
57
|
+
"contractLint.title": "mustflow contract-lint",
|
|
58
|
+
"contractLint.label.status": "स्थिति",
|
|
59
|
+
"contractLint.label.totalIntents": "कुल intents",
|
|
60
|
+
"contractLint.label.configured": "Configured",
|
|
61
|
+
"contractLint.label.runnable": "चलने योग्य",
|
|
62
|
+
"contractLint.label.manualOnly": "Manual only",
|
|
63
|
+
"contractLint.label.unknown": "Unknown",
|
|
64
|
+
"contractLint.label.errors": "Errors",
|
|
65
|
+
"contractLint.label.warnings": "Warnings",
|
|
66
|
+
"contractLint.label.sourceFiles": "Source files",
|
|
67
|
+
"contractLint.label.issues": "Issues",
|
|
68
|
+
"context.help.summary": "वर्तमान mustflow रूट के लिए एजेंट संदर्भ प्रिंट करें।",
|
|
69
|
+
"context.help.option.json": "मशीन-पठनीय संदर्भ JSON प्रिंट करें",
|
|
70
|
+
"context.help.option.cacheProfile": "prompt cache profile प्रिंट करें: stable, task, volatile, या all",
|
|
71
|
+
"context.help.exit.ok": "संदर्भ जाँचा और प्रिंट किया गया",
|
|
72
|
+
"context.title": "mustflow संदर्भ",
|
|
73
|
+
"label.installed": "इंस्टॉल किया गया",
|
|
74
|
+
"label.mustflowRoot": "mustflow रूट",
|
|
75
|
+
"label.commandContract": "कमांड विनिर्देश",
|
|
76
|
+
"label.runnableIntents": "चलाने योग्य कमांड",
|
|
77
|
+
"label.latestRun": "नवीनतम रन",
|
|
78
|
+
"label.manifestLock": "मैनिफ़ेस्ट लॉक",
|
|
79
|
+
"label.trackedFiles": "ट्रैक की गई फ़ाइलें",
|
|
80
|
+
"label.changedFiles": "बदली हुई फ़ाइलें",
|
|
81
|
+
"label.missingFiles": "गुम फ़ाइलें",
|
|
82
|
+
"label.database": "डेटाबेस",
|
|
83
|
+
"label.documents": "दस्तावेज़",
|
|
84
|
+
"label.skills": "स्किल",
|
|
85
|
+
"label.commandIntents": "कमांड परिभाषाएँ",
|
|
86
|
+
"label.wroteFiles": "लिखी गई फ़ाइलें",
|
|
87
|
+
"label.query": "क्वेरी",
|
|
88
|
+
"label.scope": "दायरा",
|
|
89
|
+
"label.results": "परिणाम",
|
|
90
|
+
"label.comment": "टिप्पणी",
|
|
91
|
+
"label.mode": "मोड",
|
|
92
|
+
"dashboard.help.summary": "सुरक्षित mustflow preferences और दस्तावेज़ समीक्षा के लिए स्थानीय डैशबोर्ड शुरू करें।",
|
|
93
|
+
"dashboard.help.option.host": "डैशबोर्ड को स्थानीय host से बाँधें। डिफ़ॉल्ट: 127.0.0.1",
|
|
94
|
+
"dashboard.help.option.port": "डैशबोर्ड को port से बाँधें। डिफ़ॉल्ट: 0 उपलब्ध port चुनता है",
|
|
95
|
+
"dashboard.help.option.open": "Server शुरू होने के बाद dashboard को default browser में खोलें",
|
|
96
|
+
"dashboard.help.option.noOpen": "Browser बंद रखें। यह default व्यवहार है",
|
|
97
|
+
"dashboard.help.exit.ok": "डैशबोर्ड शुरू हुआ या सहायता प्रिंट हुई",
|
|
98
|
+
"dashboard.help.exit.fail": "डैशबोर्ड शुरू नहीं हो सका या इनपुट अमान्य था",
|
|
99
|
+
"dashboard.error.invalidPort": "अमान्य डैशबोर्ड port: {port}",
|
|
100
|
+
"dashboard.error.nonLocalHost": "डैशबोर्ड host {host} अस्वीकार किया गया। localhost, 127.0.0.1 या ::1 उपयोग करें।",
|
|
101
|
+
"dashboard.listening": "mf dashboard {url} पर सुन रहा है",
|
|
102
|
+
"dashboard.ui.title": "mustflow डैशबोर्ड",
|
|
103
|
+
"dashboard.ui.language": "भाषा",
|
|
104
|
+
"dashboard.ui.noChanges": "कोई बदलाव नहीं",
|
|
105
|
+
"dashboard.ui.unsavedChanges": "बिना सहेजे बदलाव",
|
|
106
|
+
"dashboard.ui.reloaded": "फिर से लोड हुआ",
|
|
107
|
+
"dashboard.ui.saved": "सहेजा गया",
|
|
108
|
+
"dashboard.ui.reload": "फिर से लोड करें",
|
|
109
|
+
"dashboard.ui.save": "सहेजें",
|
|
110
|
+
"dashboard.ui.locked": "लॉक है",
|
|
111
|
+
"dashboard.ui.customLocale": "कस्टम भाषा टैग",
|
|
112
|
+
"dashboard.ui.openMustflow": ".mustflow फ़ोल्डर खोलें",
|
|
113
|
+
"dashboard.ui.openedMustflow": ".mustflow फ़ोल्डर खोला गया",
|
|
114
|
+
"dashboard.tab.status": "स्थिति",
|
|
115
|
+
"dashboard.tab.verification": "सत्यापन सुझाव",
|
|
116
|
+
"dashboard.tab.commands": "कमांड",
|
|
117
|
+
"dashboard.tab.release": "रिलीज़",
|
|
118
|
+
"dashboard.tab.update": "अपडेट",
|
|
119
|
+
"dashboard.tab.runs": "रन इतिहास",
|
|
120
|
+
"dashboard.tab.skills": "स्किल",
|
|
121
|
+
"dashboard.tab.settings": "सेटिंग्स",
|
|
122
|
+
"dashboard.tab.documents": "दस्तावेज़ समीक्षा",
|
|
123
|
+
"dashboard.status.reloaded": "स्थिति फिर से लोड हुई",
|
|
124
|
+
"dashboard.status.overview": "सारांश",
|
|
125
|
+
"dashboard.status.installed": "स्थापित",
|
|
126
|
+
"dashboard.status.manifestLock": "Manifest lock",
|
|
127
|
+
"dashboard.status.template": "Template",
|
|
128
|
+
"dashboard.status.trackedFiles": "Tracked files",
|
|
129
|
+
"dashboard.status.changedFiles": "Changed files",
|
|
130
|
+
"dashboard.status.missingFiles": "Missing files",
|
|
131
|
+
"dashboard.status.runnableIntents": "चलाने योग्य कमांड",
|
|
132
|
+
"dashboard.status.activeReviewDocuments": "Review वाले दस्तावेज़",
|
|
133
|
+
"dashboard.status.latestRun": "Latest run",
|
|
134
|
+
"dashboard.status.latestRunMissing": "Run receipt नहीं है",
|
|
135
|
+
"dashboard.status.latestRunInvalid": "Run receipt अमान्य है",
|
|
136
|
+
"dashboard.status.issues": "समस्याएँ",
|
|
137
|
+
"dashboard.status.noIssues": "कोई समस्या नहीं",
|
|
138
|
+
"dashboard.status.changedFile": "Changed",
|
|
139
|
+
"dashboard.status.missingFile": "Missing",
|
|
140
|
+
"dashboard.status.yes": "हाँ",
|
|
141
|
+
"dashboard.status.no": "नहीं",
|
|
142
|
+
"dashboard.verification.reloaded": "सत्यापन सुझाव फिर से लोड हुए",
|
|
143
|
+
"dashboard.verification.recommendations": "सुझाव",
|
|
144
|
+
"dashboard.verification.empty": "बदली हुई फाइलें नहीं मिलीं।",
|
|
145
|
+
"dashboard.verification.none": "कोई सत्यापन सुझाव नहीं मिला।",
|
|
146
|
+
"dashboard.verification.skipped": "छोड़ा गया",
|
|
147
|
+
"dashboard.verification.schedule": "सुझाया क्रम",
|
|
148
|
+
"dashboard.verification.copyPlan": "Plan कॉपी करें",
|
|
149
|
+
"dashboard.verification.planCopied": "Plan कॉपी हुआ",
|
|
150
|
+
"dashboard.verification.batch": "Batch",
|
|
151
|
+
"dashboard.verification.locks": "Locks",
|
|
152
|
+
"dashboard.verification.effects": "Effects",
|
|
153
|
+
"dashboard.verification.conflicts": "Conflicts",
|
|
154
|
+
"dashboard.verification.noLocks": "Resource locks नहीं हैं",
|
|
155
|
+
"dashboard.verification.files": "फाइलें",
|
|
156
|
+
"dashboard.verification.copy": "कॉपी",
|
|
157
|
+
"dashboard.verification.copied": "कमांड कॉपी हुआ",
|
|
158
|
+
"dashboard.verification.unavailable": "कमांड उपलब्ध नहीं",
|
|
159
|
+
"dashboard.verification.reason.mustflow": "mustflow workflow, config या installed template फाइलें बदली हैं।",
|
|
160
|
+
"dashboard.verification.reason.docs": "दस्तावेज बदले हैं।",
|
|
161
|
+
"dashboard.verification.reason.code": "source, script या test फाइलें बदली हैं।",
|
|
162
|
+
"dashboard.verification.reason.release": "package, schema, template या version-sensitive फाइलें बदली हैं।",
|
|
163
|
+
"dashboard.verification.reason.fallback": "बदली हुई फाइलें मिलीं, लेकिन कोई संकरी rule match नहीं हुई।",
|
|
164
|
+
"dashboard.verification.skip.fullCovered": "पूरे test suite से पहले related verification चलाना बेहतर है।",
|
|
165
|
+
"dashboard.verification.skip.notRunnable": "इस repository में related command चलाने योग्य नहीं है।",
|
|
166
|
+
"dashboard.commands.reloaded": "कमांड फिर से लोड हुए",
|
|
167
|
+
"dashboard.commands.heading": "कमांड इंटेंट",
|
|
168
|
+
"dashboard.commands.empty": "कोई कमांड इंटेंट नहीं मिला.",
|
|
169
|
+
"dashboard.commands.runnable": "चलाने योग्य",
|
|
170
|
+
"dashboard.commands.manualOnly": "उपयोगकर्ता अनुरोध आवश्यक",
|
|
171
|
+
"dashboard.commands.unavailable": "कॉन्फ़िगर नहीं",
|
|
172
|
+
"dashboard.commands.blocked": "अवरुद्ध",
|
|
173
|
+
"dashboard.commands.status": "स्थिति",
|
|
174
|
+
"dashboard.commands.lifecycle": "जीवनचक्र",
|
|
175
|
+
"dashboard.commands.runPolicy": "चलाने की नीति",
|
|
176
|
+
"dashboard.commands.stdin": "stdin",
|
|
177
|
+
"dashboard.commands.timeout": "समय सीमा",
|
|
178
|
+
"dashboard.commands.cwd": "कार्य फ़ोल्डर",
|
|
179
|
+
"dashboard.commands.writes": "लिखे जाने वाले पथ",
|
|
180
|
+
"dashboard.commands.reason": "कारण",
|
|
181
|
+
"dashboard.commands.agentAction": "एजेंट कार्रवाई",
|
|
182
|
+
"dashboard.release.reloaded": "रिलीज़ स्थिति फिर से लोड हुई",
|
|
183
|
+
"dashboard.release.copied": "कमांड कॉपी हुआ",
|
|
184
|
+
"dashboard.release.overview": "सारांश",
|
|
185
|
+
"dashboard.release.packageVersion": "mustflow संस्करण",
|
|
186
|
+
"dashboard.release.templateVersion": "टेम्पलेट संस्करण",
|
|
187
|
+
"dashboard.release.autoBump": "स्वचालित संस्करण बढ़ाना",
|
|
188
|
+
"dashboard.release.requireConfirmation": "पुष्टि आवश्यक",
|
|
189
|
+
"dashboard.release.changedFiles": "रिलीज़-संवेदनशील फाइलें",
|
|
190
|
+
"dashboard.release.versionSources": "संस्करण स्रोत",
|
|
191
|
+
"dashboard.release.noVersionSources": "कोई संस्करण स्रोत नहीं मिला।",
|
|
192
|
+
"dashboard.release.noChangedFiles": "कोई रिलीज़-संवेदनशील फाइल नहीं बदली।",
|
|
193
|
+
"dashboard.release.declared": "घोषित",
|
|
194
|
+
"dashboard.release.authority": "अधिकार",
|
|
195
|
+
"dashboard.release.commands": "कमांड",
|
|
196
|
+
"dashboard.release.reason.versionCheck": "npm में नया mustflow पैकेज संस्करण है या नहीं, यह जांचता है।",
|
|
197
|
+
"dashboard.release.reason.testRelease": "पैकेज metadata और packaging tests चलाता है।",
|
|
198
|
+
"dashboard.release.reason.docsValidate": "पूरा docs build, search index और sitemap gate चलाता है।",
|
|
199
|
+
"dashboard.update.reloaded": "अपडेट स्थिति फिर से लोड हुई",
|
|
200
|
+
"dashboard.update.copied": "कमांड कॉपी हुआ",
|
|
201
|
+
"dashboard.update.overview": "सारांश",
|
|
202
|
+
"dashboard.update.dryRun": "योजना उपलब्ध",
|
|
203
|
+
"dashboard.update.applyReady": "लागू करने योग्य",
|
|
204
|
+
"dashboard.update.wouldUpdate": "अपडेट होंगे",
|
|
205
|
+
"dashboard.update.wouldCreate": "बनेंगे",
|
|
206
|
+
"dashboard.update.blockedLocalChanges": "स्थानीय बदलाव रोक रहे हैं",
|
|
207
|
+
"dashboard.update.manualReview": "मानवीय समीक्षा",
|
|
208
|
+
"dashboard.update.unchanged": "अपरिवर्तित",
|
|
209
|
+
"dashboard.update.error": "अपडेट योजना त्रुटि",
|
|
210
|
+
"dashboard.update.commands": "कमांड",
|
|
211
|
+
"dashboard.update.command.dryRun": "योजना देखें",
|
|
212
|
+
"dashboard.update.command.apply": "लागू करें",
|
|
213
|
+
"dashboard.update.reason.dryRun": "फाइल लिखे बिना टेम्पलेट अपडेट योजना दिखाता है।",
|
|
214
|
+
"dashboard.update.reason.apply": "कोई रोक न हो तो सुरक्षित टेम्पलेट अपडेट लागू करता है।",
|
|
215
|
+
"dashboard.update.blocked": "अवरुद्ध",
|
|
216
|
+
"dashboard.update.blockers": "रोकने वाली चीजें",
|
|
217
|
+
"dashboard.update.noBlockers": "कोई अपडेट रोक नहीं है।",
|
|
218
|
+
"dashboard.update.changes": "टेम्पलेट बदलाव",
|
|
219
|
+
"dashboard.update.noChanges": "कोई टेम्पलेट बदलाव लागू नहीं होगा।",
|
|
220
|
+
"dashboard.update.source": "स्रोत",
|
|
221
|
+
"dashboard.update.reason": "कारण",
|
|
222
|
+
"dashboard.update.action.create": "बनाएँ",
|
|
223
|
+
"dashboard.update.action.update": "अपडेट",
|
|
224
|
+
"dashboard.update.action.blocked-local-change": "स्थानीय बदलाव",
|
|
225
|
+
"dashboard.update.action.manual-review": "मानवीय समीक्षा",
|
|
226
|
+
"dashboard.runs.reloaded": "रन इतिहास फिर से लोड हुआ",
|
|
227
|
+
"dashboard.runs.heading": "नवीनतम रन",
|
|
228
|
+
"dashboard.runs.empty": "कोई run receipt नहीं मिला।",
|
|
229
|
+
"dashboard.runs.invalid": "Run receipt अमान्य है",
|
|
230
|
+
"dashboard.runs.intent": "इंटेंट",
|
|
231
|
+
"dashboard.runs.status": "स्थिति",
|
|
232
|
+
"dashboard.runs.exitCode": "Exit code",
|
|
233
|
+
"dashboard.runs.timedOut": "समय सीमा पार",
|
|
234
|
+
"dashboard.runs.startedAt": "शुरू",
|
|
235
|
+
"dashboard.runs.finishedAt": "समाप्त",
|
|
236
|
+
"dashboard.runs.duration": "अवधि",
|
|
237
|
+
"dashboard.runs.cwd": "कार्य फ़ोल्डर",
|
|
238
|
+
"dashboard.runs.mode": "मोड",
|
|
239
|
+
"dashboard.runs.timeout": "समय सीमा",
|
|
240
|
+
"dashboard.runs.receiptPath": "Receipt path",
|
|
241
|
+
"dashboard.runs.lifecycle": "जीवनचक्र",
|
|
242
|
+
"dashboard.runs.runPolicy": "चलाने की नीति",
|
|
243
|
+
"dashboard.runs.successExitCodes": "सफल exit codes",
|
|
244
|
+
"dashboard.runs.signal": "signal",
|
|
245
|
+
"dashboard.runs.killMethod": "kill method",
|
|
246
|
+
"dashboard.runs.error": "त्रुटि",
|
|
247
|
+
"dashboard.runs.stdout": "stdout",
|
|
248
|
+
"dashboard.runs.stderr": "stderr",
|
|
249
|
+
"dashboard.runs.bytes": "bytes",
|
|
250
|
+
"dashboard.runs.truncated": "truncated",
|
|
251
|
+
"dashboard.runs.emptyOutput": "कोई output दर्ज नहीं है।",
|
|
252
|
+
"dashboard.skills.reloaded": "स्किल फिर से लोड हुए",
|
|
253
|
+
"dashboard.skills.heading": "स्किल routes",
|
|
254
|
+
"dashboard.skills.indexPath": "स्किल index",
|
|
255
|
+
"dashboard.skills.routes": "Routes",
|
|
256
|
+
"dashboard.skills.empty": "कोई स्किल route नहीं मिला।",
|
|
257
|
+
"dashboard.skills.aligned": "मेल खाता है",
|
|
258
|
+
"dashboard.skills.mismatch": "Command intents मेल नहीं खाते",
|
|
259
|
+
"dashboard.skills.missing": "फाइल गायब है",
|
|
260
|
+
"dashboard.skills.path": "path",
|
|
261
|
+
"dashboard.skills.requiredInput": "required input",
|
|
262
|
+
"dashboard.skills.editScope": "edit scope",
|
|
263
|
+
"dashboard.skills.risk": "risk",
|
|
264
|
+
"dashboard.skills.verificationIntents": "verification intents",
|
|
265
|
+
"dashboard.skills.declaredCommandIntents": "declared intents",
|
|
266
|
+
"dashboard.skills.expectedOutput": "expected output",
|
|
267
|
+
"dashboard.docs.reloaded": "दस्तावेज़ समीक्षा सूची फिर से लोड हुई",
|
|
268
|
+
"dashboard.docs.updated": "दस्तावेज़ समीक्षा अपडेट हुई",
|
|
269
|
+
"dashboard.docs.empty": "समीक्षा के लिए कोई दस्तावेज़ नहीं है।",
|
|
270
|
+
"dashboard.docs.noSearchMatches": "मेल खाते दस्तावेज़ नहीं मिले।",
|
|
271
|
+
"dashboard.docs.missingReviewerId": "Reviewer ID दर्ज करें।",
|
|
272
|
+
"dashboard.docs.statusFilter": "स्थिति",
|
|
273
|
+
"dashboard.docs.pathFilter": "फाइल नाम",
|
|
274
|
+
"dashboard.docs.pathFilterPlaceholder": "path या file name",
|
|
275
|
+
"dashboard.docs.reviewFields": "समीक्षा रिकॉर्ड",
|
|
276
|
+
"dashboard.docs.reviewerKind": "Reviewer प्रकार",
|
|
277
|
+
"dashboard.docs.reviewerId": "Reviewer ID",
|
|
278
|
+
"dashboard.docs.reviewerIdPlaceholder": "व्यक्ति, LLM या tool-id",
|
|
279
|
+
"dashboard.docs.summary": "समीक्षा सारांश",
|
|
280
|
+
"dashboard.docs.summaryPlaceholder": "वैकल्पिक",
|
|
281
|
+
"dashboard.docs.comment": "टिप्पणी",
|
|
282
|
+
"dashboard.docs.filter.active": "सक्रिय",
|
|
283
|
+
"dashboard.docs.filter.pending": "लंबित",
|
|
284
|
+
"dashboard.docs.filter.in_review": "समीक्षा में",
|
|
285
|
+
"dashboard.docs.filter.changes_made": "बदला गया",
|
|
286
|
+
"dashboard.docs.filter.needs_human": "समीक्षा आवश्यक",
|
|
287
|
+
"dashboard.docs.filter.approved": "स्वीकृत",
|
|
288
|
+
"dashboard.docs.filter.ignored": "अनदेखा",
|
|
289
|
+
"dashboard.docs.filter.all": "सभी",
|
|
290
|
+
"dashboard.docs.reviewerKind.human": "मानव",
|
|
291
|
+
"dashboard.docs.reviewerKind.llm": "LLM",
|
|
292
|
+
"dashboard.docs.reviewerKind.tool": "टूल",
|
|
293
|
+
"dashboard.docs.reviewerKind.external": "बाहरी",
|
|
294
|
+
"dashboard.docs.status.pending": "लंबित",
|
|
295
|
+
"dashboard.docs.status.in_review": "समीक्षा में",
|
|
296
|
+
"dashboard.docs.status.changes_made": "बदला गया",
|
|
297
|
+
"dashboard.docs.status.approved": "स्वीकृत",
|
|
298
|
+
"dashboard.docs.status.needs_human": "समीक्षा आवश्यक",
|
|
299
|
+
"dashboard.docs.status.ignored": "अनदेखा",
|
|
300
|
+
"dashboard.docs.action.approve": "स्वीकृत करें",
|
|
301
|
+
"dashboard.docs.action.approve.tooltip": "चुने गए समीक्षक के साथ इस दस्तावेज को स्वीकृत करें और default सूची से छिपाएं।",
|
|
302
|
+
"dashboard.docs.action.needsHuman": "समीक्षा आवश्यक",
|
|
303
|
+
"dashboard.docs.action.needsReview": "समीक्षा आवश्यक",
|
|
304
|
+
"dashboard.docs.action.needsReview.tooltip": "इस दस्तावेज को व्यक्ति, LLM, tool या बाहरी प्रक्रिया से फिर समीक्षा के लिए चिह्नित करें।",
|
|
305
|
+
"dashboard.docs.action.ignore": "अनदेखा करें",
|
|
306
|
+
"dashboard.docs.action.ignore.tooltip": "इस दस्तावेज की समीक्षा छोड़ें और default सूची से छिपाएं।",
|
|
307
|
+
"dashboard.locked.git.auto_push": "Remote push के लिए स्पष्ट अनुरोध आवश्यक है।",
|
|
308
|
+
"dashboard.group.git": "Git",
|
|
309
|
+
"dashboard.group.commitMessage": "Commit संदेश",
|
|
310
|
+
"dashboard.group.reporting": "रिपोर्टिंग",
|
|
311
|
+
"dashboard.group.verification": "सत्यापन",
|
|
312
|
+
"dashboard.group.testAuthoring": "Test authoring",
|
|
313
|
+
"dashboard.group.codeStyle": "कोड शैली",
|
|
314
|
+
"dashboard.group.refactoring": "Refactoring",
|
|
315
|
+
"dashboard.group.versioning": "वर्जनिंग",
|
|
316
|
+
"dashboard.setting.git.auto_stage": "अनुरोध पर stage",
|
|
317
|
+
"dashboard.setting.git.auto_stage.description": "उपयोगकर्ता Git कार्य मांगे तो stage करने की अनुमति देता है।",
|
|
318
|
+
"dashboard.setting.git.auto_commit": "अनुरोध पर commit",
|
|
319
|
+
"dashboard.setting.git.auto_commit.description": "उपयोगकर्ता स्पष्ट रूप से commit मांगे तो commit बनाने की अनुमति देता है।",
|
|
320
|
+
"dashboard.setting.git.auto_push": "अनुरोध पर push",
|
|
321
|
+
"dashboard.setting.git.commit_message.style": "Commit संदेश शैली",
|
|
322
|
+
"dashboard.setting.git.commit_message.style.description.conventional": "feat: या fix: जैसे type prefix इस्तेमाल करें।",
|
|
323
|
+
"dashboard.setting.git.commit_message.style.description.descriptive": "ज़रूरी type prefix के बिना छोटा natural-language सार लिखें।",
|
|
324
|
+
"dashboard.setting.git.commit_message.style.description.gitmoji": "शुरू में Gitmoji emoji लगाएँ और feat: या fix: जैसा type prefix भी रखें।",
|
|
325
|
+
"dashboard.setting.git.commit_message.language": "Commit संदेश भाषा",
|
|
326
|
+
"dashboard.setting.git.commit_message.language.description.preserve_existing": "repository के मौजूदा commit message language का पालन करें।",
|
|
327
|
+
"dashboard.setting.git.commit_message.language.description.agent_response": "agent response वाली भाषा ही इस्तेमाल करें।",
|
|
328
|
+
"dashboard.setting.git.commit_message.language.description.docs": "project documents वाली भाषा इस्तेमाल करें।",
|
|
329
|
+
"dashboard.setting.git.commit_message.language.description.en": "English में commit messages सुझाएँ।",
|
|
330
|
+
"dashboard.setting.git.commit_message.language.description.ko": "Korean में commit messages सुझाएँ।",
|
|
331
|
+
"dashboard.setting.git.commit_message.language.description.zh": "Chinese में commit messages सुझाएँ।",
|
|
332
|
+
"dashboard.setting.git.commit_message.language.description.es": "Spanish में commit messages सुझाएँ।",
|
|
333
|
+
"dashboard.setting.git.commit_message.language.description.fr": "French में commit messages सुझाएँ।",
|
|
334
|
+
"dashboard.setting.git.commit_message.language.description.hi": "Hindi में commit messages सुझाएँ।",
|
|
335
|
+
"dashboard.setting.git.commit_message.language.description": "commit message सुझावों के लिए चुना गया custom language tag इस्तेमाल करें।",
|
|
336
|
+
"dashboard.setting.git.commit_message.max_suggestions": "Commit संदेश सुझाव संख्या",
|
|
337
|
+
"dashboard.setting.git.commit_message.include_body": "Commit body",
|
|
338
|
+
"dashboard.setting.git.commit_message.include_body.description.never": "commit message body कभी न जोड़ें; केवल subject line सुझाएँ।",
|
|
339
|
+
"dashboard.setting.git.commit_message.include_body.description.when_non_trivial": "body तभी जोड़ें जब बदलाव को subject line से अधिक संदर्भ चाहिए।",
|
|
340
|
+
"dashboard.setting.git.commit_message.include_body.description.always": "commit message सुझावों में हमेशा body जोड़ें।",
|
|
341
|
+
"dashboard.setting.git.commit_message.split_when_multiple_concerns": "अलग commits सुझाएँ",
|
|
342
|
+
"dashboard.setting.git.commit_message.avoid_sensitive_details": "संवेदनशील विवरण से बचें",
|
|
343
|
+
"dashboard.setting.git.commit_message.avoid_sensitive_details.description": "secrets, credentials, personal data और private incident details से बचें।",
|
|
344
|
+
"dashboard.setting.reporting.commit_suggestion.enabled": "Commit संदेश सुझाव",
|
|
345
|
+
"dashboard.setting.verification.selection.strategy": "सत्यापन रणनीति",
|
|
346
|
+
"dashboard.setting.verification.selection.strategy.description.risk_based": "बदलाव के जोखिम के अनुसार सत्यापन का दायरा तय करें।",
|
|
347
|
+
"dashboard.setting.verification.selection.strategy.description.targeted": "बदले हुए हिस्से से जुड़ी checks को प्राथमिकता दें।",
|
|
348
|
+
"dashboard.setting.verification.selection.strategy.description.full": "configured पूरे verification set को प्राथमिकता दें।",
|
|
349
|
+
"dashboard.setting.verification.selection.prefer_related_tests": "संबंधित tests को प्राथमिकता दें",
|
|
350
|
+
"dashboard.setting.verification.selection.skip_docs_only_full_test": "केवल docs बदलाव पर full test छोड़ें",
|
|
351
|
+
"dashboard.setting.verification.selection.skip_low_risk_code_full_test": "कम जोखिम वाले code बदलाव पर full test छोड़ें",
|
|
352
|
+
"dashboard.setting.verification.selection.skip_low_risk_code_full_test.description": "जब code बदलाव public behavior, config, schemas, security या migrations को प्रभावित नहीं करता, तब केवल full suite छोड़ें।",
|
|
353
|
+
"dashboard.setting.verification.selection.skip_translation_only_full_test": "केवल translation बदलाव पर full test छोड़ें",
|
|
354
|
+
"dashboard.setting.verification.selection.skip_copy_only_full_test": "केवल copy बदलाव पर full test छोड़ें",
|
|
355
|
+
"dashboard.setting.verification.selection.report_skipped": "छोड़े गए सत्यापन रिपोर्ट करें",
|
|
356
|
+
"dashboard.setting.testing.authoring.new_test_policy": "नए test की नीति",
|
|
357
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.evidence_required": "नए tests तभी जोड़ें जब behavior contract की evidence हो।",
|
|
358
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.manual_approval": "यदि user ने सीधे tests नहीं माँगे हैं, तो नए tests जोड़ने से पहले पूछें।",
|
|
359
|
+
"dashboard.setting.testing.authoring.new_test_policy.description.broad": "महत्वपूर्ण behavior साफ करने पर proactive नए tests की अनुमति दें।",
|
|
360
|
+
"dashboard.setting.testing.authoring.prefer_existing_tests": "मौजूदा tests को प्राथमिकता दें",
|
|
361
|
+
"dashboard.setting.testing.authoring.prefer_existing_tests.description": "नए test files या cases बनाने से पहले पास के existing tests update करें।",
|
|
362
|
+
"dashboard.setting.testing.authoring.require_new_test_rationale": "नए test का कारण माँगें",
|
|
363
|
+
"dashboard.setting.testing.authoring.require_new_test_rationale.description": "tests जोड़ने पर हर नए test की जरूरत final report में बताएँ।",
|
|
364
|
+
"dashboard.setting.code_style.avoid_drive_by_refactors": "असंबंधित refactor से बचें",
|
|
365
|
+
"dashboard.setting.refactoring.hotspots.large_file_candidate_kb": "बड़ी file candidate threshold",
|
|
366
|
+
"dashboard.setting.refactoring.hotspots.large_file_candidate_kb.description": "इस KB size या उससे बड़ी source files को review candidates मानें, confirmed refactor targets नहीं।",
|
|
367
|
+
"dashboard.setting.refactoring.hotspots.history_days": "Hotspot history window",
|
|
368
|
+
"dashboard.setting.refactoring.hotspots.history_days.description": "Change frequency और bug-fix history देखते समय इतने recent days का उपयोग करें।",
|
|
369
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit": "Primary candidate limit",
|
|
370
|
+
"dashboard.setting.refactoring.hotspots.primary_candidate_limit.description": "Files खोलने से पहले first-pass candidates को अधिकतम इतनी संख्या तक रखें।",
|
|
371
|
+
"dashboard.setting.refactoring.hotspots.structure_candidate_limit": "Structure review limit",
|
|
372
|
+
"dashboard.setting.refactoring.hotspots.structure_candidate_limit.description": "Imports, exports, declarations और TODO आसपास देखने के लिए अधिकतम इतनी candidates रखें।",
|
|
373
|
+
"dashboard.setting.refactoring.hotspots.full_file_candidate_limit": "Full-file review limit",
|
|
374
|
+
"dashboard.setting.refactoring.hotspots.full_file_candidate_limit.description": "एक refactoring scan में अधिकतम इतनी candidate files का पूरा content पढ़ें।",
|
|
375
|
+
"dashboard.setting.release.versioning.impact_check": "Version प्रभाव जाँच",
|
|
376
|
+
"dashboard.setting.release.versioning.impact_check.description": "जाँचें कि बदलाव package या template version को प्रभावित करता है या नहीं।",
|
|
377
|
+
"dashboard.setting.release.versioning.suggest_bump": "Version bump सुझाएँ",
|
|
378
|
+
"dashboard.setting.release.versioning.suggest_bump.description": "जब version बदलना ज़रूरी लगे, तो bump level सुझाएँ।",
|
|
379
|
+
"dashboard.setting.release.versioning.auto_bump": "Versions अपने आप बढ़ाएँ",
|
|
380
|
+
"dashboard.setting.release.versioning.auto_bump.description": "अलग manual step के बिना version files सीधे बदलने दें।",
|
|
381
|
+
"dashboard.setting.release.versioning.require_user_confirmation": "Version पुष्टि आवश्यक",
|
|
382
|
+
"dashboard.setting.release.versioning.require_user_confirmation.description": "version बदलाव लागू या स्वीकार करने से पहले पुष्टि माँगें।",
|
|
383
|
+
"dashboard.setting.release.versioning.sync_template_version": "Template version sync करें",
|
|
384
|
+
"dashboard.setting.release.versioning.sync_template_version.description": "package version और template manifest version को साथ रखें।",
|
|
385
|
+
"dashboard.setting.release.versioning.sync_docs_examples": "Docs examples sync करें",
|
|
386
|
+
"dashboard.setting.release.versioning.sync_docs_examples.description": "documentation examples को चुने गए version से मिलाकर रखें।",
|
|
387
|
+
"dashboard.setting.release.versioning.sync_tests": "Tests sync करें",
|
|
388
|
+
"dashboard.setting.release.versioning.sync_tests.description": "version-sensitive tests और fixtures को साथ रखें।",
|
|
389
|
+
"doctor.help.summary": "फ़ाइलों को बदले बिना mustflow रूट स्वास्थ्य जाँचें और अगले कदमों के संकेत पाएँ।",
|
|
390
|
+
"doctor.help.option.json": "मशीन-पठनीय diagnostic JSON प्रिंट करें",
|
|
391
|
+
"doctor.help.option.strict": "एजेंट सुरक्षा के लिए अतिरिक्त कठोर जाँच शामिल करें",
|
|
392
|
+
"doctor.help.exit.ok": "mustflow स्थिति जाँची गई और कोई समस्या नहीं मिली",
|
|
393
|
+
"doctor.help.exit.fail": "सत्यापन समस्याएँ मिलीं या इनपुट अमान्य था",
|
|
394
|
+
"doctor.title": "mustflow doctor",
|
|
395
|
+
"doctor.label.strict": "कठोर",
|
|
396
|
+
"doctor.label.check": "जाँच",
|
|
397
|
+
"doctor.label.issues": "समस्याएँ",
|
|
398
|
+
"doctor.section.health": "स्वास्थ्य:",
|
|
399
|
+
"doctor.section.issueList": "समस्या सूची:",
|
|
400
|
+
"doctor.section.suggestedCommands": "सुझाई गई कमांड:",
|
|
401
|
+
"doctor.actionLabel": "चलाएँ",
|
|
402
|
+
"doctor.diagnostic.install": "इंस्टॉल",
|
|
403
|
+
"doctor.diagnostic.validation": "सत्यापन",
|
|
404
|
+
"doctor.diagnostic.skillRoutes": "स्किल रूट",
|
|
405
|
+
"doctor.diagnostic.commands": "कमांड विनिर्देश",
|
|
406
|
+
"doctor.diagnostic.readOrder": "पढ़ने का क्रम",
|
|
407
|
+
"doctor.diagnostic.optionalReadOrder": "वैकल्पिक पढ़ने का क्रम",
|
|
408
|
+
"doctor.diagnostic.repoMap": "REPO_MAP.md",
|
|
409
|
+
"doctor.diagnostic.localIndex": "स्थानीय इंडेक्स",
|
|
410
|
+
"doctor.diagnostic.latestRun": "नवीनतम रन",
|
|
411
|
+
"docs.help.summary": "LLM creation या modification के बाद prose review की जरूरत वाले documents track करें.",
|
|
412
|
+
"docs.help.option.all": "Approved और ignored documents भी शामिल करें",
|
|
413
|
+
"docs.help.option.status": "Review status से filter करें",
|
|
414
|
+
"docs.help.option.reason": "Document को review क्यों चाहिए यह record करें",
|
|
415
|
+
"docs.help.option.origin": "Review need का source record करें, जैसे llm_modified",
|
|
416
|
+
"docs.help.option.actorKind": "Document किसने बदला record करें: human, llm, tool, या external",
|
|
417
|
+
"docs.help.option.actorId": "Free-form actor identifier record करें",
|
|
418
|
+
"docs.help.option.comment": "Selected document के लिए review guidance record करें",
|
|
419
|
+
"docs.help.option.commentFile": "UTF-8 text file से review guidance import करें, फिर successful update के बाद उस source file को delete करें",
|
|
420
|
+
"docs.help.option.reviewerKind": "Reviewer kind record करें: human, llm, tool, या external",
|
|
421
|
+
"docs.help.option.reviewerId": "Free-form reviewer identifier record करें",
|
|
422
|
+
"docs.help.option.summary": "छोटा review summary record करें",
|
|
423
|
+
"docs.help.exit.ok": "Documentation review queue inspect या update हुई",
|
|
424
|
+
"docs.help.exit.fail": "Input invalid था या queue update नहीं हो सकी",
|
|
425
|
+
"docs.review.title": "mustflow documentation review queue",
|
|
426
|
+
"docs.review.empty": "Review की जरूरत वाले documents नहीं हैं.",
|
|
427
|
+
"docs.review.wrote": "लिखा",
|
|
428
|
+
"docs.review.added": "जोड़ा",
|
|
429
|
+
"docs.review.commented": "टिप्पणी जोड़ी गई",
|
|
430
|
+
"docs.review.marked.approved": "Approved",
|
|
431
|
+
"docs.review.marked.needs_human": "needs_human mark किया",
|
|
432
|
+
"docs.review.marked.ignored": "Ignored",
|
|
433
|
+
"docs.error.missingTopic": "docs topic missing है",
|
|
434
|
+
"docs.error.unknownTopic": "Unknown docs topic: {topic}",
|
|
435
|
+
"docs.error.unknownAction": "Unknown docs review action: {action}",
|
|
436
|
+
"docs.error.missingPath": "Document path missing है",
|
|
437
|
+
"docs.error.missingComment": "Review comment missing है",
|
|
438
|
+
"docs.error.emptyComment": "Review comment खाली नहीं हो सकता",
|
|
439
|
+
"docs.error.commentSourceConflict": "--comment या --comment-file में से केवल एक use करें",
|
|
440
|
+
"docs.error.commentFileIsDocument": "--comment-file review किए जा रहे document की ओर point नहीं कर सकता",
|
|
441
|
+
"docs.error.invalidStatus": "Invalid review status. इनमें से एक use करें: {statuses}",
|
|
442
|
+
"docs.error.invalidReviewerKind": "Invalid reviewer kind. इनमें से एक use करें: {kinds}",
|
|
443
|
+
"docs.error.missingReviewerKind": "--reviewer-kind missing है. इनमें से एक use करें: {kinds}",
|
|
444
|
+
"docs.error.missingReviewerId": "--reviewer-id missing है",
|
|
445
|
+
"help.missingFile": "वर्तमान डायरेक्टरी में {path} नहीं मिला। पहले mf init चलाएँ या mustflow रूट पर जाएँ।",
|
|
446
|
+
"help.commands.title": "कमांड",
|
|
447
|
+
"help.commands.noIntents": "कमांड\n\n.mustflow/config/commands.toml में [intents] तालिका नहीं मिली।",
|
|
448
|
+
"help.commands.configuredIntents": ".mustflow/config/commands.toml में कॉन्फ़िगर की गई कमांड:",
|
|
449
|
+
"help.preferences.title": "Preferences",
|
|
450
|
+
"help.preferences.intro": ".mustflow/config/preferences.toml में रिपॉज़िटरी-स्तर की एजेंट preferences:",
|
|
451
|
+
"help.help.summary": "इंस्टॉल किए गए mustflow वर्कफ़्लो से सहायता दिखाएँ।",
|
|
452
|
+
"help.topic.workflow": ".mustflow/docs/agent-workflow.md प्रिंट करें",
|
|
453
|
+
"help.topic.skills": ".mustflow/skills/INDEX.md प्रिंट करें",
|
|
454
|
+
"help.topic.commands": ".mustflow/config/commands.toml का सारांश दें",
|
|
455
|
+
"help.topic.preferences": ".mustflow/config/preferences.toml का सारांश दें",
|
|
456
|
+
"help.help.exit.ok": "सहायता विषय प्रिंट हुआ या कोई इंस्टॉल किया गया विषय उपलब्ध नहीं था",
|
|
457
|
+
"help.help.exit.fail": "कमांड को अज्ञात विषय या विकल्प मिला",
|
|
458
|
+
"help.error.unknownTopic": "अज्ञात सहायता विषय: {topic}",
|
|
459
|
+
"index.help.summary": "mustflow वर्कफ़्लो के लिए फिर से बनाया जा सकने वाला SQLite इंडेक्स बनाएँ।",
|
|
460
|
+
"index.help.option.dryRun": "फ़ाइलें लिखे बिना इंडेक्स लक्ष्य गणना करें",
|
|
461
|
+
"index.help.option.source": "Source content store किए बिना structured source-code anchors शामिल करें",
|
|
462
|
+
"index.help.exit.ok": "इंडेक्स लक्ष्य गणना किए गए और वैकल्पिक रूप से लिखे गए",
|
|
463
|
+
"index.title": "mustflow इंडेक्स",
|
|
464
|
+
"index.dryRunNoFiles": "ड्राई रन: कोई फ़ाइल नहीं लिखी गई।",
|
|
465
|
+
"init.routerBlock": `<!-- mustflow:start schema=1 -->
|
|
466
|
+
यह रिपॉज़िटरी mustflow एजेंट वर्कफ़्लो का पालन करती है।
|
|
467
|
+
|
|
468
|
+
काम शुरू करने से पहले ये फ़ाइलें पढ़ें:
|
|
469
|
+
- \`.mustflow/docs/agent-workflow.md\`
|
|
470
|
+
- \`.mustflow/config/mustflow.toml\`
|
|
471
|
+
- \`.mustflow/config/commands.toml\`
|
|
472
|
+
- \`.mustflow/config/preferences.toml\` यदि मौजूद हो
|
|
473
|
+
- \`.mustflow/skills/INDEX.md\`
|
|
474
|
+
<!-- mustflow:end -->`,
|
|
475
|
+
"init.help.summary": "डिफ़ॉल्ट mustflow एजेंट वर्कफ़्लो को वर्तमान रिपॉज़िटरी में कॉपी करें।",
|
|
476
|
+
"init.help.option.yes": "प्रॉम्प्ट के लिए सुरक्षित डिफ़ॉल्ट उपयोग करें",
|
|
477
|
+
"init.help.option.dryRun": "फ़ाइलें लिखे बिना इंस्टॉल योजना प्रिंट करें",
|
|
478
|
+
"init.help.option.interactive": "प्रॉम्प्ट से init सेटिंग्स चुनें",
|
|
479
|
+
"init.help.option.merge": "मौजूदा AGENTS.md में mustflow प्रबंधित ब्लॉक मिलाएँ",
|
|
480
|
+
"init.help.option.force": "टकराती फ़ाइलों का बैकअप लेकर उन्हें overwrite करें",
|
|
481
|
+
"init.help.option.profile": "प्रोजेक्ट profile सेट करें: minimal, oss, team, product या library",
|
|
482
|
+
"init.help.option.locale": "इंस्टॉल किए गए mustflow दस्तावेज़ों की भाषा सेट करें",
|
|
483
|
+
"init.help.option.agentLang": "पसंदीदा एजेंट प्रतिक्रिया भाषा सेट करें",
|
|
484
|
+
"init.help.option.set": "git.auto_commit=true या git.auto_push=false जैसी सुरक्षित preference सेट करें",
|
|
485
|
+
"init.help.option.productSourceLocale": "उपयोगकर्ता-सामना करने वाले उत्पाद पाठ की स्रोत भाषा सेट करें",
|
|
486
|
+
"init.help.option.productLocale": "उपयोगकर्ता-सामना करने वाला product locale जोड़ें; दोहराया जा सकता है",
|
|
487
|
+
"init.help.exit.ok": "इंस्टॉल पूरा हुआ, छोड़ा गया, या योजना प्रिंट हुई",
|
|
488
|
+
"init.help.exit.fail": "अमान्य विकल्पों या फ़ाइल टकरावों ने लिखना रोका",
|
|
489
|
+
"init.error.cannotCombineMergeForce": "--merge और --force को साथ नहीं रखा जा सकता",
|
|
490
|
+
"init.error.cannotCombineInteractiveYes": "--interactive और --yes को साथ नहीं रखा जा सकता",
|
|
491
|
+
"init.error.unsupportedProfile": "असमर्थित profile: {profile}",
|
|
492
|
+
"init.error.supportedProfiles": "समर्थित profiles: {profiles}",
|
|
493
|
+
"init.error.unsupportedLocale": "असमर्थित locale: {locale}",
|
|
494
|
+
"init.error.supportedLocales": "इस पैकेज के लिए समर्थित template locales: {locales}",
|
|
495
|
+
"init.error.invalidLocaleTag": "{label} के लिए अमान्य locale tag: {value}",
|
|
496
|
+
"init.error.invalidPreference": "अमान्य init preference override: {value}",
|
|
497
|
+
"init.error.invalidPreferenceValue": "{key} के लिए अमान्य मान: {value}",
|
|
498
|
+
"init.error.unsupportedPreference": "असमर्थित init preference setting: {key}",
|
|
499
|
+
"init.prompt.locale": "mustflow दस्तावेज़ कौन सी भाषा उपयोग करें?",
|
|
500
|
+
"init.prompt.profile": "mustflow कौन सा project profile उपयोग करे?",
|
|
501
|
+
"init.prompt.agentLang": "एजेंट final reports के लिए कौन सी भाषा उपयोग करें?",
|
|
502
|
+
"init.prompt.advanced": "Advanced preferences बदलें?",
|
|
503
|
+
"init.prompt.autoStage": "एजेंटों को फ़ाइलें अपने आप stage करने दें?",
|
|
504
|
+
"init.prompt.autoCommit": "एजेंटों को commits अपने आप बनाने दें?",
|
|
505
|
+
"init.prompt.commitMessageLanguage": "पसंदीदा commit message भाषा?",
|
|
506
|
+
"init.prompt.commitSuggestions": "Commit message suggestions चालू करें?",
|
|
507
|
+
"init.prompt.preserveExisting": "मौजूदा रखें",
|
|
508
|
+
"init.prompt.sameAsAgentReports": "एजेंट रिपोर्ट जैसी",
|
|
509
|
+
"init.prompt.sameAsDocuments": "दस्तावेज़ जैसी",
|
|
510
|
+
"init.prompt.select": "चुनें [{defaultChoice}]: ",
|
|
511
|
+
"init.prompt.invalidChoice": "1 और {count} के बीच कोई संख्या दर्ज करें।",
|
|
512
|
+
"init.prompt.invalidBoolean": "yes या no दर्ज करें।",
|
|
513
|
+
"init.plan.would": "{action} {path} किया जाएगा",
|
|
514
|
+
"init.plan.noFilesWritten": "कोई फ़ाइल नहीं लिखी गई।",
|
|
515
|
+
"init.conflict": "टकराव: {path} पहले से मौजूद है और mustflow template से अलग है।",
|
|
516
|
+
"init.conflictGuidance": "पूर्वावलोकन के लिए --dry-run, AGENTS.md में mustflow ब्लॉक जोड़ने के लिए --merge, या बैकअप लेकर overwrite करने के लिए --force उपयोग करें।",
|
|
517
|
+
"init.selection.profile": "Template profile: {profile}",
|
|
518
|
+
"init.selection.locale": "Template locale: {locale}",
|
|
519
|
+
"init.selection.agentLang": "एजेंट प्रतिक्रिया भाषा: {locale}",
|
|
520
|
+
"init.selection.productSourceLocale": "Product source locale: {locale}",
|
|
521
|
+
"init.selection.productLocales": "Product locales: {locales}",
|
|
522
|
+
"init.selection.sourceLocaleOnly": "(केवल source locale)",
|
|
523
|
+
"init.backup.conflicts": "{count} टकराती {fileWord} का बैकअप {path} में लिया गया",
|
|
524
|
+
"init.fileWord.singular": "फ़ाइल",
|
|
525
|
+
"init.fileWord.plural": "फ़ाइलें",
|
|
526
|
+
"init.action.created": "{path} बनाया गया",
|
|
527
|
+
"init.action.unchanged": "{path} अपरिवर्तित",
|
|
528
|
+
"init.action.merged": "{path} मिलाया गया",
|
|
529
|
+
"init.action.overwrote": "{path} overwrite किया गया",
|
|
530
|
+
"init.action.customizedPreferences": ".mustflow/config/preferences.toml अनुकूलित किया गया",
|
|
531
|
+
"init.action.wrote": "{path} लिखा गया",
|
|
532
|
+
"init.complete": "mustflow init पूरा: {created} बनाए गए, {merged} मिलाए गए, {overwritten} overwrite किए गए, {unchanged} अपरिवर्तित।",
|
|
533
|
+
"map.help.summary": "रिपॉज़िटरी की मुख्य फ़ाइलों से एजेंट navigation map बनाएँ।",
|
|
534
|
+
"map.help.option.stdout": "बनाया गया map प्रिंट करें",
|
|
535
|
+
"map.help.option.write": "REPO_MAP.md लिखें",
|
|
536
|
+
"map.help.option.depth": "कम प्राथमिकता वाली directories की depth सीमित करें",
|
|
537
|
+
"map.help.option.includeNested": "कॉन्फ़िगर किए गए workspace roots से nested repositories शामिल करें",
|
|
538
|
+
"map.help.option.rootOnly": "कॉन्फ़िगर होने पर भी nested repositories अनदेखा करें",
|
|
539
|
+
"map.help.exit.ok": "Map बनाया गया और वैकल्पिक रूप से लिखा गया",
|
|
540
|
+
"map.error.nestedConflict": "--include-nested और --root-only को साथ नहीं रखा जा सकता",
|
|
541
|
+
"map.error.invalidDepth": "--depth के लिए अमान्य मान",
|
|
542
|
+
"map.wrote": "REPO_MAP.md लिखा गया",
|
|
543
|
+
"lineEndings.help.summary": "Inspect Git-tracked files for line-ending policy drift and normalize them to LF when requested.",
|
|
544
|
+
"lineEndings.help.option.all": "Inspect every tracked file instead of only changed files",
|
|
545
|
+
"lineEndings.help.option.dryRun": "Preview normalization targets without writing files",
|
|
546
|
+
"lineEndings.help.option.apply": "Normalize detected CRLF or mixed line endings to LF",
|
|
547
|
+
"lineEndings.help.exit.ok": "Line endings were inspected and no drift was found",
|
|
548
|
+
"lineEndings.help.exit.fail": "Line-ending policy issues, mismatched files, or invalid input were found",
|
|
549
|
+
"lineEndings.title": "mustflow line endings",
|
|
550
|
+
"lineEndings.label.policy": "Policy",
|
|
551
|
+
"lineEndings.label.checkedFiles": "Checked files",
|
|
552
|
+
"lineEndings.label.nonCompliantFiles": "Non-compliant files",
|
|
553
|
+
"lineEndings.label.issues": "Issues",
|
|
554
|
+
"lineEndings.label.files": "Files",
|
|
555
|
+
"lineEndings.value.changed": "changed",
|
|
556
|
+
"lineEndings.value.wouldChange": "would change",
|
|
557
|
+
"lineEndings.clean": "No line-ending drift found.",
|
|
558
|
+
"lineEndings.error.missingAction": "Specify a line-endings action: check or normalize",
|
|
559
|
+
"lineEndings.error.unknownAction": "Unknown line-endings action: {action}",
|
|
560
|
+
"lineEndings.error.checkModeOption": "check does not accept --apply or --dry-run",
|
|
561
|
+
"lineEndings.error.conflictingModes": "Cannot combine --apply and --dry-run",
|
|
562
|
+
"run.help.summary": ".mustflow/config/commands.toml से कॉन्फ़िगर की गई एक-बार चलने वाली कमांड चलाएँ।",
|
|
563
|
+
"run.help.option.json": "Run record को JSON के रूप में प्रिंट करें",
|
|
564
|
+
"run.help.exit.ok": "कमांड अनुमत exit code के साथ पूरी हुई",
|
|
565
|
+
"run.help.exit.fail": "कमांड अमान्य थी, अस्वीकार हुई, timed out हुई या विफल हुई",
|
|
566
|
+
"run.error.missingIntent": "कमांड नाम नहीं दिया गया",
|
|
567
|
+
"run.error.unknownIntent": "अज्ञात कमांड: {intent}",
|
|
568
|
+
"run.error.statusNotConfigured": 'कमांड "{intent}" {status} है; केवल configured कमांड चलाई जा सकती हैं',
|
|
569
|
+
"run.error.lifecycleNotOneshot": 'अस्वीकृत: कमांड "{intent}" का lifecycle = "{lifecycle}" है; mf run केवल oneshot कमांड चलाता है',
|
|
570
|
+
"run.error.runPolicy": 'mf run के लिए कमांड "{intent}" में run_policy = "agent_allowed" चाहिए',
|
|
571
|
+
"run.error.stdin": 'कमांड "{intent}" को stdin = "closed" सेट करना होगा',
|
|
572
|
+
"run.error.timeout": 'कमांड "{intent}" को timeout_seconds परिभाषित करना होगा',
|
|
573
|
+
"run.error.commandSource": 'कमांड "{intent}" को argv या mode = "shell" के साथ cmd परिभाषित करना होगा',
|
|
574
|
+
"run.error.timedOut": 'कमांड "{intent}" {seconds} सेकंड बाद time out हुई',
|
|
575
|
+
"run.error.startFailed": 'कमांड "{intent}" शुरू नहीं हो सकी: {message}',
|
|
576
|
+
"search.help.summary": "mustflow वर्कफ़्लो के लिए स्थानीय SQLite इंडेक्स में खोजें।",
|
|
577
|
+
"search.help.option.limit": "प्रिंट किए जाने वाले परिणामों की संख्या सेट करें। डिफ़ॉल्ट: 10, अधिकतम: 50",
|
|
578
|
+
"search.help.option.scope": "इंडेक्स किए गए वर्कफ़्लो डेटा, source anchors, या दोनों चुनें। डिफ़ॉल्ट: workflow",
|
|
579
|
+
"search.help.exit.ok": "खोज पूरी हुई",
|
|
580
|
+
"search.help.exit.fail": "अमान्य इनपुट या स्थानीय इंडेक्स नहीं मिला",
|
|
581
|
+
"search.error.missingLimit": "--limit का मान नहीं दिया गया",
|
|
582
|
+
"search.error.invalidLimit": "--limit 1 और 50 के बीच पूर्णांक होना चाहिए",
|
|
583
|
+
"search.error.missingScope": "--scope का मान नहीं दिया गया",
|
|
584
|
+
"search.error.invalidScope": 'असमर्थित खोज दायरा "{scope}"। workflow, source, या all इस्तेमाल करें',
|
|
585
|
+
"search.error.missingQuery": "खोज क्वेरी आवश्यक है",
|
|
586
|
+
"search.title": "mustflow खोज",
|
|
587
|
+
"search.noMatches": "कोई मिलती हुई प्रविष्टि नहीं।",
|
|
588
|
+
"status.help.summary": "फ़ाइलों को बदले बिना स्थानीय mustflow इंस्टॉल स्थिति दिखाएँ।",
|
|
589
|
+
"status.help.exit.ok": "स्थिति जाँची और प्रिंट की गई",
|
|
590
|
+
"status.title": "mustflow स्थिति",
|
|
591
|
+
"versionSources.help.summary": "फ़ाइलें बदले बिना पैकेज और template version sources दिखाएँ।",
|
|
592
|
+
"versionSources.help.exit.ok": "Version sources जाँचे और प्रिंट किए गए",
|
|
593
|
+
"versionSources.title": "mustflow version sources",
|
|
594
|
+
"versionSources.label.versioning": "Versioning preferences",
|
|
595
|
+
"versionSources.label.sources": "Sources",
|
|
596
|
+
"versionSources.value.enabled": "enabled",
|
|
597
|
+
"versionSources.value.disabled": "disabled",
|
|
598
|
+
"versionSources.noSources": "कोई version source नहीं मिला",
|
|
599
|
+
"version.help.summary": "इंस्टॉल किए गए mustflow package version को प्रिंट करें। --check से इसे npm पर प्रकाशित latest version से तुलना करें।",
|
|
600
|
+
"version.help.option.check": "npm पर प्रकाशित latest mustflow version जाँचें",
|
|
601
|
+
"version.help.exit.ok": "Version जानकारी प्रिंट की गई",
|
|
602
|
+
"version.check.latestAvailable": "latest {version} उपलब्ध है",
|
|
603
|
+
"version.check.upToDate": "latest {version}; पहले से up to date",
|
|
604
|
+
"version.check.updateCommand": "Update command:",
|
|
605
|
+
"version.error.checkFailed": "npm पर नया version जाँचा नहीं जा सका: {message}",
|
|
606
|
+
"classify.help.summary": "फ़ाइल बदले बिना बदले पथ, सार्वजनिक सतह और जरूरी सत्यापन कारण वर्गीकृत करें.",
|
|
607
|
+
"classify.help.option.changed": "git status --short --untracked-files=all से पथ पढ़ें",
|
|
608
|
+
"classify.help.exit.ok": "बदलाव वर्गीकरण जांचकर प्रिंट किया गया",
|
|
609
|
+
"classify.title": "mustflow classify",
|
|
610
|
+
"classify.label.source": "स्रोत",
|
|
611
|
+
"classify.label.files": "फ़ाइलें",
|
|
612
|
+
"classify.label.publicSurfaces": "सार्वजनिक सतहें",
|
|
613
|
+
"classify.label.validationReasons": "सत्यापन कारण",
|
|
614
|
+
"classify.label.updatePolicies": "अपडेट नीतियां",
|
|
615
|
+
"classify.label.classifications": "वर्गीकरण",
|
|
616
|
+
"classify.label.changeKinds": "बदलाव प्रकार",
|
|
617
|
+
"classify.label.updatePolicy": "अपडेट नीति",
|
|
618
|
+
"classify.label.driftChecks": "ड्रिफ्ट जांच",
|
|
619
|
+
"classify.source.changed": "बदली फ़ाइलें",
|
|
620
|
+
"classify.source.paths": "दिए गए पथ",
|
|
621
|
+
"classify.error.missingInput": "--changed या कम से कम एक पथ दें",
|
|
622
|
+
"impact.help.summary": "फ़ाइल बदले बिना बताएं कि बदले पथ package या template version decision मांगते हैं या नहीं.",
|
|
623
|
+
"impact.help.option.changed": "git status --short --untracked-files=all से पथ पढ़ें",
|
|
624
|
+
"impact.help.exit.ok": "Version impact जांचकर प्रिंट किया गया",
|
|
625
|
+
"impact.title": "mustflow impact",
|
|
626
|
+
"impact.label.versioning": "Versioning preferences",
|
|
627
|
+
"impact.label.requiresVersionDecision": "Version decision चाहिए",
|
|
628
|
+
"impact.label.severity": "Severity",
|
|
629
|
+
"impact.label.suggestedBump": "Suggested bump",
|
|
630
|
+
"impact.label.reasons": "कारण",
|
|
631
|
+
"impact.label.versionSources": "Version sources",
|
|
632
|
+
"impact.label.affectedVersionSources": "Affected version sources",
|
|
633
|
+
"impact.label.affectedSurfaces": "Affected surfaces",
|
|
634
|
+
"impact.error.missingInput": "--changed या कम से कम एक पथ दें",
|
|
635
|
+
"verify.help.summary": "required_after metadata से चुने गए configured verification intents चलाएँ।",
|
|
636
|
+
"verify.help.option.reason": "Verify करने के लिए required_after reason चुनें",
|
|
637
|
+
"verify.help.option.fromPlan": "इस repository के अंदर JSON plan से verification reasons पढ़ें",
|
|
638
|
+
"verify.help.option.planOnly": "Commands चलाए बिना verification plan print करें; --json चाहिए",
|
|
639
|
+
"verify.help.exit.ok": "सभी selected verification intents pass हुए",
|
|
640
|
+
"verify.help.exit.fail": "Verification fail हुआ, partial रहा, blocked रहा, या input invalid था",
|
|
641
|
+
"verify.title": "mustflow verify",
|
|
642
|
+
"verify.label.reason": "Reason",
|
|
643
|
+
"verify.label.planSource": "Plan source",
|
|
644
|
+
"verify.label.status": "Status",
|
|
645
|
+
"verify.label.results": "Results",
|
|
646
|
+
"verify.error.missingReason": "Verification reason missing है",
|
|
647
|
+
"verify.error.conflictingInputs": "--reason या --from-plan में से एक ही इस्तेमाल करें",
|
|
648
|
+
"verify.error.planOnlyJson": "--plan-only के लिए --json चाहिए",
|
|
649
|
+
"verify.error.invalid_plan_file": "Verification plan readable JSON file होना चाहिए",
|
|
650
|
+
"verify.error.missing_plan_reasons": "Verification plan में reason, reasons, validationReasons, summary.validationReasons, या classification_summary.validationReasons होना चाहिए",
|
|
651
|
+
"verify.error.plan_path_outside_root": "Verification plan path mustflow root के अंदर रहना चाहिए",
|
|
652
|
+
"explain.help.summary": "फ़ाइलें बदले बिना समझाएँ कि mustflow policy decision क्यों लागू होता है।",
|
|
653
|
+
"explain.help.exit.ok": "Policy decision जाँचा और प्रिंट किया गया",
|
|
654
|
+
"explain.title": "mustflow explain",
|
|
655
|
+
"explain.label.topic": "Topic",
|
|
656
|
+
"explain.label.decision": "Decision",
|
|
657
|
+
"explain.label.reason": "Reason",
|
|
658
|
+
"explain.label.effectiveAction": "Effective action",
|
|
659
|
+
"explain.label.countsAsMustflowVerification": "mustflow verification माना जाता है",
|
|
660
|
+
"explain.label.sourceFiles": "Source files",
|
|
661
|
+
"explain.label.expectedFrontmatter": "Expected frontmatter",
|
|
662
|
+
"explain.label.authorityBoundary": "Authority boundary",
|
|
663
|
+
"explain.label.canDefine": "Can define",
|
|
664
|
+
"explain.label.cannotDefine": "Cannot define",
|
|
665
|
+
"explain.label.commandIntent": "Command intent",
|
|
666
|
+
"explain.label.commandName": "Command",
|
|
667
|
+
"explain.label.retentionPolicy": "Retention policy",
|
|
668
|
+
"explain.label.skillRoute": "Skill route",
|
|
669
|
+
"explain.label.skillRoutes": "Skill routes",
|
|
670
|
+
"explain.label.publicSurface": "Public surface",
|
|
671
|
+
"explain.label.validationReasons": "Validation reasons",
|
|
672
|
+
"explain.label.affectedContracts": "Affected contracts",
|
|
673
|
+
"explain.error.missingTopic": "Explain topic गुम है",
|
|
674
|
+
"explain.error.missingCommand": "Command intent गुम है",
|
|
675
|
+
"explain.error.missingSkill": "Skill id गुम है",
|
|
676
|
+
"explain.error.missingAnchor": "Source anchor id गुम है",
|
|
677
|
+
"explain.error.unknownTopic": "अज्ञात explain topic: {topic}",
|
|
678
|
+
"update.help.summary": "इंस्टॉल किए गए mustflow वर्कफ़्लो के अपडेट का पूर्वावलोकन करें या लागू करें।",
|
|
679
|
+
"update.help.option.dryRun": "फ़ाइलें लिखे बिना update plan प्रिंट करें",
|
|
680
|
+
"update.help.option.apply": "जब कोई local change blocked न हो, सुरक्षित template updates लागू करें",
|
|
681
|
+
"update.help.exit.ok": "Plan प्रिंट हुआ या सुरक्षित updates लागू किए गए",
|
|
682
|
+
"update.help.exit.fail": "Plan में blocked changes, missing state, या अमान्य input मिला",
|
|
683
|
+
"update.error.cannotCombineModes": "--dry-run और --apply को साथ नहीं रखा जा सकता।",
|
|
684
|
+
"update.error.missingMode": "--dry-run या --apply निर्दिष्ट करें।",
|
|
685
|
+
"update.backup.files": "{count} {fileWord} का बैकअप {path} में लिया गया",
|
|
686
|
+
"update.action.created": "{path} बनाया गया",
|
|
687
|
+
"update.action.updated": "{path} अपडेट किया गया",
|
|
688
|
+
"update.action.wrote": "{path} लिखा गया",
|
|
689
|
+
"update.policy.title": "नीति:",
|
|
690
|
+
"update.policy.baseline": "Baseline",
|
|
691
|
+
"update.policy.applyActions": "लागू की जाने वाली कार्रवाइयाँ",
|
|
692
|
+
"update.policy.blockingActions": "Blocking actions",
|
|
693
|
+
"update.policy.backupPath": "Backup path",
|
|
694
|
+
"update.plan.title": "mustflow update plan",
|
|
695
|
+
"update.plan.blocked": "Blocked local changes",
|
|
696
|
+
"update.plan.manualReview": "Manual review",
|
|
697
|
+
"update.plan.wouldUpdate": "अपडेट किया जाएगा",
|
|
698
|
+
"update.plan.wouldCreate": "बनाया जाएगा",
|
|
699
|
+
"update.plan.noUpdates": "Template updates आवश्यक नहीं हैं।",
|
|
700
|
+
"update.plan.noFilesWritten": "कोई फ़ाइल नहीं लिखी गई।",
|
|
701
|
+
"update.complete": "mustflow update पूरा: {updated} अपडेट किए गए, {created} बनाए गए।",
|
|
702
|
+
};
|