Skip to content

Commit 8b6ca23

Browse files
author
Vic Shóstak
authored
Merge pull request #2 from Rooyca/main
Update Spanish translation
2 parents 6e3de58 + 3be7782 commit 8b6ca23

15 files changed

+172
-172
lines changed

docs/es/complete-user-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ Esta sección contiene instrucciones detalladas sobre cómo instalar, configurar
99

1010
<!--@include: ../parts/es/block_want-to-try.md-->
1111

12-
## De los autores
12+
## Sobre los autores
1313

14-
¡Siempre valoramos tu tiempo y queremos que empieces a construir productos web realmente geniales sobre esta impresionante pila tecnológica lo antes posible! Por ello, para que tengas una guía completa para usar y entender los principios básicos de la CLI de **Gowebly**, hemos preparado una explicación exhaustiva del proyecto en esta **Guía de usuario completa**.
14+
¡Siempre valoramos tu tiempo y queremos que empieces a construir web apps realmente geniales utilizando este increible stack! Es por ello, que hicimos esta **Guía de usuario completa** para que puedas usar y entender los principios básicos de la CLI de **Gowebly**.
1515

16-
Nos hemos preocupado de hacerte **lo más cómodo** el aprendizaje de esta maravillosa herramienta, por lo que cada comando CLI tiene una descripción textual suficiente, así como un diagrama visual de su funcionamiento.
16+
Nos preocupamos por que el aprendizaje de esta herramienta sea **lo más amigable** posible, por lo que cada comando tiene una descripción, así como un diagrama visual de su funcionamiento.
1717

1818
Esperamos que encuentre respuesta a todas sus preguntas.
1919

2020
<!--@include: ../parts/es/block_cant-find-answer.md-->
2121

2222
## Empezar a explorar
2323

24-
Es muy recomendable empezar a explorar con las dos secciones para entender el principio básico y los principales componentes incorporados en el **Gowebly** CLI:
24+
Es muy recomendable empezar a explorar con estas dos secciones para entender los principios básicos y los principales componentes incorporados en el CLI de **Gowebly**:
2525

2626
1. [¿Qué es Gowebly CLI?](/es/getting-started)
2727
2. [¿Cómo funciona?](/es/getting-started/how-does-it-work)

docs/es/complete-user-guide/create-new-project.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Create a new project
1+
# Crear un nuevo proyecto
22

3-
To start a new project, execute the `create` command:
3+
Para iniciar un nuevo proyecto, ejecuta el comando `create`:
44

55
::: code-group
66
```bash [CLI]
@@ -12,25 +12,25 @@ go run github.com/gowebly/gowebly@latest create
1212
```
1313
:::
1414

15-
And result will be:
15+
Y el resultado será algo como:
1616

1717
<img width="100%" alt="gowebly create" src="https://raw.githubusercontent.com/gowebly/.github/main/images/gowebly_create.gif"/>
1818

19-
Typically, the created project contains the following files and folders:
19+
Generalmente, el proyecto creado contiene los siguientes archivos y carpetas:
2020

21-
- The templates are located in the `./templates` folder.
22-
- The main CSS file `styles.scss` is located in the `./assets` folder.
23-
- The main JavaScript file `scripts.js` is located in the `./assets` folder.
24-
- The PWA manifest file `manifest.json` and images are located in the `./static` folder.
21+
- Los templates se encuentran en la carpeta `./templates`.
22+
- El archivo CSS principal `styles.scss` se encuentra en la carpeta `./assets`.
23+
- El archivo JavaScript principal `scripts.js` se encuentra en la carpeta `./assets`.
24+
- El archivo para la PWD `manifest.json` y las imágenes se encuentran en la carpeta `./static`.
2525

2626
::: warning Go structure disclaimer
27-
Please note, that the **Gowebly** does not impose any restrictions on the architecture, style or structure of your project. The CLI only helps you **quickly start a new project** and generates all the necessary files for you.
27+
Por favor ten en cuenta que **Gowebly** no impone ninguna restricción sobre la arquitectura, estilo o estructura de tu proyecto. La CLI solo te ayuda a **iniciar rápidamente un nuevo proyecto** y genera todos los archivos necesarios para ti.
2828

29-
Therefore, you are **free to create** any project structure you wish.
29+
Por lo tanto, eres **libre de crear** la estructura de tu proyecto como desees.
3030
:::
3131

3232
::: code-group
33-
```bash{18,19} [Using html/template]
33+
```bash{18,19} [Usando html/template]
3434
.
3535
├── assets
3636
│ ├── scripts.js
@@ -65,7 +65,7 @@ Therefore, you are **free to create** any project structure you wish.
6565
└── server.go
6666
```
6767

68-
```bash{19,21} [Using Templ]
68+
```bash{19,21} [Usando Templ]
6969
.
7070
├── assets
7171
│ ├── scripts.js
@@ -103,34 +103,34 @@ Therefore, you are **free to create** any project structure you wish.
103103
```
104104
:::
105105

106-
::: danger Auto-generated files by Templ
107-
Please do **not** edit `*_templ.go` Go files in the `./templates` folder of your project! They're auto-generated by the **Templ** CLI from `*.templ` templates.
106+
::: danger Archivos generados por Templ
107+
Por favor **no** edites los archivos Go `*_templ.go` en la carpeta `./templates` de tu proyecto! Son generados automáticamente por la CLI de **Templ** a partir de las plantillas `*.templ`.
108108
:::
109109

110-
## What CLI does for you?
110+
## ¿Qué hace la CLI por ti?
111111

112-
Every time you execute the `create` command for a project, the **Gowebly** CLI does the following under the hood:
112+
Cada vez que ejecutas el comando `create` para un crear un nuevo proyecto, la CLI de **Gowebly** hace lo siguiente:
113113

114-
| Step | Description |
114+
| Paso | Descripción |
115115
| :---: | ---------------------------------------------------------------------------------------------------------------- |
116-
| **1** | **The structure of your project** |
117-
| | CLI creates the project folders and all needed miscellaneous files |
118-
| **2** | **The backend part of your project** |
119-
| | CLI generates the backend files (`go.mod`, chosen Go framework files, and so on) |
120-
| | CLI runs `go mod tidy` and `go fmt` for the first time |
121-
| **3** | **The frontend part of your project** |
122-
| | CLI generates the `scripts.js` file with importing the chosen reactivity library |
123-
| | CLI generates the `styles.scss` file with minimal styles for the chosen CSS framework |
124-
| | CLI generates the needed utility files (`package.json`, config for the chosen CSS framework, and so on) |
125-
| | CLI runs `install` and `build` scripts from the `package.json` file with the chosen frontend runtime environment |
126-
127-
To visualize the workflow, please refer to the diagram:
116+
| **1** | **La estructura de tu proyecto** |
117+
| | CLI crea las carpetas del proyecto y todos los archivos necesarios |
118+
| **2** | **La parte del backend de tu proyecto** |
119+
| | CLI genera los archivos backend (`go.mod`, archivos de los framework elegidos, etc.) |
120+
| | CLI corre `go mod tidy` y `go fmt` por primera vez |
121+
| **3** | **La parte del frontend de tu proyecto** |
122+
| | CLI genera el archivo `scripts.js` con la librería escogida |
123+
| | CLI genera el archivo `styles.scss` con estilos mínimos del framework CSS escogido |
124+
| | CLI genera los archivos necesarios (`package.json`, configuraciones para el framework CSS, entre otros) |
125+
| | CLI ejecuta los scripts `install` y `build` desde el archivo `package.json` con el entorno frontend seleccionado|
126+
127+
Para visualizar el flujo de trabajo, consulta el diagrama:
128128

129129
```mermaid
130130
stateDiagram-v2
131-
Structure: Generate project structure
132-
Backend: Prepare backend part
133-
Frontend: Prepare frontend part
131+
Structure: Genera la estructura del proyecto
132+
Backend: Prepara el backend
133+
Frontend: Prepara el frontend
134134
direction LR
135135
[*] --> Structure
136136
Structure --> Backend

docs/es/complete-user-guide/info-about-system.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Info about your system
1+
# Información sobre el sistema
22

3-
To view information about your system, execute the `doctor` command:
3+
Para ver información sobre tu sistema, ejecuta el comando `doctor`:
44

55
::: code-group
66
```bash [CLI]
@@ -12,7 +12,7 @@ go run github.com/gowebly/gowebly@latest doctor
1212
```
1313
:::
1414

15-
And result will be:
15+
Y el resultado será algo como:
1616

1717
```
1818
✓ Your system information has been collected successfully!
Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,35 @@
1-
# Installation
1+
# Instalación
22

3-
The basics for installing the **Gowebly** CLI on your system are covered in this section.
3+
Los fundamentos para instalar la CLI de **Gowebly** se cubren en esta sección.
44

55
## Go
66

7-
[Download][go_download_url] and install **Go**. Version `1.22` (or higher) is required.
7+
[Descarga][go_download_url] e instala **Go**. Se requiere la versión `1.22` (o superior).
88

9-
Then, use the [`go install`][go_install_url] command:
9+
Luego, usa el comando [`go install`][go_install_url]:
1010

1111
``` bash
1212
go install github.com/gowebly/gowebly/v2@latest
1313
```
1414

1515
## Homebrew
1616

17-
GNU/Linux and Apple macOS users available way to install **Gowebly** CLI via [Homebrew][other_brew_url].
18-
19-
Tap a new formula:
17+
Los usuarios de GNU / Linux y Apple macOS tienen disponible la instalación de la CLI a través de [Homebrew][other_brew_url].
2018

2119
``` bash
2220
brew tap gowebly/tap
2321
```
2422

25-
Install:
23+
Luego instala usando:
2624

2725
``` bash
2826
brew install gowebly/tap/gowebly
2927
```
3028

31-
## Manual mode
29+
## Modo manual
3230

33-
Download ready-made `exe` files for Windows, `deb` (for Debian, Ubuntu), `rpm` (for CentOS, Fedora), `apk` (for Alpine), or Arch Linux packages from the [Releases][repo_releases_url] page.
31+
Descargue el `exe` ya compilado para Windows, `deb` (para Debian, Ubuntu), `rpm` (para CentOS, Fedora), `apk` (para Alpine), o el paquete para Arch Linux desde la página [Releases][repo_releases_url].
3432

35-
Install it like you normally would.
33+
Instálalo como lo haría normalmente.
3634

3735
<!--@include: ../../parts/links.md-->

docs/es/complete-user-guide/run-your-project.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ next:
44
link: '/es/faq'
55
---
66

7-
# Run your project
7+
# Ejecutar tu proyecto
88

9-
To run your project in a development mode, execute the `run` command:
9+
Para ejecutar tu proyecto en modo de desarrollo, ejecuta el comando `run`:
1010

1111
::: code-group
1212
```bash [CLI]
@@ -18,28 +18,28 @@ go run github.com/gowebly/gowebly@latest run
1818
```
1919
:::
2020

21-
## What CLI does for you?
21+
## ¿Qué hace la CLI por ti?
2222

23-
Every time you execute the `run` command for a project, the **Gowebly** CLI does the following under the hood:
23+
Cada vez que ejecutas el comando `run` para un crear un nuevo proyecto, la CLI de **Gowebly** hace lo siguiente:
2424

25-
| Step | Description |
25+
| Paso | Descripción |
2626
| :---: | ------------------------------------------------------------------------------------- |
27-
| **1** | **Start Air tool** |
28-
| | CLI runs your project with live-reloading mode in a simple `air -c .air.toml` command |
29-
| **2** | **Live-reloading mode** |
30-
| | Air tool builds frontend part of your project in production mode |
31-
| | Air tool generates Go functions from `*.templ` templates, if needed |
32-
| | Air tool builds the backend part of your project |
33-
| | Air tool watches for changes in your project files and rebuilds them |
27+
| **1** | **Inicia la herramienta Air** |
28+
| | CLI corre tu proyecto en modo live-reloading con un simple comando `air -c .air.toml` |
29+
| **2** | **Modo Live-reloading** |
30+
| | Air builds el frontend en modo producción |
31+
| | Air genera las funciones de Go desde los templates `*.templ` templates, si se requiere|
32+
| | Air builds el backend de tu proyecto |
33+
| | Air queda a la espera de cambios en tu proyecto para hacer rebuilds |
3434

35-
To visualize the workflow, please refer to the diagram:
35+
Para visualizar el flujo de trabajo, consulta el diagrama:
3636

3737
```mermaid
3838
stateDiagram-v2
39-
Backend: Prepare backend part
40-
Frontend: Prepare frontend part
41-
Watch: Watch for changes
42-
Changes: Changes occurred
39+
Backend: Prepara el backend
40+
Frontend: Prepara el frontend
41+
Watch: Espera cambios
42+
Changes: Ocurre un cambio
4343
direction LR
4444
Watch --> Changes
4545
state Changes {

docs/es/faq.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
prev:
3-
text: 'Complete user guide'
3+
text: 'Guía de usuario completa'
44
link: '/es/complete-user-guide'
55
next:
66
text: 'Troubleshooting'
@@ -9,14 +9,16 @@ next:
99

1010
# FAQ
1111

12-
The most common questions that may come up when using the **Gowebly** CLI are collected in this section.
12+
Las preguntas más comunes que pueden surgir al usar la CLI de **Gowebly** se recopilan en esta sección.
1313

1414
<!--@include: ../parts/es/block_cant-find-answer.md-->
1515

16-
## What is the right way to ask a question or report a bug?
16+
## ¿Cuál es la forma correcta de hacer una pregunta o reportar un error?
1717

1818
Running the `doctor` command will give you a list of all the tools you need to work properly with the **Gowebly** CLI that are installed on your system:
1919

20+
Ejecutar el comando `doctor` te dará una lista de todas las herramientas que están instaladas en tu sistema y que son necesarias para trabajar con la CLI de **Gowebly**.
21+
2022
::: code-group
2123
``` bash [CLI]
2224
gowebly doctor
@@ -27,31 +29,31 @@ go run github.com/gowebly/gowebly@latest doctor
2729
```
2830
:::
2931

30-
Next, open [GitHub Issues][repo_issues_url] and follow the instructions.
32+
Después, abre un [GitHub Issues][repo_issues_url] y sigue las instrucciones.
3133

32-
::: warning Output of the `doctor` command
33-
Don't forget to include output of the `doctor` command to the issue description! This is a very helpful information for the debugging process.
34+
::: warning Output del comando `doctor`
35+
No olvides incluir el output del comando `doctor` en la descripción del problema. Esta información es muy útil para el proceso de depuración.
3436
:::
3537

36-
## Is it possible to see a demonstration of how the CLI works without installation?
38+
## ¿Es posible ver una demostración de cómo funciona la CLI sin instalarla?
3739

38-
Yes, of course! :smile: To give you a visual understanding of the project, we have recorded a short demonstration GIF for `gowebly create` command:
40+
¡Claro que sí! :smile: Para darte una comprensión visual del proyecto, hemos grabado un GIF de demostración corto para el comando `gowebly create`:
3941

4042
<img width="100%" alt="gowebly create" src="https://raw.githubusercontent.com/gowebly/.github/main/images/gowebly_create.gif"/>
4143

42-
## Where else can I read something about the CLI?
44+
## ¿Dónde más puedo leer sobre la CLI?
4345

44-
We prepared articles demonstrating the main features and the major updates:
46+
Hemos preparado artículos que demuestran las principales características y las actualizaciones más importantes:
4547

46-
- [A next-generation CLI tool for building amazing web apps in Go using htmx & hyperscript][article_devto_article_1_url]
47-
- [Big update: the Gowebly CLI now supports Templ][article_devto_article_2_url]
48-
- [Frontend update: the Gowebly CLI now supports daisyUI components library][article_devto_article_3_url]
49-
- [Big frontend update: the Gowebly CLI now supports Bootstrap and Bulma][article_devto_article_4_url]
50-
- [The Gowebly CLI has grown to v2.0.0][article_devto_article_5_url]
48+
- [CLI de última generación para crear increíbles aplicaciones web en Go utilizando htmx & hyperscript.][article_devto_article_1_url]
49+
- [Gran actualización: la CLI de Gowebly ahora soporta Templ][article_devto_article_2_url]
50+
- [Actualización del frontend : la CLI Gowebly ahora es compatible con la biblioteca de componentes daisyUI][article_devto_article_3_url]
51+
- [Gran actualización del frontend: la CLI de Gowebly ahora soporta Bootstrap y Bulma][article_devto_article_4_url]
52+
- [La CLI de Gowebly ha llegado a la versión v2.0.0][article_devto_article_5_url]
5153
- [Preline UI + Gowebly CLI = ❤️][article_devto_article_6_url]
5254

53-
::: tip Want to see your article here?
54-
If you want to see your article here, feel free to send a [PR][repo_docs_pr_url] to the **Gowebly** Docs repository.
55+
::: tip ¿Quieres ver tu artículo aquí?
56+
Si quieres ver tu artículo aquí, no dudes en enviar una [PR][repo_docs_pr_url] al repositorio de **Gowebly** Docs.
5557
:::
5658

5759
<!--@include: ../parts/links.md-->

docs/es/getting-started.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ editLink: false
33
lastUpdated: false
44
---
55

6-
# What is Gowebly CLI?
6+
# ¿Qué es Gowebly CLI?
77

8-
This section will help you understand what **Gowebly** CLI is.
8+
Esta sección te ayudará a entender qué es **Gowebly** CLI.
99

1010
<!--@include: ../parts/es/block_want-to-try.md-->
1111

12-
The **Gowebly** CLI is a free and open source software that helps to easily build amazing web applications with Go on the backend, using htmx & hyperscript and the most popular CSS frameworks on the frontend.
12+
La CLI de **Gowebly** es un software de código abierto y gratuito que ayuda a construir fácilmente aplicaciones web increíbles con Go en el backend, utilizando htmx & hyperscript y los más populares frameworks de CSS en el frontend.
1313

14-
CLI generates a ready-to-use project that helps to understand **Go** + **htmx** technology stack as quickly as possible and start working on it with maximum developer comfort. Many project elements are already optimally configured and ready for production.
14+
Con esta CLI pudes generar un proyecto listo para usar que te ayuda a entender **Go** y **htmx** lo más rápido posible y comenzar a trabajar en ella con el máximo confort. Muchos elementos del proyecto están configurados de forma óptima, listos para producción.
1515

16-
To visualize the workflow, please refer to the diagram:
16+
Para visualizar el flujo de trabajo, consulte el diagrama:
1717

1818
```mermaid
1919
stateDiagram-v2
2020
direction LR
21-
Install: Install CLI
22-
Doctor: View diagnostics
23-
Create: Create new project
24-
Run: Run project
21+
Install: Instalar CLI
22+
Doctor: Ver diagnostico
23+
Create: Crear nuevo proyecto
24+
Run: Correr proyecto
2525
[*] --> Install
2626
Install --> Create
2727
Install --> Doctor

0 commit comments

Comments
 (0)