-
-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #423 from ariemad/main
Add portuguese documentation
- Loading branch information
Showing
29 changed files
with
1,332 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
docusaurus/i18n/pt-PT/docusaurus-plugin-content-docs/current.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version.label": { | ||
"message": "Próximo", | ||
"description": "The label for version current" | ||
}, | ||
"sidebar.tutorialSidebar.category.Getting Started": { | ||
"message": "Primeiros passos", | ||
"description": "The label for category Getting Started in sidebar tutorialSidebar" | ||
}, | ||
"sidebar.tutorialSidebar.category.Configuration": { | ||
"message": "Configurações", | ||
"description": "The label for category Configuration in sidebar tutorialSidebar" | ||
}, | ||
"sidebar.tutorialSidebar.category.Guides": { | ||
"message": "Guias", | ||
"description": "The label for category Guides in sidebar tutorialSidebar" | ||
}, | ||
"sidebar.tutorialSidebar.category.Backup": { | ||
"message": "Cópia de Segurança", | ||
"description": "The label for category Backup in sidebar tutorialSidebar" | ||
}, | ||
"sidebar.tutorialSidebar.category.Discord integration": { | ||
"message": "Integração do Discord", | ||
"description": "The label for category Discord integration in sidebar tutorialSidebar" | ||
}, | ||
"sidebar.tutorialSidebar.category.Advanced": { | ||
"message": "Guias Avançados", | ||
"description": "The label for category Advanced in sidebar tutorialSidebar" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
docusaurus/i18n/pt-PT/docusaurus-plugin-content-docs/current/advanced/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"label": "Guias Avançados", | ||
"position": 3, | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...saurus/i18n/pt-PT/docusaurus-plugin-content-docs/current/advanced/kubernetes.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
sidebar_position: 2 | ||
--- | ||
|
||
# Kubernetes | ||
|
||
Todos os ficheiros necessários para implementar o contentor Kubernetes estão localizados na diretoria [k8s](https://github.com/thijsvanloef/palworld-server-docker/tree/main/k8s). | ||
|
||
## Configurar o Palworld no kubernetes | ||
|
||
Use os seguintes comandos para configurar o contentor Kubernetes: | ||
|
||
- `kubectl apply -f pvc.yaml` | ||
- `kubectl apply -f configmap.yaml` | ||
- `kubectl apply -f secret.yaml` | ||
- `kubectl apply -f service.yaml` | ||
- `kubectl apply -f deployment.yaml` | ||
|
||
## Utilizando Helm Chart | ||
|
||
A documentação oficial do helm chart pode ser encontrado no seguinte repositório: [palworld-server-chart](https://github.com/Twinki14/palworld-server-chart) |
28 changes: 28 additions & 0 deletions
28
...18n/pt-PT/docusaurus-plugin-content-docs/current/advanced/palworld-directory.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Diretorias Palworld | ||
|
||
Tudo relacionado com os dados do Palworld pode ser encontrado na diretoria `/palworld`. | ||
|
||
## Estrutura da diretoria | ||
|
||
![Folder Structure](../assets/folder_structure.jpg) | ||
|
||
| Diretoria | Uso | | ||
| ---------------------------- | ---------------------------------------------------------------------- | | ||
| palworld | Raiz de todos os ficheiros do servidor Palworld | | ||
| backups | Diretoria onde as cópias de segurança do comando `backup`são guardadas | | ||
| Pal/Saved/Config/LinuxServer | Diretoria dos ficheiros de configuração .ini para configuração manual | | ||
|
||
## Anexar o diretório de dados ao sistema de ficheiros do anfitrião | ||
|
||
A maneira mais fácil de anexar o diretório de dados ao sistema de ficheiros do anfitrião é usar o exemplo do [docker-compose.yml](https://github.com/thijsvanloef/palworld-server-docker/blob/main/docker-compose.yml): | ||
|
||
```yml | ||
volumes: | ||
- ./palworld:/palworld/ | ||
``` | ||
Isto cria uma pasta `palworld` no diretório de trabalho atual e monta a pasta `/palworld`. |
Binary file added
BIN
+191 KB
...s/i18n/pt-PT/docusaurus-plugin-content-docs/current/assets/folder_structure.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions
7
docusaurus/i18n/pt-PT/docusaurus-plugin-content-docs/current/getting-started/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"label": "Primeiros passos", | ||
"position": 1, | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...t-PT/docusaurus-plugin-content-docs/current/getting-started/configuration/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"label": "Configuração", | ||
"position": 3, | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
100 changes: 100 additions & 0 deletions
100
...urus-plugin-content-docs/current/getting-started/configuration/game-settings.md
Large diffs are not rendered by default.
Oops, something went wrong.
41 changes: 41 additions & 0 deletions
41
...us-plugin-content-docs/current/getting-started/configuration/server-commands.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
# Comandos Servidor (RCON) | ||
|
||
Como utilizar o RCON para interagir com o servidor. | ||
|
||
## RCON | ||
|
||
Por defeito, o RCON é ativado com a imagem do palworld-server-docker. | ||
Abrir o RCON CLI é bastante fácil: | ||
|
||
```bash | ||
docker exec -it palworld-server rcon-cli "<command> <value>" | ||
``` | ||
|
||
Por exemplo, pode transmitir uma mensagem para todos os utilizadores do servidor com o seguinte comando: | ||
|
||
```bash | ||
docker exec -it palworld-server rcon-cli "Broadcast Hello everyone" | ||
``` | ||
|
||
Isso abrirá uma CLI que usa o RCON para escrever comandos no Servidor Palworld. | ||
|
||
### Lista de comandos do servidor | ||
|
||
| Comando | Descrição | | ||
| ----------------------------------- | ---------------------------------------------------------- | | ||
| Shutdown (Segundos) (MensagemTexto) | O servidor é encerrado após o número de segundos | | ||
| DoExit | Forçar a paragem do servidor. | | ||
| Broadcast | Enviar mensagem a todos os jogadores do servidor | | ||
| KickPlayer (SteamID) | Expulsar o jogador do servidor. | | ||
| BanPlayer (SteamID) | Banir o jogador do servidor. | | ||
| TeleportToPlayer (SteamID) | Teletransportar para a localização atual do jogador alvo. | | ||
| TeleportToMe (SteamID) | Teletransportar jogador alvo para a sua localização atual. | | ||
| ShowPlayers | Mostrar informações sobre todos os jogadores ligados. | | ||
| Info | Mostrar informações do servidor. | | ||
| Save | Salvar os dados do mundo. | | ||
|
||
Para obter uma lista completa de comandos, consulte: [https://tech.palworldgame.com/settings-and-operation/commands](https://tech.palworldgame.com/settings-and-operation/commands) |
Oops, something went wrong.