mirror of
https://github.com/moodle/moodle.git
synced 2025-02-02 14:19:07 +01:00
a87491c1d0
I've done a basic review and fixed a few things, but there will need to be a lot more testing and cleanup over this weekend.
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
// I18N constants
|
|
|
|
// Brazilian Portuguese Translation by Alex Piaz <webmaster@globalmap.com>
|
|
|
|
|
|
|
|
HTMLArea.I18N = {
|
|
|
|
|
|
// the following should be the filename without .js extension
|
|
// it will be used for automatically load plugin language.
|
|
lang: "pt_br",
|
|
|
|
tooltips: {
|
|
|
|
bold: "Negrito",
|
|
|
|
italic: "Itálico",
|
|
|
|
underline: "Sublinhado",
|
|
|
|
strikethrough: "Tachado",
|
|
|
|
subscript: "Subescrito",
|
|
|
|
superscript: "Sobrescrito",
|
|
|
|
justifyleft: "Alinhar à Esquerda",
|
|
|
|
justifycenter: "Centralizar",
|
|
|
|
justifyright: "Alinhar à Direita",
|
|
|
|
justifyfull: "Justificar",
|
|
|
|
orderedlist: "Lista Numerada",
|
|
|
|
unorderedlist: "Lista Marcadores",
|
|
|
|
outdent: "Diminuir Indentação",
|
|
|
|
indent: "Aumentar Indentação",
|
|
|
|
forecolor: "Cor da Fonte",
|
|
|
|
backcolor: "Cor do Fundo",
|
|
|
|
horizontalrule: "Linha Horizontal",
|
|
|
|
createlink: "Inserir Link",
|
|
|
|
insertimage: "Inserir Imagem",
|
|
|
|
inserttable: "Inserir Tabela",
|
|
|
|
htmlmode: "Ver Código-Fonte",
|
|
|
|
popupeditor: "Expandir Editor",
|
|
|
|
about: "Sobre",
|
|
|
|
help: "Ajuda",
|
|
|
|
textindicator: "Estilo Atual"
|
|
|
|
}
|
|
|
|
};
|
|
|