Skip to content

Commit 0eaddbe

Browse files
i18n(es): update all outdated reference/errors (#14240)
1 parent d8771c7 commit 0eaddbe

68 files changed

Lines changed: 256 additions & 296 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
2-
title: Acción llamada inesperadamente desde el servidor.
2+
title: Acción llamada desde el servidor sin utilizar Astro.callAction().
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **ActionCalledFromServerError**: Acción llamada desde una página del servidor o un endpoint sin utilizar `Astro.callAction()`. Debes utilizar este envoltorio para llamar a acciones desde el código del servidor.
7+
> **ActionCalledFromServerError**: Action called from a server-rendered page or endpoint without using `Astro.callAction()`. This wrapper must be used to call actions from server code.
88
99
## ¿Qué salió mal?
10+
1011
Acción llamada desde una página del servidor o endpoint sin utilizar `Astro.callAction()`.
1112

1213
**Ver también:**
14+
1315
- [Referencia de `Astro.callAction()`](/es/reference/api-reference/#callaction)
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
2-
title: Actions must be used with server output.
2+
title: Las acciones deben usarse con la salida del servidor.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **ActionsWithoutServerOutputError**: Se requiere un servidor para crear funciones backend invocables. Para desplegar rutas en un servidor, añade un adaptador a tu configuración de Astro y configura tu ruta para la renderización bajo demanda.
7+
> **ActionsWithoutServerOutputError**: A server is required to create callable backend functions. To deploy routes to a server, add an adapter to your Astro config and configure your route for on-demand rendering.
88
99
## ¿Qué salió mal?
10+
1011
Tu proyecto debe tener una salida del servidor para crear funciones de backend con Acciones.
1112

12-
**Ver También:**
13-
- [Renderizado bajo demanda](/es/guides/on-demand-rendering/)
13+
**Ver también:**
14+
15+
- [Renderizado bajo demanda](/es/guides/on-demand-rendering/)
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
---
2-
title: Adapter does not support server output.
2+
title: El adaptador no soporta la salida del servidor.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **AdapterSupportOutputMismatch**: El adaptador `NOMBRE_DE_ADAPTADOR` está configurado para generar una página estática, pero el proyecto contiene páginas renderizadas en el servidor. Por favor,instala y configura el adaptador de servidor apropiado para tu despliegue final.
7+
> **AdapterSupportOutputMismatch**: The `ADAPTER_NAME` adapter is configured to output a static website, but the project contains server-rendered pages. Please install and configure the appropriate server adapter for your final deployment.
88
99
## ¿Qué salió mal?
10+
1011
El adaptador configurado actualmente no admite la renderización en el servidor, la cual es requerida para la configuración actual del proyecto.
1112

1213
Dependiendo de tu adaptador, puede haber un punto de entrada diferente para la renderización en el servidor. Por ejemplo, el adaptador `@astrojs/vercel` tiene el punto de entrada `@astrojs/vercel/static` para la renderización estática y `@astrojs/vercel/serverless` para la renderización en el servidor.
1314

14-
**Ver También:**
15-
- [Renderizado en el lado del servidor](/es/guides/on-demand-rendering/)
15+
**Ver también:**
16+
17+
- [Renderizado en el lado del servidor](/es/guides/on-demand-rendering/)

src/content/docs/es/reference/errors/cannot-extract-font-type.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> Ocurrió un error al intentar extraer el tipo de fuente desde la URL proporcionada.
7+
> An error occurred while trying to extract the font type from the given URL.
88
99
## ¿Qué salió mal?
10+
1011
No se puede extraer el tipo de fuente desde la URL proporcionada.

src/content/docs/es/reference/errors/cannot-fetch-font-file.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> Ocurrió un error al intentar obtener el archivo de fuente desde la URL proporcionada.
7+
> An error occurred while fetching font file from the given URL.
88
99
## ¿Qué salió mal?
10+
1011
No se puede obtener el archivo de fuente proporcionado.

src/content/docs/es/reference/errors/cannot-optimize-svg.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> Ocurrió un error al optimizar el archivo SVG con SVGO.
7+
> An error occurred while optimizing the SVG file with the optimizer.
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
---
2-
# NOTE: This file is auto-generated from 'scripts/error-docgen.mjs'
3-
# Do not make edits to it directly, they will be overwritten.
4-
# Instead, change this file: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
5-
6-
title: Astro.clientAddress is not available in current adapter.
2+
title: Astro.clientAddress no está disponible en el adaptador actual.
73
i18nReady: true
84
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
95
---
106

11-
> **ClientAddressNotAvailable**: `Astro.clientAddress` no está disponible en el adaptador `ADAPTER_NAME`. Crea una issue con el nombre del adaptador para agregar soporte.
7+
> **ClientAddressNotAvailable**: `Astro.clientAddress` is not available in the `ADAPTER_NAME` adapter. File an issue with the adapter to add support.
128
139
## ¿Qué salió mal?
1410

1511
Lamentablemente, el adaptador que estás utilizando no es compatible con `Astro.clientAddress`.
1612

1713
**Ver también:**
14+
1815
- [Integraciones oficiales](/es/guides/integrations/#official-integrations)
1916
- [Astro.clientAddress](/es/reference/api-reference/#clientaddress)

src/content/docs/es/reference/errors/config-not-found.mdx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
---
2-
# NOTE: This file is auto-generated from 'scripts/error-docgen.mjs'
3-
# Do not make edits to it directly, they will be overwritten.
4-
# Instead, change this file: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
5-
# Translators, please remove this note and the <DontEditWarning/> component.
6-
7-
title: Specified configuration file not found.
2+
title: No se ha encontrado el archivo de configuración especificado.
83
i18nReady: true
94
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
105
---
116

12-
> **ConfigNotFound**: No se puede resolver `--config "CONFIG_FILE"`. ¿Existe este archivo?
7+
> **ConfigNotFound**: Unable to resolve `--config "CONFIG_FILE"`. Does the file exist?
138
149
## ¿Qué salió mal?
1510

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
2-
title: Collection contains entries of a different type.
2+
title: La colección contiene entradas de distintos tipos.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
66

7-
> **ContentCollectionTypeMismatchError**: La COLECCIÓN contiene el TIPO_ESPERADO de elementos, pero está configurada como una colección de TIPO_ACTUAL.
7+
> **ContentCollectionTypeMismatchError**: COLLECTION contains EXPECTED_TYPE entries, but is configured as a ACTUAL_TYPE collection.
88
99
## ¿Qué salió mal?
10+
1011
Las colecciones de contenido deben contener entradas del tipo configurado. Por defecto, las colecciones tienen `type: 'content'`. Intenta agregar `type: 'data'` a la configuración de tu colección para las colecciones de datos.
1112

1213
**Ver también:**
14+
1315
- [Definiendo colecciones de contenido](/es/guides/upgrade-to/v5/#updating-existing-collections)
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Content entry is missing an ID
2+
title: Falta un ID en la entrada de contenido.
33
i18nReady: true
44
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts
55
---
@@ -9,5 +9,6 @@ El cargador para **blog** devolvió datos inválidos.<br/>
99
Al objeto le falta la propiedad requerida "id".
1010

1111
## ¿Qué salió mal?
12+
1213
El cargador para una colección de contenido devolvió datos inválidos.
13-
Los cargadores en línea deben devolver un array de objetos con campos ID únicos o un objeto plano con IDs como claves y entradas como valores.
14+
Los cargadores en línea deben devolver una lista de objetos con campos ID únicos o un objeto plano con IDs como claves y entradas como valores.

0 commit comments

Comments
 (0)