-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Gregory <[email protected]>
- Loading branch information
Showing
2 changed files
with
29 additions
and
6 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import dutch from './dutch'; | ||
import hungarian from './hungarian'; | ||
import german from './german'; | ||
import english from './english'; | ||
import dutch from "./dutch"; | ||
import hungarian from "./hungarian"; | ||
import english from "./english"; | ||
import portuguese from "./portuguese"; | ||
import italian from "./italian"; | ||
|
||
export default { | ||
dutch, | ||
hungarian, | ||
german, | ||
english | ||
} | ||
english, | ||
portuguese, | ||
} |
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 @@ | ||
module.exports = { | ||
locale_name: "Português", | ||
locale_shorthand: ["pt", "portuguese"], | ||
// Traduções: | ||
justifyCenter: "Centralizar", | ||
justifyLeft: "Justificar à Esquerda", | ||
justifyRight: "Justificar à Direita", | ||
bold: "Negrito", | ||
code: "Código", | ||
headings: "Cabeçalhos (h1-h6)", | ||
link: "Hiperlink", | ||
image: "Inserir Imagem", | ||
italic: "Itálico", | ||
orderedList: "Lista Ordenada (1, 2, 3, ...)", | ||
unorderedList: "Lista Desordenada", | ||
removeFormat: | ||
"Remove formatação.\nLimpa cabeçalhos, negrito, itálico, texto sublinhado, etc.", | ||
separator: null, | ||
table: "Inserir Tabela", | ||
underline: "Sublinhado", | ||
}; |