Skip to content

Commit 5c26393

Browse files
DanWahlinCopilot
andauthored
Polish Spanish translations: translate remaining English prose and navigation
- es/00-quick-start: translate subscription link, Codespaces steps, navigation links - es/01-setup-and-first-steps: translate plan mode launch prose - es/02-context-conversations: translate 'File not found' troubleshooting heading - es/04-agents-custom-instructions: translate callouts, prose, navigation link - es/GLOSSARY.md: translate title, subtitle, and Agent definition - es/appendices/ci-cd-integration: translate file title heading - es/samples/agents/python-reviewer: translate frontmatter description Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b561175 commit 5c26393

7 files changed

Lines changed: 18 additions & 18 deletions

File tree

translations/es/00-quick-start/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Al final de este capítulo, habrás:
1616

1717
## ✅ Requisitos previos
1818

19-
- **Cuenta de GitHub** con acceso a Copilot. [See subscription options](https://github.com/features/copilot/plans). Students/Teachers can access Copilot Pro for [free via GitHub Education](https://education.github.com/pack).
19+
- **Cuenta de GitHub** con acceso a Copilot. [Ver opciones de suscripción](https://github.com/features/copilot/plans). Los estudiantes y profesores pueden acceder a Copilot Pro de forma [gratuita a través de GitHub Education](https://education.github.com/pack).
2020
- **Conceptos básicos de terminal**: Cómodo con comandos como `cd` y `ls`
2121

2222
### Qué significa "Copilot Access"
@@ -40,10 +40,10 @@ Si ves "You don't have access to GitHub Copilot", necesitarás usar la opción g
4040

4141
Si no quieres instalar ninguno de los prerrequisitos, puedes usar GitHub Codespaces, que tiene GitHub Copilot CLI listo para usar (necesitarás iniciar sesión) y preinstala Python y pytest.
4242

43-
1. [Fork this repository](https://github.com/github/copilot-cli-for-beginners/fork) to your GitHub account
44-
2. Select **Code** > **Codespaces** > **Create codespace on main**
45-
3. Wait a few minutes for the container to build
46-
4. You're ready to go! The terminal will open automatically in the Codespace environment.
43+
1. [Haz un fork de este repositorio](https://github.com/github/copilot-cli-for-beginners/fork) en tu cuenta de GitHub
44+
2. Selecciona **Code** > **Codespaces** > **Create codespace on main**
45+
3. Espera unos minutos a que se construya el contenedor
46+
4. ¡Ya estás listo! El terminal se abrirá automáticamente en el entorno Codespace.
4747

4848
> 💡 **Verificar en Codespace**: Ejecuta `cd samples/book-app-project && python book_app.py help` para confirmar que Python y la aplicación de ejemplo funcionan.
4949
@@ -222,7 +222,7 @@ Eso es todo para la instalación. La verdadera diversión comienza en el Capítu
222222
- Aprenderás tres maneras diferentes de usar Copilot CLI
223223
- Generarás código funcional a partir de inglés sencillo
224224

225-
**[Continue to Chapter 01: First Steps](../01-setup-and-first-steps/README.md)**
225+
**[Continuar al Capítulo 01: Primeros pasos](../01-setup-and-first-steps/README.md)**
226226

227227
---
228228

@@ -287,7 +287,7 @@ copilot
287287
288288
---
289289

290-
**[Continue to Chapter 01: First Steps](../01-setup-and-first-steps/README.md)**
290+
**[Continuar al Capítulo 01: Primeros pasos](../01-setup-and-first-steps/README.md)**
291291

292292
---
293293

translations/es/01-setup-and-first-steps/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ copilot
280280

281281
> 💡 **Consejo**: **Shift+Tab** alterna entre modos: Interactivo → Plan → Autopilot. Púlsalo en cualquier momento durante una sesión interactiva para cambiar de modo sin escribir un comando.
282282
283-
You can also launch Copilot CLI directly in plan mode using the `--plan` flag:
283+
También puedes iniciar Copilot CLI directamente en modo plan usando la bandera `--plan`:
284284

285285
```bash
286286
copilot --plan

translations/es/02-context-conversations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ Then resume with: `copilot --continue`
876876
877877
### Solución de problemas
878878
879-
**"File not found" errors** - Make sure you're in the correct directory:
879+
**Errores de "Archivo no encontrado"** - Asegúrate de estar en el directorio correcto:
880880
881881
```bash
882882
pwd # Comprobar el directorio actual

translations/es/04-agents-custom-instructions/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ copilot
412412
> /init
413413
```
414414
415-
Copilot will scan your project and create tailored instruction files. You can edit them afterwards.
415+
Copilot escaneará tu proyecto y creará archivos de instrucciones personalizados. Puedes editarlos después.
416416
417417
### Instruction File Formats
418418
@@ -423,7 +423,7 @@ Copilot will scan your project and create tailored instruction files. You can ed
423423
| `.github/instructions/*.instructions.md` | Project | Granular, topic-specific instructions |
424424
| `CLAUDE.md`, `GEMINI.md` | Project root | Supported for compatibility |
425425
426-
> 🎯 **Just getting started?** Use `AGENTS.md` for project instructions. You can explore the other formats later as needed.
426+
> 🎯 **¿Empezando desde cero?** Usa `AGENTS.md` para las instrucciones del proyecto. Puedes explorar los otros formatos más adelante según lo necesites.
427427
428428
### AGENTS.md
429429
@@ -545,7 +545,7 @@ Use these names in the `tools` list:
545545
546546
> 📖 **Official docs**: [Custom agents configuration](https://docs.github.com/copilot/reference/custom-agents-configuration)
547547
>
548-
> ⚠️ **VS Code Only**: The `model` property (for selecting AI models) works in VS Code but is not supported in GitHub Copilot CLI. You can safely include it for cross-platform agent files. GitHub Copilot CLI will ignore it.
548+
> ⚠️ **Solo VS Code**: La propiedad `model` (para seleccionar modelos de IA) funciona en VS Code pero no es compatible con GitHub Copilot CLI. Puedes incluirla de forma segura en archivos de agente multiplataforma. GitHub Copilot CLI la ignorará.
549549
550550
### More Agent Templates
551551
@@ -805,7 +805,7 @@ In **[Chapter 05: Skills System](../05-skills/README.md)**, you'll learn:
805805
806806
---
807807
808-
**[← Back to Chapter 03](../03-development-workflows/README.md)** | **[Continue to Chapter 05 →](../05-skills/README.md)**
808+
**[← Volver al Capítulo 03](../03-development-workflows/README.md)** | **[Continuar al Capítulo 05 →](../05-skills/README.md)**
809809
810810
---
811811

translations/es/GLOSSARY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Glossary
1+
# Glosario
22

3-
Quick reference for technical terms used throughout this course. No te preocupes por memorizarlos ahora - consúltalos según sea necesario.
3+
Referencia rápida para los términos técnicos usados a lo largo de este curso. No te preocupes por memorizarlos ahora - consúltalos según sea necesario.
44

55
---
66

77
## A
88

99
### Agent
1010

11-
A specialized AI personality with domain expertise (e.g., frontend, security). Defined in `.agent.md` files with YAML frontmatter containing at minimum a `description` field.
11+
Una personalidad de IA especializada con experiencia en un dominio (por ejemplo, frontend, seguridad). Se define en archivos `.agent.md` con frontmatter YAML que contiene como mínimo un campo `description`.
1212

1313
### API
1414

translations/es/appendices/ci-cd-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CI/CD Integration
1+
# Integración CI/CD
22

33
> 📖 **Requisito previo**: Completa [Capítulo 07: Poniéndolo todo junto](../07-putting-it-together/README.md) antes de leer este apéndice.
44
>

translations/es/samples/agents/python-reviewer.agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tools:
44
- read
55
- edit
66
- search
7-
description: Python code quality specialist for reviewing Python projects
7+
description: Especialista en calidad de código Python para revisar proyectos Python
88
---
99
# Revisor de código Python
1010

0 commit comments

Comments
 (0)