pages.pt*: fix verb tenses (#11792)

* pages.pt*: fix verb tenses

* pages.pt*: fix all pt_PT verb tenses in the start and more pt_BR verb tenses

* pages.pt_BR: fix more verb tenses

* pages.pt_BR: fix more verb tenses

* pages.pt_BR: fix more verb tenses

* pages.pt*: fix more verb tenses

* review PR

---------

Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
Co-authored-by: Isaac Vicente <contatoisaacvicente@gmail.com>
This commit is contained in:
Vitor Henrique
2023-12-27 15:37:07 -03:00
committed by GitHub
parent 282cd9130f
commit 52b4605356
659 changed files with 1533 additions and 1533 deletions

View File

@@ -3,22 +3,22 @@
> Compilador de arquivos de código fonte C e C++, efetuando também as fases de pré-processamento, assembling e linking.
> Mais informações: <https://gcc.gnu.org>.
- Compilar múltiplos arquivos de código fonte, produzindo um arquivo executável:
- Compila múltiplos arquivos de código fonte, produzindo um arquivo executável:
`gcc {{arquivo_fonte1.c}} {{arquivo_fonte2.c}} --output {{arquivo_executável}}`
- Habilitar avisos durante a compilação:
- Habilita avisos durante a compilação:
`gcc {{arquivo_fonte.c}} -Wall -Og --output {{arquivo_executável}}`
- Incluir bibliotecas de um local diferente:
- Inclui bibliotecas de um local diferente:
`gcc {{arquivo_fonte.c}} --output {{arquivo_executável}} -I{{caminho/para/header}} -L{{caminho/para/biblioteca}} -l{{nome_biblioteca}}`
- Compilar o código fonte para instruções Assembler:
- Compila o código fonte para instruções Assembler:
`gcc -S {{arquivo_fonte.c}}`
- Compilar o código fonte sem efetuar a fase de linking:
- Compila o código fonte sem efetuar a fase de linking:
`gcc -c {{arquivo_fonte.c}}`