chore(i18n,docs): processed translations (#43758)

This commit is contained in:
camperbot
2021-10-07 05:37:51 -07:00
committed by GitHub
parent 25783b7929
commit f069173edb
46 changed files with 372 additions and 257 deletions

View File

@@ -29,54 +29,60 @@ docker stop mailhog
Para frenarlo.
Cuando la instalación finalice, puedes comenzar a [usar MailHog](#using-mailhog). </details>
Cuando la instalación finalice, puedes comenzar a [usar MailHog](#using-mailhog).
<details><summary>Instalando MailHog en macOS</summary>
</details>
Instala Mailhog en MacOS con [Homebrew](https://brew.sh/):
<details><summary>Installing MailHog on macOS</summary>
Install MailHog on macOS with [Homebrew](https://brew.sh/):
```bash
brew install mailhog
brew services start mailhog
```
los comandos anteriores iniciarán un servicio de mailhog en segundo plano.
The above commands will start a mailhog service in the background.
cuando termine la instalación, puedes comenzar a [usar Mailhog](#using-mailhog). </details>
When the installation completes, you can start [using MailHog](#using-mailhog).
<details><summary>Instalando MailHog en Windows</summary>
</details>
Descarga la última versión de MailHog desde [el repositorio oficial de MailHog](https://github.com/mailhog/MailHog/releases). Ubica y presiona el enlace para tu versión de Windows (32 o 64 bits) y se descargará un archivo .exe a tu computadora.
<details><summary>Installing MailHog on Windows</summary>
Cuando haya finalizado la descarga, haz clic para abrir el archivo. Una notificación del cortafuegos de Windows podría aparecer, solicitando permiso de acceso para MailHog. Se abrirá una consola de Windows donde MailHog se ejecutará una vez que se le conceda acceso del cortafuegos.
Download the latest version of MailHog from [MailHog's official repository](https://github.com/mailhog/MailHog/releases). Locate and click on the link for your Windows version (32 or 64 bit) and a .exe file will be downloaded to your computer.
Detén MailHog cerrando la ventana de la consola. Para iniciar MailHog de nuevo, haz clic en el archivo ejecutable de MailHog (.exe) que se descargó inicialmente, no es necesario descargar un nuevo archivo de instalación de MailHog.
When the download completes, click to open the file. A Windows firewall notification may appear, requesting access permission for MailHog. A standard Windows command line prompt will open where MailHog will be running once firewall access is granted.
Comienza a [usar MailHog](#using-mailhog). </details>
Close MailHog by closing the command prompt window. To start MailHog again, click on the MailHog executable (.exe) file that was downloaded initially - it is not necessary to download a new MailHog installation file.
<details><summary>Instalando MailHog en Linux</summary>
Start [using MailHog](#using-mailhog).
Primero, instala [Go](https://golang.org).
</details>
Ejecuta los siguientes comandos para instalar GO en sistemas basados en Debian como Ubuntu y Linux Mint.
<details><summary>Installing MailHog on Linux</summary>
First, install [Go](https://golang.org).
Run the following commands to install GO on Debian-based systems like Ubuntu and Linux Mint.
```bash
sudo apt-get install golang
```
Ejecuta los siguientes comandos para instalar GO en sistemas basados en RPM como CentOS, Fedora, Red Hat Linux, etc.
Run the following commands to install GO on RPM-based systems like CentOS, Fedora, Red Hat Linux, etc.
```bash
sudo dnf install golang
```
Alternativamente, ejecuta los siguientes comandos para instalar GO.
Alternatively, run the following commands to install GO.
```bash
sudo yum install golang
```
Ahora establece la ruta para Go con los siguientes comandos.
Now set the path for Go with the following commands.
```bash
echo "export GOPATH=$HOME/go" >> ~/.profile
@@ -84,7 +90,7 @@ echo 'export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin' >> ~/.profile
source ~/.profile
```
Finalmente, introduce los siguientes comandos para instalar y ejecutar MailHog.
Finally, enter the commands below to install and run MailHog.
```bash
go get github.com/mailhog/MailHog
@@ -92,23 +98,25 @@ sudo cp /home/$(whoami)/go/bin/MailHog /usr/local/bin/mailhog
mailhog
```
Comienza a [usar MailHog](#using-mailhog). </details>
Start [using MailHog](#using-mailhog).
</details>
## Usando MailHog
Abre una nueva pestaña o ventana del navegador y navega a [http://localhost:8025](http://localhost:8025) para abrir tu bandeja de entrada de MailHog cuando se haya completado la instalación de MailHog y se encuentre en ejecución. La bandeja de entrada será similar a la captura de pantalla siguiente.
Open a new browser tab or window and navigate to [http://localhost:8025](http://localhost:8025) to open your MailHog inbox when the MailHog installation has completed and MailHog is running. The inbox will appear similar to the screenshot below.
![Captura de pantalla de MailHog 1](https://contribute.freecodecamp.org/images/mailhog/1.jpg)
![MailHog Screenshot 1](https://contribute.freecodecamp.org/images/mailhog/1.jpg)
Los correos enviados por tu instalación de freeCodeCamp aparecerán de la siguiente manera
Emails sent by your freeCodeCamp installation will appear as below
![Captura de pantalla de MailHog 2](https://contribute.freecodecamp.org/images/mailhog/2.jpg)
![MailHog Screenshot 2](https://contribute.freecodecamp.org/images/mailhog/2.jpg)
Dos pestañas que te permiten ver texto plano o contenido fuente estarán disponibles cuando abras un correo electrónico dado. Asegúrate de que la pestaña de texto plano está seleccionada como se muestra a continuación.
Two tabs that allow you to view either plain text or source content will be available when you open a given email. Ensure that the plain text tab is selected as below.
![Captura de pantalla de MailHog 3](https://contribute.freecodecamp.org/images/mailhog/3.jpg)
![MailHog Screenshot 3](https://contribute.freecodecamp.org/images/mailhog/3.jpg)
Todos los enlaces en el correo electrónico deben ser cliqueables y enlazar a su URL.
All links in the email should be clickable and resolve to their URL.
## Enlaces útiles