Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0fd8b63
translate blog content
maia-italo Sep 4, 2024
46e155d
Tradução do Gean copiada
maia-italo Sep 8, 2024
8a18f34
translate blog content and part of docs
maia-italo Sep 22, 2024
830cc36
Merge branch 'archcraft-os:main' into main
maia-italo Oct 24, 2024
3596ff2
Translate other-distro and prime.mdx
maia-italo Oct 24, 2024
ac4177a
update content 12-2024
maia-italo Oct 26, 2024
bd60ac0
tranlated prime.mdx
maia-italo Oct 26, 2024
952a365
translated wse.mdx
maia-italo Oct 27, 2024
c239480
translated 10-22-release-prime.mdx
maia-italo Nov 2, 2024
00647ab
hyprland.mdx translated
maia-italo Nov 26, 2024
dc0fefd
newm.mdx translated
maia-italo Dec 5, 2024
2e6959f
river.mdx translated
maia-italo Dec 14, 2024
cc82bef
sway.mdx translated
maia-italo Dec 15, 2024
9db2762
wayfire.mdx translated
maia-italo Dec 15, 2024
2dde825
dwm.mdx translated
maia-italo Dec 16, 2024
d74b31f
qtile.mdx translated
maia-italo Dec 17, 2024
000f0a2
xmonad.mdx translated
maia-italo Dec 20, 2024
fe1ef48
2bwm.mdx and berry.mdx translated
maia-italo Dec 22, 2024
b6e4e52
blackbox.mdc translated
maia-italo Dec 22, 2024
9a55880
translation complete
maia-italo Dec 22, 2024
9da5b0d
Merge branch 'archcraft-os:main' into main
maia-italo Jan 3, 2025
a7b80c3
01-03-release.mdx translated
maia-italo Jan 3, 2025
b62af11
Merge branch 'archcraft-os:main' into main
maia-italo Jan 6, 2025
e5073f6
01-06-release-wse.mdx translated
maia-italo Jan 6, 2025
418c997
Merge branch 'archcraft-os:main' into main
maia-italo Jan 7, 2025
463e89b
01-07-release-prime.mdx translated
maia-italo Jan 7, 2025
896851b
04-25 releases translated
maia-italo Apr 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
# Archcraft Wiki

Archcraft wiki is built using [Docusaurus 3](https://docusaurus.io/), a modern static website generator.
Archcraft wiki é feito usando [Docusaurus 3](https://docusaurus.io/), um gerador de website estático moderno.

### Installation
### Instalação

```
$ yarn
```

### Local Development
### Desenvolvimento local

```
$ yarn start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
Esse comando começa o servidor para desenvolvivemnto local e o abre no navegador. As mudanças são refletidas ao vivo sem precisar recomeçar o servidor.

### Build
### Construir

```
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.
Esse comando gera um conteúdo estático na pasta `build` e pode ser usado por qualquer serviço de hospedagem estático.

### Deployment
### Lançamento

```
$ GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
$ GIT_USER=<Seu usuário GitHub> USE_SSH=true yarn deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
Se você estiver usando o GitHub pages para hospedagem, esse comando é uma forma conveniente para criar o site e enviá-lo para o branch `gh-pages`.
2 changes: 1 addition & 1 deletion docs/contrib/contributors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ hide_table_of_contents: true
- 🇫🇷 The [French version](https://wiki.archcraft.io/fr/) is translated by [Arnae](https://www.github.com/Archenagechan)
- 🇵🇱 The [Polish version](https://wiki.archcraft.io/pl/) is translated by [Keyitdev](https://www.github.com/Keyitdev)
- 🇹🇷 The [Turkish version](https://wiki.archcraft.io/tr/) is translated by [Levent Can Yılmaz](https://github.com/lvntcnylmz)
- 🇵🇹 The [Brazilian portuguese version](https://wiki.archcraft.io/pt-BR/) is translated by [Gean Gonçalves](https://github.com/gean634n)
- 🇵🇹 The [Brazilian portuguese version](https://wiki.archcraft.io/pt-BR/) is translated by [Gean Gonçalves](https://github.com/gean634n) and [Italo Maia](https://github.com/maia-italo)
- 🇨🇳 The [Simplified Chinese version](https://wiki.archcraft.io/zh/) is translated by [Wang Zhihong](https://github.com/TOLIE-OFFICIAL)

- **Editors** (previous version of wiki)
Expand Down
6 changes: 5 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const config = {
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en', 'fr'],
locales: ['en', 'fr', 'pt'],
localeConfigs: {
en: {
label: 'English',
Expand All @@ -41,6 +41,10 @@ const config = {
label: 'Français',
direction: 'ltr',
},
pt: {
label: 'Portugês',
direction: 'ltr'
}
},
},

Expand Down
Loading