Project

General

Profile

1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
 *
5
 * == BEGIN LICENSE ==
6
 *
7
 * Licensed under the terms of any of the following licenses at your
8
 * choice:
9
 *
10
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *    http://www.gnu.org/licenses/gpl.html
12
 *
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *    http://www.gnu.org/licenses/lgpl.html
15
 *
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *
19
 * == END LICENSE ==
20
 *
21
 * English (Canadian) language file.
22
 */
23

    
24
var FCKLang =
25
{
26
// Language direction : "ltr" (left to right) or "rtl" (right to left).
27
Dir					: "ltr",
28

    
29
ToolbarCollapse		: "Collapse Toolbar",
30
ToolbarExpand		: "Expand Toolbar",
31

    
32
// Toolbar Items and Context Menu
33
Save				: "Save",
34
NewPage				: "New Page",
35
Preview				: "Preview",
36
Cut					: "Cut",
37
Copy				: "Copy",
38
Paste				: "Paste",
39
PasteText			: "Paste as plain text",
40
PasteWord			: "Paste from Word",
41
Print				: "Print",
42
SelectAll			: "Select All",
43
RemoveFormat		: "Remove Format",
44
InsertLinkLbl		: "Link",
45
InsertLink			: "Insert/Edit Link",
46
RemoveLink			: "Remove Link",
47
Anchor				: "Insert/Edit Anchor",
48
AnchorDelete		: "Remove Anchor",
49
InsertImageLbl		: "Image",
50
InsertImage			: "Insert/Edit Image",
51
InsertFlashLbl		: "Flash",
52
InsertFlash			: "Insert/Edit Flash",
53
InsertTableLbl		: "Table",
54
InsertTable			: "Insert/Edit Table",
55
InsertLineLbl		: "Line",
56
InsertLine			: "Insert Horizontal Line",
57
InsertSpecialCharLbl: "Special Character",
58
InsertSpecialChar	: "Insert Special Character",
59
InsertSmileyLbl		: "Smiley",
60
InsertSmiley		: "Insert Smiley",
61
About				: "About FCKeditor",
62
Bold				: "Bold",
63
Italic				: "Italic",
64
Underline			: "Underline",
65
StrikeThrough		: "Strike Through",
66
Subscript			: "Subscript",
67
Superscript			: "Superscript",
68
LeftJustify			: "Left Justify",
69
CenterJustify		: "Centre Justify",
70
RightJustify		: "Right Justify",
71
BlockJustify		: "Block Justify",
72
DecreaseIndent		: "Decrease Indent",
73
IncreaseIndent		: "Increase Indent",
74
Blockquote			: "Blockquote",
75
Undo				: "Undo",
76
Redo				: "Redo",
77
NumberedListLbl		: "Numbered List",
78
NumberedList		: "Insert/Remove Numbered List",
79
BulletedListLbl		: "Bulleted List",
80
BulletedList		: "Insert/Remove Bulleted List",
81
ShowTableBorders	: "Show Table Borders",
82
ShowDetails			: "Show Details",
83
Style				: "Style",
84
FontFormat			: "Format",
85
Font				: "Font",
86
FontSize			: "Size",
87
TextColor			: "Text Colour",
88
BGColor				: "Background Colour",
89
Source				: "Source",
90
Find				: "Find",
91
Replace				: "Replace",
92
SpellCheck			: "Check Spelling",
93
UniversalKeyboard	: "Universal Keyboard",
94
PageBreakLbl		: "Page Break",
95
PageBreak			: "Insert Page Break",
96

    
97
Form			: "Form",
98
Checkbox		: "Checkbox",
99
RadioButton		: "Radio Button",
100
TextField		: "Text Field",
101
Textarea		: "Textarea",
102
HiddenField		: "Hidden Field",
103
Button			: "Button",
104
SelectionField	: "Selection Field",
105
ImageButton		: "Image Button",
106

    
107
FitWindow		: "Maximize the editor size",
108
ShowBlocks		: "Show Blocks",
109

    
110
// Context Menu
111
EditLink			: "Edit Link",
112
CellCM				: "Cell",
113
RowCM				: "Row",
114
ColumnCM			: "Column",
115
InsertRowAfter		: "Insert Row After",
116
InsertRowBefore		: "Insert Row Before",
117
DeleteRows			: "Delete Rows",
118
InsertColumnAfter	: "Insert Column After",
119
InsertColumnBefore	: "Insert Column Before",
120
DeleteColumns		: "Delete Columns",
121
InsertCellAfter		: "Insert Cell After",
122
InsertCellBefore	: "Insert Cell Before",
123
DeleteCells			: "Delete Cells",
124
MergeCells			: "Merge Cells",
125
MergeRight			: "Merge Right",
126
MergeDown			: "Merge Down",
127
HorizontalSplitCell	: "Split Cell Horizontally",
128
VerticalSplitCell	: "Split Cell Vertically",
129
TableDelete			: "Delete Table",
130
CellProperties		: "Cell Properties",
131
TableProperties		: "Table Properties",
132
ImageProperties		: "Image Properties",
133
FlashProperties		: "Flash Properties",
134

    
135
AnchorProp			: "Anchor Properties",
136
ButtonProp			: "Button Properties",
137
CheckboxProp		: "Checkbox Properties",
138
HiddenFieldProp		: "Hidden Field Properties",
139
RadioButtonProp		: "Radio Button Properties",
140
ImageButtonProp		: "Image Button Properties",
141
TextFieldProp		: "Text Field Properties",
142
SelectionFieldProp	: "Selection Field Properties",
143
TextareaProp		: "Textarea Properties",
144
FormProp			: "Form Properties",
145

    
146
FontFormats			: "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",
147

    
148
// Alerts and Messages
149
ProcessingXHTML		: "Processing XHTML. Please wait...",
150
Done				: "Done",
151
PasteWordConfirm	: "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",
152
NotCompatiblePaste	: "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?",
153
UnknownToolbarItem	: "Unknown toolbar item \"%1\"",
154
UnknownCommand		: "Unknown command name \"%1\"",
155
NotImplemented		: "Command not implemented",
156
UnknownToolbarSet	: "Toolbar set \"%1\" doesn't exist",
157
NoActiveX			: "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.",
158
BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.",
159
DialogBlocked		: "It was not possible to open the dialog window. Make sure all popup blockers are disabled.",
160

    
161
// Dialogs
162
DlgBtnOK			: "OK",
163
DlgBtnCancel		: "Cancel",
164
DlgBtnClose			: "Close",
165
DlgBtnBrowseServer	: "Browse Server",
166
DlgAdvancedTag		: "Advanced",
167
DlgOpOther			: "<Other>",
168
DlgInfoTab			: "Info",
169
DlgAlertUrl			: "Please insert the URL",
170

    
171
// General Dialogs Labels
172
DlgGenNotSet		: "<not set>",
173
DlgGenId			: "Id",
174
DlgGenLangDir		: "Language Direction",
175
DlgGenLangDirLtr	: "Left to Right (LTR)",
176
DlgGenLangDirRtl	: "Right to Left (RTL)",
177
DlgGenLangCode		: "Language Code",
178
DlgGenAccessKey		: "Access Key",
179
DlgGenName			: "Name",
180
DlgGenTabIndex		: "Tab Index",
181
DlgGenLongDescr		: "Long Description URL",
182
DlgGenClass			: "Stylesheet Classes",
183
DlgGenTitle			: "Advisory Title",
184
DlgGenContType		: "Advisory Content Type",
185
DlgGenLinkCharset	: "Linked Resource Charset",
186
DlgGenStyle			: "Style",
187

    
188
// Image Dialog
189
DlgImgTitle			: "Image Properties",
190
DlgImgInfoTab		: "Image Info",
191
DlgImgBtnUpload		: "Send it to the Server",
192
DlgImgURL			: "URL",
193
DlgImgUpload		: "Upload",
194
DlgImgAlt			: "Alternative Text",
195
DlgImgWidth			: "Width",
196
DlgImgHeight		: "Height",
197
DlgImgLockRatio		: "Lock Ratio",
198
DlgBtnResetSize		: "Reset Size",
199
DlgImgBorder		: "Border",
200
DlgImgHSpace		: "HSpace",
201
DlgImgVSpace		: "VSpace",
202
DlgImgAlign			: "Align",
203
DlgImgAlignLeft		: "Left",
204
DlgImgAlignAbsBottom: "Abs Bottom",
205
DlgImgAlignAbsMiddle: "Abs Middle",
206
DlgImgAlignBaseline	: "Baseline",
207
DlgImgAlignBottom	: "Bottom",
208
DlgImgAlignMiddle	: "Middle",
209
DlgImgAlignRight	: "Right",
210
DlgImgAlignTextTop	: "Text Top",
211
DlgImgAlignTop		: "Top",
212
DlgImgPreview		: "Preview",
213
DlgImgAlertUrl		: "Please type the image URL",
214
DlgImgLinkTab		: "Link",
215

    
216
// Flash Dialog
217
DlgFlashTitle		: "Flash Properties",
218
DlgFlashChkPlay		: "Auto Play",
219
DlgFlashChkLoop		: "Loop",
220
DlgFlashChkMenu		: "Enable Flash Menu",
221
DlgFlashScale		: "Scale",
222
DlgFlashScaleAll	: "Show all",
223
DlgFlashScaleNoBorder	: "No Border",
224
DlgFlashScaleFit	: "Exact Fit",
225

    
226
// Link Dialog
227
DlgLnkWindowTitle	: "Link",
228
DlgLnkInfoTab		: "Link Info",
229
DlgLnkTargetTab		: "Target",
230

    
231
DlgLnkType			: "Link Type",
232
DlgLnkTypeURL		: "URL",
233
DlgLnkTypeAnchor	: "Link to anchor in the text",
234
DlgLnkTypeEMail		: "E-Mail",
235
DlgLnkProto			: "Protocol",
236
DlgLnkProtoOther	: "<other>",
237
DlgLnkURL			: "URL",
238
DlgLnkAnchorSel		: "Select an Anchor",
239
DlgLnkAnchorByName	: "By Anchor Name",
240
DlgLnkAnchorById	: "By Element Id",
241
DlgLnkNoAnchors		: "(No anchors available in the document)",
242
DlgLnkEMail			: "E-Mail Address",
243
DlgLnkEMailSubject	: "Message Subject",
244
DlgLnkEMailBody		: "Message Body",
245
DlgLnkUpload		: "Upload",
246
DlgLnkBtnUpload		: "Send it to the Server",
247

    
248
DlgLnkTarget		: "Target",
249
DlgLnkTargetFrame	: "<frame>",
250
DlgLnkTargetPopup	: "<popup window>",
251
DlgLnkTargetBlank	: "New Window (_blank)",
252
DlgLnkTargetParent	: "Parent Window (_parent)",
253
DlgLnkTargetSelf	: "Same Window (_self)",
254
DlgLnkTargetTop		: "Topmost Window (_top)",
255
DlgLnkTargetFrameName	: "Target Frame Name",
256
DlgLnkPopWinName	: "Popup Window Name",
257
DlgLnkPopWinFeat	: "Popup Window Features",
258
DlgLnkPopResize		: "Resizable",
259
DlgLnkPopLocation	: "Location Bar",
260
DlgLnkPopMenu		: "Menu Bar",
261
DlgLnkPopScroll		: "Scroll Bars",
262
DlgLnkPopStatus		: "Status Bar",
263
DlgLnkPopToolbar	: "Toolbar",
264
DlgLnkPopFullScrn	: "Full Screen (IE)",
265
DlgLnkPopDependent	: "Dependent (Netscape)",
266
DlgLnkPopWidth		: "Width",
267
DlgLnkPopHeight		: "Height",
268
DlgLnkPopLeft		: "Left Position",
269
DlgLnkPopTop		: "Top Position",
270

    
271
DlnLnkMsgNoUrl		: "Please type the link URL",
272
DlnLnkMsgNoEMail	: "Please type the e-mail address",
273
DlnLnkMsgNoAnchor	: "Please select an anchor",
274
DlnLnkMsgInvPopName	: "The popup name must begin with an alphabetic character and must not contain spaces",
275

    
276
// Color Dialog
277
DlgColorTitle		: "Select Colour",
278
DlgColorBtnClear	: "Clear",
279
DlgColorHighlight	: "Highlight",
280
DlgColorSelected	: "Selected",
281

    
282
// Smiley Dialog
283
DlgSmileyTitle		: "Insert a Smiley",
284

    
285
// Special Character Dialog
286
DlgSpecialCharTitle	: "Select Special Character",
287

    
288
// Table Dialog
289
DlgTableTitle		: "Table Properties",
290
DlgTableRows		: "Rows",
291
DlgTableColumns		: "Columns",
292
DlgTableBorder		: "Border size",
293
DlgTableAlign		: "Alignment",
294
DlgTableAlignNotSet	: "<Not set>",
295
DlgTableAlignLeft	: "Left",
296
DlgTableAlignCenter	: "Centre",
297
DlgTableAlignRight	: "Right",
298
DlgTableWidth		: "Width",
299
DlgTableWidthPx		: "pixels",
300
DlgTableWidthPc		: "percent",
301
DlgTableHeight		: "Height",
302
DlgTableCellSpace	: "Cell spacing",
303
DlgTableCellPad		: "Cell padding",
304
DlgTableCaption		: "Caption",
305
DlgTableSummary		: "Summary",
306

    
307
// Table Cell Dialog
308
DlgCellTitle		: "Cell Properties",
309
DlgCellWidth		: "Width",
310
DlgCellWidthPx		: "pixels",
311
DlgCellWidthPc		: "percent",
312
DlgCellHeight		: "Height",
313
DlgCellWordWrap		: "Word Wrap",
314
DlgCellWordWrapNotSet	: "<Not set>",
315
DlgCellWordWrapYes	: "Yes",
316
DlgCellWordWrapNo	: "No",
317
DlgCellHorAlign		: "Horizontal Alignment",
318
DlgCellHorAlignNotSet	: "<Not set>",
319
DlgCellHorAlignLeft	: "Left",
320
DlgCellHorAlignCenter	: "Centre",
321
DlgCellHorAlignRight: "Right",
322
DlgCellVerAlign		: "Vertical Alignment",
323
DlgCellVerAlignNotSet	: "<Not set>",
324
DlgCellVerAlignTop	: "Top",
325
DlgCellVerAlignMiddle	: "Middle",
326
DlgCellVerAlignBottom	: "Bottom",
327
DlgCellVerAlignBaseline	: "Baseline",
328
DlgCellRowSpan		: "Rows Span",
329
DlgCellCollSpan		: "Columns Span",
330
DlgCellBackColor	: "Background Colour",
331
DlgCellBorderColor	: "Border Colour",
332
DlgCellBtnSelect	: "Select...",
333

    
334
// Find and Replace Dialog
335
DlgFindAndReplaceTitle	: "Find and Replace",
336

    
337
// Find Dialog
338
DlgFindTitle		: "Find",
339
DlgFindFindBtn		: "Find",
340
DlgFindNotFoundMsg	: "The specified text was not found.",
341

    
342
// Replace Dialog
343
DlgReplaceTitle			: "Replace",
344
DlgReplaceFindLbl		: "Find what:",
345
DlgReplaceReplaceLbl	: "Replace with:",
346
DlgReplaceCaseChk		: "Match case",
347
DlgReplaceReplaceBtn	: "Replace",
348
DlgReplaceReplAllBtn	: "Replace All",
349
DlgReplaceWordChk		: "Match whole word",
350

    
351
// Paste Operations / Dialog
352
PasteErrorCut	: "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).",
353
PasteErrorCopy	: "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).",
354

    
355
PasteAsText		: "Paste as Plain Text",
356
PasteFromWord	: "Paste from Word",
357

    
358
DlgPasteMsg2	: "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.",
359
DlgPasteSec		: "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.",
360
DlgPasteIgnoreFont		: "Ignore Font Face definitions",
361
DlgPasteRemoveStyles	: "Remove Styles definitions",
362

    
363
// Color Picker
364
ColorAutomatic	: "Automatic",
365
ColorMoreColors	: "More Colours...",
366

    
367
// Document Properties
368
DocProps		: "Document Properties",
369

    
370
// Anchor Dialog
371
DlgAnchorTitle		: "Anchor Properties",
372
DlgAnchorName		: "Anchor Name",
373
DlgAnchorErrorName	: "Please type the anchor name",
374

    
375
// Speller Pages Dialog
376
DlgSpellNotInDic		: "Not in dictionary",
377
DlgSpellChangeTo		: "Change to",
378
DlgSpellBtnIgnore		: "Ignore",
379
DlgSpellBtnIgnoreAll	: "Ignore All",
380
DlgSpellBtnReplace		: "Replace",
381
DlgSpellBtnReplaceAll	: "Replace All",
382
DlgSpellBtnUndo			: "Undo",
383
DlgSpellNoSuggestions	: "- No suggestions -",
384
DlgSpellProgress		: "Spell check in progress...",
385
DlgSpellNoMispell		: "Spell check complete: No misspellings found",
386
DlgSpellNoChanges		: "Spell check complete: No words changed",
387
DlgSpellOneChange		: "Spell check complete: One word changed",
388
DlgSpellManyChanges		: "Spell check complete: %1 words changed",
389

    
390
IeSpellDownload			: "Spell checker not installed. Do you want to download it now?",
391

    
392
// Button Dialog
393
DlgButtonText		: "Text (Value)",
394
DlgButtonType		: "Type",
395
DlgButtonTypeBtn	: "Button",
396
DlgButtonTypeSbm	: "Submit",
397
DlgButtonTypeRst	: "Reset",
398

    
399
// Checkbox and Radio Button Dialogs
400
DlgCheckboxName		: "Name",
401
DlgCheckboxValue	: "Value",
402
DlgCheckboxSelected	: "Selected",
403

    
404
// Form Dialog
405
DlgFormName		: "Name",
406
DlgFormAction	: "Action",
407
DlgFormMethod	: "Method",
408

    
409
// Select Field Dialog
410
DlgSelectName		: "Name",
411
DlgSelectValue		: "Value",
412
DlgSelectSize		: "Size",
413
DlgSelectLines		: "lines",
414
DlgSelectChkMulti	: "Allow multiple selections",
415
DlgSelectOpAvail	: "Available Options",
416
DlgSelectOpText		: "Text",
417
DlgSelectOpValue	: "Value",
418
DlgSelectBtnAdd		: "Add",
419
DlgSelectBtnModify	: "Modify",
420
DlgSelectBtnUp		: "Up",
421
DlgSelectBtnDown	: "Down",
422
DlgSelectBtnSetValue : "Set as selected value",
423
DlgSelectBtnDelete	: "Delete",
424

    
425
// Textarea Dialog
426
DlgTextareaName	: "Name",
427
DlgTextareaCols	: "Columns",
428
DlgTextareaRows	: "Rows",
429

    
430
// Text Field Dialog
431
DlgTextName			: "Name",
432
DlgTextValue		: "Value",
433
DlgTextCharWidth	: "Character Width",
434
DlgTextMaxChars		: "Maximum Characters",
435
DlgTextType			: "Type",
436
DlgTextTypeText		: "Text",
437
DlgTextTypePass		: "Password",
438

    
439
// Hidden Field Dialog
440
DlgHiddenName	: "Name",
441
DlgHiddenValue	: "Value",
442

    
443
// Bulleted List Dialog
444
BulletedListProp	: "Bulleted List Properties",
445
NumberedListProp	: "Numbered List Properties",
446
DlgLstStart			: "Start",
447
DlgLstType			: "Type",
448
DlgLstTypeCircle	: "Circle",
449
DlgLstTypeDisc		: "Disc",
450
DlgLstTypeSquare	: "Square",
451
DlgLstTypeNumbers	: "Numbers (1, 2, 3)",
452
DlgLstTypeLCase		: "Lowercase Letters (a, b, c)",
453
DlgLstTypeUCase		: "Uppercase Letters (A, B, C)",
454
DlgLstTypeSRoman	: "Small Roman Numerals (i, ii, iii)",
455
DlgLstTypeLRoman	: "Large Roman Numerals (I, II, III)",
456

    
457
// Document Properties Dialog
458
DlgDocGeneralTab	: "General",
459
DlgDocBackTab		: "Background",
460
DlgDocColorsTab		: "Colours and Margins",
461
DlgDocMetaTab		: "Meta Data",
462

    
463
DlgDocPageTitle		: "Page Title",
464
DlgDocLangDir		: "Language Direction",
465
DlgDocLangDirLTR	: "Left to Right (LTR)",
466
DlgDocLangDirRTL	: "Right to Left (RTL)",
467
DlgDocLangCode		: "Language Code",
468
DlgDocCharSet		: "Character Set Encoding",
469
DlgDocCharSetCE		: "Central European",
470
DlgDocCharSetCT		: "Chinese Traditional (Big5)",
471
DlgDocCharSetCR		: "Cyrillic",
472
DlgDocCharSetGR		: "Greek",
473
DlgDocCharSetJP		: "Japanese",
474
DlgDocCharSetKR		: "Korean",
475
DlgDocCharSetTR		: "Turkish",
476
DlgDocCharSetUN		: "Unicode (UTF-8)",
477
DlgDocCharSetWE		: "Western European",
478
DlgDocCharSetOther	: "Other Character Set Encoding",
479

    
480
DlgDocDocType		: "Document Type Heading",
481
DlgDocDocTypeOther	: "Other Document Type Heading",
482
DlgDocIncXHTML		: "Include XHTML Declarations",
483
DlgDocBgColor		: "Background Colour",
484
DlgDocBgImage		: "Background Image URL",
485
DlgDocBgNoScroll	: "Nonscrolling Background",
486
DlgDocCText			: "Text",
487
DlgDocCLink			: "Link",
488
DlgDocCVisited		: "Visited Link",
489
DlgDocCActive		: "Active Link",
490
DlgDocMargins		: "Page Margins",
491
DlgDocMaTop			: "Top",
492
DlgDocMaLeft		: "Left",
493
DlgDocMaRight		: "Right",
494
DlgDocMaBottom		: "Bottom",
495
DlgDocMeIndex		: "Document Indexing Keywords (comma separated)",
496
DlgDocMeDescr		: "Document Description",
497
DlgDocMeAuthor		: "Author",
498
DlgDocMeCopy		: "Copyright",
499
DlgDocPreview		: "Preview",
500

    
501
// Templates Dialog
502
Templates			: "Templates",
503
DlgTemplatesTitle	: "Content Templates",
504
DlgTemplatesSelMsg	: "Please select the template to open in the editor<br>(the actual contents will be lost):",
505
DlgTemplatesLoading	: "Loading templates list. Please wait...",
506
DlgTemplatesNoTpl	: "(No templates defined)",
507
DlgTemplatesReplace	: "Replace actual contents",
508

    
509
// About Dialog
510
DlgAboutAboutTab	: "About",
511
DlgAboutBrowserInfoTab	: "Browser Info",
512
DlgAboutLicenseTab	: "License",
513
DlgAboutVersion		: "version",
514
DlgAboutInfo		: "For further information go to"
515
};
(13-13/57)