fur.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. /*
  2. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3. * Copyright (C) 2003-2009 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. * Friulian language file.
  22. * Please, use UTF-8 encoding.
  23. */
  24. var FCKLang =
  25. {
  26. // Language direction : "ltr" (left to right) or "rtl" (right to left).
  27. Dir : "ltr",
  28. ToolbarCollapse : "Collapse Toolbar",
  29. ToolbarExpand : "Expand Toolbar",
  30. // Toolbar Items and Context Menu
  31. Save : "Save",
  32. NewPage : "New Page",
  33. Preview : "Preview",
  34. Cut : "Cut",
  35. Copy : "Copy",
  36. Paste : "Paste",
  37. PasteText : "Paste as plain text",
  38. PasteWord : "Paste from Word",
  39. Print : "Print",
  40. SelectAll : "Select All",
  41. RemoveFormat : "Remove Format",
  42. InsertLinkLbl : "Link",
  43. InsertLink : "Insert/Edit Link",
  44. RemoveLink : "Remove Link",
  45. VisitLink : "Open Link",
  46. Anchor : "Insert/Edit Anchor",
  47. AnchorDelete : "Remove Anchor",
  48. InsertImageLbl : "Image",
  49. InsertImage : "Insert/Edit Image",
  50. InsertFlashLbl : "Flash",
  51. InsertFlash : "Insert/Edit Flash",
  52. InsertTableLbl : "Table",
  53. InsertTable : "Insert/Edit Table",
  54. InsertLineLbl : "Line",
  55. InsertLine : "Insert Horizontal Line",
  56. InsertSpecialCharLbl: "Special Character",
  57. InsertSpecialChar : "Insert Special Character",
  58. InsertSmileyLbl : "Smiley",
  59. InsertSmiley : "Insert Smiley",
  60. About : "About FCKeditor",
  61. Bold : "Bold",
  62. Italic : "Italic",
  63. Underline : "Underline",
  64. StrikeThrough : "Strike Through",
  65. Subscript : "Subscript",
  66. Superscript : "Superscript",
  67. LeftJustify : "Left Justify",
  68. CenterJustify : "Center Justify",
  69. RightJustify : "Right Justify",
  70. BlockJustify : "Block Justify",
  71. DecreaseIndent : "Decrease Indent",
  72. IncreaseIndent : "Increase Indent",
  73. Blockquote : "Blockquote",
  74. CreateDiv : "Create Div Container",
  75. EditDiv : "Edit Div Container",
  76. DeleteDiv : "Remove Div Container",
  77. Undo : "Undo",
  78. Redo : "Redo",
  79. NumberedListLbl : "Numbered List",
  80. NumberedList : "Insert/Remove Numbered List",
  81. BulletedListLbl : "Bulleted List",
  82. BulletedList : "Insert/Remove Bulleted List",
  83. ShowTableBorders : "Show Table Borders",
  84. ShowDetails : "Show Details",
  85. Style : "Style",
  86. FontFormat : "Format",
  87. Font : "Font",
  88. FontSize : "Size",
  89. TextColor : "Text Color",
  90. BGColor : "Background Color",
  91. Source : "Source",
  92. Find : "Find",
  93. Replace : "Replace",
  94. SpellCheck : "Check Spelling",
  95. UniversalKeyboard : "Universal Keyboard",
  96. PageBreakLbl : "Page Break",
  97. PageBreak : "Insert Page Break",
  98. Form : "Form",
  99. Checkbox : "Checkbox",
  100. RadioButton : "Radio Button",
  101. TextField : "Text Field",
  102. Textarea : "Textarea",
  103. HiddenField : "Hidden Field",
  104. Button : "Button",
  105. SelectionField : "Selection Field",
  106. ImageButton : "Image Button",
  107. FitWindow : "Maximize the editor size",
  108. ShowBlocks : "Show Blocks",
  109. // Context Menu
  110. EditLink : "Edit Link",
  111. CellCM : "Cell",
  112. RowCM : "Row",
  113. ColumnCM : "Column",
  114. InsertRowAfter : "Insert Row After",
  115. InsertRowBefore : "Insert Row Before",
  116. DeleteRows : "Delete Rows",
  117. InsertColumnAfter : "Insert Column After",
  118. InsertColumnBefore : "Insert Column Before",
  119. DeleteColumns : "Delete Columns",
  120. InsertCellAfter : "Insert Cell After",
  121. InsertCellBefore : "Insert Cell Before",
  122. DeleteCells : "Delete Cells",
  123. MergeCells : "Merge Cells",
  124. MergeRight : "Merge Right",
  125. MergeDown : "Merge Down",
  126. HorizontalSplitCell : "Split Cell Horizontally",
  127. VerticalSplitCell : "Split Cell Vertically",
  128. TableDelete : "Delete Table",
  129. CellProperties : "Cell Properties",
  130. TableProperties : "Table Properties",
  131. ImageProperties : "Image Properties",
  132. FlashProperties : "Flash Properties",
  133. AnchorProp : "Anchor Properties",
  134. ButtonProp : "Button Properties",
  135. CheckboxProp : "Checkbox Properties",
  136. HiddenFieldProp : "Hidden Field Properties",
  137. RadioButtonProp : "Radio Button Properties",
  138. ImageButtonProp : "Image Button Properties",
  139. TextFieldProp : "Text Field Properties",
  140. SelectionFieldProp : "Selection Field Properties",
  141. TextareaProp : "Textarea Properties",
  142. FormProp : "Form Properties",
  143. FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)",
  144. // Alerts and Messages
  145. ProcessingXHTML : "Processing XHTML. Please wait...",
  146. Done : "Done",
  147. PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",
  148. NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?",
  149. UnknownToolbarItem : "Unknown toolbar item \"%1\"",
  150. UnknownCommand : "Unknown command name \"%1\"",
  151. NotImplemented : "Command not implemented",
  152. UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist",
  153. 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.",
  154. BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.",
  155. DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.",
  156. VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.",
  157. // Dialogs
  158. DlgBtnOK : "OK",
  159. DlgBtnCancel : "Cancel",
  160. DlgBtnClose : "Close",
  161. DlgBtnBrowseServer : "Browse Server",
  162. DlgAdvancedTag : "Advanced",
  163. DlgOpOther : "<Other>",
  164. DlgInfoTab : "Info",
  165. DlgAlertUrl : "Please insert the URL",
  166. // General Dialogs Labels
  167. DlgGenNotSet : "<not set>",
  168. DlgGenId : "Id",
  169. DlgGenLangDir : "Language Direction",
  170. DlgGenLangDirLtr : "Left to Right (LTR)",
  171. DlgGenLangDirRtl : "Right to Left (RTL)",
  172. DlgGenLangCode : "Language Code",
  173. DlgGenAccessKey : "Access Key",
  174. DlgGenName : "Name",
  175. DlgGenTabIndex : "Tab Index",
  176. DlgGenLongDescr : "Long Description URL",
  177. DlgGenClass : "Stylesheet Classes",
  178. DlgGenTitle : "Advisory Title",
  179. DlgGenContType : "Advisory Content Type",
  180. DlgGenLinkCharset : "Linked Resource Charset",
  181. DlgGenStyle : "Style",
  182. // Image Dialog
  183. DlgImgTitle : "Image Properties",
  184. DlgImgInfoTab : "Image Info",
  185. DlgImgBtnUpload : "Send it to the Server",
  186. DlgImgURL : "URL",
  187. DlgImgUpload : "Upload",
  188. DlgImgAlt : "Alternative Text",
  189. DlgImgWidth : "Width",
  190. DlgImgHeight : "Height",
  191. DlgImgLockRatio : "Lock Ratio",
  192. DlgBtnResetSize : "Reset Size",
  193. DlgImgBorder : "Border",
  194. DlgImgHSpace : "HSpace",
  195. DlgImgVSpace : "VSpace",
  196. DlgImgAlign : "Align",
  197. DlgImgAlignLeft : "Left",
  198. DlgImgAlignAbsBottom: "Abs Bottom",
  199. DlgImgAlignAbsMiddle: "Abs Middle",
  200. DlgImgAlignBaseline : "Baseline",
  201. DlgImgAlignBottom : "Bottom",
  202. DlgImgAlignMiddle : "Middle",
  203. DlgImgAlignRight : "Right",
  204. DlgImgAlignTextTop : "Text Top",
  205. DlgImgAlignTop : "Top",
  206. DlgImgPreview : "Preview",
  207. DlgImgAlertUrl : "Please type the image URL",
  208. DlgImgLinkTab : "Link",
  209. // Flash Dialog
  210. DlgFlashTitle : "Flash Properties",
  211. DlgFlashChkPlay : "Auto Play",
  212. DlgFlashChkLoop : "Loop",
  213. DlgFlashChkMenu : "Enable Flash Menu",
  214. DlgFlashScale : "Scale",
  215. DlgFlashScaleAll : "Show all",
  216. DlgFlashScaleNoBorder : "No Border",
  217. DlgFlashScaleFit : "Exact Fit",
  218. // Link Dialog
  219. DlgLnkWindowTitle : "Link",
  220. DlgLnkInfoTab : "Link Info",
  221. DlgLnkTargetTab : "Target",
  222. DlgLnkType : "Link Type",
  223. DlgLnkTypeURL : "URL",
  224. DlgLnkTypeAnchor : "Link to anchor in the text",
  225. DlgLnkTypeEMail : "E-Mail",
  226. DlgLnkProto : "Protocol",
  227. DlgLnkProtoOther : "<other>",
  228. DlgLnkURL : "URL",
  229. DlgLnkAnchorSel : "Select an Anchor",
  230. DlgLnkAnchorByName : "By Anchor Name",
  231. DlgLnkAnchorById : "By Element Id",
  232. DlgLnkNoAnchors : "(No anchors available in the document)",
  233. DlgLnkEMail : "E-Mail Address",
  234. DlgLnkEMailSubject : "Message Subject",
  235. DlgLnkEMailBody : "Message Body",
  236. DlgLnkUpload : "Upload",
  237. DlgLnkBtnUpload : "Send it to the Server",
  238. DlgLnkTarget : "Target",
  239. DlgLnkTargetFrame : "<frame>",
  240. DlgLnkTargetPopup : "<popup window>",
  241. DlgLnkTargetBlank : "New Window (_blank)",
  242. DlgLnkTargetParent : "Parent Window (_parent)",
  243. DlgLnkTargetSelf : "Same Window (_self)",
  244. DlgLnkTargetTop : "Topmost Window (_top)",
  245. DlgLnkTargetFrameName : "Target Frame Name",
  246. DlgLnkPopWinName : "Popup Window Name",
  247. DlgLnkPopWinFeat : "Popup Window Features",
  248. DlgLnkPopResize : "Resizable",
  249. DlgLnkPopLocation : "Location Bar",
  250. DlgLnkPopMenu : "Menu Bar",
  251. DlgLnkPopScroll : "Scroll Bars",
  252. DlgLnkPopStatus : "Status Bar",
  253. DlgLnkPopToolbar : "Toolbar",
  254. DlgLnkPopFullScrn : "Full Screen (IE)",
  255. DlgLnkPopDependent : "Dependent (Netscape)",
  256. DlgLnkPopWidth : "Width",
  257. DlgLnkPopHeight : "Height",
  258. DlgLnkPopLeft : "Left Position",
  259. DlgLnkPopTop : "Top Position",
  260. DlnLnkMsgNoUrl : "Please type the link URL",
  261. DlnLnkMsgNoEMail : "Please type the e-mail address",
  262. DlnLnkMsgNoAnchor : "Please select an anchor",
  263. DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces",
  264. // Color Dialog
  265. DlgColorTitle : "Select Color",
  266. DlgColorBtnClear : "Clear",
  267. DlgColorHighlight : "Highlight",
  268. DlgColorSelected : "Selected",
  269. // Smiley Dialog
  270. DlgSmileyTitle : "Insert a Smiley",
  271. // Special Character Dialog
  272. DlgSpecialCharTitle : "Select Special Character",
  273. // Table Dialog
  274. DlgTableTitle : "Table Properties",
  275. DlgTableRows : "Rows",
  276. DlgTableColumns : "Columns",
  277. DlgTableBorder : "Border size",
  278. DlgTableAlign : "Alignment",
  279. DlgTableAlignNotSet : "<Not set>",
  280. DlgTableAlignLeft : "Left",
  281. DlgTableAlignCenter : "Center",
  282. DlgTableAlignRight : "Right",
  283. DlgTableWidth : "Width",
  284. DlgTableWidthPx : "pixels",
  285. DlgTableWidthPc : "percent",
  286. DlgTableHeight : "Height",
  287. DlgTableCellSpace : "Cell spacing",
  288. DlgTableCellPad : "Cell padding",
  289. DlgTableCaption : "Caption",
  290. DlgTableSummary : "Summary",
  291. DlgTableHeaders : "Headers",
  292. DlgTableHeadersNone : "None",
  293. DlgTableHeadersColumn : "First column",
  294. DlgTableHeadersRow : "First Row",
  295. DlgTableHeadersBoth : "Both",
  296. // Table Cell Dialog
  297. DlgCellTitle : "Cell Properties",
  298. DlgCellWidth : "Width",
  299. DlgCellWidthPx : "pixels",
  300. DlgCellWidthPc : "percent",
  301. DlgCellHeight : "Height",
  302. DlgCellWordWrap : "Word Wrap",
  303. DlgCellWordWrapNotSet : "<Not set>",
  304. DlgCellWordWrapYes : "Yes",
  305. DlgCellWordWrapNo : "No",
  306. DlgCellHorAlign : "Horizontal Alignment",
  307. DlgCellHorAlignNotSet : "<Not set>",
  308. DlgCellHorAlignLeft : "Left",
  309. DlgCellHorAlignCenter : "Center",
  310. DlgCellHorAlignRight: "Right",
  311. DlgCellVerAlign : "Vertical Alignment",
  312. DlgCellVerAlignNotSet : "<Not set>",
  313. DlgCellVerAlignTop : "Top",
  314. DlgCellVerAlignMiddle : "Middle",
  315. DlgCellVerAlignBottom : "Bottom",
  316. DlgCellVerAlignBaseline : "Baseline",
  317. DlgCellType : "Cell Type",
  318. DlgCellTypeData : "Data",
  319. DlgCellTypeHeader : "Header",
  320. DlgCellRowSpan : "Rows Span",
  321. DlgCellCollSpan : "Columns Span",
  322. DlgCellBackColor : "Background Color",
  323. DlgCellBorderColor : "Border Color",
  324. DlgCellBtnSelect : "Select...",
  325. // Find and Replace Dialog
  326. DlgFindAndReplaceTitle : "Find and Replace",
  327. // Find Dialog
  328. DlgFindTitle : "Find",
  329. DlgFindFindBtn : "Find",
  330. DlgFindNotFoundMsg : "The specified text was not found.",
  331. // Replace Dialog
  332. DlgReplaceTitle : "Replace",
  333. DlgReplaceFindLbl : "Find what:",
  334. DlgReplaceReplaceLbl : "Replace with:",
  335. DlgReplaceCaseChk : "Match case",
  336. DlgReplaceReplaceBtn : "Replace",
  337. DlgReplaceReplAllBtn : "Replace All",
  338. DlgReplaceWordChk : "Match whole word",
  339. // Paste Operations / Dialog
  340. PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).",
  341. PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).",
  342. PasteAsText : "Paste as Plain Text",
  343. PasteFromWord : "Paste from Word",
  344. DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.",
  345. 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.",
  346. DlgPasteIgnoreFont : "Ignore Font Face definitions",
  347. DlgPasteRemoveStyles : "Remove Styles definitions",
  348. // Color Picker
  349. ColorAutomatic : "Automatic",
  350. ColorMoreColors : "More Colors...",
  351. // Document Properties
  352. DocProps : "Document Properties",
  353. // Anchor Dialog
  354. DlgAnchorTitle : "Anchor Properties",
  355. DlgAnchorName : "Anchor Name",
  356. DlgAnchorErrorName : "Please type the anchor name",
  357. // Speller Pages Dialog
  358. DlgSpellNotInDic : "Not in dictionary",
  359. DlgSpellChangeTo : "Change to",
  360. DlgSpellBtnIgnore : "Ignore",
  361. DlgSpellBtnIgnoreAll : "Ignore All",
  362. DlgSpellBtnReplace : "Replace",
  363. DlgSpellBtnReplaceAll : "Replace All",
  364. DlgSpellBtnUndo : "Undo",
  365. DlgSpellNoSuggestions : "- No suggestions -",
  366. DlgSpellProgress : "Spell check in progress...",
  367. DlgSpellNoMispell : "Spell check complete: No misspellings found",
  368. DlgSpellNoChanges : "Spell check complete: No words changed",
  369. DlgSpellOneChange : "Spell check complete: One word changed",
  370. DlgSpellManyChanges : "Spell check complete: %1 words changed",
  371. IeSpellDownload : "Spell checker not installed. Do you want to download it now?",
  372. // Button Dialog
  373. DlgButtonText : "Text (Value)",
  374. DlgButtonType : "Type",
  375. DlgButtonTypeBtn : "Button",
  376. DlgButtonTypeSbm : "Submit",
  377. DlgButtonTypeRst : "Reset",
  378. // Checkbox and Radio Button Dialogs
  379. DlgCheckboxName : "Name",
  380. DlgCheckboxValue : "Value",
  381. DlgCheckboxSelected : "Selected",
  382. // Form Dialog
  383. DlgFormName : "Name",
  384. DlgFormAction : "Action",
  385. DlgFormMethod : "Method",
  386. // Select Field Dialog
  387. DlgSelectName : "Name",
  388. DlgSelectValue : "Value",
  389. DlgSelectSize : "Size",
  390. DlgSelectLines : "lines",
  391. DlgSelectChkMulti : "Allow multiple selections",
  392. DlgSelectOpAvail : "Available Options",
  393. DlgSelectOpText : "Text",
  394. DlgSelectOpValue : "Value",
  395. DlgSelectBtnAdd : "Add",
  396. DlgSelectBtnModify : "Modify",
  397. DlgSelectBtnUp : "Up",
  398. DlgSelectBtnDown : "Down",
  399. DlgSelectBtnSetValue : "Set as selected value",
  400. DlgSelectBtnDelete : "Delete",
  401. // Textarea Dialog
  402. DlgTextareaName : "Name",
  403. DlgTextareaCols : "Columns",
  404. DlgTextareaRows : "Rows",
  405. // Text Field Dialog
  406. DlgTextName : "Name",
  407. DlgTextValue : "Value",
  408. DlgTextCharWidth : "Character Width",
  409. DlgTextMaxChars : "Maximum Characters",
  410. DlgTextType : "Type",
  411. DlgTextTypeText : "Text",
  412. DlgTextTypePass : "Password",
  413. // Hidden Field Dialog
  414. DlgHiddenName : "Name",
  415. DlgHiddenValue : "Value",
  416. // Bulleted List Dialog
  417. BulletedListProp : "Bulleted List Properties",
  418. NumberedListProp : "Numbered List Properties",
  419. DlgLstStart : "Start",
  420. DlgLstType : "Type",
  421. DlgLstTypeCircle : "Circle",
  422. DlgLstTypeDisc : "Disc",
  423. DlgLstTypeSquare : "Square",
  424. DlgLstTypeNumbers : "Numbers (1, 2, 3)",
  425. DlgLstTypeLCase : "Lowercase Letters (a, b, c)",
  426. DlgLstTypeUCase : "Uppercase Letters (A, B, C)",
  427. DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)",
  428. DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)",
  429. // Document Properties Dialog
  430. DlgDocGeneralTab : "General",
  431. DlgDocBackTab : "Background",
  432. DlgDocColorsTab : "Colors and Margins",
  433. DlgDocMetaTab : "Meta Data",
  434. DlgDocPageTitle : "Page Title",
  435. DlgDocLangDir : "Language Direction",
  436. DlgDocLangDirLTR : "Left to Right (LTR)",
  437. DlgDocLangDirRTL : "Right to Left (RTL)",
  438. DlgDocLangCode : "Language Code",
  439. DlgDocCharSet : "Character Set Encoding",
  440. DlgDocCharSetCE : "Central European",
  441. DlgDocCharSetCT : "Chinese Traditional (Big5)",
  442. DlgDocCharSetCR : "Cyrillic",
  443. DlgDocCharSetGR : "Greek",
  444. DlgDocCharSetJP : "Japanese",
  445. DlgDocCharSetKR : "Korean",
  446. DlgDocCharSetTR : "Turkish",
  447. DlgDocCharSetUN : "Unicode (UTF-8)",
  448. DlgDocCharSetWE : "Western European",
  449. DlgDocCharSetOther : "Other Character Set Encoding",
  450. DlgDocDocType : "Document Type Heading",
  451. DlgDocDocTypeOther : "Other Document Type Heading",
  452. DlgDocIncXHTML : "Include XHTML Declarations",
  453. DlgDocBgColor : "Background Color",
  454. DlgDocBgImage : "Background Image URL",
  455. DlgDocBgNoScroll : "Nonscrolling Background",
  456. DlgDocCText : "Text",
  457. DlgDocCLink : "Link",
  458. DlgDocCVisited : "Visited Link",
  459. DlgDocCActive : "Active Link",
  460. DlgDocMargins : "Page Margins",
  461. DlgDocMaTop : "Top",
  462. DlgDocMaLeft : "Left",
  463. DlgDocMaRight : "Right",
  464. DlgDocMaBottom : "Bottom",
  465. DlgDocMeIndex : "Document Indexing Keywords (comma separated)",
  466. DlgDocMeDescr : "Document Description",
  467. DlgDocMeAuthor : "Author",
  468. DlgDocMeCopy : "Copyright",
  469. DlgDocPreview : "Preview",
  470. // Templates Dialog
  471. Templates : "Templates",
  472. DlgTemplatesTitle : "Content Templates",
  473. DlgTemplatesSelMsg : "Please select the template to open in the editor<br />(the actual contents will be lost):",
  474. DlgTemplatesLoading : "Loading templates list. Please wait...",
  475. DlgTemplatesNoTpl : "(No templates defined)",
  476. DlgTemplatesReplace : "Replace actual contents",
  477. // About Dialog
  478. DlgAboutAboutTab : "About",
  479. DlgAboutBrowserInfoTab : "Browser Info",
  480. DlgAboutLicenseTab : "License",
  481. DlgAboutVersion : "version",
  482. DlgAboutInfo : "For further information go to",
  483. // Div Dialog
  484. DlgDivGeneralTab : "General",
  485. DlgDivAdvancedTab : "Advanced",
  486. DlgDivStyle : "Style",
  487. DlgDivInlineStyle : "Inline Style",
  488. ScaytTitle : "SCAYT",
  489. ScaytTitleOptions : "Options",
  490. ScaytTitleLangs : "Languages",
  491. ScaytTitleAbout : "About"
  492. };