aboutsummaryrefslogtreecommitdiff
path: root/sources/plugins/forms/lang/en-ca.js
blob: 8805e460d39159230e8d33b1e1ae924fab2ec13b (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-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'forms', 'en-ca', {
	button: {
		title: 'Button Properties',
		text: 'Text (Value)',
		type: 'Type',
		typeBtn: 'Button',
		typeSbm: 'Submit',
		typeRst: 'Reset'
	},
	checkboxAndRadio: {
		checkboxTitle: 'Checkbox Properties',
		radioTitle: 'Radio Button Properties',
		value: 'Value',
		selected: 'Selected',
		required: 'Required' // MISSING
	},
	form: {
		title: 'Form Properties',
		menu: 'Form Properties',
		action: 'Action',
		method: 'Method',
		encoding: 'Encoding'
	},
	hidden: {
		title: 'Hidden Field Properties',
		name: 'Name',
		value: 'Value'
	},
	select: {
		title: 'Selection Field Properties',
		selectInfo: 'Select Info',
		opAvail: 'Available Options',
		value: 'Value',
		size: 'Size',
		lines: 'lines',
		chkMulti: 'Allow multiple selections',
		required: 'Required', // MISSING
		opText: 'Text',
		opValue: 'Value',
		btnAdd: 'Add',
		btnModify: 'Modify',
		btnUp: 'Up',
		btnDown: 'Down',
		btnSetValue: 'Set as selected value',
		btnDelete: 'Delete'
	},
	textarea: {
		title: 'Textarea Properties',
		cols: 'Columns',
		rows: 'Rows'
	},
	textfield: {
		title: 'Text Field Properties',
		name: 'Name',
		value: 'Value',
		charWidth: 'Character Width',
		maxChars: 'Maximum Characters',
		required: 'Required', // MISSING
		type: 'Type',
		typeText: 'Text',
		typePass: 'Password',
		typeEmail: 'Email', // MISSING
		typeSearch: 'Search', // MISSING
		typeTel: 'Telephone Number', // MISSING
		typeUrl: 'URL'
	}
} );