1 /*
  2 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
  3 For licensing, see LICENSE.html or http://ckeditor.com/license
  4 */
  5
  6 /**
  7  * @fileOverview Defines the {@link CKEDITOR.lang} object, for the English
  8  *		language. This is the base file for all translations.
  9  */
 10
 11 /**#@+
 12    @type String
 13    @example
 14 */
 15
 16 /**
 17  * Constains the dictionary of language entries.
 18  * @namespace
 19  */
 20 CKEDITOR.lang['en'] =
 21 {
 22 	/**
 23 	 * The language reading direction. Possible values are "rtl" for
 24 	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
 25 	 * languages (like English).
 26 	 * @default 'ltr'
 27 	 */
 28 	dir : 'ltr',
 29
 30 	// Toolbar buttons without dialogs.
 31 	source			: 'Source',
 32 	newPage			: 'New Page',
 33 	save			: 'Save',
 34 	preview			: 'Preview',
 35 	cut				: 'Cut',
 36 	copy			: 'Copy',
 37 	paste			: 'Paste',
 38 	print			: 'Print',
 39 	underline		: 'Underline',
 40 	bold			: 'Bold',
 41 	italic			: 'Italic',
 42 	selectAll		: 'Select All',
 43 	removeFormat	: 'Remove Format',
 44 	strike			: 'Strike Through',
 45 	subscript		: 'Subscript',
 46 	superscript		: 'Superscript',
 47 	horizontalrule	: 'Insert Horizontal Line',
 48 	pagebreak		: 'Insert Page Break',
 49 	unlink			: 'Unlink',
 50 	undo			: 'Undo',
 51 	redo			: 'Redo',
 52
 53 	// Common messages and labels.
 54 	common :
 55 	{
 56 		browseServer	: 'Browser Server',
 57 		url				: 'URL',
 58 		protocol		: 'Protocol',
 59 		upload			: 'Upload',
 60 		uploadSubmit	: 'Send it to the Server',
 61 		image			: 'Image',
 62 		flash			: 'Flash',
 63 		form			: 'Form',
 64 		checkbox		: 'Checkbox',
 65 		radio		: 'Radio Button',
 66 		textField		: 'Text Field',
 67 		textarea		: 'Textarea',
 68 		hiddenField		: 'Hidden Field',
 69 		button			: 'Button',
 70 		select	: 'Selection Field',
 71 		imageButton		: 'Image Button',
 72 		notSet			: '<not set>',
 73 		id				: 'Id',
 74 		name			: 'Name',
 75 		langDir			: 'Language Direction',
 76 		langDirLtr		: 'Left to Right (LTR)',
 77 		langDirRtl		: 'Right to Left (RTL)',
 78 		langCode		: 'Language Code',
 79 		longDescr		: 'Long Description URL',
 80 		cssClass		: 'Stylesheet Classes',
 81 		advisoryTitle	: 'Advisory Title',
 82 		cssStyle		: 'Style',
 83 		ok				: 'OK',
 84 		cancel			: 'Cancel',
 85 		generalTab		: 'General',
 86 		advancedTab		: 'Advanced',
 87 		validateNumberFailed	: 'This value is not a number.',
 88 		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
 89 		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?'
 90 	},
 91
 92 	// Special char dialog.
 93 	specialChar		:
 94 	{
 95 		toolbar		: 'Insert Special Character',
 96 		title		: 'Select Special Character'
 97 	},
 98
 99 	// Link dialog.
100 	link :
101 	{
102 		toolbar		: 'Link\u200b',		// IE6 BUG: A title called "Link" in an <A> tag would invalidate its padding!!
103 		menu		: 'Edit Link',
104 		title		: 'Link',
105 		info		: 'Link Info',
106 		target		: 'Target',
107 		upload		: 'Upload',
108 		advanced	: 'Advanced',
109 		type		: 'Link Type',
110 		toAnchor	: 'Link to anchor in the text',
111 		toEmail		: 'E-mail',
112 		target		: 'Target',
113 		targetNotSet	: '<not set>',
114 		targetFrame	: '<frame>',
115 		targetPopup	: '<popup window>',
116 		targetNew	: 'New Window (_blank)',
117 		targetTop	: 'Topmost Window (_top)',
118 		targetSelf	: 'Same Window (_self)',
119 		targetParent	: 'Parent Window (_parent)',
120 		targetFrameName	: 'Target Frame Name',
121 		targetPopupName	: 'Popup Window Name',
122 		popupFeatures	: 'Popup Window Features',
123 		popupResizable	: 'Resizable',
124 		popupStatusBar	: 'Status Bar',
125 		popupLocationBar	: 'Location Bar',
126 		popupToolbar	: 'Toolbar',
127 		popupMenuBar	: 'Menu Bar',
128 		popupFullScreen	: 'Full Screen (IE)',
129 		popupScrollBars	: 'Scroll Bars',
130 		popupDependent	: 'Dependent (Netscape)',
131 		popupWidth		: 'Width',
132 		popupLeft		: 'Left Position',
133 		popupHeight		: 'Height',
134 		popupTop		: 'Top Position',
135 		id				: 'Id',
136 		langDir			: 'Language Direction',
137 		langDirNotSet	: '<not set>',
138 		langDirLTR		: 'Left to Right',
139 		langDirRTL		: 'Right to Left',
140 		acccessKey		: 'Access Key',
141 		name			: 'Name',
142 		langCode		: 'Language Code',
143 		tabIndex		: 'Tab Index',
144 		advisoryTitle	: 'Advisory Title',
145 		advisoryContentType	: 'Advisory Content Type',
146 		cssClasses		: 'Stylesheet Classes',
147 		charset			: 'Linked Resource Charset',
148 		styles			: 'Style',
149 		selectAnchor	: 'Select an Anchor',
150 		anchorName		: 'By Anchor Name',
151 		anchorId		: 'By Element Id',
152 		emailAddress	: 'E-Mail Address',
153 		emailSubject	: 'Message Subject',
154 		emailBody		: 'Message Body',
155 		noAnchors		: '(No anchors available in the document)',
156 		noUrl			: 'Please type the link URL',
157 		noEmail			: 'Please type the e-mail address'
158 	},
159
160 	// Anchor dialog
161 	anchor :
162 	{
163 		toolbar		: 'Anchor',
164 		menu		: 'Edit Anchor',
165 		title		: 'Anchor Properties',
166 		name		: 'Anchor Name',
167 		errorName	: 'Please type the anchor name'
168 	},
169
170 	// Find And Replace Dialog
171 	findAndReplace :
172 	{
173 		title				: 'Find and Replace',
174 		find				: 'Find',
175 		replace				: 'Replace',
176 		findWhat			: 'Find what:',
177 		replaceWith			: 'Replace with:',
178 		notFoundMsg			: 'The specified text was not found.',
179 		matchCase			: 'Match case',
180 		matchWord			: 'Match whole word',
181 		matchCyclic			: 'Match cyclic',
182 		replaceAll			: 'Replace All',
183 		replaceSuccessMsg	: '%1 occurrence(s) replaced.'
184 	},
185
186 	// Table Dialog
187 	table :
188 	{
189 		toolbar		: 'Table',
190 		title		: 'Table Properties',
191 		menu		: 'Table Properties',
192 		deleteTable	: 'Delete Table',
193 		rows		: 'Rows',
194 		columns		: 'Columns',
195 		border		: 'Border size',
196 		align		: 'Alignment',
197 		alignNotSet	: '<Not set>',
198 		alignLeft	: 'Left',
199 		alignCenter	: 'Center',
200 		alignRight	: 'Right',
201 		width		: 'Width',
202 		widthPx		: 'pixels',
203 		widthPc		: 'percent',
204 		height		: 'Height',
205 		cellSpace	: 'Cell spacing',
206 		cellPad		: 'Cell padding',
207 		caption		: 'Caption',
208 		summary		: 'Summary',
209 		headers		: 'Headers',
210 		headersNone		: 'None',
211 		headersColumn	: 'First column',
212 		headersRow		: 'First Row',
213 		headersBoth		: 'Both',
214 		invalidRows		: 'Number of rows must be a number greater than 0.',
215 		invalidCols		: 'Number of columns must be a number greater than 0.',
216 		invalidBorder	: 'Border size must be a number.',
217 		invalidWidth	: 'Table width must be a number.',
218 		invalidHeight	: 'Table height must be a number.',
219 		invalidCellSpacing	: 'Cell spacing must be a number.',
220 		invalidCellPadding	: 'Cell padding must be a number.',
221
222 		cell :
223 		{
224 			menu			: 'Cell',
225 			insertBefore	: 'Insert Cell Before',
226 			insertAfter		: 'Insert Cell After',
227 			deleteCell		: 'Delete Cells',
228 			merge			: 'Merge Cells',
229 			mergeRight		: 'Merge Right',
230 			mergeDown		: 'Merge Down',
231 			splitHorizontal	: 'Split Cell Horizontally',
232 			splitVertical	: 'Split Cell Vertically'
233 		},
234
235 		row :
236 		{
237 			menu			: 'Row',
238 			insertBefore	: 'Insert Row Before',
239 			insertAfter		: 'Insert Row After',
240 			deleteRow		: 'Delete Rows'
241 		},
242
243 		column :
244 		{
245 			menu			: 'Column',
246 			insertBefore	: 'Insert Column Before',
247 			insertAfter		: 'Insert Column After',
248 			deleteColumn	: 'Delete Columns'
249 		}
250 	},
251
252 	// Button Dialog.
253 	button :
254 	{
255 		title		: 'Button Properties',
256 		text		: 'Text (Value)',
257 		type		: 'Type',
258 		typeBtn		: 'Button',
259 		typeSbm		: 'Submit',
260 		typeRst		: 'Reset'
261 	},
262
263 	// Checkbox and Radio Button Dialogs.
264 	checkboxAndRadio :
265 	{
266 		checkboxTitle : 'Checkbox Properties',
267 		radioTitle	: 'Radio Button Properties',
268 		value		: 'Value',
269 		selected	: 'Selected'
270 	},
271
272 	// Form Dialog.
273 	form :
274 	{
275 		title		: 'Form Properties',
276 		menu		: 'Form Properties',
277 		action		: 'Action',
278 		method		: 'Method',
279 		encoding	: 'Encoding',
280 		target		: 'Target',
281 		targetNotSet	: '<not set>',
282 		targetNew	: 'New Window (_blank)',
283 		targetTop	: 'Topmost Window (_top)',
284 		targetSelf	: 'Same Window (_self)',
285 		targetParent	: 'Parent Window (_parent)'
286 	},
287
288 	// Select Field Dialog.
289 	select :
290 	{
291 		title		: 'Selection Field Properties',
292 		selectInfo	: 'Select Info',
293 		opAvail		: 'Available Options',
294 		value		: 'Value',
295 		size		: 'Size',
296 		lines		: 'lines',
297 		chkMulti	: 'Allow multiple selections',
298 		opText		: 'Text',
299 		opValue		: 'Value',
300 		btnAdd		: 'Add',
301 		btnModify	: 'Modify',
302 		btnUp		: 'Up',
303 		btnDown		: 'Down',
304 		btnSetValue : 'Set as selected value',
305 		btnDelete	: 'Delete'
306 	},
307
308 	// Textarea Dialog.
309 	textarea :
310 	{
311 		title		: 'Textarea Properties',
312 		cols		: 'Columns',
313 		rows		: 'Rows'
314 	},
315
316 	// Text Field Dialog.
317 	textfield :
318 	{
319 		title		: 'Text Field Properties',
320 		name		: 'Name',
321 		value		: 'Value',
322 		charWidth	: 'Character Width',
323 		maxChars	: 'Maximum Characters',
324 		type		: 'Type',
325 		typeText	: 'Text',
326 		typePass	: 'Password'
327 	},
328
329 	// Hidden Field Dialog.
330 	hidden :
331 	{
332 		title	: 'Hidden Field Properties',
333 		name	: 'Name',
334 		value	: 'Value'
335 	},
336
337 	// Image Dialog.
338 	image :
339 	{
340 		title		: 'Image Properties',
341 		titleButton	: 'Image Button Properties',
342 		menu		: 'Image Properties',
343 		infoTab	: 'Image Info',
344 		btnUpload	: 'Send it to the Server',
345 		url		: 'URL',
346 		upload	: 'Upload',
347 		alt		: 'Alternative Text',
348 		width		: 'Width',
349 		height	: 'Height',
350 		lockRatio	: 'Lock Ratio',
351 		resetSize	: 'Reset Size',
352 		border	: 'Border',
353 		hSpace	: 'HSpace',
354 		vSpace	: 'VSpace',
355 		align		: 'Align',
356 		alignLeft	: 'Left',
357 		alignAbsBottom: 'Abs Bottom',
358 		alignAbsMiddle: 'Abs Middle',
359 		alignBaseline	: 'Baseline',
360 		alignBottom	: 'Bottom',
361 		alignMiddle	: 'Middle',
362 		alignRight	: 'Right',
363 		alignTextTop	: 'Text Top',
364 		alignTop	: 'Top',
365 		preview	: 'Preview',
366 		alertUrl	: 'Please type the image URL',
367 		linkTab	: 'Link',
368 		button2Img	: 'Do you want to transform the selected image button on a simple image?',
369 		img2Button	: 'Do you want to transform the selected image on a image button?'
370 	},
371
372 	// Flash Dialog
373 	flash :
374 	{
375 		properties		: 'Flash Properties',
376 		propertiesTab	: 'Properties',
377 		title		: 'Flash Properties',
378 		chkPlay		: 'Auto Play',
379 		chkLoop		: 'Loop',
380 		chkMenu		: 'Enable Flash Menu',
381 		chkFull		: 'Allow Fullscreen',
382  		scale		: 'Scale',
383 		scaleAll		: 'Show all',
384 		scaleNoBorder	: 'No Border',
385 		scaleFit		: 'Exact Fit',
386 		access			: 'Script Access',
387 		accessAlways	: 'Always',
388 		accessSameDomain	: 'Same domain',
389 		accessNever	: 'Never',
390 		align		: 'Align',
391 		alignLeft	: 'Left',
392 		alignAbsBottom: 'Abs Bottom',
393 		alignAbsMiddle: 'Abs Middle',
394 		alignBaseline	: 'Baseline',
395 		alignBottom	: 'Bottom',
396 		alignMiddle	: 'Middle',
397 		alignRight	: 'Right',
398 		alignTextTop	: 'Text Top',
399 		alignTop	: 'Top',
400 		quality		: 'Quality',
401 		windowMode	: 'Window mode',
402 		flashvars	: 'Variables for Flash',
403 		bgcolor	: 'Background color',
404 		width	: 'Width',
405 		height	: 'Height',
406 		hSpace	: 'HSpace',
407 		vSpace	: 'VSpace',
408 		validateSrc : 'URL must not be empty.',
409 		validateWidth : 'Width must be a number.',
410 		validateHeight : 'Height must be a number.',
411 		validateHSpace : 'HSpace must be a number.',
412 		validateVSpace : 'VSpace must be a number.'
413 	},
414
415 	// Speller Pages Dialog
416 	spellCheck :
417 	{
418 		toolbar			: 'Check Spelling',
419 		title			: 'Spell Check',
420 		notAvailable	: 'Sorry, but service is unavailable now.',
421 		errorLoading	: 'Error loading application service host: %s.',
422 		notInDic		: 'Not in dictionary',
423 		changeTo		: 'Change to',
424 		btnIgnore		: 'Ignore',
425 		btnIgnoreAll	: 'Ignore All',
426 		btnReplace		: 'Replace',
427 		btnReplaceAll	: 'Replace All',
428 		btnUndo			: 'Undo',
429 		noSuggestions	: '- No suggestions -',
430 		progress		: 'Spell check in progress...',
431 		noMispell		: 'Spell check complete: No misspellings found',
432 		noChanges		: 'Spell check complete: No words changed',
433 		oneChange		: 'Spell check complete: One word changed',
434 		manyChanges		: 'Spell check complete: %1 words changed',
435 		ieSpellDownload	: 'Spell checker not installed. Do you want to download it now?'
436 	},
437
438 	smiley :
439 	{
440 		toolbar	: 'Smiley',
441 		title	: 'Insert a Smiley'
442 	},
443
444 	elementsPath :
445 	{
446 		eleTitle : '%1 element'
447 	},
448
449 	numberedlist : 'Insert/Remove Numbered List',
450 	bulletedlist : 'Insert/Remove Bulleted List',
451 	indent : 'Increase Indent',
452 	outdent : 'Decrease Indent',
453
454 	justify :
455 	{
456 		left : 'Left Justify',
457 		center : 'Center Justify',
458 		right : 'Right Justify',
459 		block : 'Block Justify'
460 	},
461
462 	outdent : 'Decrease Indent',
463 	blockquote : 'Blockquote',
464
465 	clipboard :
466 	{
467 		title		: 'Paste',
468 		cutError	: 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).',
469 		copyError	: 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).',
470 		pasteMsg	: 'Please paste inside the following box using the keyboard (Ctrl+V) and hit OK',
471 		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.'
472 	},
473
474 	pastefromword :
475 	{
476 		toolbar : 'Paste from Word',
477 		title : 'Paste from Word',
478 		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.',
479 		ignoreFontFace : 'Ignore Font Face definitions',
480 		removeStyle : 'Remove Styles definitions'
481 	},
482
483 	pasteText :
484 	{
485 		button : 'Paste as plain text',
486 		title : 'Paste as Plain Text'
487 	},
488
489 	templates :
490 	{
491 		button : 'Templates',
492 		title : 'Content Templates',
493 		insertOption: 'Replace actual contents',
494 		selectPromptMsg: 'Please select the template to open in the editor',
495 		emptyListMsg : '(No templates defined)'
496 	},
497
498 	showBlocks : 'Show Blocks',
499
500 	stylesCombo :
501 	{
502 		label : 'Styles',
503 		panelTitle1 : 'Block Styles',
504 		panelTitle2 : 'Inline Styles',
505 		panelTitle3 : 'Object Styles'
506 	},
507
508 	format :
509 	{
510 		label : 'Format',
511 		panelTitle : 'Paragraph Format',
512
513 		tag_p : 'Normal',
514 		tag_pre : 'Formatted',
515 		tag_address : 'Address',
516 		tag_h1 : 'Heading 1',
517 		tag_h2 : 'Heading 2',
518 		tag_h3 : 'Heading 3',
519 		tag_h4 : 'Heading 4',
520 		tag_h5 : 'Heading 5',
521 		tag_h6 : 'Heading 6',
522 		tag_div : 'Normal (DIV)'
523 	},
524
525 	font :
526 	{
527 		label : 'Font',
528 		panelTitle : 'Font Style'
529 	},
530
531 	fontSize :
532 	{
533 		label : 'Size',
534 		panelTitle : 'Font Size'
535 	},
536
537 	colorButton :
538 	{
539 		textColorTitle : 'Text Color',
540 		bgColorTitle : 'Background Color',
541 		auto : 'Automatic',
542 		more : 'More Colors...'
543 	}
544 };
545