bmad-plus 0.4.3 → 0.4.4
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/CHANGELOG.md +17 -0
- package/README.md +3 -2
- package/package.json +5 -1
- package/readme-international/README.de.md +1 -1
- package/readme-international/README.es.md +1 -1
- package/readme-international/README.fr.md +1 -1
- package/tools/cli/commands/install.js +1 -1
- package/tools/cli/i18n.js +474 -394
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to BMAD+ will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.4.4] — 2026-05-17
|
|
9
|
+
|
|
10
|
+
### 🔧 Encoding Fix + i18n Complete + Tests
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **UTF-8 encoding** — Fixed double-encoding corruption in `i18n.js` caused by PowerShell `Set-Content`
|
|
14
|
+
- **Credits URL** — Now points to public repo `github.com/lrochetta/BMAD-PLUS`
|
|
15
|
+
- **npm re-publish** — v0.4.3 had corrupted Unicode on npm; this release replaces it
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **Complete i18n** — CLI guide strings (commands, examples) now translated in all 10 languages (no more EN fallbacks)
|
|
19
|
+
- **Unit tests** — 53+ tests covering i18n, CLI modules, package.json integrity, module.yaml, source files, version consistency
|
|
20
|
+
- **`npm test`** — Jest test script added to package.json
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
7
24
|
## [0.4.3] — 2026-05-17
|
|
8
25
|
|
|
9
26
|
### 🔧 CLI Commands + Security Hardening + UX Enhancements
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🚀 BMAD+ — Augmented AI-Driven Development Framework
|
|
2
2
|
|
|
3
|
-
[](CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
@@ -425,7 +425,8 @@ BMAD+/
|
|
|
425
425
|
| **0.4.0** | 2026-03-19 | 🏢 SEO Engine v2.1 — SKILL.md orchestrator, Google APIs, HTML reports, competitor benchmark, 50 tests, GSC + GA4 extensions |
|
|
426
426
|
| **0.4.1** | 2026-03-19 |
|
|
427
427
|
| **0.4.2** | 2026-03-19 | Public packs SEO/Backup/Animated agents now in npm package | 🌐 10-language CLI, CI/CD pipeline, `.npmignore`, `/deploy` workflow, security hardening |
|
|
428
|
-
| **0.4.3** | 2026-05-17 | 🔧
|
|
428
|
+
| **0.4.3** | 2026-05-17 | 🔧 update + doctor commands, i18n complete, credits fix |
|
|
429
|
+
| **0.4.4** | 2026-05-17 | 🔧 `update` + `doctor` commands, i18n uninstall, enriched guide with CLI commands & examples, credits at startup, security hardening |
|
|
429
430
|
|
|
430
431
|
See [CHANGELOG.md](CHANGELOG.md) for full details.
|
|
431
432
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-plus",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.4",
|
|
5
5
|
"description": "BMAD+ — Augmented AI-Driven Development Framework with multi-role agents, autopilot, and parallel execution",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"bmad",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"install:bmad": "node tools/cli/bmad-plus-cli.js install",
|
|
35
35
|
"update:bmad": "node tools/cli/bmad-plus-cli.js update",
|
|
36
36
|
"doctor:bmad": "node tools/cli/bmad-plus-cli.js doctor",
|
|
37
|
+
"test": "jest",
|
|
37
38
|
"uninstall:bmad": "node tools/cli/bmad-plus-cli.js uninstall"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
@@ -49,5 +50,8 @@
|
|
|
49
50
|
},
|
|
50
51
|
"publishConfig": {
|
|
51
52
|
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"jest": "^30.4.2"
|
|
52
56
|
}
|
|
53
57
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🚀 BMAD+ — Erweitertes KI-gestütztes Entwicklungs-Framework
|
|
2
2
|
|
|
3
|
-
[](../CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](../LICENSE)
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🚀 BMAD+ — Framework de Desarrollo Impulsado por IA Aumentada
|
|
2
2
|
|
|
3
|
-
[](../CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](../LICENSE)
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🚀 BMAD+ — Augmented AI-Driven Development Framework
|
|
2
2
|
|
|
3
|
-
[](../CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](../LICENSE)
|
|
6
6
|
|
|
@@ -120,7 +120,7 @@ module.exports = {
|
|
|
120
120
|
// ── Step 0: Language Selection ──
|
|
121
121
|
const pkgJson = require('../../../package.json');
|
|
122
122
|
clack.intro(pc.bgCyan(pc.black(` BMAD+ Installer v${pkgJson.version} `)));
|
|
123
|
-
clack.log.info(pc.dim('✨ Created by Laurent Rochetta — github.com/lrochetta'));
|
|
123
|
+
clack.log.info(pc.dim('✨ Created by Laurent Rochetta — github.com/lrochetta/BMAD-PLUS'));
|
|
124
124
|
|
|
125
125
|
let lang = 'en';
|
|
126
126
|
if (!options.yes) {
|
package/tools/cli/i18n.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
* BMAD+ CLI
|
|
1
|
+
/**
|
|
2
|
+
* BMAD+ CLI — Internationalization (i18n)
|
|
3
3
|
* 10 languages: EN, FR, ES, DE, PT-BR, RU, ZH, HE, JA, IT
|
|
4
4
|
*
|
|
5
5
|
* Author: Laurent Rochetta
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
|
|
8
8
|
const LANGUAGES = {
|
|
9
9
|
en: {
|
|
10
|
-
flag: '
|
|
10
|
+
flag: '🇬🇧',
|
|
11
11
|
name: 'English',
|
|
12
12
|
locale: 'en',
|
|
13
|
-
installer_title: ' BMAD+ Installer v0.4.
|
|
13
|
+
installer_title: ' BMAD+ Installer v0.4.4 ',
|
|
14
14
|
select_language: 'Select your language',
|
|
15
15
|
installing_to: 'Installing to',
|
|
16
16
|
select_packs: 'Which packs to install? (Core is always included)',
|
|
@@ -20,19 +20,19 @@ const LANGUAGES = {
|
|
|
20
20
|
enter_name: 'Your first name (agents use it to greet you)',
|
|
21
21
|
comm_language: 'Communication language',
|
|
22
22
|
exec_mode: 'Execution mode',
|
|
23
|
-
exec_manual: 'Manual
|
|
24
|
-
exec_autopilot: 'Autopilot
|
|
25
|
-
exec_hybrid: 'Hybrid
|
|
23
|
+
exec_manual: 'Manual — You call agents yourself',
|
|
24
|
+
exec_autopilot: 'Autopilot — Nexus manages the full pipeline',
|
|
25
|
+
exec_hybrid: 'Hybrid — Autopilot with frequent checkpoints',
|
|
26
26
|
installing_files: 'Installing files...',
|
|
27
27
|
configuring_ides: 'Configuring IDEs...',
|
|
28
|
-
installed_summary: (a, s, f) =>
|
|
29
|
-
ide_configured: (n) =>
|
|
28
|
+
installed_summary: (a, s, f) => `✅ ${a} agents, ${s} skills, ${f} files copied`,
|
|
29
|
+
ide_configured: (n) => `✅ ${n} IDE(s) configured`,
|
|
30
30
|
cancelled: 'Installation cancelled.',
|
|
31
31
|
failed: 'Installation failed.',
|
|
32
32
|
source_not_found: 'Source directory not found',
|
|
33
33
|
soon: 'coming soon',
|
|
34
|
-
guide_title: '
|
|
35
|
-
guide_who: '
|
|
34
|
+
guide_title: '✅ Installation complete — Getting started',
|
|
35
|
+
guide_who: '💬 Who to talk to?',
|
|
36
36
|
guide_idea: 'Discuss an idea',
|
|
37
37
|
guide_prd: 'Create a PRD',
|
|
38
38
|
guide_arch: 'Technical architecture',
|
|
@@ -42,187 +42,197 @@ const LANGUAGES = {
|
|
|
42
42
|
guide_auto: 'Automate everything',
|
|
43
43
|
guide_osint: 'OSINT investigation',
|
|
44
44
|
guide_maker: 'Create a new agent',
|
|
45
|
-
guide_seo: 'SEO / GEO audit (360
|
|
45
|
+
guide_seo: 'SEO / GEO audit (360°)',
|
|
46
46
|
guide_backup: 'Smart project backup',
|
|
47
47
|
guide_animated: 'Animated luxury website',
|
|
48
|
-
guide_workflow: '
|
|
49
|
-
guide_or_auto: '
|
|
50
|
-
guide_output: '
|
|
51
|
-
guide_ready: 'BMAD+ is ready! Talk to Atlas to get started
|
|
52
|
-
guide_credits: '
|
|
48
|
+
guide_workflow: '🚀 Recommended workflow:',
|
|
49
|
+
guide_or_auto: '⚡ Or: "autopilot" to manage everything automatically',
|
|
50
|
+
guide_output: '📁 Output',
|
|
51
|
+
guide_ready: 'BMAD+ is ready! Talk to Atlas to get started 🚀',
|
|
52
|
+
guide_credits: '✨ BMAD+ is created by Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
53
53
|
// Uninstall
|
|
54
54
|
uninstall_confirm: 'Remove BMAD+ from this project?',
|
|
55
55
|
uninstall_removing: 'Removing...',
|
|
56
|
-
uninstall_done: (n) =>
|
|
57
|
-
uninstall_output_kept: '
|
|
56
|
+
uninstall_done: (n) => `✅ BMAD+ removed (${n} items)`,
|
|
57
|
+
uninstall_output_kept: '📁 _bmad-output/ kept (contains files)',
|
|
58
58
|
installed_on: 'installed',
|
|
59
59
|
// Update
|
|
60
60
|
update_confirm: 'Update agents and skills?',
|
|
61
61
|
update_updating: 'Updating agents and skills...',
|
|
62
|
-
update_done: (n) =>
|
|
63
|
-
update_current: '
|
|
64
|
-
update_ready: 'Update complete!
|
|
62
|
+
update_done: (n) => `✅ ${n} files updated`,
|
|
63
|
+
update_current: '✅ Already up to date!',
|
|
64
|
+
update_ready: 'Update complete! 🚀',
|
|
65
65
|
guide_cli_title: 'CLI Commands',
|
|
66
|
-
guide_cli_install: '
|
|
67
|
-
guide_cli_update: '
|
|
68
|
-
guide_cli_doctor: '
|
|
69
|
-
guide_cli_uninstall: '
|
|
66
|
+
guide_cli_install: '— Install agents & skills',
|
|
67
|
+
guide_cli_update: '— Update agents (keeps config)',
|
|
68
|
+
guide_cli_doctor: '— Check installation health',
|
|
69
|
+
guide_cli_uninstall: '— Remove BMAD+ from project',
|
|
70
70
|
guide_examples_title: 'Quick Examples',
|
|
71
|
-
guide_example_seo: '
|
|
72
|
-
guide_example_backup: '
|
|
73
|
-
guide_example_animated: '
|
|
74
|
-
guide_example_osint: '
|
|
71
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
72
|
+
guide_example_backup: '🗂️ Backup: "/backup create" → ZIP timestamped',
|
|
73
|
+
guide_example_animated: '🎬 Animated: "/animated build hero.mp4"',
|
|
74
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
75
75
|
},
|
|
76
76
|
|
|
77
77
|
fr: {
|
|
78
|
-
flag: '
|
|
79
|
-
name: '
|
|
78
|
+
flag: '🇫🇷',
|
|
79
|
+
name: 'Français',
|
|
80
80
|
locale: 'fr',
|
|
81
|
-
installer_title: ' BMAD+ Installeur v0.4.
|
|
81
|
+
installer_title: ' BMAD+ Installeur v0.4.4 ',
|
|
82
82
|
select_language: 'Choisissez votre langue',
|
|
83
83
|
installing_to: 'Installation dans',
|
|
84
84
|
select_packs: 'Quels packs installer ? (Core est toujours inclus)',
|
|
85
85
|
select_ide: 'Quels IDE utilises-tu ?',
|
|
86
|
-
detected_ides: 'IDE
|
|
87
|
-
selected_packs: 'Packs
|
|
88
|
-
enter_name: 'Ton
|
|
86
|
+
detected_ides: 'IDE détectés',
|
|
87
|
+
selected_packs: 'Packs sélectionnés',
|
|
88
|
+
enter_name: 'Ton prénom (les agents l\'utilisent pour te saluer)',
|
|
89
89
|
comm_language: 'Langue de communication',
|
|
90
|
-
exec_mode: 'Mode d\'
|
|
91
|
-
exec_manual: 'Manuel
|
|
92
|
-
exec_autopilot: 'Autopilot
|
|
93
|
-
exec_hybrid: 'Hybride
|
|
90
|
+
exec_mode: 'Mode d\'exécution',
|
|
91
|
+
exec_manual: 'Manuel — Tu appelles les agents toi-même',
|
|
92
|
+
exec_autopilot: 'Autopilot — Nexus gère tout le pipeline',
|
|
93
|
+
exec_hybrid: 'Hybride — Autopilot avec checkpoints fréquents',
|
|
94
94
|
installing_files: 'Installation des fichiers...',
|
|
95
95
|
configuring_ides: 'Configuration des IDE...',
|
|
96
|
-
installed_summary: (a, s, f) =>
|
|
97
|
-
ide_configured: (n) =>
|
|
98
|
-
cancelled: 'Installation
|
|
99
|
-
failed: 'Installation
|
|
100
|
-
source_not_found: '
|
|
101
|
-
soon: '
|
|
102
|
-
guide_title: '
|
|
103
|
-
guide_who: '
|
|
104
|
-
guide_idea: 'Discuter d\'une
|
|
105
|
-
guide_prd: '
|
|
96
|
+
installed_summary: (a, s, f) => `✅ ${a} agents, ${s} skills, ${f} fichiers copiés`,
|
|
97
|
+
ide_configured: (n) => `✅ ${n} IDE configuré(s)`,
|
|
98
|
+
cancelled: 'Installation annulée.',
|
|
99
|
+
failed: 'Installation échouée.',
|
|
100
|
+
source_not_found: 'Répertoire source introuvable',
|
|
101
|
+
soon: 'bientôt',
|
|
102
|
+
guide_title: '✅ Installation terminée — Comment commencer',
|
|
103
|
+
guide_who: '💬 À qui parler ?',
|
|
104
|
+
guide_idea: 'Discuter d\'une idée',
|
|
105
|
+
guide_prd: 'Créer un PRD',
|
|
106
106
|
guide_arch: 'Architecture technique',
|
|
107
|
-
guide_code: '
|
|
107
|
+
guide_code: 'Implémenter du code',
|
|
108
108
|
guide_test: 'Tester / code review',
|
|
109
109
|
guide_sprint: 'Planifier un sprint',
|
|
110
110
|
guide_auto: 'Tout automatiser',
|
|
111
111
|
guide_osint: 'Investigation OSINT',
|
|
112
|
-
guide_maker: '
|
|
113
|
-
guide_seo: 'Audit SEO / GEO (360
|
|
112
|
+
guide_maker: 'Créer un nouvel agent',
|
|
113
|
+
guide_seo: 'Audit SEO / GEO (360°)',
|
|
114
114
|
guide_backup: 'Sauvegarde intelligente',
|
|
115
|
-
guide_animated: 'Site web
|
|
116
|
-
guide_workflow: '
|
|
117
|
-
guide_or_auto: '
|
|
118
|
-
guide_output: '
|
|
119
|
-
guide_ready: 'BMAD+ est
|
|
120
|
-
guide_credits: '
|
|
115
|
+
guide_animated: 'Site web animé de luxe',
|
|
116
|
+
guide_workflow: '🚀 Workflow recommandé :',
|
|
117
|
+
guide_or_auto: '⚡ Ou : "autopilot" pour tout gérer automatiquement',
|
|
118
|
+
guide_output: '📁 Sortie',
|
|
119
|
+
guide_ready: 'BMAD+ est prêt ! Parle à Atlas pour commencer 🚀',
|
|
120
|
+
guide_credits: '✨ BMAD+ est créé par Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
121
121
|
uninstall_confirm: 'Supprimer BMAD+ de ce projet ?',
|
|
122
122
|
uninstall_removing: 'Suppression...',
|
|
123
|
-
uninstall_done: (n) =>
|
|
124
|
-
uninstall_output_kept: '
|
|
125
|
-
installed_on: '
|
|
126
|
-
update_confirm: 'Mettre
|
|
127
|
-
update_updating: 'Mise
|
|
128
|
-
update_done: (n) =>
|
|
129
|
-
update_current: '
|
|
130
|
-
update_ready: 'Mise
|
|
123
|
+
uninstall_done: (n) => `✅ BMAD+ supprimé (${n} éléments)`,
|
|
124
|
+
uninstall_output_kept: '📁 _bmad-output/ conservé (contient des fichiers)',
|
|
125
|
+
installed_on: 'installé le',
|
|
126
|
+
update_confirm: 'Mettre à jour les agents et skills ?',
|
|
127
|
+
update_updating: 'Mise à jour des agents et skills...',
|
|
128
|
+
update_done: (n) => `✅ ${n} fichiers mis à jour`,
|
|
129
|
+
update_current: '✅ Déjà à jour !',
|
|
130
|
+
update_ready: 'Mise à jour terminée ! 🚀',
|
|
131
131
|
guide_cli_title: 'Commandes CLI',
|
|
132
|
-
guide_cli_install: '
|
|
133
|
-
guide_cli_update: '
|
|
134
|
-
guide_cli_doctor: '
|
|
135
|
-
guide_cli_uninstall: '
|
|
132
|
+
guide_cli_install: '— Installer agents & skills',
|
|
133
|
+
guide_cli_update: '— Mettre à jour (conserve la config)',
|
|
134
|
+
guide_cli_doctor: '— Vérifier l\'installation',
|
|
135
|
+
guide_cli_uninstall: '— Supprimer BMAD+ du projet',
|
|
136
136
|
guide_examples_title: 'Exemples rapides',
|
|
137
|
-
guide_example_seo: '
|
|
138
|
-
guide_example_backup: '
|
|
139
|
-
guide_example_animated: '
|
|
140
|
-
guide_example_osint: '
|
|
137
|
+
guide_example_seo: '🔍 SEO : "/seo audit https://example.com"',
|
|
138
|
+
guide_example_backup: '🗂️ Backup : "/backup create" → ZIP horodaté',
|
|
139
|
+
guide_example_animated: '🎬 Animé : "/animated build hero.mp4"',
|
|
140
|
+
guide_example_osint: '🔍 OSINT : "Shadow, investigate John Doe"',
|
|
141
141
|
},
|
|
142
142
|
|
|
143
143
|
es: {
|
|
144
|
-
flag: '
|
|
145
|
-
name: '
|
|
144
|
+
flag: '🇪🇸',
|
|
145
|
+
name: 'Español',
|
|
146
146
|
locale: 'es',
|
|
147
|
-
installer_title: ' BMAD+ Instalador v0.4.
|
|
147
|
+
installer_title: ' BMAD+ Instalador v0.4.4 ',
|
|
148
148
|
select_language: 'Seleccione su idioma',
|
|
149
149
|
installing_to: 'Instalando en',
|
|
150
|
-
select_packs: '
|
|
151
|
-
select_ide: '
|
|
150
|
+
select_packs: '¿Qué packs instalar? (Core siempre está incluido)',
|
|
151
|
+
select_ide: '¿Qué IDE usas?',
|
|
152
152
|
detected_ides: 'IDEs detectados',
|
|
153
153
|
selected_packs: 'Packs seleccionados',
|
|
154
154
|
enter_name: 'Tu nombre (los agentes lo usan para saludarte)',
|
|
155
|
-
comm_language: 'Idioma de
|
|
156
|
-
exec_mode: 'Modo de
|
|
157
|
-
exec_manual: 'Manual
|
|
158
|
-
exec_autopilot: 'Autopilot
|
|
159
|
-
exec_hybrid: '
|
|
155
|
+
comm_language: 'Idioma de comunicación',
|
|
156
|
+
exec_mode: 'Modo de ejecución',
|
|
157
|
+
exec_manual: 'Manual — Tú llamas a los agentes',
|
|
158
|
+
exec_autopilot: 'Autopilot — Nexus gestiona todo el pipeline',
|
|
159
|
+
exec_hybrid: 'Híbrido — Autopilot con puntos de control frecuentes',
|
|
160
160
|
installing_files: 'Instalando archivos...',
|
|
161
161
|
configuring_ides: 'Configurando IDEs...',
|
|
162
|
-
installed_summary: (a, s, f) =>
|
|
163
|
-
ide_configured: (n) =>
|
|
164
|
-
cancelled: '
|
|
165
|
-
failed: '
|
|
162
|
+
installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} archivos copiados`,
|
|
163
|
+
ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
|
|
164
|
+
cancelled: 'Instalación cancelada.',
|
|
165
|
+
failed: 'Instalación fallida.',
|
|
166
166
|
source_not_found: 'Directorio fuente no encontrado',
|
|
167
|
-
soon: '
|
|
168
|
-
guide_title: '
|
|
169
|
-
guide_who: '
|
|
167
|
+
soon: 'próximamente',
|
|
168
|
+
guide_title: '✅ Instalación completa — Cómo empezar',
|
|
169
|
+
guide_who: '💬 ¿Con quién hablar?',
|
|
170
170
|
guide_idea: 'Discutir una idea',
|
|
171
171
|
guide_prd: 'Crear un PRD',
|
|
172
|
-
guide_arch: 'Arquitectura
|
|
173
|
-
guide_code: 'Implementar
|
|
172
|
+
guide_arch: 'Arquitectura técnica',
|
|
173
|
+
guide_code: 'Implementar código',
|
|
174
174
|
guide_test: 'Probar / code review',
|
|
175
175
|
guide_sprint: 'Planificar un sprint',
|
|
176
176
|
guide_auto: 'Automatizar todo',
|
|
177
|
-
guide_osint: '
|
|
177
|
+
guide_osint: 'Investigación OSINT',
|
|
178
178
|
guide_maker: 'Crear un agente nuevo',
|
|
179
|
-
guide_seo: '
|
|
179
|
+
guide_seo: 'Auditoría SEO / GEO (360°)',
|
|
180
180
|
guide_backup: 'Copia de seguridad inteligente',
|
|
181
181
|
guide_animated: 'Sitio web animado de lujo',
|
|
182
|
-
guide_workflow: '
|
|
183
|
-
guide_or_auto: '
|
|
184
|
-
guide_output: '
|
|
185
|
-
guide_ready: '
|
|
186
|
-
guide_credits: '
|
|
187
|
-
uninstall_confirm: '
|
|
182
|
+
guide_workflow: '🚀 Flujo recomendado:',
|
|
183
|
+
guide_or_auto: '⚡ O: "autopilot" para gestionar todo automáticamente',
|
|
184
|
+
guide_output: '📁 Salida',
|
|
185
|
+
guide_ready: '¡BMAD+ está listo! Habla con Atlas para comenzar 🚀',
|
|
186
|
+
guide_credits: '✨ BMAD+ es creado por Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
187
|
+
uninstall_confirm: '¿Eliminar BMAD+ de este proyecto?',
|
|
188
188
|
uninstall_removing: 'Eliminando...',
|
|
189
|
-
uninstall_done: (n) =>
|
|
190
|
-
uninstall_output_kept: '
|
|
189
|
+
uninstall_done: (n) => `✅ BMAD+ eliminado (${n} elementos)`,
|
|
190
|
+
uninstall_output_kept: '📁 _bmad-output/ conservado (contiene archivos)',
|
|
191
191
|
installed_on: 'instalado el',
|
|
192
|
-
update_confirm: '
|
|
192
|
+
update_confirm: '¿Actualizar agentes y habilidades?',
|
|
193
193
|
update_updating: 'Actualizando agentes y habilidades...',
|
|
194
|
-
update_done: (n) =>
|
|
195
|
-
update_current: '
|
|
196
|
-
update_ready: '
|
|
194
|
+
update_done: (n) => `✅ ${n} archivos actualizados`,
|
|
195
|
+
update_current: '✅ ¡Ya está actualizado!',
|
|
196
|
+
update_ready: '¡Actualización completada! 🚀',
|
|
197
|
+
guide_cli_title: 'Comandos CLI',
|
|
198
|
+
guide_cli_install: '— Instalar agentes y habilidades',
|
|
199
|
+
guide_cli_update: '— Actualizar (conserva la config)',
|
|
200
|
+
guide_cli_doctor: '— Verificar la instalación',
|
|
201
|
+
guide_cli_uninstall: '— Eliminar BMAD+ del proyecto',
|
|
202
|
+
guide_examples_title: 'Ejemplos rápidos',
|
|
203
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
204
|
+
guide_example_backup: '🗂️ Backup: "/backup create" → ZIP con marca de tiempo',
|
|
205
|
+
guide_example_animated: '🎬 Animado: "/animated build hero.mp4"',
|
|
206
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
197
207
|
},
|
|
198
208
|
|
|
199
209
|
de: {
|
|
200
|
-
flag: '
|
|
210
|
+
flag: '🇩🇪',
|
|
201
211
|
name: 'Deutsch',
|
|
202
212
|
locale: 'de',
|
|
203
|
-
installer_title: ' BMAD+ Installer v0.4.
|
|
204
|
-
select_language: '
|
|
213
|
+
installer_title: ' BMAD+ Installer v0.4.4 ',
|
|
214
|
+
select_language: 'Wählen Sie Ihre Sprache',
|
|
205
215
|
installing_to: 'Installiere in',
|
|
206
216
|
select_packs: 'Welche Packs installieren? (Core ist immer enthalten)',
|
|
207
217
|
select_ide: 'Welche IDE verwendest du?',
|
|
208
218
|
detected_ides: 'Erkannte IDEs',
|
|
209
|
-
selected_packs: '
|
|
210
|
-
enter_name: 'Dein Vorname (Agenten verwenden ihn zur
|
|
219
|
+
selected_packs: 'Ausgewählte Packs',
|
|
220
|
+
enter_name: 'Dein Vorname (Agenten verwenden ihn zur Begrüßung)',
|
|
211
221
|
comm_language: 'Kommunikationssprache',
|
|
212
|
-
exec_mode: '
|
|
213
|
-
exec_manual: 'Manuell
|
|
214
|
-
exec_autopilot: 'Autopilot
|
|
215
|
-
exec_hybrid: 'Hybrid
|
|
222
|
+
exec_mode: 'Ausführungsmodus',
|
|
223
|
+
exec_manual: 'Manuell — Du rufst Agenten selbst auf',
|
|
224
|
+
exec_autopilot: 'Autopilot — Nexus verwaltet die gesamte Pipeline',
|
|
225
|
+
exec_hybrid: 'Hybrid — Autopilot mit häufigen Checkpoints',
|
|
216
226
|
installing_files: 'Dateien werden installiert...',
|
|
217
227
|
configuring_ides: 'IDEs werden konfiguriert...',
|
|
218
|
-
installed_summary: (a, s, f) =>
|
|
219
|
-
ide_configured: (n) =>
|
|
228
|
+
installed_summary: (a, s, f) => `✅ ${a} Agenten, ${s} Skills, ${f} Dateien kopiert`,
|
|
229
|
+
ide_configured: (n) => `✅ ${n} IDE(s) konfiguriert`,
|
|
220
230
|
cancelled: 'Installation abgebrochen.',
|
|
221
231
|
failed: 'Installation fehlgeschlagen.',
|
|
222
232
|
source_not_found: 'Quellverzeichnis nicht gefunden',
|
|
223
|
-
soon: 'bald
|
|
224
|
-
guide_title: '
|
|
225
|
-
guide_who: '
|
|
233
|
+
soon: 'bald verfügbar',
|
|
234
|
+
guide_title: '✅ Installation abgeschlossen — Erste Schritte',
|
|
235
|
+
guide_who: '💬 Mit wem sprechen?',
|
|
226
236
|
guide_idea: 'Eine Idee besprechen',
|
|
227
237
|
guide_prd: 'Ein PRD erstellen',
|
|
228
238
|
guide_arch: 'Technische Architektur',
|
|
@@ -232,333 +242,393 @@ const LANGUAGES = {
|
|
|
232
242
|
guide_auto: 'Alles automatisieren',
|
|
233
243
|
guide_osint: 'OSINT-Ermittlung',
|
|
234
244
|
guide_maker: 'Einen neuen Agenten erstellen',
|
|
235
|
-
guide_seo: 'SEO / GEO Audit (360
|
|
245
|
+
guide_seo: 'SEO / GEO Audit (360°)',
|
|
236
246
|
guide_backup: 'Intelligente Projektsicherung',
|
|
237
247
|
guide_animated: 'Animierte Luxus-Website',
|
|
238
|
-
guide_workflow: '
|
|
239
|
-
guide_or_auto: '
|
|
240
|
-
guide_output: '
|
|
241
|
-
guide_ready: 'BMAD+ ist bereit! Sprich mit Atlas um loszulegen
|
|
242
|
-
guide_credits: '
|
|
248
|
+
guide_workflow: '🚀 Empfohlener Workflow:',
|
|
249
|
+
guide_or_auto: '⚡ Oder: "autopilot" für vollautomatische Verwaltung',
|
|
250
|
+
guide_output: '📁 Ausgabe',
|
|
251
|
+
guide_ready: 'BMAD+ ist bereit! Sprich mit Atlas um loszulegen 🚀',
|
|
252
|
+
guide_credits: '✨ BMAD+ wurde erstellt von Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
243
253
|
uninstall_confirm: 'BMAD+ aus diesem Projekt entfernen?',
|
|
244
254
|
uninstall_removing: 'Entfernen...',
|
|
245
|
-
uninstall_done: (n) =>
|
|
246
|
-
uninstall_output_kept: '
|
|
255
|
+
uninstall_done: (n) => `✅ BMAD+ entfernt (${n} Elemente)`,
|
|
256
|
+
uninstall_output_kept: '📁 _bmad-output/ beibehalten (enthält Dateien)',
|
|
247
257
|
installed_on: 'installiert am',
|
|
248
258
|
update_confirm: 'Agenten und Skills aktualisieren?',
|
|
249
259
|
update_updating: 'Agenten und Skills werden aktualisiert...',
|
|
250
|
-
update_done: (n) =>
|
|
251
|
-
update_current: '
|
|
252
|
-
update_ready: 'Update abgeschlossen!
|
|
260
|
+
update_done: (n) => `✅ ${n} Dateien aktualisiert`,
|
|
261
|
+
update_current: '✅ Bereits aktuell!',
|
|
262
|
+
update_ready: 'Update abgeschlossen! 🚀',
|
|
263
|
+
guide_cli_title: 'CLI-Befehle',
|
|
264
|
+
guide_cli_install: '— Agenten & Skills installieren',
|
|
265
|
+
guide_cli_update: '— Aktualisieren (Konfiguration bleibt)',
|
|
266
|
+
guide_cli_doctor: '— Installation prüfen',
|
|
267
|
+
guide_cli_uninstall: '— BMAD+ vom Projekt entfernen',
|
|
268
|
+
guide_examples_title: 'Schnellbeispiele',
|
|
269
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
270
|
+
guide_example_backup: '🗂️ Backup: "/backup create" → ZIP mit Zeitstempel',
|
|
271
|
+
guide_example_animated: '🎬 Animiert: "/animated build hero.mp4"',
|
|
272
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
253
273
|
},
|
|
254
274
|
|
|
255
275
|
'pt-br': {
|
|
256
|
-
flag: '
|
|
257
|
-
name: '
|
|
276
|
+
flag: '🇧🇷',
|
|
277
|
+
name: 'Português (Brasil)',
|
|
258
278
|
locale: 'pt-BR',
|
|
259
|
-
installer_title: ' BMAD+ Instalador v0.4.
|
|
279
|
+
installer_title: ' BMAD+ Instalador v0.4.4 ',
|
|
260
280
|
select_language: 'Selecione seu idioma',
|
|
261
281
|
installing_to: 'Instalando em',
|
|
262
|
-
select_packs: 'Quais packs instalar? (Core sempre
|
|
263
|
-
select_ide: 'Qual IDE
|
|
282
|
+
select_packs: 'Quais packs instalar? (Core sempre está incluído)',
|
|
283
|
+
select_ide: 'Qual IDE você usa?',
|
|
264
284
|
detected_ides: 'IDEs detectados',
|
|
265
285
|
selected_packs: 'Packs selecionados',
|
|
266
286
|
enter_name: 'Seu nome (os agentes usam para te cumprimentar)',
|
|
267
|
-
comm_language: 'Idioma de
|
|
268
|
-
exec_mode: 'Modo de
|
|
269
|
-
exec_manual: 'Manual
|
|
270
|
-
exec_autopilot: 'Autopilot
|
|
271
|
-
exec_hybrid: '
|
|
287
|
+
comm_language: 'Idioma de comunicação',
|
|
288
|
+
exec_mode: 'Modo de execução',
|
|
289
|
+
exec_manual: 'Manual — Você chama os agentes',
|
|
290
|
+
exec_autopilot: 'Autopilot — Nexus gerencia todo o pipeline',
|
|
291
|
+
exec_hybrid: 'Híbrido — Autopilot com checkpoints frequentes',
|
|
272
292
|
installing_files: 'Instalando arquivos...',
|
|
273
293
|
configuring_ides: 'Configurando IDEs...',
|
|
274
|
-
installed_summary: (a, s, f) =>
|
|
275
|
-
ide_configured: (n) =>
|
|
276
|
-
cancelled: '
|
|
277
|
-
failed: '
|
|
278
|
-
source_not_found: '
|
|
294
|
+
installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} arquivos copiados`,
|
|
295
|
+
ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
|
|
296
|
+
cancelled: 'Instalação cancelada.',
|
|
297
|
+
failed: 'Instalação falhou.',
|
|
298
|
+
source_not_found: 'Diretório fonte não encontrado',
|
|
279
299
|
soon: 'em breve',
|
|
280
|
-
guide_title: '
|
|
281
|
-
guide_who: '
|
|
300
|
+
guide_title: '✅ Instalação completa — Como começar',
|
|
301
|
+
guide_who: '💬 Com quem falar?',
|
|
282
302
|
guide_idea: 'Discutir uma ideia',
|
|
283
303
|
guide_prd: 'Criar um PRD',
|
|
284
|
-
guide_arch: 'Arquitetura
|
|
285
|
-
guide_code: 'Implementar
|
|
304
|
+
guide_arch: 'Arquitetura técnica',
|
|
305
|
+
guide_code: 'Implementar código',
|
|
286
306
|
guide_test: 'Testar / code review',
|
|
287
307
|
guide_sprint: 'Planejar um sprint',
|
|
288
308
|
guide_auto: 'Automatizar tudo',
|
|
289
|
-
guide_osint: '
|
|
309
|
+
guide_osint: 'Investigação OSINT',
|
|
290
310
|
guide_maker: 'Criar um novo agente',
|
|
291
|
-
guide_seo: 'Auditoria SEO / GEO (360
|
|
311
|
+
guide_seo: 'Auditoria SEO / GEO (360°)',
|
|
292
312
|
guide_backup: 'Backup inteligente do projeto',
|
|
293
313
|
guide_animated: 'Site animado de luxo',
|
|
294
|
-
guide_workflow: '
|
|
295
|
-
guide_or_auto: '
|
|
296
|
-
guide_output: '
|
|
297
|
-
guide_ready: 'BMAD+
|
|
298
|
-
guide_credits: '
|
|
314
|
+
guide_workflow: '🚀 Fluxo recomendado:',
|
|
315
|
+
guide_or_auto: '⚡ Ou: "autopilot" para gerenciar tudo automaticamente',
|
|
316
|
+
guide_output: '📁 Saída',
|
|
317
|
+
guide_ready: 'BMAD+ está pronto! Fale com Atlas para começar 🚀',
|
|
318
|
+
guide_credits: '✨ BMAD+ foi criado por Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
299
319
|
uninstall_confirm: 'Remover BMAD+ deste projeto?',
|
|
300
320
|
uninstall_removing: 'Removendo...',
|
|
301
|
-
uninstall_done: (n) =>
|
|
302
|
-
uninstall_output_kept: '
|
|
321
|
+
uninstall_done: (n) => `✅ BMAD+ removido (${n} itens)`,
|
|
322
|
+
uninstall_output_kept: '📁 _bmad-output/ mantido (contém arquivos)',
|
|
303
323
|
installed_on: 'instalado em',
|
|
304
324
|
update_confirm: 'Atualizar agentes e habilidades?',
|
|
305
325
|
update_updating: 'Atualizando agentes e habilidades...',
|
|
306
|
-
update_done: (n) =>
|
|
307
|
-
update_current: '
|
|
308
|
-
update_ready: '
|
|
326
|
+
update_done: (n) => `✅ ${n} arquivos atualizados`,
|
|
327
|
+
update_current: '✅ Já está atualizado!',
|
|
328
|
+
update_ready: 'Atualização concluída! 🚀',
|
|
329
|
+
guide_cli_title: 'Comandos CLI',
|
|
330
|
+
guide_cli_install: '— Instalar agentes e habilidades',
|
|
331
|
+
guide_cli_update: '— Atualizar (mantém config)',
|
|
332
|
+
guide_cli_doctor: '— Verificar instalação',
|
|
333
|
+
guide_cli_uninstall: '— Remover BMAD+ do projeto',
|
|
334
|
+
guide_examples_title: 'Exemplos rápidos',
|
|
335
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
336
|
+
guide_example_backup: '🗂️ Backup: "/backup create" → ZIP com timestamp',
|
|
337
|
+
guide_example_animated: '🎬 Animado: "/animated build hero.mp4"',
|
|
338
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
309
339
|
},
|
|
310
340
|
|
|
311
341
|
ru: {
|
|
312
|
-
flag: '
|
|
313
|
-
name: '
|
|
342
|
+
flag: '🇷🇺',
|
|
343
|
+
name: 'Русский',
|
|
314
344
|
locale: 'ru',
|
|
315
|
-
installer_title: ' BMAD+
|
|
316
|
-
select_language: '
|
|
317
|
-
installing_to: '
|
|
318
|
-
select_packs: '
|
|
319
|
-
select_ide: '
|
|
320
|
-
detected_ides: '
|
|
321
|
-
selected_packs: '
|
|
322
|
-
enter_name: '
|
|
323
|
-
comm_language: '
|
|
324
|
-
exec_mode: '
|
|
325
|
-
exec_manual: '
|
|
326
|
-
exec_autopilot: '
|
|
327
|
-
exec_hybrid: '
|
|
328
|
-
installing_files: '
|
|
329
|
-
configuring_ides: '
|
|
330
|
-
installed_summary: (a, s, f) =>
|
|
331
|
-
ide_configured: (n) =>
|
|
332
|
-
cancelled: '
|
|
333
|
-
failed: '
|
|
334
|
-
source_not_found: '
|
|
335
|
-
soon: '
|
|
336
|
-
guide_title: '
|
|
337
|
-
guide_who: '
|
|
338
|
-
guide_idea: '
|
|
339
|
-
guide_prd: '
|
|
340
|
-
guide_arch: '
|
|
341
|
-
guide_code: '
|
|
342
|
-
guide_test: '
|
|
343
|
-
guide_sprint: '
|
|
344
|
-
guide_auto: '
|
|
345
|
-
guide_osint: 'OSINT
|
|
346
|
-
guide_maker: '
|
|
347
|
-
guide_seo: 'SEO / GEO
|
|
348
|
-
guide_backup: '
|
|
349
|
-
guide_animated: '
|
|
350
|
-
guide_workflow: '
|
|
351
|
-
guide_or_auto: '
|
|
352
|
-
guide_output: '
|
|
353
|
-
guide_ready: 'BMAD+
|
|
354
|
-
guide_credits: '
|
|
355
|
-
uninstall_confirm: '
|
|
356
|
-
uninstall_removing: '
|
|
357
|
-
uninstall_done: (n) =>
|
|
358
|
-
uninstall_output_kept: '
|
|
359
|
-
installed_on: '
|
|
360
|
-
update_confirm: '
|
|
361
|
-
update_updating: '
|
|
362
|
-
update_done: (n) =>
|
|
363
|
-
update_current: '
|
|
364
|
-
update_ready: '
|
|
345
|
+
installer_title: ' BMAD+ Установщик v0.4.4 ',
|
|
346
|
+
select_language: 'Выберите язык',
|
|
347
|
+
installing_to: 'Установка в',
|
|
348
|
+
select_packs: 'Какие пакеты установить? (Core всегда включён)',
|
|
349
|
+
select_ide: 'Какую IDE вы используете?',
|
|
350
|
+
detected_ides: 'Обнаруженные IDE',
|
|
351
|
+
selected_packs: 'Выбранные пакеты',
|
|
352
|
+
enter_name: 'Ваше имя (агенты используют его для приветствия)',
|
|
353
|
+
comm_language: 'Язык общения',
|
|
354
|
+
exec_mode: 'Режим выполнения',
|
|
355
|
+
exec_manual: 'Ручной — Вы вызываете агентов сами',
|
|
356
|
+
exec_autopilot: 'Автопилот — Nexus управляет всем конвейером',
|
|
357
|
+
exec_hybrid: 'Гибрид — Автопилот с частыми контрольными точками',
|
|
358
|
+
installing_files: 'Установка файлов...',
|
|
359
|
+
configuring_ides: 'Настройка IDE...',
|
|
360
|
+
installed_summary: (a, s, f) => `✅ ${a} агентов, ${s} навыков, ${f} файлов скопировано`,
|
|
361
|
+
ide_configured: (n) => `✅ ${n} IDE настроено`,
|
|
362
|
+
cancelled: 'Установка отменена.',
|
|
363
|
+
failed: 'Установка не удалась.',
|
|
364
|
+
source_not_found: 'Исходная директория не найдена',
|
|
365
|
+
soon: 'скоро',
|
|
366
|
+
guide_title: '✅ Установка завершена — Начало работы',
|
|
367
|
+
guide_who: '💬 С кем поговорить?',
|
|
368
|
+
guide_idea: 'Обсудить идею',
|
|
369
|
+
guide_prd: 'Создать PRD',
|
|
370
|
+
guide_arch: 'Техническая архитектура',
|
|
371
|
+
guide_code: 'Реализовать код',
|
|
372
|
+
guide_test: 'Тестировать / ревью кода',
|
|
373
|
+
guide_sprint: 'Планировать спринт',
|
|
374
|
+
guide_auto: 'Автоматизировать всё',
|
|
375
|
+
guide_osint: 'OSINT расследование',
|
|
376
|
+
guide_maker: 'Создать нового агента',
|
|
377
|
+
guide_seo: 'SEO / GEO аудит (360°)',
|
|
378
|
+
guide_backup: 'Умное резервное копирование',
|
|
379
|
+
guide_animated: 'Анимированный люксовый сайт',
|
|
380
|
+
guide_workflow: '🚀 Рекомендуемый рабочий процесс:',
|
|
381
|
+
guide_or_auto: '⚡ Или: "autopilot" для полной автоматизации',
|
|
382
|
+
guide_output: '📁 Вывод',
|
|
383
|
+
guide_ready: 'BMAD+ готов! Поговорите с Atlas чтобы начать 🚀',
|
|
384
|
+
guide_credits: '✨ BMAD+ создан Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
385
|
+
uninstall_confirm: 'Удалить BMAD+ из этого проекта?',
|
|
386
|
+
uninstall_removing: 'Удаление...',
|
|
387
|
+
uninstall_done: (n) => `✅ BMAD+ удалён (${n} элементов)`,
|
|
388
|
+
uninstall_output_kept: '📁 _bmad-output/ сохранён (содержит файлы)',
|
|
389
|
+
installed_on: 'установлено',
|
|
390
|
+
update_confirm: 'Обновить агентов и навыки?',
|
|
391
|
+
update_updating: 'Обновление агентов и навыков...',
|
|
392
|
+
update_done: (n) => `✅ ${n} файлов обновлено`,
|
|
393
|
+
update_current: '✅ Уже актуально!',
|
|
394
|
+
update_ready: 'Обновление завершено! 🚀',
|
|
395
|
+
guide_cli_title: 'Команды CLI',
|
|
396
|
+
guide_cli_install: '— Установить агентов',
|
|
397
|
+
guide_cli_update: '— Обновить (сохранить конфиг)',
|
|
398
|
+
guide_cli_doctor: '— Проверить установку',
|
|
399
|
+
guide_cli_uninstall: '— Удалить BMAD+',
|
|
400
|
+
guide_examples_title: 'Быстрые примеры',
|
|
401
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
402
|
+
guide_example_backup: '🗂️ Бэкап: "/backup create" → ZIP',
|
|
403
|
+
guide_example_animated: '🎬 Анимация: "/animated build hero.mp4"',
|
|
404
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
365
405
|
},
|
|
366
406
|
|
|
367
407
|
zh: {
|
|
368
|
-
flag: '
|
|
369
|
-
name: '
|
|
408
|
+
flag: '🇨🇳',
|
|
409
|
+
name: '中文 (简体)',
|
|
370
410
|
locale: 'zh-CN',
|
|
371
|
-
installer_title: ' BMAD+
|
|
372
|
-
select_language: '
|
|
373
|
-
installing_to: '
|
|
374
|
-
select_packs: '
|
|
375
|
-
select_ide: '
|
|
376
|
-
detected_ides: '
|
|
377
|
-
selected_packs: '
|
|
378
|
-
enter_name: '
|
|
379
|
-
comm_language: '
|
|
380
|
-
exec_mode: '
|
|
381
|
-
exec_manual: '
|
|
382
|
-
exec_autopilot: '
|
|
383
|
-
exec_hybrid: '
|
|
384
|
-
installing_files: '
|
|
385
|
-
configuring_ides: '
|
|
386
|
-
installed_summary: (a, s, f) =>
|
|
387
|
-
ide_configured: (n) =>
|
|
388
|
-
cancelled: '
|
|
389
|
-
failed: '
|
|
390
|
-
source_not_found: '
|
|
391
|
-
soon: '
|
|
392
|
-
guide_title: '
|
|
393
|
-
guide_who: '
|
|
394
|
-
guide_idea: '
|
|
395
|
-
guide_prd: '
|
|
396
|
-
guide_arch: '
|
|
397
|
-
guide_code: '
|
|
398
|
-
guide_test: '
|
|
399
|
-
guide_sprint: '
|
|
400
|
-
guide_auto: '
|
|
401
|
-
guide_osint: 'OSINT
|
|
402
|
-
guide_maker: '
|
|
403
|
-
guide_seo: 'SEO / GEO
|
|
404
|
-
guide_backup: '
|
|
405
|
-
guide_animated: '
|
|
406
|
-
guide_workflow: '
|
|
407
|
-
guide_or_auto: '
|
|
408
|
-
guide_output: '
|
|
409
|
-
guide_ready: 'BMAD+
|
|
410
|
-
guide_credits: '
|
|
411
|
-
uninstall_confirm: '
|
|
412
|
-
uninstall_removing: '
|
|
413
|
-
uninstall_done: (n) =>
|
|
414
|
-
uninstall_output_kept: '
|
|
415
|
-
installed_on: '
|
|
416
|
-
update_confirm: '
|
|
417
|
-
update_updating: '
|
|
418
|
-
update_done: (n) =>
|
|
419
|
-
update_current: '
|
|
420
|
-
update_ready: '
|
|
411
|
+
installer_title: ' BMAD+ 安装程序 v0.4.4 ',
|
|
412
|
+
select_language: '选择您的语言',
|
|
413
|
+
installing_to: '安装到',
|
|
414
|
+
select_packs: '安装哪些包?(Core 始终包含)',
|
|
415
|
+
select_ide: '您使用哪个 IDE?',
|
|
416
|
+
detected_ides: '检测到的 IDE',
|
|
417
|
+
selected_packs: '已选择的包',
|
|
418
|
+
enter_name: '您的名字(代理会用它来问候您)',
|
|
419
|
+
comm_language: '沟通语言',
|
|
420
|
+
exec_mode: '执行模式',
|
|
421
|
+
exec_manual: '手动 — 您自己调用代理',
|
|
422
|
+
exec_autopilot: '自动驾驶 — Nexus 管理整个流程',
|
|
423
|
+
exec_hybrid: '混合 — 自动驾驶并设有频繁检查点',
|
|
424
|
+
installing_files: '正在安装文件...',
|
|
425
|
+
configuring_ides: '正在配置 IDE...',
|
|
426
|
+
installed_summary: (a, s, f) => `✅ ${a} 个代理、${s} 个技能、${f} 个文件已复制`,
|
|
427
|
+
ide_configured: (n) => `✅ ${n} 个 IDE 已配置`,
|
|
428
|
+
cancelled: '安装已取消。',
|
|
429
|
+
failed: '安装失败。',
|
|
430
|
+
source_not_found: '未找到源目录',
|
|
431
|
+
soon: '即将推出',
|
|
432
|
+
guide_title: '✅ 安装完成 — 如何开始',
|
|
433
|
+
guide_who: '💬 与谁交谈?',
|
|
434
|
+
guide_idea: '讨论一个想法',
|
|
435
|
+
guide_prd: '创建 PRD',
|
|
436
|
+
guide_arch: '技术架构',
|
|
437
|
+
guide_code: '实现代码',
|
|
438
|
+
guide_test: '测试 / 代码审查',
|
|
439
|
+
guide_sprint: '规划冲刺',
|
|
440
|
+
guide_auto: '自动化一切',
|
|
441
|
+
guide_osint: 'OSINT 调查',
|
|
442
|
+
guide_maker: '创建新代理',
|
|
443
|
+
guide_seo: 'SEO / GEO 审计 (360°)',
|
|
444
|
+
guide_backup: '智能项目备份',
|
|
445
|
+
guide_animated: '动画奢华网站',
|
|
446
|
+
guide_workflow: '🚀 推荐工作流程:',
|
|
447
|
+
guide_or_auto: '⚡ 或者:"autopilot" 全自动管理',
|
|
448
|
+
guide_output: '📁 输出',
|
|
449
|
+
guide_ready: 'BMAD+ 已就绪!与 Atlas 交谈开始 🚀',
|
|
450
|
+
guide_credits: '✨ BMAD+ 由 Laurent Rochetta 创建 — github.com/lrochetta/BMAD-PLUS ✨',
|
|
451
|
+
uninstall_confirm: '从此项目中删除 BMAD+?',
|
|
452
|
+
uninstall_removing: '删除中...',
|
|
453
|
+
uninstall_done: (n) => `✅ BMAD+ 已删除(${n} 项)`,
|
|
454
|
+
uninstall_output_kept: '📁 _bmad-output/ 已保留(包含文件)',
|
|
455
|
+
installed_on: '安装于',
|
|
456
|
+
update_confirm: '更新代理和技能?',
|
|
457
|
+
update_updating: '正在更新代理和技能...',
|
|
458
|
+
update_done: (n) => `✅ ${n} 个文件已更新`,
|
|
459
|
+
update_current: '✅ 已是最新版本!',
|
|
460
|
+
update_ready: '更新完成!🚀',
|
|
461
|
+
guide_cli_title: 'CLI 命令',
|
|
462
|
+
guide_cli_install: '— 安装代理和技能',
|
|
463
|
+
guide_cli_update: '— 更新(保留配置)',
|
|
464
|
+
guide_cli_doctor: '— 检查安装',
|
|
465
|
+
guide_cli_uninstall: '— 删除 BMAD+',
|
|
466
|
+
guide_examples_title: '快速示例',
|
|
467
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
468
|
+
guide_example_backup: '🗂️ 备份: "/backup create" → ZIP',
|
|
469
|
+
guide_example_animated: '🎬 动画: "/animated build hero.mp4"',
|
|
470
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
421
471
|
},
|
|
422
472
|
|
|
423
473
|
he: {
|
|
424
|
-
flag: '
|
|
425
|
-
name: '
|
|
474
|
+
flag: '🇮🇱',
|
|
475
|
+
name: 'עברית',
|
|
426
476
|
locale: 'he',
|
|
427
|
-
installer_title: ' BMAD+
|
|
428
|
-
select_language: '
|
|
429
|
-
installing_to: '
|
|
430
|
-
select_packs: '
|
|
431
|
-
select_ide: '
|
|
432
|
-
detected_ides: 'IDE
|
|
433
|
-
selected_packs: '
|
|
434
|
-
enter_name: '
|
|
435
|
-
comm_language: '
|
|
436
|
-
exec_mode: '
|
|
437
|
-
exec_manual: '
|
|
438
|
-
exec_autopilot: '
|
|
439
|
-
exec_hybrid: '
|
|
440
|
-
installing_files: '
|
|
441
|
-
configuring_ides: '
|
|
442
|
-
installed_summary: (a, s, f) =>
|
|
443
|
-
ide_configured: (n) =>
|
|
444
|
-
cancelled: '
|
|
445
|
-
failed: '
|
|
446
|
-
source_not_found: '
|
|
447
|
-
soon: '
|
|
448
|
-
guide_title: '
|
|
449
|
-
guide_who: '
|
|
450
|
-
guide_idea: '
|
|
451
|
-
guide_prd: '
|
|
452
|
-
guide_arch: '
|
|
453
|
-
guide_code: '
|
|
454
|
-
guide_test: '
|
|
455
|
-
guide_sprint: '
|
|
456
|
-
guide_auto: '
|
|
457
|
-
guide_osint: '
|
|
458
|
-
guide_maker: '
|
|
459
|
-
guide_seo: '
|
|
460
|
-
guide_backup: '
|
|
461
|
-
guide_animated: '
|
|
462
|
-
guide_workflow: '
|
|
463
|
-
guide_or_auto: '
|
|
464
|
-
guide_output: '
|
|
465
|
-
guide_ready: '!BMAD+
|
|
466
|
-
guide_credits: '
|
|
467
|
-
uninstall_confirm: '
|
|
468
|
-
uninstall_removing: '
|
|
469
|
-
uninstall_done: (n) =>
|
|
470
|
-
uninstall_output_kept: '
|
|
471
|
-
installed_on: '
|
|
472
|
-
update_confirm: '
|
|
473
|
-
update_updating: '
|
|
474
|
-
update_done: (n) =>
|
|
475
|
-
update_current: '
|
|
476
|
-
update_ready: '
|
|
477
|
+
installer_title: ' BMAD+ מתקין v0.4.4 ',
|
|
478
|
+
select_language: 'בחר את השפה שלך',
|
|
479
|
+
installing_to: 'מתקין ב',
|
|
480
|
+
select_packs: 'אילו חבילות להתקין? (Core תמיד כלול)',
|
|
481
|
+
select_ide: 'באיזה IDE אתה משתמש?',
|
|
482
|
+
detected_ides: 'IDE שזוהו',
|
|
483
|
+
selected_packs: 'חבילות שנבחרו',
|
|
484
|
+
enter_name: 'השם שלך (הסוכנים משתמשים בו לברכך)',
|
|
485
|
+
comm_language: 'שפת תקשורת',
|
|
486
|
+
exec_mode: 'מצב ביצוע',
|
|
487
|
+
exec_manual: 'ידני — אתה קורא לסוכנים בעצמך',
|
|
488
|
+
exec_autopilot: 'טייס אוטומטי — Nexus מנהל את כל הצינור',
|
|
489
|
+
exec_hybrid: 'היברידי — טייס אוטומטי עם נקודות בקרה תכופות',
|
|
490
|
+
installing_files: 'מתקין קבצים...',
|
|
491
|
+
configuring_ides: 'מגדיר IDE...',
|
|
492
|
+
installed_summary: (a, s, f) => `✅ ${a} סוכנים, ${s} כישורים, ${f} קבצים הועתקו`,
|
|
493
|
+
ide_configured: (n) => `✅ ${n} IDE הוגדרו`,
|
|
494
|
+
cancelled: 'ההתקנה בוטלה.',
|
|
495
|
+
failed: 'ההתקנה נכשלה.',
|
|
496
|
+
source_not_found: 'ספריית המקור לא נמצאה',
|
|
497
|
+
soon: 'בקרוב',
|
|
498
|
+
guide_title: '✅ ההתקנה הושלמה — איך להתחיל',
|
|
499
|
+
guide_who: '💬 עם מי לדבר?',
|
|
500
|
+
guide_idea: 'לדון ברעיון',
|
|
501
|
+
guide_prd: 'ליצור PRD',
|
|
502
|
+
guide_arch: 'ארכיטקטורה טכנית',
|
|
503
|
+
guide_code: 'לממש קוד',
|
|
504
|
+
guide_test: 'לבדוק / סקירת קוד',
|
|
505
|
+
guide_sprint: 'לתכנן ספרינט',
|
|
506
|
+
guide_auto: 'לאוטמט הכל',
|
|
507
|
+
guide_osint: 'חקירת OSINT',
|
|
508
|
+
guide_maker: 'ליצור סוכן חדש',
|
|
509
|
+
guide_seo: 'ביקורת SEO / GEO (360°)',
|
|
510
|
+
guide_backup: 'גיבוי חכם של הפרויקט',
|
|
511
|
+
guide_animated: 'אתר אנימציה יוקרתי',
|
|
512
|
+
guide_workflow: '🚀 תהליך עבודה מומלץ:',
|
|
513
|
+
guide_or_auto: '⚡ או: "autopilot" לניהול אוטומטי מלא',
|
|
514
|
+
guide_output: '📁 פלט',
|
|
515
|
+
guide_ready: '!BMAD+ מוכן! דבר עם Atlas כדי להתחיל 🚀',
|
|
516
|
+
guide_credits: '✨ BMAD+ נוצר על ידי Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
517
|
+
uninstall_confirm: 'להסיר את BMAD+ מהפרויקט הזה?',
|
|
518
|
+
uninstall_removing: 'מסיר...',
|
|
519
|
+
uninstall_done: (n) => `✅ BMAD+ הוסר (${n} פריטים)`,
|
|
520
|
+
uninstall_output_kept: '📁 _bmad-output/ נשמר (מכיל קבצים)',
|
|
521
|
+
installed_on: 'הותקן ב',
|
|
522
|
+
update_confirm: 'לעדכן סוכנים וכישורים?',
|
|
523
|
+
update_updating: 'מעדכן סוכנים וכישורים...',
|
|
524
|
+
update_done: (n) => `✅ ${n} קבצים עודכנו`,
|
|
525
|
+
update_current: '✅ כבר מעודכן!',
|
|
526
|
+
update_ready: 'העדכון הושלם! 🚀',
|
|
527
|
+
guide_cli_title: 'פקודות CLI',
|
|
528
|
+
guide_cli_install: '— התקנת סוכנים',
|
|
529
|
+
guide_cli_update: '— עדכון (שומר תצורה)',
|
|
530
|
+
guide_cli_doctor: '— בדיקת התקנה',
|
|
531
|
+
guide_cli_uninstall: '— הסרת BMAD+',
|
|
532
|
+
guide_examples_title: 'דוגמאות מהירות',
|
|
533
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
534
|
+
guide_example_backup: '🗂️ גיבוי: "/backup create" → ZIP',
|
|
535
|
+
guide_example_animated: '🎬 אנימציה: "/animated build hero.mp4"',
|
|
536
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
477
537
|
},
|
|
478
538
|
|
|
479
539
|
ja: {
|
|
480
|
-
flag: '
|
|
481
|
-
name: '
|
|
540
|
+
flag: '🇯🇵',
|
|
541
|
+
name: '日本語',
|
|
482
542
|
locale: 'ja',
|
|
483
|
-
installer_title: ' BMAD+
|
|
484
|
-
select_language: '
|
|
485
|
-
installing_to: '
|
|
486
|
-
select_packs: '
|
|
487
|
-
select_ide: '
|
|
488
|
-
detected_ides: '
|
|
489
|
-
selected_packs: '
|
|
490
|
-
enter_name: '
|
|
491
|
-
comm_language: '
|
|
492
|
-
exec_mode: '
|
|
493
|
-
exec_manual: '
|
|
494
|
-
exec_autopilot: '
|
|
495
|
-
exec_hybrid: '
|
|
496
|
-
installing_files: '
|
|
497
|
-
configuring_ides: 'IDE
|
|
498
|
-
installed_summary: (a, s, f) =>
|
|
499
|
-
ide_configured: (n) =>
|
|
500
|
-
cancelled: '
|
|
501
|
-
failed: '
|
|
502
|
-
source_not_found: '
|
|
503
|
-
soon: '
|
|
504
|
-
guide_title: '
|
|
505
|
-
guide_who: '
|
|
506
|
-
guide_idea: '
|
|
507
|
-
guide_prd: 'PRD
|
|
508
|
-
guide_arch: '
|
|
509
|
-
guide_code: '
|
|
510
|
-
guide_test: '
|
|
511
|
-
guide_sprint: '
|
|
512
|
-
guide_auto: '
|
|
513
|
-
guide_osint: 'OSINT
|
|
514
|
-
guide_maker: '
|
|
515
|
-
guide_seo: 'SEO / GEO
|
|
516
|
-
guide_backup: '
|
|
517
|
-
guide_animated: '
|
|
518
|
-
guide_workflow: '
|
|
519
|
-
guide_or_auto: '
|
|
520
|
-
guide_output: '
|
|
521
|
-
guide_ready: 'BMAD+
|
|
522
|
-
guide_credits: '
|
|
523
|
-
uninstall_confirm: '
|
|
524
|
-
uninstall_removing: '
|
|
525
|
-
uninstall_done: (n) =>
|
|
526
|
-
uninstall_output_kept: '
|
|
527
|
-
installed_on: '
|
|
528
|
-
update_confirm: '
|
|
529
|
-
update_updating: '
|
|
530
|
-
update_done: (n) =>
|
|
531
|
-
update_current: '
|
|
532
|
-
update_ready: '
|
|
543
|
+
installer_title: ' BMAD+ インストーラー v0.4.4 ',
|
|
544
|
+
select_language: '言語を選択してください',
|
|
545
|
+
installing_to: 'インストール先',
|
|
546
|
+
select_packs: 'どのパックをインストールしますか?(Coreは常に含まれます)',
|
|
547
|
+
select_ide: 'どのIDEを使用していますか?',
|
|
548
|
+
detected_ides: '検出されたIDE',
|
|
549
|
+
selected_packs: '選択されたパック',
|
|
550
|
+
enter_name: 'あなたの名前(エージェントが挨拶に使います)',
|
|
551
|
+
comm_language: 'コミュニケーション言語',
|
|
552
|
+
exec_mode: '実行モード',
|
|
553
|
+
exec_manual: '手動 — 自分でエージェントを呼び出す',
|
|
554
|
+
exec_autopilot: 'オートパイロット — Nexusがパイプライン全体を管理',
|
|
555
|
+
exec_hybrid: 'ハイブリッド — 頻繁なチェックポイント付きオートパイロット',
|
|
556
|
+
installing_files: 'ファイルをインストール中...',
|
|
557
|
+
configuring_ides: 'IDEを設定中...',
|
|
558
|
+
installed_summary: (a, s, f) => `✅ ${a}エージェント、${s}スキル、${f}ファイルをコピー`,
|
|
559
|
+
ide_configured: (n) => `✅ ${n}つのIDEを設定`,
|
|
560
|
+
cancelled: 'インストールがキャンセルされました。',
|
|
561
|
+
failed: 'インストールに失敗しました。',
|
|
562
|
+
source_not_found: 'ソースディレクトリが見つかりません',
|
|
563
|
+
soon: '近日公開',
|
|
564
|
+
guide_title: '✅ インストール完了 — 始め方',
|
|
565
|
+
guide_who: '💬 誰に話しかける?',
|
|
566
|
+
guide_idea: 'アイデアを議論する',
|
|
567
|
+
guide_prd: 'PRDを作成する',
|
|
568
|
+
guide_arch: '技術アーキテクチャ',
|
|
569
|
+
guide_code: 'コードを実装する',
|
|
570
|
+
guide_test: 'テスト / コードレビュー',
|
|
571
|
+
guide_sprint: 'スプリントを計画する',
|
|
572
|
+
guide_auto: 'すべてを自動化する',
|
|
573
|
+
guide_osint: 'OSINT調査',
|
|
574
|
+
guide_maker: '新しいエージェントを作成する',
|
|
575
|
+
guide_seo: 'SEO / GEO 監査 (360°)',
|
|
576
|
+
guide_backup: 'スマートプロジェクトバックアップ',
|
|
577
|
+
guide_animated: 'アニメーション高級ウェブサイト',
|
|
578
|
+
guide_workflow: '🚀 推奨ワークフロー:',
|
|
579
|
+
guide_or_auto: '⚡ または: "autopilot" で全自動管理',
|
|
580
|
+
guide_output: '📁 出力',
|
|
581
|
+
guide_ready: 'BMAD+ 準備完了!Atlasに話しかけて始めましょう 🚀',
|
|
582
|
+
guide_credits: '✨ BMAD+ は Laurent Rochetta によって作成されました — github.com/lrochetta/BMAD-PLUS ✨',
|
|
583
|
+
uninstall_confirm: 'このプロジェクトからBMAD+を削除しますか?',
|
|
584
|
+
uninstall_removing: '削除中...',
|
|
585
|
+
uninstall_done: (n) => `✅ BMAD+を削除しました(${n}項目)`,
|
|
586
|
+
uninstall_output_kept: '📁 _bmad-output/ は保持されました(ファイルが含まれています)',
|
|
587
|
+
installed_on: 'インストール日',
|
|
588
|
+
update_confirm: 'エージェントとスキルを更新しますか?',
|
|
589
|
+
update_updating: 'エージェントとスキルを更新中...',
|
|
590
|
+
update_done: (n) => `✅ ${n}ファイルを更新しました`,
|
|
591
|
+
update_current: '✅ 最新の状態です!',
|
|
592
|
+
update_ready: 'アップデート完了!🚀',
|
|
593
|
+
guide_cli_title: 'CLIコマンド',
|
|
594
|
+
guide_cli_install: '— エージェントをインストール',
|
|
595
|
+
guide_cli_update: '— 更新(設定保持)',
|
|
596
|
+
guide_cli_doctor: '— インストール確認',
|
|
597
|
+
guide_cli_uninstall: '— BMAD+を削除',
|
|
598
|
+
guide_examples_title: 'クイック例',
|
|
599
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
600
|
+
guide_example_backup: '🗂️ バックアップ: "/backup create" → ZIP',
|
|
601
|
+
guide_example_animated: '🎬 アニメ: "/animated build hero.mp4"',
|
|
602
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
533
603
|
},
|
|
534
604
|
|
|
535
605
|
it: {
|
|
536
|
-
flag: '
|
|
606
|
+
flag: '🇮🇹',
|
|
537
607
|
name: 'Italiano',
|
|
538
608
|
locale: 'it',
|
|
539
|
-
installer_title: ' BMAD+ Installatore v0.4.
|
|
609
|
+
installer_title: ' BMAD+ Installatore v0.4.4 ',
|
|
540
610
|
select_language: 'Seleziona la tua lingua',
|
|
541
611
|
installing_to: 'Installazione in',
|
|
542
|
-
select_packs: 'Quali pack installare? (Core
|
|
612
|
+
select_packs: 'Quali pack installare? (Core è sempre incluso)',
|
|
543
613
|
select_ide: 'Quale IDE usi?',
|
|
544
614
|
detected_ides: 'IDE rilevati',
|
|
545
615
|
selected_packs: 'Pack selezionati',
|
|
546
616
|
enter_name: 'Il tuo nome (gli agenti lo usano per salutarti)',
|
|
547
617
|
comm_language: 'Lingua di comunicazione',
|
|
548
|
-
exec_mode: '
|
|
549
|
-
exec_manual: 'Manuale
|
|
550
|
-
exec_autopilot: 'Autopilot
|
|
551
|
-
exec_hybrid: 'Ibrido
|
|
618
|
+
exec_mode: 'Modalità di esecuzione',
|
|
619
|
+
exec_manual: 'Manuale — Chiami tu gli agenti',
|
|
620
|
+
exec_autopilot: 'Autopilot — Nexus gestisce l\'intera pipeline',
|
|
621
|
+
exec_hybrid: 'Ibrido — Autopilot con checkpoint frequenti',
|
|
552
622
|
installing_files: 'Installazione file in corso...',
|
|
553
623
|
configuring_ides: 'Configurazione IDE...',
|
|
554
|
-
installed_summary: (a, s, f) =>
|
|
555
|
-
ide_configured: (n) =>
|
|
624
|
+
installed_summary: (a, s, f) => `✅ ${a} agenti, ${s} skill, ${f} file copiati`,
|
|
625
|
+
ide_configured: (n) => `✅ ${n} IDE configurati`,
|
|
556
626
|
cancelled: 'Installazione annullata.',
|
|
557
627
|
failed: 'Installazione fallita.',
|
|
558
628
|
source_not_found: 'Directory sorgente non trovata',
|
|
559
629
|
soon: 'prossimamente',
|
|
560
|
-
guide_title: '
|
|
561
|
-
guide_who: '
|
|
630
|
+
guide_title: '✅ Installazione completata — Come iniziare',
|
|
631
|
+
guide_who: '💬 Con chi parlare?',
|
|
562
632
|
guide_idea: 'Discutere un\'idea',
|
|
563
633
|
guide_prd: 'Creare un PRD',
|
|
564
634
|
guide_arch: 'Architettura tecnica',
|
|
@@ -568,24 +638,34 @@ const LANGUAGES = {
|
|
|
568
638
|
guide_auto: 'Automatizzare tutto',
|
|
569
639
|
guide_osint: 'Indagine OSINT',
|
|
570
640
|
guide_maker: 'Creare un nuovo agente',
|
|
571
|
-
guide_seo: 'Audit SEO / GEO (360
|
|
641
|
+
guide_seo: 'Audit SEO / GEO (360°)',
|
|
572
642
|
guide_backup: 'Backup intelligente del progetto',
|
|
573
643
|
guide_animated: 'Sito web animato di lusso',
|
|
574
|
-
guide_workflow: '
|
|
575
|
-
guide_or_auto: '
|
|
576
|
-
guide_output: '
|
|
577
|
-
guide_ready: 'BMAD+
|
|
578
|
-
guide_credits: '
|
|
644
|
+
guide_workflow: '🚀 Flusso consigliato:',
|
|
645
|
+
guide_or_auto: '⚡ Oppure: "autopilot" per gestire tutto automaticamente',
|
|
646
|
+
guide_output: '📁 Output',
|
|
647
|
+
guide_ready: 'BMAD+ è pronto! Parla con Atlas per iniziare 🚀',
|
|
648
|
+
guide_credits: '✨ BMAD+ è creato da Laurent Rochetta — github.com/lrochetta/BMAD-PLUS ✨',
|
|
579
649
|
uninstall_confirm: 'Rimuovere BMAD+ da questo progetto?',
|
|
580
650
|
uninstall_removing: 'Rimozione...',
|
|
581
|
-
uninstall_done: (n) =>
|
|
582
|
-
uninstall_output_kept: '
|
|
651
|
+
uninstall_done: (n) => `✅ BMAD+ rimosso (${n} elementi)`,
|
|
652
|
+
uninstall_output_kept: '📁 _bmad-output/ conservato (contiene file)',
|
|
583
653
|
installed_on: 'installato il',
|
|
584
654
|
update_confirm: 'Aggiornare agenti e skill?',
|
|
585
655
|
update_updating: 'Aggiornamento agenti e skill...',
|
|
586
|
-
update_done: (n) =>
|
|
587
|
-
update_current: '
|
|
588
|
-
update_ready: 'Aggiornamento completato!
|
|
656
|
+
update_done: (n) => `✅ ${n} file aggiornati`,
|
|
657
|
+
update_current: '✅ Già aggiornato!',
|
|
658
|
+
update_ready: 'Aggiornamento completato! 🚀',
|
|
659
|
+
guide_cli_title: 'Comandi CLI',
|
|
660
|
+
guide_cli_install: '— Installa agenti e skill',
|
|
661
|
+
guide_cli_update: '— Aggiorna (mantiene la config)',
|
|
662
|
+
guide_cli_doctor: '— Verifica installazione',
|
|
663
|
+
guide_cli_uninstall: '— Rimuovi BMAD+ dal progetto',
|
|
664
|
+
guide_examples_title: 'Esempi rapidi',
|
|
665
|
+
guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
|
|
666
|
+
guide_example_backup: '🗂️ Backup: "/backup create" → ZIP con timestamp',
|
|
667
|
+
guide_example_animated: '🎬 Animato: "/animated build hero.mp4"',
|
|
668
|
+
guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
|
|
589
669
|
},
|
|
590
670
|
};
|
|
591
671
|
|