Skip to content

Commit 4a76648

Browse files
DanWahlinCopilot
andauthored
fix(translations/es): polish untranslated sections in Spanish translations
- Translate image alt text in 02-context-conversations/README.md and 07-putting-it-together/README.md - Translate untranslated headings and prose in 06-mcp-servers/mcp-custom-server.md (Project Setup, Server Implementation, Configuration, Usage sections) - Translate table headers in 07-putting-it-together/README.md - Translate chapter structure description in AGENTS.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 77b06c5 commit 4a76648

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 3
99
---
1010
-->
1111

12-
![Chapter 02: Context and Conversations](../../../02-context-conversations/assets/chapter-header.png)
12+
![Capítulo 02: Contexto y conversaciones](../../../02-context-conversations/assets/chapter-header.png)
1313

1414
> **¿Y si la IA pudiera ver toda tu base de código, no solo un archivo a la vez?**
1515

translations/es/06-mcp-servers/mcp-custom-server.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ weight: 61
2222
2323
---
2424

25-
Want to connect Copilot to your own APIs? Here's how to build a simple MCP server in Python that looks up book information, tying back to the book app project you've been using throughout this course.
25+
¿Quieres conectar Copilot a tus propias APIs? Aquí te mostramos cómo construir un servidor MCP simple en Python que busca información de libros, enlazando con el proyecto de la aplicación de libros que has usado a lo largo de este curso.
2626

27-
## Project Setup
27+
## Configuración del proyecto
2828

2929
```bash
3030
mkdir book-lookup-mcp-server
3131
cd book-lookup-mcp-server
3232
pip install mcp
3333
```
3434

35-
> 💡 **What is the `mcp` package?** It's the official Python SDK for building MCP servers. It handles the protocol details so you can focus on your tools.
35+
> 💡 **¿Qué es el paquete `mcp`?** Es el SDK oficial de Python para construir servidores MCP. Se encarga de los detalles del protocolo para que puedas centrarte en tus herramientas.
3636
37-
## Server Implementation
37+
## Implementación del servidor
3838

39-
Create a file called `server.py`:
39+
Crea un archivo llamado `server.py`:
4040

4141
```python
4242
# server.py
@@ -118,9 +118,9 @@ if __name__ == "__main__":
118118

119119
> 💡 **¿Por qué los decoradores?** El decorador `@mcp.tool()` es todo lo que necesitas. El SDK de MCP lee automáticamente el nombre de tu función, las anotaciones de tipo y el docstring para generar el esquema de la herramienta. ¡No se necesita un esquema JSON manual!
120120
121-
## Configuration
121+
## Configuración
122122

123-
Add to your `~/.copilot/mcp-config.json`:
123+
Agrega a tu `~/.copilot/mcp-config.json`:
124124

125125
```json
126126
{
@@ -135,7 +135,7 @@ Add to your `~/.copilot/mcp-config.json`:
135135
}
136136
```
137137

138-
## Usage
138+
## Uso
139139

140140
```bash
141141
copilot

translations/es/07-putting-it-together/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 8
99
---
1010
-->
1111

12-
![Chapter 07: Putting It All Together](../../../07-putting-it-together/assets/chapter-header.png)
12+
![Capítulo 07: Poniéndolo todo junto](../../../07-putting-it-together/assets/chapter-header.png)
1313

1414
> **Todo lo que aprendiste se combina aquí. Pasa de la idea a un PR fusionado en una sola sesión.**
1515
@@ -487,7 +487,7 @@ Documenta tu flujo de trabajo a medida que avanzas.
487487
488488
¡Felicidades! Has aprendido:
489489
490-
| Chapter | What You Learned |
490+
| Capítulo | Lo que aprendiste |
491491
|---------|-------------------|
492492
| 00 | Instalación de Copilot CLI y Inicio rápido |
493493
| 01 | Tres modos de interacción |

translations/es/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Curso para principiantes que enseña GitHub Copilot CLI. Contenido educativo, no
66

77
| Ruta | Propósito |
88
|------|---------|
9-
| `00-07/` | Chapters: analogyconceptshands-onassignmentnext |
9+
| `00-07/` | Capítulos: analogíaconceptosprácticatareasiguiente |
1010
| `samples/book-app-project/` | **Muestra principal**: aplicación CLI de colección de libros en Python usada a lo largo de todos los capítulos |
1111
| `samples/book-app-project-cs/` | Versión en C# de la aplicación de colección de libros |
1212
| `samples/book-app-project-js/` | Versión en JavaScript de la aplicación de colección de libros |

0 commit comments

Comments
 (0)