Skip to content

Commit

Permalink
Add Portuguese translations (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: Gregory <[email protected]>
  • Loading branch information
adryan30 and chmln authored May 23, 2020
1 parent 0fe5d8b commit 8d709fe
Showing 2 changed files with 29 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/editor/locales/index.js
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,
}
21 changes: 21 additions & 0 deletions src/editor/locales/portuguese.js
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",
};

0 comments on commit 8d709fe

Please sign in to comment.