mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-04 00:36:45 +00:00
69 lines
1.6 KiB
JavaScript
Executable File
69 lines
1.6 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
*/
|
|
CKEDITOR.plugins.setLang( 'forms', 'pt', {
|
|
button: {
|
|
title: 'Propriedades do Botão',
|
|
text: 'Texto (Valor)',
|
|
type: 'Tipo',
|
|
typeBtn: 'Button',
|
|
typeSbm: 'Submit',
|
|
typeRst: 'Reset'
|
|
},
|
|
checkboxAndRadio: {
|
|
checkboxTitle: 'Propriedades da Caixa de Verificação',
|
|
radioTitle: 'Propriedades do Botão de Opção',
|
|
value: 'Valor',
|
|
selected: 'Seleccionado'
|
|
},
|
|
form: {
|
|
title: 'Propriedades do Formulário',
|
|
menu: 'Propriedades do Formulário',
|
|
action: 'Acção',
|
|
method: 'Método',
|
|
encoding: 'Encoding'
|
|
},
|
|
hidden: {
|
|
title: 'Propriedades do Campo Escondido',
|
|
name: 'Nome',
|
|
value: 'Valor'
|
|
},
|
|
select: {
|
|
title: 'Propriedades da Caixa de Combinação',
|
|
selectInfo: 'Informação',
|
|
opAvail: 'Opções Possíveis',
|
|
value: 'Valor',
|
|
size: 'Tamanho',
|
|
lines: 'linhas',
|
|
chkMulti: 'Permitir selecções múltiplas',
|
|
opText: 'Texto',
|
|
opValue: 'Valor',
|
|
btnAdd: 'Adicionar',
|
|
btnModify: 'Modificar',
|
|
btnUp: 'Para cima',
|
|
btnDown: 'Para baixo',
|
|
btnSetValue: 'Definir um valor por defeito',
|
|
btnDelete: 'Apagar'
|
|
},
|
|
textarea: {
|
|
title: 'Propriedades da Área de Texto',
|
|
cols: 'Colunas',
|
|
rows: 'Linhas'
|
|
},
|
|
textfield: {
|
|
title: 'Propriedades do Campo de Texto',
|
|
name: 'Nome',
|
|
value: 'Valor',
|
|
charWidth: 'Tamanho do caracter',
|
|
maxChars: 'Nr. Máximo de Caracteres',
|
|
type: 'Tipo',
|
|
typeText: 'Texto',
|
|
typePass: 'Palavra-chave',
|
|
typeEmail: 'Email',
|
|
typeSearch: 'Pesquisar',
|
|
typeTel: 'Numero de telefone',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|