bmad-plus 0.4.1 → 0.4.3
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 +38 -0
- package/README.md +4 -2
- package/package.json +5 -4
- 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/src/bmad-plus/agents/pack-animated/animated-website-agent.md +325 -0
- package/src/bmad-plus/agents/pack-animated/templates/animated-website-workflow.md +55 -0
- package/src/bmad-plus/agents/pack-backup/backup-agent.md +71 -0
- package/src/bmad-plus/agents/pack-backup/templates/backup-workflow.md +51 -0
- package/src/bmad-plus/agents/pack-seo/SKILL.md +171 -0
- package/src/bmad-plus/agents/pack-seo/checklist.md +140 -0
- package/src/bmad-plus/agents/pack-seo/pagespeed-playbook.md +320 -0
- package/src/bmad-plus/agents/pack-seo/ref/audit-schema.json +187 -0
- package/src/bmad-plus/agents/pack-seo/ref/cwv-thresholds.md +87 -0
- package/src/bmad-plus/agents/pack-seo/ref/eeat-criteria.md +123 -0
- package/src/bmad-plus/agents/pack-seo/ref/geo-signals.md +167 -0
- package/src/bmad-plus/agents/pack-seo/ref/hreflang-rules.md +153 -0
- package/src/bmad-plus/agents/pack-seo/ref/quality-gates.md +133 -0
- package/src/bmad-plus/agents/pack-seo/ref/schema-catalog.md +91 -0
- package/src/bmad-plus/agents/pack-seo/ref/schema-templates.json +356 -0
- package/src/bmad-plus/agents/pack-seo/seo-chief.md +294 -0
- package/src/bmad-plus/agents/pack-seo/seo-judge.md +241 -0
- package/src/bmad-plus/agents/pack-seo/seo-scout.md +171 -0
- package/src/bmad-plus/agents/pack-seo/templates/seo-audit-workflow.md +241 -0
- package/src/bmad-plus/module.yaml +29 -0
- package/tools/cli/bmad-plus-cli.js +23 -0
- package/tools/cli/commands/doctor.js +175 -0
- package/tools/cli/commands/install.js +54 -16
- package/tools/cli/commands/uninstall.js +34 -8
- package/tools/cli/commands/update.js +172 -0
- package/tools/cli/i18n.js +425 -303
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.3 ',
|
|
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,135 +42,187 @@ 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 | linkedin.com/in/laurentrochetta ✨',
|
|
53
|
+
// Uninstall
|
|
54
|
+
uninstall_confirm: 'Remove BMAD+ from this project?',
|
|
55
|
+
uninstall_removing: 'Removing...',
|
|
56
|
+
uninstall_done: (n) => `✅ BMAD+ removed (${n} items)`,
|
|
57
|
+
uninstall_output_kept: '📠_bmad-output/ kept (contains files)',
|
|
58
|
+
installed_on: 'installed',
|
|
59
|
+
// Update
|
|
60
|
+
update_confirm: 'Update agents and skills?',
|
|
61
|
+
update_updating: 'Updating agents and skills...',
|
|
62
|
+
update_done: (n) => `✅ ${n} files updated`,
|
|
63
|
+
update_current: '✅ Already up to date!',
|
|
64
|
+
update_ready: 'Update complete! 🚀',
|
|
65
|
+
guide_cli_title: 'CLI Commands',
|
|
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
|
+
guide_examples_title: 'Quick Examples',
|
|
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"',
|
|
53
75
|
},
|
|
54
76
|
|
|
55
77
|
fr: {
|
|
56
|
-
flag: '
|
|
57
|
-
name: '
|
|
78
|
+
flag: '🇫🇷',
|
|
79
|
+
name: 'Français',
|
|
58
80
|
locale: 'fr',
|
|
59
|
-
installer_title: ' BMAD+ Installeur v0.4.
|
|
81
|
+
installer_title: ' BMAD+ Installeur v0.4.3 ',
|
|
60
82
|
select_language: 'Choisissez votre langue',
|
|
61
83
|
installing_to: 'Installation dans',
|
|
62
84
|
select_packs: 'Quels packs installer ? (Core est toujours inclus)',
|
|
63
85
|
select_ide: 'Quels IDE utilises-tu ?',
|
|
64
|
-
detected_ides: 'IDE
|
|
65
|
-
selected_packs: 'Packs
|
|
66
|
-
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)',
|
|
67
89
|
comm_language: 'Langue de communication',
|
|
68
|
-
exec_mode: 'Mode d\'
|
|
69
|
-
exec_manual: 'Manuel
|
|
70
|
-
exec_autopilot: 'Autopilot
|
|
71
|
-
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',
|
|
72
94
|
installing_files: 'Installation des fichiers...',
|
|
73
95
|
configuring_ides: 'Configuration des IDE...',
|
|
74
|
-
installed_summary: (a, s, f) =>
|
|
75
|
-
ide_configured: (n) =>
|
|
76
|
-
cancelled: 'Installation
|
|
77
|
-
failed: 'Installation
|
|
78
|
-
source_not_found: '
|
|
79
|
-
soon: '
|
|
80
|
-
guide_title: '
|
|
81
|
-
guide_who: '
|
|
82
|
-
guide_idea: 'Discuter d\'une
|
|
83
|
-
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',
|
|
84
106
|
guide_arch: 'Architecture technique',
|
|
85
|
-
guide_code: '
|
|
107
|
+
guide_code: 'Implémenter du code',
|
|
86
108
|
guide_test: 'Tester / code review',
|
|
87
109
|
guide_sprint: 'Planifier un sprint',
|
|
88
110
|
guide_auto: 'Tout automatiser',
|
|
89
111
|
guide_osint: 'Investigation OSINT',
|
|
90
|
-
guide_maker: '
|
|
91
|
-
guide_seo: 'Audit SEO / GEO (360
|
|
112
|
+
guide_maker: 'Créer un nouvel agent',
|
|
113
|
+
guide_seo: 'Audit SEO / GEO (360°)',
|
|
92
114
|
guide_backup: 'Sauvegarde intelligente',
|
|
93
|
-
guide_animated: 'Site web
|
|
94
|
-
guide_workflow: '
|
|
95
|
-
guide_or_auto: '
|
|
96
|
-
guide_output: '
|
|
97
|
-
guide_ready: 'BMAD+ est
|
|
98
|
-
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 | linkedin.com/in/laurentrochetta ✨',
|
|
121
|
+
uninstall_confirm: 'Supprimer BMAD+ de ce projet ?',
|
|
122
|
+
uninstall_removing: 'Suppression...',
|
|
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
|
+
guide_cli_title: 'Commandes CLI',
|
|
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
|
+
guide_examples_title: 'Exemples rapides',
|
|
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"',
|
|
99
141
|
},
|
|
100
142
|
|
|
101
143
|
es: {
|
|
102
|
-
flag: '
|
|
103
|
-
name: '
|
|
144
|
+
flag: '🇪🇸',
|
|
145
|
+
name: 'Español',
|
|
104
146
|
locale: 'es',
|
|
105
|
-
installer_title: ' BMAD+ Instalador v0.4.
|
|
147
|
+
installer_title: ' BMAD+ Instalador v0.4.3 ',
|
|
106
148
|
select_language: 'Seleccione su idioma',
|
|
107
149
|
installing_to: 'Instalando en',
|
|
108
|
-
select_packs: '
|
|
109
|
-
select_ide: '
|
|
150
|
+
select_packs: '¿Qué packs instalar? (Core siempre está incluido)',
|
|
151
|
+
select_ide: '¿Qué IDE usas?',
|
|
110
152
|
detected_ides: 'IDEs detectados',
|
|
111
153
|
selected_packs: 'Packs seleccionados',
|
|
112
154
|
enter_name: 'Tu nombre (los agentes lo usan para saludarte)',
|
|
113
|
-
comm_language: 'Idioma de
|
|
114
|
-
exec_mode: 'Modo de
|
|
115
|
-
exec_manual: 'Manual
|
|
116
|
-
exec_autopilot: 'Autopilot
|
|
117
|
-
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',
|
|
118
160
|
installing_files: 'Instalando archivos...',
|
|
119
161
|
configuring_ides: 'Configurando IDEs...',
|
|
120
|
-
installed_summary: (a, s, f) =>
|
|
121
|
-
ide_configured: (n) =>
|
|
122
|
-
cancelled: '
|
|
123
|
-
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.',
|
|
124
166
|
source_not_found: 'Directorio fuente no encontrado',
|
|
125
|
-
soon: '
|
|
126
|
-
guide_title: '
|
|
127
|
-
guide_who: '
|
|
167
|
+
soon: 'próximamente',
|
|
168
|
+
guide_title: '✅ Instalación completa — Cómo empezar',
|
|
169
|
+
guide_who: '💬 ¿Con quién hablar?',
|
|
128
170
|
guide_idea: 'Discutir una idea',
|
|
129
171
|
guide_prd: 'Crear un PRD',
|
|
130
|
-
guide_arch: 'Arquitectura
|
|
131
|
-
guide_code: 'Implementar
|
|
172
|
+
guide_arch: 'Arquitectura técnica',
|
|
173
|
+
guide_code: 'Implementar código',
|
|
132
174
|
guide_test: 'Probar / code review',
|
|
133
175
|
guide_sprint: 'Planificar un sprint',
|
|
134
176
|
guide_auto: 'Automatizar todo',
|
|
135
|
-
guide_osint: '
|
|
177
|
+
guide_osint: 'Investigación OSINT',
|
|
136
178
|
guide_maker: 'Crear un agente nuevo',
|
|
137
|
-
guide_seo: '
|
|
179
|
+
guide_seo: 'AuditorÃa SEO / GEO (360°)',
|
|
138
180
|
guide_backup: 'Copia de seguridad inteligente',
|
|
139
181
|
guide_animated: 'Sitio web animado de lujo',
|
|
140
|
-
guide_workflow: '
|
|
141
|
-
guide_or_auto: '
|
|
142
|
-
guide_output: '
|
|
143
|
-
guide_ready: '
|
|
144
|
-
guide_credits: '
|
|
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 | linkedin.com/in/laurentrochetta ✨',
|
|
187
|
+
uninstall_confirm: '¿Eliminar BMAD+ de este proyecto?',
|
|
188
|
+
uninstall_removing: 'Eliminando...',
|
|
189
|
+
uninstall_done: (n) => `✅ BMAD+ eliminado (${n} elementos)`,
|
|
190
|
+
uninstall_output_kept: '📠_bmad-output/ conservado (contiene archivos)',
|
|
191
|
+
installed_on: 'instalado el',
|
|
192
|
+
update_confirm: '¿Actualizar agentes y habilidades?',
|
|
193
|
+
update_updating: 'Actualizando agentes y habilidades...',
|
|
194
|
+
update_done: (n) => `✅ ${n} archivos actualizados`,
|
|
195
|
+
update_current: '✅ ¡Ya está actualizado!',
|
|
196
|
+
update_ready: '¡Actualización completada! 🚀',
|
|
145
197
|
},
|
|
146
198
|
|
|
147
199
|
de: {
|
|
148
|
-
flag: '
|
|
200
|
+
flag: '🇩🇪',
|
|
149
201
|
name: 'Deutsch',
|
|
150
202
|
locale: 'de',
|
|
151
|
-
installer_title: ' BMAD+ Installer v0.4.
|
|
152
|
-
select_language: '
|
|
203
|
+
installer_title: ' BMAD+ Installer v0.4.3 ',
|
|
204
|
+
select_language: 'Wählen Sie Ihre Sprache',
|
|
153
205
|
installing_to: 'Installiere in',
|
|
154
206
|
select_packs: 'Welche Packs installieren? (Core ist immer enthalten)',
|
|
155
207
|
select_ide: 'Welche IDE verwendest du?',
|
|
156
208
|
detected_ides: 'Erkannte IDEs',
|
|
157
|
-
selected_packs: '
|
|
158
|
-
enter_name: 'Dein Vorname (Agenten verwenden ihn zur
|
|
209
|
+
selected_packs: 'Ausgewählte Packs',
|
|
210
|
+
enter_name: 'Dein Vorname (Agenten verwenden ihn zur Begrüßung)',
|
|
159
211
|
comm_language: 'Kommunikationssprache',
|
|
160
|
-
exec_mode: '
|
|
161
|
-
exec_manual: 'Manuell
|
|
162
|
-
exec_autopilot: 'Autopilot
|
|
163
|
-
exec_hybrid: 'Hybrid
|
|
212
|
+
exec_mode: 'Ausführungsmodus',
|
|
213
|
+
exec_manual: 'Manuell — Du rufst Agenten selbst auf',
|
|
214
|
+
exec_autopilot: 'Autopilot — Nexus verwaltet die gesamte Pipeline',
|
|
215
|
+
exec_hybrid: 'Hybrid — Autopilot mit häufigen Checkpoints',
|
|
164
216
|
installing_files: 'Dateien werden installiert...',
|
|
165
217
|
configuring_ides: 'IDEs werden konfiguriert...',
|
|
166
|
-
installed_summary: (a, s, f) =>
|
|
167
|
-
ide_configured: (n) =>
|
|
218
|
+
installed_summary: (a, s, f) => `✅ ${a} Agenten, ${s} Skills, ${f} Dateien kopiert`,
|
|
219
|
+
ide_configured: (n) => `✅ ${n} IDE(s) konfiguriert`,
|
|
168
220
|
cancelled: 'Installation abgebrochen.',
|
|
169
221
|
failed: 'Installation fehlgeschlagen.',
|
|
170
222
|
source_not_found: 'Quellverzeichnis nicht gefunden',
|
|
171
|
-
soon: 'bald
|
|
172
|
-
guide_title: '
|
|
173
|
-
guide_who: '
|
|
223
|
+
soon: 'bald verfügbar',
|
|
224
|
+
guide_title: '✅ Installation abgeschlossen — Erste Schritte',
|
|
225
|
+
guide_who: '💬 Mit wem sprechen?',
|
|
174
226
|
guide_idea: 'Eine Idee besprechen',
|
|
175
227
|
guide_prd: 'Ein PRD erstellen',
|
|
176
228
|
guide_arch: 'Technische Architektur',
|
|
@@ -180,273 +232,333 @@ const LANGUAGES = {
|
|
|
180
232
|
guide_auto: 'Alles automatisieren',
|
|
181
233
|
guide_osint: 'OSINT-Ermittlung',
|
|
182
234
|
guide_maker: 'Einen neuen Agenten erstellen',
|
|
183
|
-
guide_seo: 'SEO / GEO Audit (360
|
|
235
|
+
guide_seo: 'SEO / GEO Audit (360°)',
|
|
184
236
|
guide_backup: 'Intelligente Projektsicherung',
|
|
185
237
|
guide_animated: 'Animierte Luxus-Website',
|
|
186
|
-
guide_workflow: '
|
|
187
|
-
guide_or_auto: '
|
|
188
|
-
guide_output: '
|
|
189
|
-
guide_ready: 'BMAD+ ist bereit! Sprich mit Atlas um loszulegen
|
|
190
|
-
guide_credits: '
|
|
238
|
+
guide_workflow: '🚀 Empfohlener Workflow:',
|
|
239
|
+
guide_or_auto: '⚡ Oder: "autopilot" für vollautomatische Verwaltung',
|
|
240
|
+
guide_output: '📠Ausgabe',
|
|
241
|
+
guide_ready: 'BMAD+ ist bereit! Sprich mit Atlas um loszulegen 🚀',
|
|
242
|
+
guide_credits: '✨ BMAD+ wurde erstellt von Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
243
|
+
uninstall_confirm: 'BMAD+ aus diesem Projekt entfernen?',
|
|
244
|
+
uninstall_removing: 'Entfernen...',
|
|
245
|
+
uninstall_done: (n) => `✅ BMAD+ entfernt (${n} Elemente)`,
|
|
246
|
+
uninstall_output_kept: '📠_bmad-output/ beibehalten (enthält Dateien)',
|
|
247
|
+
installed_on: 'installiert am',
|
|
248
|
+
update_confirm: 'Agenten und Skills aktualisieren?',
|
|
249
|
+
update_updating: 'Agenten und Skills werden aktualisiert...',
|
|
250
|
+
update_done: (n) => `✅ ${n} Dateien aktualisiert`,
|
|
251
|
+
update_current: '✅ Bereits aktuell!',
|
|
252
|
+
update_ready: 'Update abgeschlossen! 🚀',
|
|
191
253
|
},
|
|
192
254
|
|
|
193
255
|
'pt-br': {
|
|
194
|
-
flag: '
|
|
195
|
-
name: '
|
|
256
|
+
flag: '🇧🇷',
|
|
257
|
+
name: 'Português (Brasil)',
|
|
196
258
|
locale: 'pt-BR',
|
|
197
|
-
installer_title: ' BMAD+ Instalador v0.4.
|
|
259
|
+
installer_title: ' BMAD+ Instalador v0.4.3 ',
|
|
198
260
|
select_language: 'Selecione seu idioma',
|
|
199
261
|
installing_to: 'Instalando em',
|
|
200
|
-
select_packs: 'Quais packs instalar? (Core sempre
|
|
201
|
-
select_ide: 'Qual IDE
|
|
262
|
+
select_packs: 'Quais packs instalar? (Core sempre está incluÃdo)',
|
|
263
|
+
select_ide: 'Qual IDE você usa?',
|
|
202
264
|
detected_ides: 'IDEs detectados',
|
|
203
265
|
selected_packs: 'Packs selecionados',
|
|
204
266
|
enter_name: 'Seu nome (os agentes usam para te cumprimentar)',
|
|
205
|
-
comm_language: 'Idioma de
|
|
206
|
-
exec_mode: 'Modo de
|
|
207
|
-
exec_manual: 'Manual
|
|
208
|
-
exec_autopilot: 'Autopilot
|
|
209
|
-
exec_hybrid: '
|
|
267
|
+
comm_language: 'Idioma de comunicação',
|
|
268
|
+
exec_mode: 'Modo de execução',
|
|
269
|
+
exec_manual: 'Manual — Você chama os agentes',
|
|
270
|
+
exec_autopilot: 'Autopilot — Nexus gerencia todo o pipeline',
|
|
271
|
+
exec_hybrid: 'HÃbrido — Autopilot com checkpoints frequentes',
|
|
210
272
|
installing_files: 'Instalando arquivos...',
|
|
211
273
|
configuring_ides: 'Configurando IDEs...',
|
|
212
|
-
installed_summary: (a, s, f) =>
|
|
213
|
-
ide_configured: (n) =>
|
|
214
|
-
cancelled: '
|
|
215
|
-
failed: '
|
|
216
|
-
source_not_found: '
|
|
274
|
+
installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} arquivos copiados`,
|
|
275
|
+
ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
|
|
276
|
+
cancelled: 'Instalação cancelada.',
|
|
277
|
+
failed: 'Instalação falhou.',
|
|
278
|
+
source_not_found: 'Diretório fonte não encontrado',
|
|
217
279
|
soon: 'em breve',
|
|
218
|
-
guide_title: '
|
|
219
|
-
guide_who: '
|
|
280
|
+
guide_title: '✅ Instalação completa — Como começar',
|
|
281
|
+
guide_who: '💬 Com quem falar?',
|
|
220
282
|
guide_idea: 'Discutir uma ideia',
|
|
221
283
|
guide_prd: 'Criar um PRD',
|
|
222
|
-
guide_arch: 'Arquitetura
|
|
223
|
-
guide_code: 'Implementar
|
|
284
|
+
guide_arch: 'Arquitetura técnica',
|
|
285
|
+
guide_code: 'Implementar código',
|
|
224
286
|
guide_test: 'Testar / code review',
|
|
225
287
|
guide_sprint: 'Planejar um sprint',
|
|
226
288
|
guide_auto: 'Automatizar tudo',
|
|
227
|
-
guide_osint: '
|
|
289
|
+
guide_osint: 'Investigação OSINT',
|
|
228
290
|
guide_maker: 'Criar um novo agente',
|
|
229
|
-
guide_seo: 'Auditoria SEO / GEO (360
|
|
291
|
+
guide_seo: 'Auditoria SEO / GEO (360°)',
|
|
230
292
|
guide_backup: 'Backup inteligente do projeto',
|
|
231
293
|
guide_animated: 'Site animado de luxo',
|
|
232
|
-
guide_workflow: '
|
|
233
|
-
guide_or_auto: '
|
|
234
|
-
guide_output: '
|
|
235
|
-
guide_ready: 'BMAD+
|
|
236
|
-
guide_credits: '
|
|
294
|
+
guide_workflow: '🚀 Fluxo recomendado:',
|
|
295
|
+
guide_or_auto: 'âš¡ Ou: "autopilot" para gerenciar tudo automaticamente',
|
|
296
|
+
guide_output: '📠SaÃda',
|
|
297
|
+
guide_ready: 'BMAD+ está pronto! Fale com Atlas para começar 🚀',
|
|
298
|
+
guide_credits: '✨ BMAD+ foi criado por Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
299
|
+
uninstall_confirm: 'Remover BMAD+ deste projeto?',
|
|
300
|
+
uninstall_removing: 'Removendo...',
|
|
301
|
+
uninstall_done: (n) => `✅ BMAD+ removido (${n} itens)`,
|
|
302
|
+
uninstall_output_kept: '📠_bmad-output/ mantido (contém arquivos)',
|
|
303
|
+
installed_on: 'instalado em',
|
|
304
|
+
update_confirm: 'Atualizar agentes e habilidades?',
|
|
305
|
+
update_updating: 'Atualizando agentes e habilidades...',
|
|
306
|
+
update_done: (n) => `✅ ${n} arquivos atualizados`,
|
|
307
|
+
update_current: '✅ Já está atualizado!',
|
|
308
|
+
update_ready: 'Atualização concluÃda! 🚀',
|
|
237
309
|
},
|
|
238
310
|
|
|
239
311
|
ru: {
|
|
240
|
-
flag: '
|
|
241
|
-
name: '
|
|
312
|
+
flag: '🇷🇺',
|
|
313
|
+
name: 'РуÑÑкий',
|
|
242
314
|
locale: 'ru',
|
|
243
|
-
installer_title: ' BMAD+
|
|
244
|
-
select_language: '
|
|
245
|
-
installing_to: '
|
|
246
|
-
select_packs: '
|
|
247
|
-
select_ide: '
|
|
248
|
-
detected_ides: '
|
|
249
|
-
selected_packs: '
|
|
250
|
-
enter_name: '
|
|
251
|
-
comm_language: '
|
|
252
|
-
exec_mode: '
|
|
253
|
-
exec_manual: '
|
|
254
|
-
exec_autopilot: '
|
|
255
|
-
exec_hybrid: '
|
|
256
|
-
installing_files: '
|
|
257
|
-
configuring_ides: '
|
|
258
|
-
installed_summary: (a, s, f) =>
|
|
259
|
-
ide_configured: (n) =>
|
|
260
|
-
cancelled: '
|
|
261
|
-
failed: '
|
|
262
|
-
source_not_found: '
|
|
263
|
-
soon: '
|
|
264
|
-
guide_title: '
|
|
265
|
-
guide_who: '
|
|
266
|
-
guide_idea: '
|
|
267
|
-
guide_prd: '
|
|
268
|
-
guide_arch: '
|
|
269
|
-
guide_code: '
|
|
270
|
-
guide_test: '
|
|
271
|
-
guide_sprint: '
|
|
272
|
-
guide_auto: '
|
|
273
|
-
guide_osint: 'OSINT
|
|
274
|
-
guide_maker: '
|
|
275
|
-
guide_seo: 'SEO / GEO
|
|
276
|
-
guide_backup: '
|
|
277
|
-
guide_animated: '
|
|
278
|
-
guide_workflow: '
|
|
279
|
-
guide_or_auto: '
|
|
280
|
-
guide_output: '
|
|
281
|
-
guide_ready: 'BMAD+
|
|
282
|
-
guide_credits: '
|
|
315
|
+
installer_title: ' BMAD+ УÑтановщик v0.4.3 ',
|
|
316
|
+
select_language: 'Выберите Ñзык',
|
|
317
|
+
installing_to: 'УÑтановка в',
|
|
318
|
+
select_packs: 'Какие пакеты уÑтановить? (Core вÑегда включён)',
|
|
319
|
+
select_ide: 'Какую IDE вы иÑпользуете?',
|
|
320
|
+
detected_ides: 'Обнаруженные IDE',
|
|
321
|
+
selected_packs: 'Выбранные пакеты',
|
|
322
|
+
enter_name: 'Ваше Ð¸Ð¼Ñ (агенты иÑпользуют его Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚ÑтвиÑ)',
|
|
323
|
+
comm_language: 'Язык общениÑ',
|
|
324
|
+
exec_mode: 'Режим выполнениÑ',
|
|
325
|
+
exec_manual: 'Ручной — Ð’Ñ‹ вызываете агентов Ñами',
|
|
326
|
+
exec_autopilot: 'Ðвтопилот — Nexus управлÑет вÑем конвейером',
|
|
327
|
+
exec_hybrid: 'Гибрид — Ðвтопилот Ñ Ñ‡Ð°Ñтыми контрольными точками',
|
|
328
|
+
installing_files: 'УÑтановка файлов...',
|
|
329
|
+
configuring_ides: 'ÐаÑтройка IDE...',
|
|
330
|
+
installed_summary: (a, s, f) => `✅ ${a} агентов, ${s} навыков, ${f} файлов Ñкопировано`,
|
|
331
|
+
ide_configured: (n) => `✅ ${n} IDE наÑтроено`,
|
|
332
|
+
cancelled: 'УÑтановка отменена.',
|
|
333
|
+
failed: 'УÑтановка не удалаÑÑŒ.',
|
|
334
|
+
source_not_found: 'ИÑÑ…Ð¾Ð´Ð½Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ðµ найдена',
|
|
335
|
+
soon: 'Ñкоро',
|
|
336
|
+
guide_title: '✅ УÑтановка завершена — Ðачало работы',
|
|
337
|
+
guide_who: '💬 С кем поговорить?',
|
|
338
|
+
guide_idea: 'ОбÑудить идею',
|
|
339
|
+
guide_prd: 'Создать 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 аудит (360°)',
|
|
348
|
+
guide_backup: 'Умное резервное копирование',
|
|
349
|
+
guide_animated: 'Ðнимированный люкÑовый Ñайт',
|
|
350
|
+
guide_workflow: '🚀 Рекомендуемый рабочий процеÑÑ:',
|
|
351
|
+
guide_or_auto: 'âš¡ Или: "autopilot" Ð´Ð»Ñ Ð¿Ð¾Ð»Ð½Ð¾Ð¹ автоматизации',
|
|
352
|
+
guide_output: '📠Вывод',
|
|
353
|
+
guide_ready: 'BMAD+ готов! Поговорите Ñ Atlas чтобы начать 🚀',
|
|
354
|
+
guide_credits: '✨ BMAD+ Ñоздан Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
355
|
+
uninstall_confirm: 'Удалить BMAD+ из Ñтого проекта?',
|
|
356
|
+
uninstall_removing: 'Удаление...',
|
|
357
|
+
uninstall_done: (n) => `✅ BMAD+ удалён (${n} Ñлементов)`,
|
|
358
|
+
uninstall_output_kept: '📠_bmad-output/ Ñохранён (Ñодержит файлы)',
|
|
359
|
+
installed_on: 'уÑтановлено',
|
|
360
|
+
update_confirm: 'Обновить агентов и навыки?',
|
|
361
|
+
update_updating: 'Обновление агентов и навыков...',
|
|
362
|
+
update_done: (n) => `✅ ${n} файлов обновлено`,
|
|
363
|
+
update_current: '✅ Уже актуально!',
|
|
364
|
+
update_ready: 'Обновление завершено! 🚀',
|
|
283
365
|
},
|
|
284
366
|
|
|
285
367
|
zh: {
|
|
286
|
-
flag: '
|
|
287
|
-
name: '
|
|
368
|
+
flag: '🇨🇳',
|
|
369
|
+
name: '䏿–‡ (简体)',
|
|
288
370
|
locale: 'zh-CN',
|
|
289
|
-
installer_title: ' BMAD+
|
|
290
|
-
select_language: '
|
|
291
|
-
installing_to: '
|
|
292
|
-
select_packs: '
|
|
293
|
-
select_ide: '
|
|
294
|
-
detected_ides: '
|
|
295
|
-
selected_packs: '
|
|
296
|
-
enter_name: '
|
|
297
|
-
comm_language: '
|
|
298
|
-
exec_mode: '
|
|
299
|
-
exec_manual: '
|
|
300
|
-
exec_autopilot: '
|
|
301
|
-
exec_hybrid: '
|
|
302
|
-
installing_files: '
|
|
303
|
-
configuring_ides: '
|
|
304
|
-
installed_summary: (a, s, f) =>
|
|
305
|
-
ide_configured: (n) =>
|
|
306
|
-
cancelled: '
|
|
307
|
-
failed: '
|
|
308
|
-
source_not_found: '
|
|
309
|
-
soon: '
|
|
310
|
-
guide_title: '
|
|
311
|
-
guide_who: '
|
|
312
|
-
guide_idea: '
|
|
313
|
-
guide_prd: '
|
|
314
|
-
guide_arch: '
|
|
315
|
-
guide_code: '
|
|
316
|
-
guide_test: '
|
|
317
|
-
guide_sprint: '
|
|
318
|
-
guide_auto: '
|
|
319
|
-
guide_osint: 'OSINT
|
|
320
|
-
guide_maker: '
|
|
321
|
-
guide_seo: 'SEO / GEO
|
|
322
|
-
guide_backup: '
|
|
323
|
-
guide_animated: '
|
|
324
|
-
guide_workflow: '
|
|
325
|
-
guide_or_auto: '
|
|
326
|
-
guide_output: '
|
|
327
|
-
guide_ready: 'BMAD+
|
|
328
|
-
guide_credits: '
|
|
371
|
+
installer_title: ' BMAD+ å®‰è£…ç¨‹åº v0.4.3 ',
|
|
372
|
+
select_language: '选择您的è¯è¨€',
|
|
373
|
+
installing_to: '安装到',
|
|
374
|
+
select_packs: '安装哪些包?(Core 始终包å«ï¼‰',
|
|
375
|
+
select_ide: '您使用哪个 IDE?',
|
|
376
|
+
detected_ides: '检测到的 IDE',
|
|
377
|
+
selected_packs: '已选择的包',
|
|
378
|
+
enter_name: '您的åå—(代ç†ä¼šç”¨å®ƒæ¥é—®å€™æ‚¨ï¼‰',
|
|
379
|
+
comm_language: '沟通è¯è¨€',
|
|
380
|
+
exec_mode: '执行模å¼',
|
|
381
|
+
exec_manual: '手动 — 您自己调用代ç†',
|
|
382
|
+
exec_autopilot: '自动驾驶 — Nexus ç®¡ç†æ•´ä¸ªæµç¨‹',
|
|
383
|
+
exec_hybrid: 'æ··åˆ â€” è‡ªåŠ¨é©¾é©¶å¹¶è®¾æœ‰é¢‘ç¹æ£€æŸ¥ç‚¹',
|
|
384
|
+
installing_files: 'æ£åœ¨å®‰è£…文件...',
|
|
385
|
+
configuring_ides: 'æ£åœ¨é…ç½® IDE...',
|
|
386
|
+
installed_summary: (a, s, f) => `✅ ${a} 个代ç†ã€${s} 个技能ã€${f} 个文件已å¤åˆ¶`,
|
|
387
|
+
ide_configured: (n) => `✅ ${n} 个 IDE å·²é…ç½®`,
|
|
388
|
+
cancelled: 'å®‰è£…å·²å–æ¶ˆã€‚',
|
|
389
|
+
failed: '安装失败。',
|
|
390
|
+
source_not_found: '未找到æºç›®å½•',
|
|
391
|
+
soon: 'å³å°†æŽ¨å‡º',
|
|
392
|
+
guide_title: '✅ å®‰è£…å®Œæˆ â€” 如何开始',
|
|
393
|
+
guide_who: '💬 与è°äº¤è°ˆï¼Ÿ',
|
|
394
|
+
guide_idea: '讨论一个想法',
|
|
395
|
+
guide_prd: '创建 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 审计 (360°)',
|
|
404
|
+
guide_backup: '智能项目备份',
|
|
405
|
+
guide_animated: '动画奢åŽç½‘ç«™',
|
|
406
|
+
guide_workflow: '🚀 推è工作æµç¨‹ï¼š',
|
|
407
|
+
guide_or_auto: 'âš¡ 或者:"autopilot" 全自动管ç†',
|
|
408
|
+
guide_output: '📠输出',
|
|
409
|
+
guide_ready: 'BMAD+ 已就绪ï¼ä¸Ž Atlas 交谈开始 🚀',
|
|
410
|
+
guide_credits: '✨ BMAD+ 由 Laurent Rochetta 创建 — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
411
|
+
uninstall_confirm: '从æ¤é¡¹ç›®ä¸åˆ 除 BMAD+?',
|
|
412
|
+
uninstall_removing: 'åˆ é™¤ä¸...',
|
|
413
|
+
uninstall_done: (n) => `✅ BMAD+ å·²åˆ é™¤ï¼ˆ${n} 项)`,
|
|
414
|
+
uninstall_output_kept: '📠_bmad-output/ å·²ä¿ç•™ï¼ˆåŒ…嫿–‡ä»¶ï¼‰',
|
|
415
|
+
installed_on: '安装于',
|
|
416
|
+
update_confirm: '更新代ç†å’ŒæŠ€èƒ½ï¼Ÿ',
|
|
417
|
+
update_updating: 'æ£åœ¨æ›´æ–°ä»£ç†å’ŒæŠ€èƒ½...',
|
|
418
|
+
update_done: (n) => `✅ ${n} 个文件已更新`,
|
|
419
|
+
update_current: '✅ 已是最新版本ï¼',
|
|
420
|
+
update_ready: '更新完æˆï¼ðŸš€',
|
|
329
421
|
},
|
|
330
422
|
|
|
331
423
|
he: {
|
|
332
|
-
flag: '
|
|
333
|
-
name: '
|
|
424
|
+
flag: '🇮🇱',
|
|
425
|
+
name: 'עברית',
|
|
334
426
|
locale: 'he',
|
|
335
|
-
installer_title: ' BMAD+
|
|
336
|
-
select_language: '
|
|
337
|
-
installing_to: '
|
|
338
|
-
select_packs: '
|
|
339
|
-
select_ide: '
|
|
340
|
-
detected_ides: 'IDE
|
|
341
|
-
selected_packs: '
|
|
342
|
-
enter_name: '
|
|
343
|
-
comm_language: '
|
|
344
|
-
exec_mode: '
|
|
345
|
-
exec_manual: '
|
|
346
|
-
exec_autopilot: '
|
|
347
|
-
exec_hybrid: '
|
|
348
|
-
installing_files: '
|
|
349
|
-
configuring_ides: '
|
|
350
|
-
installed_summary: (a, s, f) =>
|
|
351
|
-
ide_configured: (n) =>
|
|
352
|
-
cancelled: '
|
|
353
|
-
failed: '
|
|
354
|
-
source_not_found: '
|
|
355
|
-
soon: '
|
|
356
|
-
guide_title: '
|
|
357
|
-
guide_who: '
|
|
358
|
-
guide_idea: '
|
|
359
|
-
guide_prd: '
|
|
360
|
-
guide_arch: '
|
|
361
|
-
guide_code: '
|
|
362
|
-
guide_test: '
|
|
363
|
-
guide_sprint: '
|
|
364
|
-
guide_auto: '
|
|
365
|
-
guide_osint: '
|
|
366
|
-
guide_maker: '
|
|
367
|
-
guide_seo: '
|
|
368
|
-
guide_backup: '
|
|
369
|
-
guide_animated: '
|
|
370
|
-
guide_workflow: '
|
|
371
|
-
guide_or_auto: '
|
|
372
|
-
guide_output: '
|
|
373
|
-
guide_ready: '!BMAD+
|
|
374
|
-
guide_credits: '
|
|
427
|
+
installer_title: ' BMAD+ מתקין v0.4.3 ',
|
|
428
|
+
select_language: 'בחר ×ת השפה שלך',
|
|
429
|
+
installing_to: 'מתקין ב',
|
|
430
|
+
select_packs: '×ילו חבילות להתקין? (Core תמיד כלול)',
|
|
431
|
+
select_ide: 'ב××™×–×” IDE ×תה משתמש?',
|
|
432
|
+
detected_ides: 'IDE שזוהו',
|
|
433
|
+
selected_packs: 'חבילות ×©× ×‘×—×¨×•',
|
|
434
|
+
enter_name: '×”×©× ×©×œ×š (×”×¡×•×›× ×™× ×ž×©×ª×ž×©×™× ×‘×• לברכך)',
|
|
435
|
+
comm_language: 'שפת תקשורת',
|
|
436
|
+
exec_mode: 'מצב ביצוע',
|
|
437
|
+
exec_manual: '×™×“× ×™ — ×תה ×§×•×¨× ×œ×¡×•×›× ×™× ×‘×¢×¦×ž×š',
|
|
438
|
+
exec_autopilot: 'טייס ×וטומטי — Nexus ×ž× ×”×œ ×ת כל ×”×¦×™× ×•×¨',
|
|
439
|
+
exec_hybrid: 'היברידי — טייס ×וטומטי ×¢× × ×§×•×“×•×ª בקרה תכופות',
|
|
440
|
+
installing_files: 'מתקין קבצי×...',
|
|
441
|
+
configuring_ides: 'מגדיר IDE...',
|
|
442
|
+
installed_summary: (a, s, f) => `✅ ${a} ×¡×•×›× ×™×, ${s} כישורי×, ${f} ×§×‘×¦×™× ×”×•×¢×ª×§×•`,
|
|
443
|
+
ide_configured: (n) => `✅ ${n} IDE הוגדרו`,
|
|
444
|
+
cancelled: '×”×”×ª×§× ×” בוטלה.',
|
|
445
|
+
failed: '×”×”×ª×§× ×” × ×›×©×œ×”.',
|
|
446
|
+
source_not_found: 'ספריית המקור ×œ× × ×ž×¦××”',
|
|
447
|
+
soon: 'בקרוב',
|
|
448
|
+
guide_title: '✅ ×”×”×ª×§× ×” הושלמה — ×יך להתחיל',
|
|
449
|
+
guide_who: '💬 ×¢× ×ž×™ לדבר?',
|
|
450
|
+
guide_idea: 'לדון ברעיון',
|
|
451
|
+
guide_prd: 'ליצור PRD',
|
|
452
|
+
guide_arch: '×רכיטקטורה ×˜×›× ×™×ª',
|
|
453
|
+
guide_code: 'לממש קוד',
|
|
454
|
+
guide_test: 'לבדוק / סקירת קוד',
|
|
455
|
+
guide_sprint: '×œ×ª×›× ×Ÿ ×¡×¤×¨×™× ×˜',
|
|
456
|
+
guide_auto: 'ל×וטמט הכל',
|
|
457
|
+
guide_osint: 'חקירת OSINT',
|
|
458
|
+
guide_maker: 'ליצור סוכן חדש',
|
|
459
|
+
guide_seo: 'ביקורת SEO / GEO (360°)',
|
|
460
|
+
guide_backup: 'גיבוי ×—×›× ×©×œ הפרויקט',
|
|
461
|
+
guide_animated: '×תר ×× ×™×ž×¦×™×” יוקרתי',
|
|
462
|
+
guide_workflow: '🚀 תהליך עבודה מומלץ:',
|
|
463
|
+
guide_or_auto: 'âš¡ ×ו: "autopilot" ×œ× ×™×”×•×œ ×וטומטי מל×',
|
|
464
|
+
guide_output: '📠פלט',
|
|
465
|
+
guide_ready: '!BMAD+ מוכן! דבר ×¢× Atlas כדי להתחיל 🚀',
|
|
466
|
+
guide_credits: '✨ BMAD+ × ×•×¦×¨ על ידי Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
467
|
+
uninstall_confirm: 'להסיר ×ת BMAD+ מהפרויקט ×”×–×”?',
|
|
468
|
+
uninstall_removing: 'מסיר...',
|
|
469
|
+
uninstall_done: (n) => `✅ BMAD+ הוסר (${n} פריטי×)`,
|
|
470
|
+
uninstall_output_kept: '📠_bmad-output/ × ×©×ž×¨ (מכיל קבצי×)',
|
|
471
|
+
installed_on: 'הותקן ב',
|
|
472
|
+
update_confirm: 'לעדכן ×¡×•×›× ×™× ×•×›×™×©×•×¨×™×?',
|
|
473
|
+
update_updating: 'מעדכן ×¡×•×›× ×™× ×•×›×™×©×•×¨×™×...',
|
|
474
|
+
update_done: (n) => `✅ ${n} ×§×‘×¦×™× ×¢×•×“×›× ×•`,
|
|
475
|
+
update_current: '✅ כבר מעודכן!',
|
|
476
|
+
update_ready: 'העדכון הושל×! 🚀',
|
|
375
477
|
},
|
|
376
478
|
|
|
377
479
|
ja: {
|
|
378
|
-
flag: '
|
|
379
|
-
name: '
|
|
480
|
+
flag: '🇯🇵',
|
|
481
|
+
name: '日本語',
|
|
380
482
|
locale: 'ja',
|
|
381
|
-
installer_title: ' BMAD+
|
|
382
|
-
select_language: '
|
|
383
|
-
installing_to: '
|
|
384
|
-
select_packs: '
|
|
385
|
-
select_ide: '
|
|
386
|
-
detected_ides: '
|
|
387
|
-
selected_packs: '
|
|
388
|
-
enter_name: '
|
|
389
|
-
comm_language: '
|
|
390
|
-
exec_mode: '
|
|
391
|
-
exec_manual: '
|
|
392
|
-
exec_autopilot: '
|
|
393
|
-
exec_hybrid: '
|
|
394
|
-
installing_files: '
|
|
395
|
-
configuring_ides: 'IDE
|
|
396
|
-
installed_summary: (a, s, f) =>
|
|
397
|
-
ide_configured: (n) =>
|
|
398
|
-
cancelled: '
|
|
399
|
-
failed: '
|
|
400
|
-
source_not_found: '
|
|
401
|
-
soon: '
|
|
402
|
-
guide_title: '
|
|
403
|
-
guide_who: '
|
|
404
|
-
guide_idea: '
|
|
405
|
-
guide_prd: 'PRD
|
|
406
|
-
guide_arch: '
|
|
407
|
-
guide_code: '
|
|
408
|
-
guide_test: '
|
|
409
|
-
guide_sprint: '
|
|
410
|
-
guide_auto: '
|
|
411
|
-
guide_osint: 'OSINT
|
|
412
|
-
guide_maker: '
|
|
413
|
-
guide_seo: 'SEO / GEO
|
|
414
|
-
guide_backup: '
|
|
415
|
-
guide_animated: '
|
|
416
|
-
guide_workflow: '
|
|
417
|
-
guide_or_auto: '
|
|
418
|
-
guide_output: '
|
|
419
|
-
guide_ready: 'BMAD+
|
|
420
|
-
guide_credits: '
|
|
483
|
+
installer_title: ' BMAD+ インストーラー v0.4.3 ',
|
|
484
|
+
select_language: 'è¨€èªžã‚’é¸æŠžã—ã¦ãã ã•ã„',
|
|
485
|
+
installing_to: 'インストール先',
|
|
486
|
+
select_packs: 'ã©ã®ãƒ‘ックをインストールã—ã¾ã™ã‹ï¼Ÿï¼ˆCoreã¯å¸¸ã«å«ã¾ã‚Œã¾ã™ï¼‰',
|
|
487
|
+
select_ide: 'ã©ã®IDEを使用ã—ã¦ã„ã¾ã™ã‹ï¼Ÿ',
|
|
488
|
+
detected_ides: '検出ã•れãŸIDE',
|
|
489
|
+
selected_packs: 'é¸æŠžã•れãŸãƒ‘ック',
|
|
490
|
+
enter_name: 'ã‚ãªãŸã®åå‰ï¼ˆã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆãŒæŒ¨æ‹¶ã«ä½¿ã„ã¾ã™ï¼‰',
|
|
491
|
+
comm_language: 'コミュニケーション言語',
|
|
492
|
+
exec_mode: '実行モード',
|
|
493
|
+
exec_manual: '手動 — 自分ã§ã‚¨ãƒ¼ã‚¸ã‚§ãƒ³ãƒˆã‚’呼ã³å‡ºã™',
|
|
494
|
+
exec_autopilot: 'オートパイãƒãƒƒãƒˆ — NexusãŒãƒ‘イプライン全体を管ç†',
|
|
495
|
+
exec_hybrid: 'ãƒã‚¤ãƒ–リッド — é »ç¹ãªãƒã‚§ãƒƒã‚¯ãƒã‚¤ãƒ³ãƒˆä»˜ãオートパイãƒãƒƒãƒˆ',
|
|
496
|
+
installing_files: 'ファイルをインストールä¸...',
|
|
497
|
+
configuring_ides: 'IDEã‚’è¨å®šä¸...',
|
|
498
|
+
installed_summary: (a, s, f) => `✅ ${a}エージェントã€${s}スã‚ルã€${f}ファイルをコピー`,
|
|
499
|
+
ide_configured: (n) => `✅ ${n}ã¤ã®IDEã‚’è¨å®š`,
|
|
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 監査 (360°)',
|
|
516
|
+
guide_backup: 'スマートプãƒã‚¸ã‚§ã‚¯ãƒˆãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—',
|
|
517
|
+
guide_animated: 'アニメーション高級ウェブサイト',
|
|
518
|
+
guide_workflow: '🚀 推奨ワークフãƒãƒ¼:',
|
|
519
|
+
guide_or_auto: 'âš¡ ã¾ãŸã¯: "autopilot" ã§å…¨è‡ªå‹•管ç†',
|
|
520
|
+
guide_output: '📠出力',
|
|
521
|
+
guide_ready: 'BMAD+ 準備完了ï¼Atlasã«è©±ã—ã‹ã‘ã¦å§‹ã‚ã¾ã—ょㆠ🚀',
|
|
522
|
+
guide_credits: '✨ BMAD+ 㯠Laurent Rochetta ã«ã‚ˆã£ã¦ä½œæˆã•れã¾ã—㟠— github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
523
|
+
uninstall_confirm: 'ã“ã®ãƒ—ãƒã‚¸ã‚§ã‚¯ãƒˆã‹ã‚‰BMAD+を削除ã—ã¾ã™ã‹ï¼Ÿ',
|
|
524
|
+
uninstall_removing: '削除ä¸...',
|
|
525
|
+
uninstall_done: (n) => `✅ BMAD+を削除ã—ã¾ã—ãŸï¼ˆ${n}é …ç›®ï¼‰`,
|
|
526
|
+
uninstall_output_kept: '📠_bmad-output/ ã¯ä¿æŒã•れã¾ã—ãŸï¼ˆãƒ•ァイルãŒå«ã¾ã‚Œã¦ã„ã¾ã™ï¼‰',
|
|
527
|
+
installed_on: 'インストール日',
|
|
528
|
+
update_confirm: 'エージェントã¨ã‚¹ã‚ルを更新ã—ã¾ã™ã‹ï¼Ÿ',
|
|
529
|
+
update_updating: 'エージェントã¨ã‚¹ã‚ルを更新ä¸...',
|
|
530
|
+
update_done: (n) => `✅ ${n}ファイルを更新ã—ã¾ã—ãŸ`,
|
|
531
|
+
update_current: '✅ 最新ã®çŠ¶æ…‹ã§ã™ï¼',
|
|
532
|
+
update_ready: 'アップデート完了ï¼ðŸš€',
|
|
421
533
|
},
|
|
422
534
|
|
|
423
535
|
it: {
|
|
424
|
-
flag: '
|
|
536
|
+
flag: '🇮🇹',
|
|
425
537
|
name: 'Italiano',
|
|
426
538
|
locale: 'it',
|
|
427
|
-
installer_title: ' BMAD+ Installatore v0.4.
|
|
539
|
+
installer_title: ' BMAD+ Installatore v0.4.3 ',
|
|
428
540
|
select_language: 'Seleziona la tua lingua',
|
|
429
541
|
installing_to: 'Installazione in',
|
|
430
|
-
select_packs: 'Quali pack installare? (Core
|
|
542
|
+
select_packs: 'Quali pack installare? (Core è sempre incluso)',
|
|
431
543
|
select_ide: 'Quale IDE usi?',
|
|
432
544
|
detected_ides: 'IDE rilevati',
|
|
433
545
|
selected_packs: 'Pack selezionati',
|
|
434
546
|
enter_name: 'Il tuo nome (gli agenti lo usano per salutarti)',
|
|
435
547
|
comm_language: 'Lingua di comunicazione',
|
|
436
|
-
exec_mode: '
|
|
437
|
-
exec_manual: 'Manuale
|
|
438
|
-
exec_autopilot: 'Autopilot
|
|
439
|
-
exec_hybrid: 'Ibrido
|
|
548
|
+
exec_mode: 'Modalità di esecuzione',
|
|
549
|
+
exec_manual: 'Manuale — Chiami tu gli agenti',
|
|
550
|
+
exec_autopilot: 'Autopilot — Nexus gestisce l\'intera pipeline',
|
|
551
|
+
exec_hybrid: 'Ibrido — Autopilot con checkpoint frequenti',
|
|
440
552
|
installing_files: 'Installazione file in corso...',
|
|
441
553
|
configuring_ides: 'Configurazione IDE...',
|
|
442
|
-
installed_summary: (a, s, f) =>
|
|
443
|
-
ide_configured: (n) =>
|
|
554
|
+
installed_summary: (a, s, f) => `✅ ${a} agenti, ${s} skill, ${f} file copiati`,
|
|
555
|
+
ide_configured: (n) => `✅ ${n} IDE configurati`,
|
|
444
556
|
cancelled: 'Installazione annullata.',
|
|
445
557
|
failed: 'Installazione fallita.',
|
|
446
558
|
source_not_found: 'Directory sorgente non trovata',
|
|
447
559
|
soon: 'prossimamente',
|
|
448
|
-
guide_title: '
|
|
449
|
-
guide_who: '
|
|
560
|
+
guide_title: '✅ Installazione completata — Come iniziare',
|
|
561
|
+
guide_who: '💬 Con chi parlare?',
|
|
450
562
|
guide_idea: 'Discutere un\'idea',
|
|
451
563
|
guide_prd: 'Creare un PRD',
|
|
452
564
|
guide_arch: 'Architettura tecnica',
|
|
@@ -456,14 +568,24 @@ const LANGUAGES = {
|
|
|
456
568
|
guide_auto: 'Automatizzare tutto',
|
|
457
569
|
guide_osint: 'Indagine OSINT',
|
|
458
570
|
guide_maker: 'Creare un nuovo agente',
|
|
459
|
-
guide_seo: 'Audit SEO / GEO (360
|
|
571
|
+
guide_seo: 'Audit SEO / GEO (360°)',
|
|
460
572
|
guide_backup: 'Backup intelligente del progetto',
|
|
461
573
|
guide_animated: 'Sito web animato di lusso',
|
|
462
|
-
guide_workflow: '
|
|
463
|
-
guide_or_auto: '
|
|
464
|
-
guide_output: '
|
|
465
|
-
guide_ready: 'BMAD+
|
|
466
|
-
guide_credits: '
|
|
574
|
+
guide_workflow: '🚀 Flusso consigliato:',
|
|
575
|
+
guide_or_auto: 'âš¡ Oppure: "autopilot" per gestire tutto automaticamente',
|
|
576
|
+
guide_output: '📠Output',
|
|
577
|
+
guide_ready: 'BMAD+ è pronto! Parla con Atlas per iniziare 🚀',
|
|
578
|
+
guide_credits: '✨ BMAD+ è creato da Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
|
|
579
|
+
uninstall_confirm: 'Rimuovere BMAD+ da questo progetto?',
|
|
580
|
+
uninstall_removing: 'Rimozione...',
|
|
581
|
+
uninstall_done: (n) => `✅ BMAD+ rimosso (${n} elementi)`,
|
|
582
|
+
uninstall_output_kept: '📠_bmad-output/ conservato (contiene file)',
|
|
583
|
+
installed_on: 'installato il',
|
|
584
|
+
update_confirm: 'Aggiornare agenti e skill?',
|
|
585
|
+
update_updating: 'Aggiornamento agenti e skill...',
|
|
586
|
+
update_done: (n) => `✅ ${n} file aggiornati`,
|
|
587
|
+
update_current: '✅ Già aggiornato!',
|
|
588
|
+
update_ready: 'Aggiornamento completato! 🚀',
|
|
467
589
|
},
|
|
468
590
|
};
|
|
469
591
|
|