You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
3 years ago
|
/**
|
||
|
* Brazilian portuguese translation for bootstrap-wysihtml5
|
||
|
*/
|
||
|
(function($){
|
||
|
$.fn.wysihtml5.locale["pt-BR"] = {
|
||
|
font_styles: {
|
||
|
normal: "Texto normal",
|
||
|
h1: "Título 1",
|
||
|
h2: "Título 2",
|
||
|
h3: "Título 3",
|
||
|
h4: "Título 4",
|
||
|
h5: "Título 5",
|
||
|
h6: "Título 6"
|
||
|
},
|
||
|
emphasis: {
|
||
|
bold: "Negrito",
|
||
|
italic: "Itálico",
|
||
|
underline: "Sublinhado"
|
||
|
},
|
||
|
lists: {
|
||
|
unordered: "Lista",
|
||
|
ordered: "Lista numerada",
|
||
|
outdent: "Remover indentação",
|
||
|
indent: "Indentar"
|
||
|
},
|
||
|
link: {
|
||
|
insert: "Inserir link",
|
||
|
cancel: "Cancelar",
|
||
|
target: "Abrir link em uma nova janela"
|
||
|
},
|
||
|
image: {
|
||
|
insert: "Inserir imagem",
|
||
|
cancel: "Cancelar"
|
||
|
},
|
||
|
html: {
|
||
|
edit: "Editar HTML"
|
||
|
},
|
||
|
colours: {
|
||
|
black: "Preto",
|
||
|
silver: "Prata",
|
||
|
gray: "Cinza",
|
||
|
maroon: "Marrom",
|
||
|
red: "Vermelho",
|
||
|
purple: "Roxo",
|
||
|
green: "Verde",
|
||
|
olive: "Oliva",
|
||
|
navy: "Marinho",
|
||
|
blue: "Azul",
|
||
|
orange: "Laranja"
|
||
|
}
|
||
|
};
|
||
|
}(jQuery));
|