chore(i18n,docs): update translations (#44415)
This commit is contained in:
@ -70,18 +70,6 @@ Thanks in advance for being polite and patient. Remember – this community is r
|
||||
|
||||
### Additional Assistance
|
||||
|
||||
If you have queries about the stack, architecture of the codebase, translations, or anything else feel free to reach out to our staff.
|
||||
|
||||
| Staff | Send message on Forum |
|
||||
|:--------------------- |:---------------------------------------------------------------------------- |
|
||||
| Ahmad Abdolsaheb | [@abdolsa](https://forum.freecodecamp.org/u/abdolsa) |
|
||||
| Kristofer Koishigawa | [@scissorsneedfoodtoo](https://forum.freecodecamp.org/u/scissorsneedfoodtoo) |
|
||||
| Miya Liu | [@miyaliu](https://chinese.freecodecamp.org/forum/u/miyaliu) |
|
||||
| Mrugesh Mohapatra | [@raisedadead](https://forum.freecodecamp.org/u/raisedadead) |
|
||||
| Nicholas Carrigan | [@nhcarrigan](https://forum.freecodecamp.org/u/nhcarrigan) |
|
||||
| Oliver Eyton-Williams | [@ojeytonwilliams](https://forum.freecodecamp.org/u/ojeytonwilliams) |
|
||||
| Rafael D Hernandez | [@RafaelHernandez](https://forum.freecodecamp.org/u/rafaelhernandez) |
|
||||
| Shaun Hamilton | [@sky020](https://forum.freecodecamp.org/u/sky020) |
|
||||
| Tom Mondloc | [@moT01](https://forum.freecodecamp.org/u/moT01) |
|
||||
If you have queries about the stack, architecture of the codebase, translations, or anything else feel free to reach out to our staff team [on the forum](https://forum.freecodecamp.org/g/team).
|
||||
|
||||
**You can email our developer staff at: `dev[at]freecodecamp.org`**
|
||||
|
@ -779,6 +779,20 @@ Config changes to our NGINX instances are maintained on GitHub, these should be
|
||||
|
||||
Select yes (y) to remove everything that is not in use. This will remove all stopped containers, all networks and volumes not used by at least one container, and all dangling images and build caches.
|
||||
|
||||
## Work on Contributor Tools
|
||||
|
||||
### Deploy updates
|
||||
|
||||
ssh into the VM (hosted on Digital Ocean).
|
||||
|
||||
```console
|
||||
cd tools
|
||||
git pull origin master
|
||||
npm ci
|
||||
npm run build
|
||||
pm2 restart contribute-app
|
||||
```
|
||||
|
||||
## Updating Node.js versions on VMs
|
||||
|
||||
List currently installed node & npm versions
|
||||
|
@ -70,18 +70,6 @@ Gracias de antemano por ser amable y paciente. Recuerda, esta comunidad es manej
|
||||
|
||||
### Asistencia adicional
|
||||
|
||||
Si tiene preguntas sobre el stack, la arquitectura del código base, las traducciones o cualquier otra cosa, no dude en comunicarse con nuestro personal.
|
||||
|
||||
| Personal | Enviar mensaje en el Foro |
|
||||
|:--------------------- |:---------------------------------------------------------------------------- |
|
||||
| Ahmad Abdolsaheb | [@abdolsa](https://forum.freecodecamp.org/u/abdolsa) |
|
||||
| Kristofer Koishigawa | [@scissorsneedfoodtoo](https://forum.freecodecamp.org/u/scissorsneedfoodtoo) |
|
||||
| Miya Liu | [@miyaliu](https://chinese.freecodecamp.org/forum/u/miyaliu) |
|
||||
| Mrugesh Mohapatra | [@raisedadead](https://forum.freecodecamp.org/u/raisedadead) |
|
||||
| Nicholas Carrigan | [@nhcarrigan](https://forum.freecodecamp.org/u/nhcarrigan) |
|
||||
| Oliver Eyton-Williams | [@ojeytonwilliams](https://forum.freecodecamp.org/u/ojeytonwilliams) |
|
||||
| Rafael D Hernandez | [@RafaelHernandez](https://forum.freecodecamp.org/u/rafaelhernandez) |
|
||||
| Shaun Hamilton | [@sky020](https://forum.freecodecamp.org/u/sky020) |
|
||||
| Tom Mondloc | [@moT01](https://forum.freecodecamp.org/u/moT01) |
|
||||
If you have queries about the stack, architecture of the codebase, translations, or anything else feel free to reach out to our staff team [on the forum](https://forum.freecodecamp.org/g/team).
|
||||
|
||||
**Puedes enviar un correo electrónico a nuestro equipo de desarrolladores en: `dev[at]freecodecamp.org`**
|
||||
|
@ -779,9 +779,23 @@ Los cambios de configuración a nuestras instancias NGINX se mantienen en GitHub
|
||||
|
||||
Selecciona sí (y) para eliminar todo lo que no esté en uso. Esto eliminará todos los contenedores detenidos, todas las redes y volúmenes no utilizados por al menos un contenedor, y todas las imágenes colgantes y cachés de compilación.
|
||||
|
||||
## Actualizando las versiones de Node.js en las MVs
|
||||
## Work on Contributor Tools
|
||||
|
||||
Listar las versiones instaladas actualmente de node & versiones npm
|
||||
### Deploy updates
|
||||
|
||||
ssh into the VM (hosted on Digital Ocean).
|
||||
|
||||
```console
|
||||
cd tools
|
||||
git pull origin master
|
||||
npm ci
|
||||
npm run build
|
||||
pm2 restart contribute-app
|
||||
```
|
||||
|
||||
## Updating Node.js versions on VMs
|
||||
|
||||
List currently installed node & npm versions
|
||||
|
||||
```console
|
||||
nvm -v
|
||||
@ -791,13 +805,13 @@ npm -v
|
||||
nvm ls
|
||||
```
|
||||
|
||||
Instala la última versión de Node.js LTS y reinstala los paquetes globales
|
||||
Install the latest Node.js LTS, and reinstall any global packages
|
||||
|
||||
```console
|
||||
nvm install --lts --reinstall-packages-from=default
|
||||
```
|
||||
|
||||
Verifica los paquetes instalados
|
||||
Verify installed packages
|
||||
|
||||
```console
|
||||
npm ls -g --depth=0
|
||||
@ -809,10 +823,10 @@ Alias the `default` Node.js version to the current LTS (pinned to latest major v
|
||||
nvm alias default 16
|
||||
```
|
||||
|
||||
(Opcional) Desinstala las versiones antiguas
|
||||
(Optional) Uninstall old versions
|
||||
|
||||
```console
|
||||
nvm uninstall <versión>
|
||||
nvm uninstall <version>
|
||||
```
|
||||
|
||||
> [!ATTENTION] For client applications, the shell script can't be resurrected between Node.js versions with `pm2 resurrect`. Deploy processes from scratch instead. This should become nicer when we move to a docker based setup.
|
||||
@ -849,19 +863,19 @@ pm2 save
|
||||
pm2 logs
|
||||
```
|
||||
|
||||
## Instalando y actualizando los agentes de canalización de Azure
|
||||
## Installing and Updating Azure Pipeline Agents
|
||||
|
||||
See: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops and follow the instructions to stop, remove and reinstall agents. Broadly you can follow the steps listed here.
|
||||
|
||||
You would need a PAT, that you can grab from here: https://dev.azure.com/freeCodeCamp-org/_usersSettings/tokens
|
||||
|
||||
### Instalando los agentes en destinos de implementación
|
||||
### Installing agents on Deployment targets
|
||||
|
||||
Navigate to [Azure Devops](https://dev.azure.com/freeCodeCamp-org) and register the agent from scratch in the requisite [deployment groups](https://dev.azure.com/freeCodeCamp-org/freeCodeCamp/_machinegroup).
|
||||
|
||||
> [!NOTE] You should run the scripts in the home directory, and make sure no other `azagent` directory exists.
|
||||
|
||||
### Actualizando los Agentes
|
||||
### Updating agents
|
||||
|
||||
Currently updating agents requires them to be removed and reconfigured. This is required for them to correctly pick up `PATH` values and other system environment variables. We need to do this for instance updating Node.js on our deployment target VMs.
|
||||
|
||||
|
@ -70,18 +70,6 @@ Ti ringraziamo in anticipo per essere educato e paziente. Ricordati che questa c
|
||||
|
||||
### Assistenza aggiuntiva
|
||||
|
||||
Se hai domande sul nostro stack, sull'architettura del codebase, traduzioni, o qualsiasi altra cosa, rivolgiti liberamente al nostro staff.
|
||||
|
||||
| Staff | Invia un messaggio nel Forum |
|
||||
|:--------------------- |:---------------------------------------------------------------------------- |
|
||||
| Ahmad Abdolsaheb | [@abdolsa](https://forum.freecodecamp.org/u/abdolsa) |
|
||||
| Kristofer Koishigawa | [@scissorsneedfoodtoo](https://forum.freecodecamp.org/u/scissorsneedfoodtoo) |
|
||||
| Miya Liu | [@miyaliu](https://chinese.freecodecamp.org/forum/u/miyaliu) |
|
||||
| Mrugesh Mohapatra | [@raisedadead](https://forum.freecodecamp.org/u/raisedadead) |
|
||||
| Nicholas Carrigan | [@nhcarrigan](https://forum.freecodecamp.org/u/nhcarrigan) |
|
||||
| Oliver Eyton-Williams | [@ojeytonwilliams](https://forum.freecodecamp.org/u/ojeytonwilliams) |
|
||||
| Rafael D Hernandez | [@RafaelHernandez](https://forum.freecodecamp.org/u/rafaelhernandez) |
|
||||
| Shaun Hamilton | [@sky020](https://forum.freecodecamp.org/u/sky020) |
|
||||
| Tom Mondloc | [@moT01](https://forum.freecodecamp.org/u/moT01) |
|
||||
If you have queries about the stack, architecture of the codebase, translations, or anything else feel free to reach out to our staff team [on the forum](https://forum.freecodecamp.org/g/team).
|
||||
|
||||
**Puoi scrivere una mail allo staff di sviluppo a: `dev[at]freecodecamp.org`**
|
||||
|
@ -779,9 +779,23 @@ Le modifiche di configurazione alle nostre istanze NGINX sono mantenute su GitHu
|
||||
|
||||
Seleziona yes (y) per rimuovere tutto quello che non è in uso. Questo rimuoverà tutti i contenitori che sono stati arrestati, tutti i network e volumi che non sono utilizzati da almeno un container, e le cache di immagini e build scollegate.
|
||||
|
||||
## Aggiornare la versione di Node.js sulle VM
|
||||
## Work on Contributor Tools
|
||||
|
||||
Visualizza le versioni installate di node & npm
|
||||
### Deploy updates
|
||||
|
||||
ssh into the VM (hosted on Digital Ocean).
|
||||
|
||||
```console
|
||||
cd tools
|
||||
git pull origin master
|
||||
npm ci
|
||||
npm run build
|
||||
pm2 restart contribute-app
|
||||
```
|
||||
|
||||
## Updating Node.js versions on VMs
|
||||
|
||||
List currently installed node & npm versions
|
||||
|
||||
```console
|
||||
nvm -v
|
||||
@ -791,13 +805,13 @@ npm -v
|
||||
nvm ls
|
||||
```
|
||||
|
||||
Installa l'ultima versione di Node.js LTC, e reinstalla i pacchetti globali
|
||||
Install the latest Node.js LTS, and reinstall any global packages
|
||||
|
||||
```console
|
||||
nvm install --lts --reinstall-packages-from=default
|
||||
```
|
||||
|
||||
Verifica i pacchetti installati
|
||||
Verify installed packages
|
||||
|
||||
```console
|
||||
npm ls -g --depth=0
|
||||
@ -809,7 +823,7 @@ Alias the `default` Node.js version to the current LTS (pinned to latest major v
|
||||
nvm alias default 16
|
||||
```
|
||||
|
||||
(Facoltativo) Disinstalla vecchie versioni
|
||||
(Optional) Uninstall old versions
|
||||
|
||||
```console
|
||||
nvm uninstall <version>
|
||||
@ -849,19 +863,19 @@ pm2 save
|
||||
pm2 logs
|
||||
```
|
||||
|
||||
## Installare e aggiornare Azure Pipeline Agent
|
||||
## Installing and Updating Azure Pipeline Agents
|
||||
|
||||
See: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops and follow the instructions to stop, remove and reinstall agents. Broadly you can follow the steps listed here.
|
||||
|
||||
You would need a PAT, that you can grab from here: https://dev.azure.com/freeCodeCamp-org/_usersSettings/tokens
|
||||
|
||||
### Installare agenti su target di deployment
|
||||
### Installing agents on Deployment targets
|
||||
|
||||
Navigate to [Azure Devops](https://dev.azure.com/freeCodeCamp-org) and register the agent from scratch in the requisite [deployment groups](https://dev.azure.com/freeCodeCamp-org/freeCodeCamp/_machinegroup).
|
||||
|
||||
> [!NOTE] You should run the scripts in the home directory, and make sure no other `azagent` directory exists.
|
||||
|
||||
### Aggiornare gli agent
|
||||
### Updating agents
|
||||
|
||||
Currently updating agents requires them to be removed and reconfigured. This is required for them to correctly pick up `PATH` values and other system environment variables. We need to do this for instance updating Node.js on our deployment target VMs.
|
||||
|
||||
@ -932,7 +946,7 @@ We use [a CLI tool](https://github.com/freecodecamp/sendgrid-email-blast) to sen
|
||||
|
||||
# Flight Manual - Adding news instances for new languages
|
||||
|
||||
### Modifiche al tema
|
||||
### Theme Changes
|
||||
|
||||
We use a custom [theme](https://github.com/freeCodeCamp/news-theme) for our news publication. Adding the following changes to the theme enables the addition of new languages.
|
||||
|
||||
@ -943,6 +957,6 @@ We use a custom [theme](https://github.com/freeCodeCamp/news-theme) for our news
|
||||
5. In [`partials/i18n.hbs`](https://github.com/freeCodeCamp/news-theme/blob/main/partials/i18n.hbs), add scripts for the newly created config files.
|
||||
6. Add the related language `day.js` script from [cdnjs](https://cdnjs.com/libraries/dayjs/1.10.4) to the [freeCodeCamp CDN](https://github.com/freeCodeCamp/cdn/tree/main/build/news-assets/dayjs/1.10.4/locale)
|
||||
|
||||
### Modifiche alla dashboard di Ghost
|
||||
### Ghost Dashboard Changes
|
||||
|
||||
Update the publication assets by going to the Ghost dashboard > settings > general and uploading the publications's [icon](https://github.com/freeCodeCamp/design-style-guide/blob/master/assets/fcc-puck-500-favicon.png), [logo](https://github.com/freeCodeCamp/design-style-guide/blob/master/downloads/fcc_primary_large.png), and [cover](https://github.com/freeCodeCamp/design-style-guide/blob/master/assets/fcc_ghost_publication_cover.png).
|
||||
|
@ -70,18 +70,6 @@ Thanks in advance for being polite and patient. Remember – this community is r
|
||||
|
||||
### Additional Assistance
|
||||
|
||||
If you have queries about the stack, architecture of the codebase, translations, or anything else feel free to reach out to our staff.
|
||||
|
||||
| Staff | Send message on Forum |
|
||||
|:--------------------- |:---------------------------------------------------------------------------- |
|
||||
| Ahmad Abdolsaheb | [@abdolsa](https://forum.freecodecamp.org/u/abdolsa) |
|
||||
| Kristofer Koishigawa | [@scissorsneedfoodtoo](https://forum.freecodecamp.org/u/scissorsneedfoodtoo) |
|
||||
| Miya Liu | [@miyaliu](https://chinese.freecodecamp.org/forum/u/miyaliu) |
|
||||
| Mrugesh Mohapatra | [@raisedadead](https://forum.freecodecamp.org/u/raisedadead) |
|
||||
| Nicholas Carrigan | [@nhcarrigan](https://forum.freecodecamp.org/u/nhcarrigan) |
|
||||
| Oliver Eyton-Williams | [@ojeytonwilliams](https://forum.freecodecamp.org/u/ojeytonwilliams) |
|
||||
| Rafael D Hernandez | [@RafaelHernandez](https://forum.freecodecamp.org/u/rafaelhernandez) |
|
||||
| Shaun Hamilton | [@sky020](https://forum.freecodecamp.org/u/sky020) |
|
||||
| Tom Mondloc | [@moT01](https://forum.freecodecamp.org/u/moT01) |
|
||||
If you have queries about the stack, architecture of the codebase, translations, or anything else feel free to reach out to our staff team [on the forum](https://forum.freecodecamp.org/g/team).
|
||||
|
||||
**You can email our developer staff at: `dev[at]freecodecamp.org`**
|
||||
|
@ -779,6 +779,20 @@ Config changes to our NGINX instances are maintained on GitHub, these should be
|
||||
|
||||
Select yes (y) to remove everything that is not in use. This will remove all stopped containers, all networks and volumes not used by at least one container, and all dangling images and build caches.
|
||||
|
||||
## Work on Contributor Tools
|
||||
|
||||
### Deploy updates
|
||||
|
||||
ssh into the VM (hosted on Digital Ocean).
|
||||
|
||||
```console
|
||||
cd tools
|
||||
git pull origin master
|
||||
npm ci
|
||||
npm run build
|
||||
pm2 restart contribute-app
|
||||
```
|
||||
|
||||
## Updating Node.js versions on VMs
|
||||
|
||||
List currently installed node & npm versions
|
||||
|
@ -70,18 +70,6 @@ Agradecemos antecipadamente por ser educado(a) e paciente. Lembre-se – esta co
|
||||
|
||||
### Assistência adicional
|
||||
|
||||
Se você possui perguntas sobre as tecnologias, arquitetura da base do código, traduções, ou algo mais, fique à vontade e entre em contato com nossa equipe.
|
||||
|
||||
| Equipe | Envie uma mensagem no fórum |
|
||||
|:--------------------- |:---------------------------------------------------------------------------- |
|
||||
| Ahmad Abdolsaheb | [@abdolsa](https://forum.freecodecamp.org/u/abdolsa) |
|
||||
| Kristofer Koishigawa | [@scissorsneedfoodtoo](https://forum.freecodecamp.org/u/scissorsneedfoodtoo) |
|
||||
| Miya Liu | [@miyaliu](https://chinese.freecodecamp.org/forum/u/miyaliu) |
|
||||
| Mrugesh Mohapatra | [@raisedadead](https://forum.freecodecamp.org/u/raisedadead) |
|
||||
| Nicholas Carrigan | [@nhcarrigan](https://forum.freecodecamp.org/u/nhcarrigan) |
|
||||
| Oliver Eyton-Williams | [@ojeytonwilliams](https://forum.freecodecamp.org/u/ojeytonwilliams) |
|
||||
| Rafael D Hernandez | [@RafaelHernandez](https://forum.freecodecamp.org/u/rafaelhernandez) |
|
||||
| Shaun Hamilton | [@sky020](https://forum.freecodecamp.org/u/sky020) |
|
||||
| Tom Mondloc | [@moT01](https://forum.freecodecamp.org/u/moT01) |
|
||||
Se você tiver dúvidas sobre a stack, a arquitetura do código, as traduções ou qualquer outra coisa, pode entrar em contato com nossa equipe [no fórum](https://forum.freecodecamp.org/g/team).
|
||||
|
||||
**Você pode enviar um e-mail para nossa equipe de desenvolvimento: `dev[at]freecodecamp.org`**
|
||||
|
@ -779,6 +779,20 @@ As alterações na configuração das nossas instâncias NGINX são mantidas no
|
||||
|
||||
Selecione sim (y) para remover tudo que não está sendo usado. Isso vai remover todos os containers parados, todas as redes e volumes não usados por pelo menos um container e imagens pendentes e caches de compilação.
|
||||
|
||||
## Trabalho com as ferramentas do colaborador
|
||||
|
||||
### Implantar atualizações
|
||||
|
||||
ssh na VM (hospedada na Digital Ocean).
|
||||
|
||||
```console
|
||||
cd tools
|
||||
git pull origin master
|
||||
npm ci
|
||||
npm run build
|
||||
pm2 restart contribute-app
|
||||
```
|
||||
|
||||
## Atualize as versões do Node.js nas MVs
|
||||
|
||||
Liste as versões do node e do npm instaladas
|
||||
@ -831,7 +845,7 @@ Obtenha as instruções/comandos de instalação com o comando `startup` e use a
|
||||
pm2 startup
|
||||
```
|
||||
|
||||
Comandos rápidos para PM2 para listar, reviver processos salvos etc.
|
||||
Comandos rápidos PM2 para listar, reviver processos salvos, etc.
|
||||
|
||||
```console
|
||||
pm2 ls
|
||||
@ -851,7 +865,7 @@ pm2 logs
|
||||
|
||||
## Instalando e atualizando agentes do Azure Pipeline
|
||||
|
||||
Veja: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops e siga as instruções para parar, remover e reinstalar agentes. Em resumo, você pode seguir as etapas listadas aqui.
|
||||
Veja: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops e siga as instruções para parar, remover e reinstalar os agentes. Em resumo, você pode seguir as etapas listadas aqui.
|
||||
|
||||
Você vai precisar de um PAT, que você pode pegar nesse link: https://dev.azure.com/freeCodeCamp-org/_usersSettings/tokens
|
||||
|
||||
@ -897,7 +911,7 @@ Atualmente, atualizar os agentes requer que sejam removidos e reconfigurados. Is
|
||||
rm -rf ~/azagent
|
||||
```
|
||||
|
||||
Uma vez que você completar as etapas acima, você pode repetir as mesmas etapas na instalação do agente.
|
||||
Quando você completar as etapas acima, você pode repetir as mesmas etapas na instalação do agente.
|
||||
|
||||
# Manual de Vôo - Disparo de e-mail
|
||||
|
||||
|
Reference in New Issue
Block a user