aboutsummaryrefslogtreecommitdiff
path: root/sources/plugins/forms/lang/pt.js
blob: 192ff8fc1c6c2ff9c85868dfaf68d6b63fcdb8db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
Copyright (c) 2003-2015, 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: 'Botão',
		typeSbm: 'Submit',
		typeRst: 'Reset'
	},
	checkboxAndRadio: {
		checkboxTitle: 'Propriedades da Caixa de Verificação',
		radioTitle: 'Propriedades do Botão de Opção',
		value: 'Valor',
		selected: 'Seleccionado',
		required: 'Required' // MISSING
	},
	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',
		required: 'Required', // MISSING
		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',
		required: 'Required', // MISSING
		type: 'Tipo',
		typeText: 'Texto',
		typePass: 'Senha',
		typeEmail: 'Email',
		typeSearch: 'Pesquisar',
		typeTel: 'Telefone',
		typeUrl: 'URL'
	}
} );