Wiki2GoEditor 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/Wiki2Go_install_editor.rb +13 -0
- data/fckeditor/editor/_source/classes/fckcontextmenu.js +134 -0
- data/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +46 -0
- data/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +58 -0
- data/fckeditor/editor/_source/classes/fckdomrange.js +452 -0
- data/fckeditor/editor/_source/classes/fckdomrange_gecko.js +71 -0
- data/fckeditor/editor/_source/classes/fckdomrange_ie.js +149 -0
- data/fckeditor/editor/_source/classes/fckeditingarea.js +253 -0
- data/fckeditor/editor/_source/classes/fckelementpath.js +66 -0
- data/fckeditor/editor/_source/classes/fckenterkey.js +556 -0
- data/fckeditor/editor/_source/classes/fckevents.js +53 -0
- data/fckeditor/editor/_source/classes/fckicon.js +98 -0
- data/fckeditor/editor/_source/classes/fckiecleanup.js +68 -0
- data/fckeditor/editor/_source/classes/fckimagepreloader.js +68 -0
- data/fckeditor/editor/_source/classes/fckkeystrokehandler.js +136 -0
- data/fckeditor/editor/_source/classes/fckmenublock.js +143 -0
- data/fckeditor/editor/_source/classes/fckmenublockpanel.js +54 -0
- data/fckeditor/editor/_source/classes/fckmenuitem.js +160 -0
- data/fckeditor/editor/_source/classes/fckpanel.js +303 -0
- data/fckeditor/editor/_source/classes/fckplugin.js +56 -0
- data/fckeditor/editor/_source/classes/fckspecialcombo.js +363 -0
- data/fckeditor/editor/_source/classes/fckstyledef.js +59 -0
- data/fckeditor/editor/_source/classes/fckstyledef_gecko.js +119 -0
- data/fckeditor/editor/_source/classes/fckstyledef_ie.js +142 -0
- data/fckeditor/editor/_source/classes/fckstylesloader.js +88 -0
- data/fckeditor/editor/_source/classes/fcktoolbar.js +120 -0
- data/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +36 -0
- data/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +38 -0
- data/fckeditor/editor/_source/classes/fcktoolbarbutton.js +74 -0
- data/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +222 -0
- data/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +114 -0
- data/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +47 -0
- data/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +52 -0
- data/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +91 -0
- data/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +134 -0
- data/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +111 -0
- data/fckeditor/editor/_source/classes/fckw3crange.js +448 -0
- data/fckeditor/editor/_source/classes/fckxml_gecko.js +87 -0
- data/fckeditor/editor/_source/classes/fckxml_ie.js +90 -0
- data/fckeditor/editor/_source/commandclasses/fck_othercommands.js +380 -0
- data/fckeditor/editor/_source/commandclasses/fckfitwindow.js +169 -0
- data/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +37 -0
- data/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +38 -0
- data/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +40 -0
- data/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +39 -0
- data/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +67 -0
- data/fckeditor/editor/_source/commandclasses/fckstylecommand.js +99 -0
- data/fckeditor/editor/_source/commandclasses/fcktablecommand.js +71 -0
- data/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +175 -0
- data/fckeditor/editor/_source/fckconstants.js +52 -0
- data/fckeditor/editor/_source/fckeditorapi.js +161 -0
- data/fckeditor/editor/_source/fckjscoreextensions.js +152 -0
- data/fckeditor/editor/_source/fckscriptloader.js +108 -0
- data/fckeditor/editor/_source/internals/fck.js +859 -0
- data/fckeditor/editor/_source/internals/fck_contextmenu.js +307 -0
- data/fckeditor/editor/_source/internals/fck_gecko.js +254 -0
- data/fckeditor/editor/_source/internals/fck_ie.js +383 -0
- data/fckeditor/editor/_source/internals/fckbrowserinfo.js +48 -0
- data/fckeditor/editor/_source/internals/fckcodeformatter.js +100 -0
- data/fckeditor/editor/_source/internals/fckcommands.js +132 -0
- data/fckeditor/editor/_source/internals/fckconfig.js +199 -0
- data/fckeditor/editor/_source/internals/fckdebug.js +56 -0
- data/fckeditor/editor/_source/internals/fckdialog.js +38 -0
- data/fckeditor/editor/_source/internals/fckdialog_gecko.js +103 -0
- data/fckeditor/editor/_source/internals/fckdialog_ie.js +48 -0
- data/fckeditor/editor/_source/internals/fckdocumentprocessor.js +243 -0
- data/fckeditor/editor/_source/internals/fckdomtools.js +294 -0
- data/fckeditor/editor/_source/internals/fcklanguagemanager.js +161 -0
- data/fckeditor/editor/_source/internals/fcklisthandler.js +152 -0
- data/fckeditor/editor/_source/internals/fcklistslib.js +60 -0
- data/fckeditor/editor/_source/internals/fckplugins.js +46 -0
- data/fckeditor/editor/_source/internals/fckregexlib.js +95 -0
- data/fckeditor/editor/_source/internals/fckselection.js +24 -0
- data/fckeditor/editor/_source/internals/fckselection_gecko.js +151 -0
- data/fckeditor/editor/_source/internals/fckselection_ie.js +158 -0
- data/fckeditor/editor/_source/internals/fcktablehandler.js +385 -0
- data/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +57 -0
- data/fckeditor/editor/_source/internals/fcktablehandler_ie.js +58 -0
- data/fckeditor/editor/_source/internals/fcktoolbaritems.js +121 -0
- data/fckeditor/editor/_source/internals/fcktoolbarset.js +357 -0
- data/fckeditor/editor/_source/internals/fcktools.js +225 -0
- data/fckeditor/editor/_source/internals/fcktools_gecko.js +235 -0
- data/fckeditor/editor/_source/internals/fcktools_ie.js +214 -0
- data/fckeditor/editor/_source/internals/fckundo_gecko.js +27 -0
- data/fckeditor/editor/_source/internals/fckundo_ie.js +123 -0
- data/fckeditor/editor/_source/internals/fckurlparams.js +39 -0
- data/fckeditor/editor/_source/internals/fckxhtml.js +466 -0
- data/fckeditor/editor/_source/internals/fckxhtml_gecko.js +66 -0
- data/fckeditor/editor/_source/internals/fckxhtml_ie.js +194 -0
- data/fckeditor/editor/_source/internals/fckxhtmlentities.js +345 -0
- data/fckeditor/editor/css/behaviors/disablehandles.htc +15 -0
- data/fckeditor/editor/css/behaviors/showtableborders.htc +36 -0
- data/fckeditor/editor/css/fck_editorarea.css +91 -0
- data/fckeditor/editor/css/fck_internal.css +111 -0
- data/fckeditor/editor/css/fck_showtableborders_gecko.css +42 -0
- data/fckeditor/editor/css/images/fck_anchor.gif +0 -0
- data/fckeditor/editor/css/images/fck_flashlogo.gif +0 -0
- data/fckeditor/editor/css/images/fck_hiddenfield.gif +0 -0
- data/fckeditor/editor/css/images/fck_pagebreak.gif +0 -0
- data/fckeditor/editor/dialog/common/fck_dialog_common.css +83 -0
- data/fckeditor/editor/dialog/common/fck_dialog_common.js +154 -0
- data/fckeditor/editor/dialog/common/fcknumericfield.htc +24 -0
- data/fckeditor/editor/dialog/common/images/locked.gif +0 -0
- data/fckeditor/editor/dialog/common/images/reset.gif +0 -0
- data/fckeditor/editor/dialog/common/images/unlocked.gif +0 -0
- data/fckeditor/editor/dialog/common/moz-bindings.xml +30 -0
- data/fckeditor/editor/dialog/fck_about.html +155 -0
- data/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif +0 -0
- data/fckeditor/editor/dialog/fck_about/logo_fredck.gif +0 -0
- data/fckeditor/editor/dialog/fck_anchor.html +227 -0
- data/fckeditor/editor/dialog/fck_button.html +107 -0
- data/fckeditor/editor/dialog/fck_checkbox.html +107 -0
- data/fckeditor/editor/dialog/fck_colorselector.html +171 -0
- data/fckeditor/editor/dialog/fck_docprops.html +600 -0
- data/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +113 -0
- data/fckeditor/editor/dialog/fck_find.html +173 -0
- data/fckeditor/editor/dialog/fck_flash.html +146 -0
- data/fckeditor/editor/dialog/fck_flash/fck_flash.js +288 -0
- data/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +46 -0
- data/fckeditor/editor/dialog/fck_form.html +105 -0
- data/fckeditor/editor/dialog/fck_hiddenfield.html +116 -0
- data/fckeditor/editor/dialog/fck_image.html +252 -0
- data/fckeditor/editor/dialog/fck_image/fck_image.js +486 -0
- data/fckeditor/editor/dialog/fck_image/fck_image_preview.html +66 -0
- data/fckeditor/editor/dialog/fck_link.html +293 -0
- data/fckeditor/editor/dialog/fck_link/fck_link.js +664 -0
- data/fckeditor/editor/dialog/fck_listprop.html +116 -0
- data/fckeditor/editor/dialog/fck_paste.html +285 -0
- data/fckeditor/editor/dialog/fck_radiobutton.html +107 -0
- data/fckeditor/editor/dialog/fck_replace.html +156 -0
- data/fckeditor/editor/dialog/fck_select.html +176 -0
- data/fckeditor/editor/dialog/fck_select/fck_select.js +169 -0
- data/fckeditor/editor/dialog/fck_smiley.html +105 -0
- data/fckeditor/editor/dialog/fck_source.html +65 -0
- data/fckeditor/editor/dialog/fck_specialchar.html +113 -0
- data/fckeditor/editor/dialog/fck_spellerpages.html +64 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +0 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +87 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +153 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +174 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +196 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +180 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +462 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +71 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +49 -0
- data/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +272 -0
- data/fckeditor/editor/dialog/fck_table.html +286 -0
- data/fckeditor/editor/dialog/fck_tablecell.html +255 -0
- data/fckeditor/editor/dialog/fck_template.html +242 -0
- data/fckeditor/editor/dialog/fck_template/images/template1.gif +0 -0
- data/fckeditor/editor/dialog/fck_template/images/template2.gif +0 -0
- data/fckeditor/editor/dialog/fck_template/images/template3.gif +0 -0
- data/fckeditor/editor/dialog/fck_textarea.html +94 -0
- data/fckeditor/editor/dialog/fck_textfield.html +139 -0
- data/fckeditor/editor/fckdebug.html +153 -0
- data/fckeditor/editor/fckdialog.html +324 -0
- data/fckeditor/editor/fckeditor.html +227 -0
- data/fckeditor/editor/fckeditor.original.html +319 -0
- data/fckeditor/editor/filemanager/browser/default/browser.css +88 -0
- data/fckeditor/editor/filemanager/browser/default/browser.html +154 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/basexml.asp +62 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/class_upload.asp +234 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/commands.asp +183 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/config.asp +49 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp +124 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/io.asp +89 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/asp/util.asp +55 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx +30 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/cfm/config.cfm +99 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm +363 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/lasso/config.lasso +65 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/lasso/connector.lasso +249 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/perl/basexml.pl +63 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/perl/commands.pl +158 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/perl/connector.cgi +137 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/perl/io.pl +131 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/perl/upload_fck.pl +667 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/perl/util.pl +60 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/php/basexml.php +75 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php +222 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/php/config.php +56 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php +113 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/php/io.php +101 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/php/util.php +41 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/py/connector.py +785 -0
- data/fckeditor/editor/filemanager/browser/default/connectors/test.html +180 -0
- data/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +67 -0
- data/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +113 -0
- data/fckeditor/editor/filemanager/browser/default/frmfolders.html +196 -0
- data/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +160 -0
- data/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +65 -0
- data/fckeditor/editor/filemanager/browser/default/frmupload.html +113 -0
- data/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/Folder.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/Folder32.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/html.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/js.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/png.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/images/spacer.gif +0 -0
- data/fckeditor/editor/filemanager/browser/default/js/common.js +55 -0
- data/fckeditor/editor/filemanager/browser/default/js/fckxml.js +130 -0
- data/fckeditor/editor/filemanager/upload/asp/class_upload.asp +234 -0
- data/fckeditor/editor/filemanager/upload/asp/config.asp +52 -0
- data/fckeditor/editor/filemanager/upload/asp/io.asp +29 -0
- data/fckeditor/editor/filemanager/upload/asp/upload.asp +121 -0
- data/fckeditor/editor/filemanager/upload/aspx/upload.aspx +30 -0
- data/fckeditor/editor/filemanager/upload/cfm/config.cfm +98 -0
- data/fckeditor/editor/filemanager/upload/cfm/upload.cfm +168 -0
- data/fckeditor/editor/filemanager/upload/lasso/config.lasso +65 -0
- data/fckeditor/editor/filemanager/upload/lasso/upload.lasso +157 -0
- data/fckeditor/editor/filemanager/upload/php/config.php +56 -0
- data/fckeditor/editor/filemanager/upload/php/upload.php +124 -0
- data/fckeditor/editor/filemanager/upload/php/util.php +40 -0
- data/fckeditor/editor/filemanager/upload/test.html +133 -0
- data/fckeditor/editor/images/anchor.gif +0 -0
- data/fckeditor/editor/images/arrow_ltr.gif +0 -0
- data/fckeditor/editor/images/arrow_rtl.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/angel_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/angry_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/broken_heart.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/cake.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/confused_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/cry_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/devil_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/embaressed_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/envelope.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/heart.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/kiss.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/lightbulb.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/omg_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/regular_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/sad_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/shades_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/teeth_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/thumbs_down.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/thumbs_up.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/tounge_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +0 -0
- data/fckeditor/editor/images/smiley/msn/wink_smile.gif +0 -0
- data/fckeditor/editor/images/spacer.gif +0 -0
- data/fckeditor/editor/js/fckeditorcode_gecko.js +98 -0
- data/fckeditor/editor/js/fckeditorcode_ie.js +99 -0
- data/fckeditor/editor/lang/_getfontformat.html +85 -0
- data/fckeditor/editor/lang/_translationstatus.txt +76 -0
- data/fckeditor/editor/lang/af.js +504 -0
- data/fckeditor/editor/lang/ar.js +504 -0
- data/fckeditor/editor/lang/bg.js +504 -0
- data/fckeditor/editor/lang/bn.js +504 -0
- data/fckeditor/editor/lang/bs.js +504 -0
- data/fckeditor/editor/lang/ca.js +504 -0
- data/fckeditor/editor/lang/cs.js +504 -0
- data/fckeditor/editor/lang/da.js +504 -0
- data/fckeditor/editor/lang/de.js +504 -0
- data/fckeditor/editor/lang/el.js +504 -0
- data/fckeditor/editor/lang/en-au.js +504 -0
- data/fckeditor/editor/lang/en-ca.js +504 -0
- data/fckeditor/editor/lang/en-uk.js +504 -0
- data/fckeditor/editor/lang/en.js +504 -0
- data/fckeditor/editor/lang/eo.js +504 -0
- data/fckeditor/editor/lang/es.js +504 -0
- data/fckeditor/editor/lang/et.js +504 -0
- data/fckeditor/editor/lang/eu.js +505 -0
- data/fckeditor/editor/lang/fa.js +504 -0
- data/fckeditor/editor/lang/fi.js +504 -0
- data/fckeditor/editor/lang/fo.js +504 -0
- data/fckeditor/editor/lang/fr.js +504 -0
- data/fckeditor/editor/lang/gl.js +504 -0
- data/fckeditor/editor/lang/he.js +504 -0
- data/fckeditor/editor/lang/hi.js +504 -0
- data/fckeditor/editor/lang/hr.js +504 -0
- data/fckeditor/editor/lang/hu.js +504 -0
- data/fckeditor/editor/lang/it.js +504 -0
- data/fckeditor/editor/lang/ja.js +504 -0
- data/fckeditor/editor/lang/km.js +504 -0
- data/fckeditor/editor/lang/ko.js +504 -0
- data/fckeditor/editor/lang/lt.js +504 -0
- data/fckeditor/editor/lang/lv.js +504 -0
- data/fckeditor/editor/lang/mn.js +504 -0
- data/fckeditor/editor/lang/ms.js +504 -0
- data/fckeditor/editor/lang/nb.js +504 -0
- data/fckeditor/editor/lang/nl.js +504 -0
- data/fckeditor/editor/lang/no.js +504 -0
- data/fckeditor/editor/lang/pl.js +504 -0
- data/fckeditor/editor/lang/pt-br.js +504 -0
- data/fckeditor/editor/lang/pt.js +504 -0
- data/fckeditor/editor/lang/ro.js +504 -0
- data/fckeditor/editor/lang/ru.js +504 -0
- data/fckeditor/editor/lang/sk.js +504 -0
- data/fckeditor/editor/lang/sl.js +504 -0
- data/fckeditor/editor/lang/sr-latn.js +504 -0
- data/fckeditor/editor/lang/sr.js +504 -0
- data/fckeditor/editor/lang/sv.js +504 -0
- data/fckeditor/editor/lang/th.js +504 -0
- data/fckeditor/editor/lang/tr.js +504 -0
- data/fckeditor/editor/lang/uk.js +504 -0
- data/fckeditor/editor/lang/vi.js +504 -0
- data/fckeditor/editor/lang/zh-cn.js +504 -0
- data/fckeditor/editor/lang/zh.js +504 -0
- data/fckeditor/editor/plugins/autogrow/fckplugin.js +92 -0
- data/fckeditor/editor/plugins/placeholder/fck_placeholder.html +100 -0
- data/fckeditor/editor/plugins/placeholder/fckplugin.js +187 -0
- data/fckeditor/editor/plugins/placeholder/lang/de.js +27 -0
- data/fckeditor/editor/plugins/placeholder/lang/en.js +27 -0
- data/fckeditor/editor/plugins/placeholder/lang/fr.js +27 -0
- data/fckeditor/editor/plugins/placeholder/lang/it.js +27 -0
- data/fckeditor/editor/plugins/placeholder/lang/pl.js +27 -0
- data/fckeditor/editor/plugins/placeholder/placeholder.gif +0 -0
- data/fckeditor/editor/plugins/simplecommands/fckplugin.js +29 -0
- data/fckeditor/editor/plugins/tablecommands/fckplugin.js +32 -0
- data/fckeditor/editor/skins/_fckviewstrips.html +121 -0
- data/fckeditor/editor/skins/default/fck_dialog.css +137 -0
- data/fckeditor/editor/skins/default/fck_editor.css +464 -0
- data/fckeditor/editor/skins/default/fck_strip.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.arrowright.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.collapse.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.end.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.expand.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.separator.gif +0 -0
- data/fckeditor/editor/skins/default/images/toolbar.start.gif +0 -0
- data/fckeditor/editor/skins/office2003/fck_dialog.css +138 -0
- data/fckeditor/editor/skins/office2003/fck_editor.css +476 -0
- data/fckeditor/editor/skins/office2003/fck_strip.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.bg.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.end.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.expand.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.separator.gif +0 -0
- data/fckeditor/editor/skins/office2003/images/toolbar.start.gif +0 -0
- data/fckeditor/editor/skins/silver/fck_dialog.css +141 -0
- data/fckeditor/editor/skins/silver/fck_editor.css +473 -0
- data/fckeditor/editor/skins/silver/fck_strip.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.collapse.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.end.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.expand.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.separator.gif +0 -0
- data/fckeditor/editor/skins/silver/images/toolbar.start.gif +0 -0
- data/fckeditor/fckconfig.js +224 -0
- data/fckeditor/fckeditor.js +214 -0
- data/fckeditor/fckstyles.xml +53 -0
- data/fckeditor/fcktemplates.xml +103 -0
- data/lib/Wiki2GoEditor/Install/editor.rb +39 -0
- data/test/test_install.rb +40 -0
- metadata +517 -0
|
@@ -0,0 +1,504 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
|
3
|
+
* Copyright (C) 2003-2007 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
|
+
* Finnish 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 : "Piilota työkalurivi",
|
|
30
|
+
ToolbarExpand : "Näytä työkalurivi",
|
|
31
|
+
|
|
32
|
+
// Toolbar Items and Context Menu
|
|
33
|
+
Save : "Tallenna",
|
|
34
|
+
NewPage : "Tyhjennä",
|
|
35
|
+
Preview : "Esikatsele",
|
|
36
|
+
Cut : "Leikkaa",
|
|
37
|
+
Copy : "Kopioi",
|
|
38
|
+
Paste : "Liitä",
|
|
39
|
+
PasteText : "Liitä tekstinä",
|
|
40
|
+
PasteWord : "Liitä Wordista",
|
|
41
|
+
Print : "Tulosta",
|
|
42
|
+
SelectAll : "Valitse kaikki",
|
|
43
|
+
RemoveFormat : "Poista muotoilu",
|
|
44
|
+
InsertLinkLbl : "Linkki",
|
|
45
|
+
InsertLink : "Lisää linkki/muokkaa linkkiä",
|
|
46
|
+
RemoveLink : "Poista linkki",
|
|
47
|
+
Anchor : "Lisää ankkuri/muokkaa ankkuria",
|
|
48
|
+
InsertImageLbl : "Kuva",
|
|
49
|
+
InsertImage : "Lisää kuva/muokkaa kuvaa",
|
|
50
|
+
InsertFlashLbl : "Flash",
|
|
51
|
+
InsertFlash : "Lisää/muokkaa Flashia",
|
|
52
|
+
InsertTableLbl : "Taulu",
|
|
53
|
+
InsertTable : "Lisää taulu/muokkaa taulua",
|
|
54
|
+
InsertLineLbl : "Murtoviiva",
|
|
55
|
+
InsertLine : "Lisää murtoviiva",
|
|
56
|
+
InsertSpecialCharLbl: "Erikoismerkki",
|
|
57
|
+
InsertSpecialChar : "Lisää erikoismerkki",
|
|
58
|
+
InsertSmileyLbl : "Hymiö",
|
|
59
|
+
InsertSmiley : "Lisää hymiö",
|
|
60
|
+
About : "FCKeditorista",
|
|
61
|
+
Bold : "Lihavoitu",
|
|
62
|
+
Italic : "Kursivoitu",
|
|
63
|
+
Underline : "Alleviivattu",
|
|
64
|
+
StrikeThrough : "Yliviivattu",
|
|
65
|
+
Subscript : "Alaindeksi",
|
|
66
|
+
Superscript : "Yläindeksi",
|
|
67
|
+
LeftJustify : "Tasaa vasemmat reunat",
|
|
68
|
+
CenterJustify : "Keskitä",
|
|
69
|
+
RightJustify : "Tasaa oikeat reunat",
|
|
70
|
+
BlockJustify : "Tasaa molemmat reunat",
|
|
71
|
+
DecreaseIndent : "Pienennä sisennystä",
|
|
72
|
+
IncreaseIndent : "Suurenna sisennystä",
|
|
73
|
+
Undo : "Kumoa",
|
|
74
|
+
Redo : "Toista",
|
|
75
|
+
NumberedListLbl : "Numerointi",
|
|
76
|
+
NumberedList : "Lisää/poista numerointi",
|
|
77
|
+
BulletedListLbl : "Luottelomerkit",
|
|
78
|
+
BulletedList : "Lisää/poista luottelomerkit",
|
|
79
|
+
ShowTableBorders : "Näytä taulun rajat",
|
|
80
|
+
ShowDetails : "Näytä muotoilu",
|
|
81
|
+
Style : "Tyyli",
|
|
82
|
+
FontFormat : "Muotoilu",
|
|
83
|
+
Font : "Fontti",
|
|
84
|
+
FontSize : "Koko",
|
|
85
|
+
TextColor : "Tekstiväri",
|
|
86
|
+
BGColor : "Taustaväri",
|
|
87
|
+
Source : "Koodi",
|
|
88
|
+
Find : "Etsi",
|
|
89
|
+
Replace : "Korvaa",
|
|
90
|
+
SpellCheck : "Tarkista oikeinkirjoitus",
|
|
91
|
+
UniversalKeyboard : "Universaali näppäimistö",
|
|
92
|
+
PageBreakLbl : "Sivun vaihto",
|
|
93
|
+
PageBreak : "Lisää sivun vaihto",
|
|
94
|
+
|
|
95
|
+
Form : "Lomake",
|
|
96
|
+
Checkbox : "Valintaruutu",
|
|
97
|
+
RadioButton : "Radiopainike",
|
|
98
|
+
TextField : "Tekstikenttä",
|
|
99
|
+
Textarea : "Tekstilaatikko",
|
|
100
|
+
HiddenField : "Piilokenttä",
|
|
101
|
+
Button : "Painike",
|
|
102
|
+
SelectionField : "Valintakenttä",
|
|
103
|
+
ImageButton : "Kuvapainike",
|
|
104
|
+
|
|
105
|
+
FitWindow : "Suurenna editori koko ikkunaan",
|
|
106
|
+
|
|
107
|
+
// Context Menu
|
|
108
|
+
EditLink : "Muokkaa linkkiä",
|
|
109
|
+
CellCM : "Solu",
|
|
110
|
+
RowCM : "Rivi",
|
|
111
|
+
ColumnCM : "Sarake",
|
|
112
|
+
InsertRow : "Lisää rivi",
|
|
113
|
+
DeleteRows : "Poista rivit",
|
|
114
|
+
InsertColumn : "Lisää sarake",
|
|
115
|
+
DeleteColumns : "Poista sarakkeet",
|
|
116
|
+
InsertCell : "Lisää solu",
|
|
117
|
+
DeleteCells : "Poista solut",
|
|
118
|
+
MergeCells : "Yhdistä solut",
|
|
119
|
+
SplitCell : "Jaa solu",
|
|
120
|
+
TableDelete : "Poista taulu",
|
|
121
|
+
CellProperties : "Solun ominaisuudet",
|
|
122
|
+
TableProperties : "Taulun ominaisuudet",
|
|
123
|
+
ImageProperties : "Kuvan ominaisuudet",
|
|
124
|
+
FlashProperties : "Flash ominaisuudet",
|
|
125
|
+
|
|
126
|
+
AnchorProp : "Ankkurin ominaisuudet",
|
|
127
|
+
ButtonProp : "Painikkeen ominaisuudet",
|
|
128
|
+
CheckboxProp : "Valintaruudun ominaisuudet",
|
|
129
|
+
HiddenFieldProp : "Piilokentän ominaisuudet",
|
|
130
|
+
RadioButtonProp : "Radiopainikkeen ominaisuudet",
|
|
131
|
+
ImageButtonProp : "Kuvapainikkeen ominaisuudet",
|
|
132
|
+
TextFieldProp : "Tekstikentän ominaisuudet",
|
|
133
|
+
SelectionFieldProp : "Valintakentän ominaisuudet",
|
|
134
|
+
TextareaProp : "Tekstilaatikon ominaisuudet",
|
|
135
|
+
FormProp : "Lomakkeen ominaisuudet",
|
|
136
|
+
|
|
137
|
+
FontFormats : "Normaali;Muotoiltu;Osoite;Otsikko 1;Otsikko 2;Otsikko 3;Otsikko 4;Otsikko 5;Otsikko 6", //REVIEW : Check _getfontformat.html
|
|
138
|
+
|
|
139
|
+
// Alerts and Messages
|
|
140
|
+
ProcessingXHTML : "Prosessoidaan XHTML:ää. Odota hetki...",
|
|
141
|
+
Done : "Valmis",
|
|
142
|
+
PasteWordConfirm : "Teksti, jonka haluat liittää, näyttää olevan kopioitu Wordista. Haluatko puhdistaa sen ennen liittämistä?",
|
|
143
|
+
NotCompatiblePaste : "Tämä komento toimii vain Internet Explorer 5.5:ssa tai uudemmassa. Haluatko liittää ilman puhdistusta?",
|
|
144
|
+
UnknownToolbarItem : "Tuntemanton työkalu \"%1\"",
|
|
145
|
+
UnknownCommand : "Tuntematon komento \"%1\"",
|
|
146
|
+
NotImplemented : "Komentoa ei ole liitetty sovellukseen",
|
|
147
|
+
UnknownToolbarSet : "Työkalukokonaisuus \"%1\" ei ole olemassa",
|
|
148
|
+
NoActiveX : "Selaimesi turvallisuusasetukset voivat rajoittaa joitain editorin ominaisuuksia. Sinun pitää ottaa käyttöön asetuksista \"Suorita ActiveX komponentit ja -plugin-laajennukset\". Saatat kohdata virheitä ja huomata puuttuvia ominaisuuksia.",
|
|
149
|
+
BrowseServerBlocked : "Resurssiselainta ei voitu avata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.",
|
|
150
|
+
DialogBlocked : "Apuikkunaa ei voitu avaata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.",
|
|
151
|
+
|
|
152
|
+
// Dialogs
|
|
153
|
+
DlgBtnOK : "OK",
|
|
154
|
+
DlgBtnCancel : "Peruuta",
|
|
155
|
+
DlgBtnClose : "Sulje",
|
|
156
|
+
DlgBtnBrowseServer : "Selaa palvelinta",
|
|
157
|
+
DlgAdvancedTag : "Lisäominaisuudet",
|
|
158
|
+
DlgOpOther : "Muut",
|
|
159
|
+
DlgInfoTab : "Info",
|
|
160
|
+
DlgAlertUrl : "Lisää URL",
|
|
161
|
+
|
|
162
|
+
// General Dialogs Labels
|
|
163
|
+
DlgGenNotSet : "<ei asetettu>",
|
|
164
|
+
DlgGenId : "Tunniste",
|
|
165
|
+
DlgGenLangDir : "Kielen suunta",
|
|
166
|
+
DlgGenLangDirLtr : "Vasemmalta oikealle (LTR)",
|
|
167
|
+
DlgGenLangDirRtl : "Oikealta vasemmalle (RTL)",
|
|
168
|
+
DlgGenLangCode : "Kielikoodi",
|
|
169
|
+
DlgGenAccessKey : "Pikanäppäin",
|
|
170
|
+
DlgGenName : "Nimi",
|
|
171
|
+
DlgGenTabIndex : "Tabulaattori indeksi",
|
|
172
|
+
DlgGenLongDescr : "Pitkän kuvauksen URL",
|
|
173
|
+
DlgGenClass : "Tyyliluokat",
|
|
174
|
+
DlgGenTitle : "Avustava otsikko",
|
|
175
|
+
DlgGenContType : "Avustava sisällön tyyppi",
|
|
176
|
+
DlgGenLinkCharset : "Linkitetty kirjaimisto",
|
|
177
|
+
DlgGenStyle : "Tyyli",
|
|
178
|
+
|
|
179
|
+
// Image Dialog
|
|
180
|
+
DlgImgTitle : "Kuvan ominaisuudet",
|
|
181
|
+
DlgImgInfoTab : "Kuvan tiedot",
|
|
182
|
+
DlgImgBtnUpload : "Lähetä palvelimelle",
|
|
183
|
+
DlgImgURL : "Osoite",
|
|
184
|
+
DlgImgUpload : "Lisää kuva",
|
|
185
|
+
DlgImgAlt : "Vaihtoehtoinen teksti",
|
|
186
|
+
DlgImgWidth : "Leveys",
|
|
187
|
+
DlgImgHeight : "Korkeus",
|
|
188
|
+
DlgImgLockRatio : "Lukitse suhteet",
|
|
189
|
+
DlgBtnResetSize : "Alkuperäinen koko",
|
|
190
|
+
DlgImgBorder : "Raja",
|
|
191
|
+
DlgImgHSpace : "Vaakatila",
|
|
192
|
+
DlgImgVSpace : "Pystytila",
|
|
193
|
+
DlgImgAlign : "Kohdistus",
|
|
194
|
+
DlgImgAlignLeft : "Vasemmalle",
|
|
195
|
+
DlgImgAlignAbsBottom: "Aivan alas",
|
|
196
|
+
DlgImgAlignAbsMiddle: "Aivan keskelle",
|
|
197
|
+
DlgImgAlignBaseline : "Alas (teksti)",
|
|
198
|
+
DlgImgAlignBottom : "Alas",
|
|
199
|
+
DlgImgAlignMiddle : "Keskelle",
|
|
200
|
+
DlgImgAlignRight : "Oikealle",
|
|
201
|
+
DlgImgAlignTextTop : "Ylös (teksti)",
|
|
202
|
+
DlgImgAlignTop : "Ylös",
|
|
203
|
+
DlgImgPreview : "Esikatselu",
|
|
204
|
+
DlgImgAlertUrl : "Kirjoita kuvan osoite (URL)",
|
|
205
|
+
DlgImgLinkTab : "Linkki",
|
|
206
|
+
|
|
207
|
+
// Flash Dialog
|
|
208
|
+
DlgFlashTitle : "Flash ominaisuudet",
|
|
209
|
+
DlgFlashChkPlay : "Automaattinen käynnistys",
|
|
210
|
+
DlgFlashChkLoop : "Toisto",
|
|
211
|
+
DlgFlashChkMenu : "Näytä Flash-valikko",
|
|
212
|
+
DlgFlashScale : "Levitä",
|
|
213
|
+
DlgFlashScaleAll : "Näytä kaikki",
|
|
214
|
+
DlgFlashScaleNoBorder : "Ei rajaa",
|
|
215
|
+
DlgFlashScaleFit : "Tarkka koko",
|
|
216
|
+
|
|
217
|
+
// Link Dialog
|
|
218
|
+
DlgLnkWindowTitle : "Linkki",
|
|
219
|
+
DlgLnkInfoTab : "Linkin tiedot",
|
|
220
|
+
DlgLnkTargetTab : "Kohde",
|
|
221
|
+
|
|
222
|
+
DlgLnkType : "Linkkityyppi",
|
|
223
|
+
DlgLnkTypeURL : "Osoite",
|
|
224
|
+
DlgLnkTypeAnchor : "Ankkuri tässä sivussa",
|
|
225
|
+
DlgLnkTypeEMail : "Sähköposti",
|
|
226
|
+
DlgLnkProto : "Protokolla",
|
|
227
|
+
DlgLnkProtoOther : "<muu>",
|
|
228
|
+
DlgLnkURL : "Osoite",
|
|
229
|
+
DlgLnkAnchorSel : "Valitse ankkuri",
|
|
230
|
+
DlgLnkAnchorByName : "Ankkurin nimen mukaan",
|
|
231
|
+
DlgLnkAnchorById : "Ankkurin ID:n mukaan",
|
|
232
|
+
DlgLnkNoAnchors : "<Ei ankkureita tässä dokumentissa>", //REVIEW : Change < and > with ( and )
|
|
233
|
+
DlgLnkEMail : "Sähköpostiosoite",
|
|
234
|
+
DlgLnkEMailSubject : "Aihe",
|
|
235
|
+
DlgLnkEMailBody : "Viesti",
|
|
236
|
+
DlgLnkUpload : "Lisää tiedosto",
|
|
237
|
+
DlgLnkBtnUpload : "Lähetä palvelimelle",
|
|
238
|
+
|
|
239
|
+
DlgLnkTarget : "Kohde",
|
|
240
|
+
DlgLnkTargetFrame : "<kehys>",
|
|
241
|
+
DlgLnkTargetPopup : "<popup ikkuna>",
|
|
242
|
+
DlgLnkTargetBlank : "Uusi ikkuna (_blank)",
|
|
243
|
+
DlgLnkTargetParent : "Emoikkuna (_parent)",
|
|
244
|
+
DlgLnkTargetSelf : "Sama ikkuna (_self)",
|
|
245
|
+
DlgLnkTargetTop : "Päällimmäisin ikkuna (_top)",
|
|
246
|
+
DlgLnkTargetFrameName : "Kohdekehyksen nimi",
|
|
247
|
+
DlgLnkPopWinName : "Popup ikkunan nimi",
|
|
248
|
+
DlgLnkPopWinFeat : "Popup ikkunan ominaisuudet",
|
|
249
|
+
DlgLnkPopResize : "Venytettävä",
|
|
250
|
+
DlgLnkPopLocation : "Osoiterivi",
|
|
251
|
+
DlgLnkPopMenu : "Valikkorivi",
|
|
252
|
+
DlgLnkPopScroll : "Vierityspalkit",
|
|
253
|
+
DlgLnkPopStatus : "Tilarivi",
|
|
254
|
+
DlgLnkPopToolbar : "Vakiopainikkeet",
|
|
255
|
+
DlgLnkPopFullScrn : "Täysi ikkuna (IE)",
|
|
256
|
+
DlgLnkPopDependent : "Riippuva (Netscape)",
|
|
257
|
+
DlgLnkPopWidth : "Leveys",
|
|
258
|
+
DlgLnkPopHeight : "Korkeus",
|
|
259
|
+
DlgLnkPopLeft : "Vasemmalta (px)",
|
|
260
|
+
DlgLnkPopTop : "Ylhäältä (px)",
|
|
261
|
+
|
|
262
|
+
DlnLnkMsgNoUrl : "Linkille on kirjoitettava URL",
|
|
263
|
+
DlnLnkMsgNoEMail : "Kirjoita sähköpostiosoite",
|
|
264
|
+
DlnLnkMsgNoAnchor : "Valitse ankkuri",
|
|
265
|
+
DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING
|
|
266
|
+
|
|
267
|
+
// Color Dialog
|
|
268
|
+
DlgColorTitle : "Valitse väri",
|
|
269
|
+
DlgColorBtnClear : "Tyhjennä",
|
|
270
|
+
DlgColorHighlight : "Kohdalla",
|
|
271
|
+
DlgColorSelected : "Valittu",
|
|
272
|
+
|
|
273
|
+
// Smiley Dialog
|
|
274
|
+
DlgSmileyTitle : "Lisää hymiö",
|
|
275
|
+
|
|
276
|
+
// Special Character Dialog
|
|
277
|
+
DlgSpecialCharTitle : "Valitse erikoismerkki",
|
|
278
|
+
|
|
279
|
+
// Table Dialog
|
|
280
|
+
DlgTableTitle : "Taulun ominaisuudet",
|
|
281
|
+
DlgTableRows : "Rivit",
|
|
282
|
+
DlgTableColumns : "Sarakkeet",
|
|
283
|
+
DlgTableBorder : "Rajan paksuus",
|
|
284
|
+
DlgTableAlign : "Kohdistus",
|
|
285
|
+
DlgTableAlignNotSet : "<ei asetettu>",
|
|
286
|
+
DlgTableAlignLeft : "Vasemmalle",
|
|
287
|
+
DlgTableAlignCenter : "Keskelle",
|
|
288
|
+
DlgTableAlignRight : "Oikealle",
|
|
289
|
+
DlgTableWidth : "Leveys",
|
|
290
|
+
DlgTableWidthPx : "pikseliä",
|
|
291
|
+
DlgTableWidthPc : "prosenttia",
|
|
292
|
+
DlgTableHeight : "Korkeus",
|
|
293
|
+
DlgTableCellSpace : "Solujen väli",
|
|
294
|
+
DlgTableCellPad : "Solujen sisennys",
|
|
295
|
+
DlgTableCaption : "Otsikko",
|
|
296
|
+
DlgTableSummary : "Yhteenveto",
|
|
297
|
+
|
|
298
|
+
// Table Cell Dialog
|
|
299
|
+
DlgCellTitle : "Solun ominaisuudet",
|
|
300
|
+
DlgCellWidth : "Leveys",
|
|
301
|
+
DlgCellWidthPx : "pikseliä",
|
|
302
|
+
DlgCellWidthPc : "prosenttia",
|
|
303
|
+
DlgCellHeight : "Korkeus",
|
|
304
|
+
DlgCellWordWrap : "Tekstikierrätys",
|
|
305
|
+
DlgCellWordWrapNotSet : "<Ei asetettu>",
|
|
306
|
+
DlgCellWordWrapYes : "Kyllä",
|
|
307
|
+
DlgCellWordWrapNo : "Ei",
|
|
308
|
+
DlgCellHorAlign : "Vaakakohdistus",
|
|
309
|
+
DlgCellHorAlignNotSet : "<Ei asetettu>",
|
|
310
|
+
DlgCellHorAlignLeft : "Vasemmalle",
|
|
311
|
+
DlgCellHorAlignCenter : "Keskelle",
|
|
312
|
+
DlgCellHorAlignRight: "Oikealle",
|
|
313
|
+
DlgCellVerAlign : "Pystykohdistus",
|
|
314
|
+
DlgCellVerAlignNotSet : "<Ei asetettu>",
|
|
315
|
+
DlgCellVerAlignTop : "Ylös",
|
|
316
|
+
DlgCellVerAlignMiddle : "Keskelle",
|
|
317
|
+
DlgCellVerAlignBottom : "Alas",
|
|
318
|
+
DlgCellVerAlignBaseline : "Tekstin alas",
|
|
319
|
+
DlgCellRowSpan : "Rivin jatkuvuus",
|
|
320
|
+
DlgCellCollSpan : "Sarakkeen jatkuvuus",
|
|
321
|
+
DlgCellBackColor : "Taustaväri",
|
|
322
|
+
DlgCellBorderColor : "Rajan väri",
|
|
323
|
+
DlgCellBtnSelect : "Valitse...",
|
|
324
|
+
|
|
325
|
+
// Find Dialog
|
|
326
|
+
DlgFindTitle : "Etsi",
|
|
327
|
+
DlgFindFindBtn : "Etsi",
|
|
328
|
+
DlgFindNotFoundMsg : "Etsittyä tekstiä ei löytynyt.",
|
|
329
|
+
|
|
330
|
+
// Replace Dialog
|
|
331
|
+
DlgReplaceTitle : "Korvaa",
|
|
332
|
+
DlgReplaceFindLbl : "Etsi mitä:",
|
|
333
|
+
DlgReplaceReplaceLbl : "Korvaa tällä:",
|
|
334
|
+
DlgReplaceCaseChk : "Sama kirjainkoko",
|
|
335
|
+
DlgReplaceReplaceBtn : "Korvaa",
|
|
336
|
+
DlgReplaceReplAllBtn : "Korvaa kaikki",
|
|
337
|
+
DlgReplaceWordChk : "Koko sana",
|
|
338
|
+
|
|
339
|
+
// Paste Operations / Dialog
|
|
340
|
+
PasteErrorCut : "Selaimesi turva-asetukset eivät salli editorin toteuttaa leikkaamista. Käytä näppäimistöä leikkaamiseen (Ctrl+X).",
|
|
341
|
+
PasteErrorCopy : "Selaimesi turva-asetukset eivät salli editorin toteuttaa kopioimista. Käytä näppäimistöä kopioimiseen (Ctrl+C).",
|
|
342
|
+
|
|
343
|
+
PasteAsText : "Liitä tekstinä",
|
|
344
|
+
PasteFromWord : "Liitä Wordista",
|
|
345
|
+
|
|
346
|
+
DlgPasteMsg2 : "Liitä painamalla (<STRONG>Ctrl+V</STRONG>) ja painamalla <STRONG>OK</STRONG>.",
|
|
347
|
+
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.", //MISSING
|
|
348
|
+
DlgPasteIgnoreFont : "Jätä huomioimatta fonttimääritykset",
|
|
349
|
+
DlgPasteRemoveStyles : "Poista tyylimääritykset",
|
|
350
|
+
DlgPasteCleanBox : "Tyhjennä",
|
|
351
|
+
|
|
352
|
+
// Color Picker
|
|
353
|
+
ColorAutomatic : "Automaattinen",
|
|
354
|
+
ColorMoreColors : "Lisää värejä...",
|
|
355
|
+
|
|
356
|
+
// Document Properties
|
|
357
|
+
DocProps : "Dokumentin ominaisuudet",
|
|
358
|
+
|
|
359
|
+
// Anchor Dialog
|
|
360
|
+
DlgAnchorTitle : "Ankkurin ominaisuudet",
|
|
361
|
+
DlgAnchorName : "Nimi",
|
|
362
|
+
DlgAnchorErrorName : "Ankkurille on kirjoitettava nimi",
|
|
363
|
+
|
|
364
|
+
// Speller Pages Dialog
|
|
365
|
+
DlgSpellNotInDic : "Ei sanakirjassa",
|
|
366
|
+
DlgSpellChangeTo : "Vaihda",
|
|
367
|
+
DlgSpellBtnIgnore : "Jätä huomioimatta",
|
|
368
|
+
DlgSpellBtnIgnoreAll : "Jätä kaikki huomioimatta",
|
|
369
|
+
DlgSpellBtnReplace : "Korvaa",
|
|
370
|
+
DlgSpellBtnReplaceAll : "Korvaa kaikki",
|
|
371
|
+
DlgSpellBtnUndo : "Kumoa",
|
|
372
|
+
DlgSpellNoSuggestions : "Ei ehdotuksia",
|
|
373
|
+
DlgSpellProgress : "Tarkistus käynnissä...",
|
|
374
|
+
DlgSpellNoMispell : "Tarkistus valmis: Ei virheitä",
|
|
375
|
+
DlgSpellNoChanges : "Tarkistus valmis: Yhtään sanaa ei muutettu",
|
|
376
|
+
DlgSpellOneChange : "Tarkistus valmis: Yksi sana muutettiin",
|
|
377
|
+
DlgSpellManyChanges : "Tarkistus valmis: %1 sanaa muutettiin",
|
|
378
|
+
|
|
379
|
+
IeSpellDownload : "Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?",
|
|
380
|
+
|
|
381
|
+
// Button Dialog
|
|
382
|
+
DlgButtonText : "Teksti (arvo)",
|
|
383
|
+
DlgButtonType : "Tyyppi",
|
|
384
|
+
DlgButtonTypeBtn : "Button", //MISSING
|
|
385
|
+
DlgButtonTypeSbm : "Submit", //MISSING
|
|
386
|
+
DlgButtonTypeRst : "Reset", //MISSING
|
|
387
|
+
|
|
388
|
+
// Checkbox and Radio Button Dialogs
|
|
389
|
+
DlgCheckboxName : "Nimi",
|
|
390
|
+
DlgCheckboxValue : "Arvo",
|
|
391
|
+
DlgCheckboxSelected : "Valittu",
|
|
392
|
+
|
|
393
|
+
// Form Dialog
|
|
394
|
+
DlgFormName : "Nimi",
|
|
395
|
+
DlgFormAction : "Toiminto",
|
|
396
|
+
DlgFormMethod : "Tapa",
|
|
397
|
+
|
|
398
|
+
// Select Field Dialog
|
|
399
|
+
DlgSelectName : "Nimi",
|
|
400
|
+
DlgSelectValue : "Arvo",
|
|
401
|
+
DlgSelectSize : "Koko",
|
|
402
|
+
DlgSelectLines : "Rivit",
|
|
403
|
+
DlgSelectChkMulti : "Salli usea valinta",
|
|
404
|
+
DlgSelectOpAvail : "Ominaisuudet",
|
|
405
|
+
DlgSelectOpText : "Teksti",
|
|
406
|
+
DlgSelectOpValue : "Arvo",
|
|
407
|
+
DlgSelectBtnAdd : "Lisää",
|
|
408
|
+
DlgSelectBtnModify : "Muuta",
|
|
409
|
+
DlgSelectBtnUp : "Ylös",
|
|
410
|
+
DlgSelectBtnDown : "Alas",
|
|
411
|
+
DlgSelectBtnSetValue : "Aseta valituksi",
|
|
412
|
+
DlgSelectBtnDelete : "Poista",
|
|
413
|
+
|
|
414
|
+
// Textarea Dialog
|
|
415
|
+
DlgTextareaName : "Nimi",
|
|
416
|
+
DlgTextareaCols : "Sarakkeita",
|
|
417
|
+
DlgTextareaRows : "Rivejä",
|
|
418
|
+
|
|
419
|
+
// Text Field Dialog
|
|
420
|
+
DlgTextName : "Nimi",
|
|
421
|
+
DlgTextValue : "Arvo",
|
|
422
|
+
DlgTextCharWidth : "Leveys",
|
|
423
|
+
DlgTextMaxChars : "Maksimi merkkimäärä",
|
|
424
|
+
DlgTextType : "Tyyppi",
|
|
425
|
+
DlgTextTypeText : "Teksti",
|
|
426
|
+
DlgTextTypePass : "Salasana",
|
|
427
|
+
|
|
428
|
+
// Hidden Field Dialog
|
|
429
|
+
DlgHiddenName : "Nimi",
|
|
430
|
+
DlgHiddenValue : "Arvo",
|
|
431
|
+
|
|
432
|
+
// Bulleted List Dialog
|
|
433
|
+
BulletedListProp : "Luettelon ominaisuudet",
|
|
434
|
+
NumberedListProp : "Numeroinnin ominaisuudet",
|
|
435
|
+
DlgLstStart : "Start", //MISSING
|
|
436
|
+
DlgLstType : "Tyyppi",
|
|
437
|
+
DlgLstTypeCircle : "Kehä",
|
|
438
|
+
DlgLstTypeDisc : "Ympyrä",
|
|
439
|
+
DlgLstTypeSquare : "Neliö",
|
|
440
|
+
DlgLstTypeNumbers : "Numerot (1, 2, 3)",
|
|
441
|
+
DlgLstTypeLCase : "Pienet kirjaimet (a, b, c)",
|
|
442
|
+
DlgLstTypeUCase : "Isot kirjaimet (A, B, C)",
|
|
443
|
+
DlgLstTypeSRoman : "Pienet roomalaiset numerot (i, ii, iii)",
|
|
444
|
+
DlgLstTypeLRoman : "Isot roomalaiset numerot (Ii, II, III)",
|
|
445
|
+
|
|
446
|
+
// Document Properties Dialog
|
|
447
|
+
DlgDocGeneralTab : "Yleiset",
|
|
448
|
+
DlgDocBackTab : "Tausta",
|
|
449
|
+
DlgDocColorsTab : "Värit ja marginaalit",
|
|
450
|
+
DlgDocMetaTab : "Meta-tieto",
|
|
451
|
+
|
|
452
|
+
DlgDocPageTitle : "Sivun nimi",
|
|
453
|
+
DlgDocLangDir : "Kielen suunta",
|
|
454
|
+
DlgDocLangDirLTR : "Vasemmalta oikealle (LTR)",
|
|
455
|
+
DlgDocLangDirRTL : "Oikealta vasemmalle (RTL)",
|
|
456
|
+
DlgDocLangCode : "Kielikoodi",
|
|
457
|
+
DlgDocCharSet : "Merkistäkoodaus",
|
|
458
|
+
DlgDocCharSetCE : "Central European", //MISSING
|
|
459
|
+
DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING
|
|
460
|
+
DlgDocCharSetCR : "Cyrillic", //MISSING
|
|
461
|
+
DlgDocCharSetGR : "Greek", //MISSING
|
|
462
|
+
DlgDocCharSetJP : "Japanese", //MISSING
|
|
463
|
+
DlgDocCharSetKR : "Korean", //MISSING
|
|
464
|
+
DlgDocCharSetTR : "Turkish", //MISSING
|
|
465
|
+
DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING
|
|
466
|
+
DlgDocCharSetWE : "Western European", //MISSING
|
|
467
|
+
DlgDocCharSetOther : "Muu merkistäkoodaus",
|
|
468
|
+
|
|
469
|
+
DlgDocDocType : "Dokumentin tyyppi",
|
|
470
|
+
DlgDocDocTypeOther : "Muu dokumentin tyyppi",
|
|
471
|
+
DlgDocIncXHTML : "Lisää XHTML julistukset",
|
|
472
|
+
DlgDocBgColor : "Taustaväri",
|
|
473
|
+
DlgDocBgImage : "Taustakuva",
|
|
474
|
+
DlgDocBgNoScroll : "Paikallaanpysyvä tausta",
|
|
475
|
+
DlgDocCText : "Teksti",
|
|
476
|
+
DlgDocCLink : "Linkki",
|
|
477
|
+
DlgDocCVisited : "Vierailtu linkki",
|
|
478
|
+
DlgDocCActive : "Aktiivinen linkki",
|
|
479
|
+
DlgDocMargins : "Sivun marginaalit",
|
|
480
|
+
DlgDocMaTop : "Ylä",
|
|
481
|
+
DlgDocMaLeft : "Vasen",
|
|
482
|
+
DlgDocMaRight : "Oikea",
|
|
483
|
+
DlgDocMaBottom : "Ala",
|
|
484
|
+
DlgDocMeIndex : "Hakusanat (pilkulla erotettuna)",
|
|
485
|
+
DlgDocMeDescr : "Kuvaus",
|
|
486
|
+
DlgDocMeAuthor : "Tekijä",
|
|
487
|
+
DlgDocMeCopy : "Tekijänoikeudet",
|
|
488
|
+
DlgDocPreview : "Esikatselu",
|
|
489
|
+
|
|
490
|
+
// Templates Dialog
|
|
491
|
+
Templates : "Pohjat",
|
|
492
|
+
DlgTemplatesTitle : "Sisältöpohjat",
|
|
493
|
+
DlgTemplatesSelMsg : "Valitse pohja editoriin<br>(aiempi sisältö menetetään):",
|
|
494
|
+
DlgTemplatesLoading : "Ladataan listaa pohjista. Hetkinen...",
|
|
495
|
+
DlgTemplatesNoTpl : "(Ei määriteltyjä pohjia)",
|
|
496
|
+
DlgTemplatesReplace : "Replace actual contents", //MISSING
|
|
497
|
+
|
|
498
|
+
// About Dialog
|
|
499
|
+
DlgAboutAboutTab : "Editorista",
|
|
500
|
+
DlgAboutBrowserInfoTab : "Selaimen tiedot",
|
|
501
|
+
DlgAboutLicenseTab : "Lisenssi",
|
|
502
|
+
DlgAboutVersion : "versio",
|
|
503
|
+
DlgAboutInfo : "Lisää tietoa osoitteesta"
|
|
504
|
+
};
|