Index: lams_central/web/fckeditor/editor/_source/commandclasses/fck_othercommands.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/commandclasses/fck_othercommands.js (.../fck_othercommands.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/commandclasses/fck_othercommands.js (.../fck_othercommands.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -149,6 +149,13 @@ // Get the linked field form. var oForm = FCK.LinkedField.form ; + if ( typeof( oForm.onsubmit ) == 'function' ) + { + var bRet = oForm.onsubmit() ; + if ( bRet != null && bRet === false ) + return ; + } + // Submit the form. oForm.submit() ; } @@ -167,7 +174,9 @@ FCKNewPageCommand.prototype.Execute = function() { FCKUndo.SaveUndoStep() ; - FCK.SetHTML( FCKBrowserInfo.IsGecko ? ' ' : '' ) ; + FCK.SetHTML( '' ) ; +// FCK.SetHTML( FCKBrowserInfo.IsGecko ? ' ' : '' ) ; +// FCK.SetHTML( FCKBrowserInfo.IsGecko ? '
' : '' ) ; } FCKNewPageCommand.prototype.GetState = function() @@ -183,7 +192,14 @@ FCKSourceCommand.prototype.Execute = function() { - FCK.SwitchEditMode() ; + if ( FCKBrowserInfo.IsGecko ) + { + var iWidth = screen.width * 0.65 ; + var iHeight = screen.height * 0.65 ; + FCKDialog.OpenDialog( 'FCKDialog_Source', FCKLang.Source, 'dialog/fck_source.html', iWidth, iHeight, null, null, true ) ; + } + else + FCK.SwitchEditMode() ; } FCKSourceCommand.prototype.GetState = function() @@ -208,7 +224,7 @@ FCKUndoCommand.prototype.GetState = function() { if ( FCKBrowserInfo.IsIE ) - return ( FCKUndo.CurrentIndex > 0 ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ) ; + return ( FCKUndo.Typing || FCKUndo.CurrentIndex > 0 ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ) ; else return FCK.GetNamedCommandState( 'Undo' ) ; } @@ -230,7 +246,7 @@ FCKRedoCommand.prototype.GetState = function() { if ( FCKBrowserInfo.IsIE ) - return ( FCKUndo.CurrentIndex < ( FCKUndo.SavedData.length - 1 ) ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ) ; + return ( !FCKUndo.Typing && FCKUndo.CurrentIndex < ( FCKUndo.SavedData.length - 1 ) ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ) ; else return FCK.GetNamedCommandState( 'Redo' ) ; } \ No newline at end of file Index: lams_central/web/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js (.../fckpastewordcommand.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js (.../fckpastewordcommand.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -27,5 +27,8 @@ FCKPasteWordCommand.prototype.GetState = function() { - return FCK.GetNamedCommandState( 'Paste' ) ; + if ( FCKConfig.ForcePasteAsPlainText ) + return FCK_TRISTATE_DISABLED ; + else + return FCK.GetNamedCommandState( 'Paste' ) ; } Index: lams_central/web/fckeditor/editor/_source/commandclasses/fcktablecommand.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/commandclasses/fcktablecommand.js (.../fcktablecommand.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/commandclasses/fcktablecommand.js (.../fcktablecommand.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -23,6 +23,8 @@ FCKTableCommand.prototype.Execute = function() { + FCKUndo.SaveUndoStep() ; + switch ( this.Name ) { case 'TableInsertRow' : Index: lams_central/web/fckeditor/editor/_source/globals/fckeditorapi.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/globals/fckeditorapi.js (.../fckeditorapi.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/globals/fckeditorapi.js (.../fckeditorapi.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -30,7 +30,7 @@ FCKeditorAPI.__Instances = new Object() ; // Set the current version. - FCKeditorAPI.Version = '2.0 FC' ; + FCKeditorAPI.Version = '2.0' ; // Function used to get a instance of an existing editor present in the // page. Index: lams_central/web/fckeditor/editor/_source/internals/fck.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck.js (.../fck.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck.js (.../fck.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -23,9 +23,39 @@ FCK.Status = FCK_STATUS_NOTLOADED ; FCK.EditMode = FCK_EDITMODE_WYSIWYG ; -// First try to get the Linked field using its ID. -FCK.LinkedField = window.parent.document.getElementById( FCK.Name ) ; +// There is a bug on IE... getElementById returns any META tag that has the +// name set to the ID you are looking for. So the best way in to get the array +// by names and look for the correct one. -// If no linked field is available with that ID, try with the "Name". -if ( !FCK.LinkedField ) - FCK.LinkedField = window.parent.document.getElementsByName( FCK.Name )[0] ; +var aElements = window.parent.document.getElementsByName( FCK.Name ) ; +var i = 0; +while ( FCK.LinkedField = aElements[i++] ) +{ + if ( FCK.LinkedField.tagName == 'INPUT' || FCK.LinkedField.tagName == 'TEXTAREA' ) + break ; +} + +var FCKTempBin = new Object() ; +FCKTempBin.Elements = new Array() ; + +FCKTempBin.AddElement = function( element ) +{ + var iIndex = FCKTempBin.Elements.length ; + FCKTempBin.Elements[ iIndex ] = element ; + return iIndex ; +} + +FCKTempBin.RemoveElement = function( index ) +{ + var e = FCKTempBin.Elements[ index ] ; + FCKTempBin.Elements[ index ] = null ; + return e ; +} + +FCKTempBin.Reset = function() +{ + var i = 0 ; + while ( i < FCKTempBin.Elements.length ) + FCKTempBin.Elements[ i++ ] == null ; + FCKTempBin.Elements.length = 0 ; +} \ No newline at end of file Index: lams_central/web/fckeditor/editor/_source/internals/fck_1.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_1.js (.../fck_1.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_1.js (.../fck_1.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -31,8 +31,8 @@ // The Base Path of the editor is saved to rebuild relative URL (IE issue). // this.BaseUrl = this.EditorDocument.location.protocol + '//' + this.EditorDocument.location.host ; -// if ( FCKBrowserInfo.IsGecko ) -// this.MakeEditable() ; + if ( FCKBrowserInfo.IsGecko ) + this.MakeEditable() ; // Set the editor's startup contents this.SetHTML( FCKTools.GetLinkedFieldValue() ) ; @@ -163,7 +163,12 @@ if ( FCKConfig.FullPage ) var sXHTML = FCKXHtml.GetXHTML( this.EditorDocument.getElementsByTagName( 'html' )[0], true, format ) ; else - var sXHTML = FCKXHtml.GetXHTML( this.EditorDocument.body, false, format ) ; + { + if ( FCKConfig.IgnoreEmptyParagraphValue && this.EditorDocument.body.innerHTML == '

 

' ) + var sXHTML = '' ; + else + var sXHTML = FCKXHtml.GetXHTML( this.EditorDocument.body, false, format ) ; + } if ( bSource ) this.SwitchEditMode() ; @@ -211,3 +216,109 @@ { FCK.RegisteredDoubleClickHandlers[ tag.toUpperCase() ] = handlerFunction ; } + +FCK.OnAfterSetHTML = function() +{ + var oProcessor, i = 0 ; + while( oProcessor = FCKDocumentProcessors[i++] ) + oProcessor.ProcessDocument( FCK.EditorDocument ) ; + + this.Events.FireEvent( 'OnAfterSetHTML' ) ; +} + +// Advanced document processors. + +var FCKDocumentProcessors = new Array() ; + +var FCKDocumentProcessors_CreateFakeImage = function( fakeClass, realElement ) +{ + var oImg = FCK.EditorDocument.createElement( 'IMG' ) ; + oImg.className = fakeClass ; + oImg.src = FCKConfig.FullBasePath + 'images/spacer.gif' ; + oImg.setAttribute( '_fckfakelement', 'true', 0 ) ; + oImg.setAttribute( '_fckrealelement', FCKTempBin.AddElement( realElement ), 0 ) ; + return oImg ; +} + +// Link Anchors +var FCKAnchorsProcessor = new Object() ; +FCKAnchorsProcessor.ProcessDocument = function( document ) +{ + var aLinks = document.getElementsByTagName( 'A' ) ; + + var oLink ; + var i = aLinks.length - 1 ; + while ( i >= 0 && ( oLink = aLinks[i--] ) ) + { + // If it is anchor. + if ( oLink.name.length > 0 && ( !oLink.getAttribute('href') || oLink.getAttribute('href').length == 0 ) ) + { + var oImg = FCKDocumentProcessors_CreateFakeImage( 'FCK__Anchor', oLink.cloneNode(true) ) ; + oImg.setAttribute( '_fckanchor', 'true', 0 ) ; + + oLink.parentNode.insertBefore( oImg, oLink ) ; + oLink.parentNode.removeChild( oLink ) ; + } + } +} + +FCKDocumentProcessors.addItem( FCKAnchorsProcessor ) ; + +// Flash Embeds. +var FCKFlashProcessor = new Object() ; +FCKFlashProcessor.ProcessDocument = function( document ) +{ + /* + Sample code: + This is some sample text. You are  using FCKeditor. + */ + + var aEmbeds = document.getElementsByTagName( 'EMBED' ) ; + + var oEmbed ; + var i = aEmbeds.length - 1 ; + while ( i >= 0 && ( oEmbed = aEmbeds[i--] ) ) + { + if ( oEmbed.src.endsWith( '.swf', true ) ) + { + var oImg = FCKDocumentProcessors_CreateFakeImage( 'FCK__Flash', oEmbed.cloneNode(true) ) ; + oImg.setAttribute( '_fckflash', 'true', 0 ) ; + + FCKFlashProcessor.RefreshView( oImg, oEmbed ) ; + + oEmbed.parentNode.insertBefore( oImg, oEmbed ) ; + oEmbed.parentNode.removeChild( oEmbed ) ; + +// oEmbed.setAttribute( '_fckdelete', 'true', 0) ; +// oEmbed.style.display = 'none' ; +// oEmbed.hidden = true ; + } + } +} + +FCKFlashProcessor.RefreshView = function( placholderImage, originalEmbed ) +{ + if ( originalEmbed.width > 0 ) + placholderImage.style.width = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.width ) ; + + if ( originalEmbed.height > 0 ) + placholderImage.style.height = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.height ) ; +} + +FCKDocumentProcessors.addItem( FCKFlashProcessor ) ; + +FCK.GetRealElement = function( fakeElement ) +{ + var e = FCKTempBin.Elements[ fakeElement.getAttribute('_fckrealelement') ] ; + + if ( fakeElement.getAttribute('_fckflash') ) + { + if ( fakeElement.style.width.length > 0 ) + e.width = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.width ) ; + + if ( fakeElement.style.height.length > 0 ) + e.height = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.height ) ; + } + + return e ; +} \ No newline at end of file Index: lams_central/web/fckeditor/editor/_source/internals/fck_1_gecko.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_1_gecko.js (.../fck_1_gecko.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_1_gecko.js (.../fck_1_gecko.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -21,6 +21,13 @@ FCK.InitializeBehaviors = function() { + // Enable table borders visibility. + if ( FCKConfig.ShowBorders ) + { + var oStyle = FCKTools.AppendStyleSheet( this.EditorDocument, FCKConfig.FullBasePath + 'css/fck_showtableborders_gecko.css' ) ; + oStyle.setAttribute( '_fcktemp', 'true' ) ; + } + // Disable Right-Click var oOnContextMenu = function( e ) { @@ -29,32 +36,23 @@ } this.EditorDocument.addEventListener( 'contextmenu', oOnContextMenu, true ) ; - /* - TODO: - This is not working... on Gecko there is no "OnPaste" event that - can prevent the user to paste. - I've tried with the OnKeyDown event for the "CTRL-V" key "down", but the - paste still occours (preventDefault does nothing in this case). - + // Handle pasting operations. var oOnKeyDown = function( e ) { if ( e.ctrlKey && !e.shiftKey && !e.altKey ) { // Char 86/118 = V/v if ( e.which == 86 || e.which == 118 ) { - if ( FCK.Status == FCK_STATUS_COMPLETE ) + if ( FCK.Status != FCK_STATUS_COMPLETE || !FCK.Events.FireEvent( "OnPaste" ) ) { - if ( !FCK.Events.FireEvent( "OnPaste" ) ) - e.preventDefault() ; - } - else e.preventDefault() ; + e.stopPropagation() ; + } } } } - this.EditorDocument.addEventListener( 'keydown', oOnKeyDown, true ) ; - */ + this.EditorDocument.addEventListener( 'keypress', oOnKeyDown, true ) ; this.ExecOnSelectionChange = function() { @@ -161,7 +159,7 @@ this._Initialized = true ; } - + this.EditorDocument.open() ; this.EditorDocument.write( sHtml ) ; this.EditorDocument.close() ; @@ -187,38 +185,43 @@ sHtml += ' ' ; */ - + if ( !this._Initialized ) { this.EditorDocument.dir = FCKConfig.ContentLangDirection ; - + var sHtml = '' + '' + '' ; - + sHtml += FCK.TempBaseTag ; this.EditorDocument.getElementsByTagName("HEAD")[0].innerHTML = sHtml ; - + this.InitializeBehaviors() ; this._Initialized = true ; - } + } // On Gecko we must disable editing before setting the BODY innerHTML. - FCK.EditorDocument.designMode = 'off' ; +// FCK.EditorDocument.designMode = 'off' ; - FCK.EditorDocument.body.innerHTML = html ; - + if ( html.length == 0 ) + FCK.EditorDocument.body.innerHTML = '
' ; + else if ( FCKRegexLib.EmptyParagraph.test( html ) ) + FCK.EditorDocument.body.innerHTML = html.replace( FCKRegexLib.TagBody, '>
<' ) ; + else + FCK.EditorDocument.body.innerHTML = html ; + // On Gecko we must set the desingMode on again after setting the BODY innerHTML. - FCK.EditorDocument.designMode = 'on' ; +// FCK.EditorDocument.designMode = 'on' ; // Tell Gecko to use or not the tag for the bold, italic and underline. FCK.EditorDocument.execCommand( 'useCSS', false, !FCKConfig.GeckoUseSPAN ) ; } - this.Events.FireEvent( 'OnAfterSetHTML' ) ; + FCK.OnAfterSetHTML() ; } else document.getElementById('eSourceField').value = html ; Index: lams_central/web/fckeditor/editor/_source/internals/fck_1_ie.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_1_ie.js (.../fck_1_ie.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_1_ie.js (.../fck_1_ie.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -23,11 +23,25 @@ // errors when using a differente BaseHref. FCK._BehaviorsStyle = '' ; + INPUT { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/hiddenfield.htc) ; } \ + INPUT { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; } \ + TEXTAREA { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; } \ + SELECT { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ; +if ( FCKConfig.ShowBorders ) + FCK._BehaviorsStyle += 'TABLE { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/showtableborders.htc) ; }' ; + +if ( FCKConfig.DisableImageHandles ) + FCK._BehaviorsStyle += 'IMG { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ; + +if ( FCKConfig.DisableTableHandles ) + FCK._BehaviorsStyle += 'TABLE { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ; + +// Disable anchors handles +FCK._BehaviorsStyle += '.FCK__Anchor { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ; + +FCK._BehaviorsStyle += '' ; + function Doc_OnMouseDown() { FCK.Focus() ; @@ -47,6 +61,7 @@ function Doc_OnContextMenu() { var e = FCK.EditorWindow.event ; + FCK.ShowContextMenu( e.screenX, e.screenY ) ; return false ; } @@ -82,10 +97,28 @@ FCK.InsertHtml( window.FCKTabHTML ) ; return false ; } - + return true ; } +function Doc_OnKeyDownUndo() +{ + if ( !FCKUndo.Typing ) + { + FCKUndo.SaveUndoStep() ; + FCKUndo.Typing = true ; + FCK.Events.FireEvent( "OnSelectionChange" ) ; + } + + FCKUndo.TypesCount++ ; + + if ( FCKUndo.TypesCount > FCKUndo.MaxTypes ) + { + FCKUndo.TypesCount = 0 ; + FCKUndo.SaveUndoStep() ; + } +} + function Doc_OnDblClick() { FCK.OnDoubleClick( FCK.EditorWindow.event.srcElement ) ; @@ -124,6 +157,8 @@ this.EditorDocument.attachEvent("onkeydown", Doc_OnKeyDown ) ; } + this.EditorDocument.attachEvent("onkeydown", Doc_OnKeyDownUndo ) ; + this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ; // Catch cursor movements @@ -172,8 +207,13 @@ { sHtml = FCKConfig.DocType + - '' + - '' + + '' + '' + '' ; @@ -189,7 +229,7 @@ this.InitializeBehaviors() ; this.EditorDocument.body.contentEditable = true ; - this.Events.FireEvent( 'OnAfterSetHTML' ) ; + FCK.OnAfterSetHTML() ; // TODO: Wait stable version and remove the following commented lines. // this.EditorDocument.body.innerHTML = '' ; @@ -202,31 +242,6 @@ document.getElementById('eSourceField').value = html ; } -// TODO: Wait stable version and remove the following commented lines. -/* -FCK.CheckRelativeLinks = function() -{ - // IE automatically change relative URLs to absolute, so we use a trick - // to solve this problem (the document base points to "fckeditor:". - - for ( var i = 0 ; i < this.EditorDocument.links.length ; i++ ) - { - var e = this.EditorDocument.links[i] ; - - if ( e.href.startsWith( FCK.BaseUrl ) ) - e.href = e.href.remove( 0, FCK.BaseUrl.length ) ; - } - - for ( var i = 0 ; i < this.EditorDocument.images.length ; i++ ) - { - var e = this.EditorDocument.images[i] ; - - if ( e.src.startsWith( FCK.BaseUrl ) ) - e.src = e.src.remove( 0, FCK.BaseUrl.length ) ; - } -} -*/ - FCK.InsertHtml = function( html ) { FCK.Focus() ; Index: lams_central/web/fckeditor/editor/_source/internals/fck_2.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_2.js (.../fck_2.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_2.js (.../fck_2.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -66,40 +66,81 @@ return sValue ? sValue : '' ; } -FCK.CleanAndPaste = function( html ) +FCK.PasteFromWord = function() { + FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteFromWord, 'dialog/fck_paste.html', 400, 330, 'Word' ) ; +} + +// TODO: Wait Stable and remove this block. +//FCK.CleanAndPaste = function( html ) +//{ // Remove all SPAN tags - html = html.replace(/<\/?SPAN[^>]*>/gi, "" ); +// html = html.replace(/<\/?SPAN[^>]*>/gi, "" ); + +// html = html.replace(/ <\/o:p>/g, "") ; +// html = html.replace(/<\/o:p>/g, "") ; + + // Remove mso-xxx styles. +// html = html.replace( /mso-.[^:]:.[^;"]/g, "" ) ; + // Remove Class attributes - html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ; +// html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ; + // Remove Style attributes - html = html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ; +// html = html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ; + // Remove Lang attributes - html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ; +// html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ; + // Remove XML elements and declarations - html = html.replace(/<\\?\?xml[^>]*>/gi, "") ; +// html = html.replace(/<\\?\?xml[^>]*>/gi, "") ; + // Remove Tags with XML namespace declarations: - html = html.replace(/<\/?\w+:[^>]*>/gi, "") ; +// html = html.replace(/<\/?\w+:[^>]*>/gi, "") ; + // Replace the   - html = html.replace(/ /, " " ); +// html = html.replace(/ /, " " ); + // Replace the   from the beggining. +// html = html.replace(/^ [\s\r\n]*/, ""); + // Transform

to

- var re = new RegExp("(]*>.*?)(<\/P>)","gi") ; // Different because of a IE 5.0 error - html = html.replace( re, "" ) ; +// var re = new RegExp("(]*>.*?)(<\/P>)","gi") ; // Different because of a IE 5.0 error +// html = html.replace( re, "" ) ; - FCK.InsertHtml( html ) ; -} +// FCK.InsertHtml( html ) ; +//} FCK.Preview = function() { - var oWindow = window.open( '', null, 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes' ) ; + var iWidth = screen.width * 0.8 ; + var iHeight = screen.height * 0.7 ; + var iLeft = ( screen.width - iWidth ) / 2 ; + var oWindow = window.open( '', null, 'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=' + iWidth + ',height=' + iHeight + ',left=' + iLeft ) ; - var sHTML = '' + FCK.GetHTML() + '' ; + var sHTML ; + if ( FCKConfig.FullPage ) + { + if ( FCK.TempBaseTag.length > 0 ) + sHTML = FCK.GetXHTML().replace( FCKRegexLib.HeadCloser, FCK.TempBaseTag + '' ) ; + else + sHTML = FCK.GetXHTML() ; + } + else + { + sHTML = + FCKConfig.DocType + + '' + + '' + FCKLang.Preview + '' + + '' + + FCK.TempBaseTag + + '' + + FCK.GetXHTML() + + '' ; + } + oWindow.document.write( sHTML ); oWindow.document.close(); - - // TODO: The CSS of the editor area must be configurable. - // oWindow.document.createStyleSheet( config.EditorAreaCSS ); } FCK.SwitchEditMode = function() Index: lams_central/web/fckeditor/editor/_source/internals/fck_2_gecko.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_2_gecko.js (.../fck_2_gecko.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_2_gecko.js (.../fck_2_gecko.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -84,7 +84,7 @@ { if ( confirm( FCKLang["PasteWordConfirm"] ) ) { - FCK.CleanAndPaste( sHTML ) ; + FCK.PasteFromWord() ; return false ; } } @@ -161,7 +161,7 @@ this.InsertHtml( sText ) ; */ } - +/* FCK.PasteFromWord = function() { // TODO: Implement the "Paste as Plain Text" code. @@ -170,7 +170,7 @@ // FCK.CleanAndPaste( FCK.GetClipboardHTML() ) ; } - +*/ FCK.GetClipboardHTML = function() { return '' ; Index: lams_central/web/fckeditor/editor/_source/internals/fck_2_ie.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_2_ie.js (.../fck_2_ie.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_2_ie.js (.../fck_2_ie.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -56,7 +56,7 @@ { if ( confirm( FCKLang["PasteWordConfirm"] ) ) { - FCK.CleanAndPaste( sHTML ) ; + FCK.PasteFromWord() ; return false ; } } @@ -76,12 +76,12 @@ // Insert the resulting data in the editor. this.InsertHtml( sText ) ; } - +/* FCK.PasteFromWord = function() { FCK.CleanAndPaste( FCK.GetClipboardHTML() ) ; } - +*/ FCK.InsertElement = function( element ) { FCK.InsertHtml( element.outerHTML ) ; Index: lams_central/web/fckeditor/editor/_source/internals/fck_onload.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fck_onload.js (.../fck_onload.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fck_onload.js (.../fck_onload.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -21,6 +21,11 @@ { if ( e ) e.preventDefault() ; // The Gecko way. + else + { + if ( event.srcElement == document.getElementById('eSourceField') ) + return true ; + } return false ; // The IE way. } @@ -51,15 +56,15 @@ // On IE, some circular references must be cleared to avoid memory leak. function Window_OnBeforeUnload() { - FCKToolbarSet.Collapse() ; +// if ( typeof( FCKToolbarSet ) != 'undefined' ) +// FCKToolbarSet.Collapse() ; - var e ; + var d, e ; - for ( var j = 0 ; j < aCleanupDocs.length ; j++ ) + var j = 0 ; + while ( d = aCleanupDocs[j++] ) { - var d = aCleanupDocs[j] ; var i = 0 ; - while ( e = d.getElementsByTagName("DIV").item(i++) ) { if ( e.FCKToolbarButton ) @@ -80,10 +85,12 @@ } aCleanupDocs[j] = null ; - d = null ; } + + if ( typeof( FCKTempBin ) != 'undefined' ) + FCKTempBin.Reset() ; } - window.attachEvent( "onbeforeunload", Window_OnBeforeUnload ) ; + window.attachEvent( "onunload", Window_OnBeforeUnload ) ; } // The editor startup follows these steps: @@ -151,6 +158,8 @@ function LoadStyles() { + if( window.console ) window.console.log( 'LoadStyles()' ) ; // @Packager.Compactor.RemoveLine + FCKScriptLoader.OnEmpty = LoadScripts ; // Load the active skin CSS. @@ -160,6 +169,8 @@ function LoadScripts() { + if( window.console ) window.console.log( 'LoadScripts()' ) ; // @Packager.Compactor.RemoveLine + FCKScriptLoader.OnEmpty = null ; // @Packager.Compactor.Remove.Start @@ -193,13 +204,19 @@ function LoadLanguageFile() { + if( window.console ) window.console.log( 'LoadLanguageFile()' ) ; // @Packager.Compactor.RemoveLine + FCKScriptLoader.OnEmpty = LoadEditor ; + if( window.console ) window.console.log( 'Active Language: ' + FCKLanguageManager.ActiveLanguage.Code ) ; // @Packager.Compactor.RemoveLine + FCKScriptLoader.AddScript( 'lang/' + FCKLanguageManager.ActiveLanguage.Code + '.js' ) ; } function LoadEditor() { + if( window.console ) window.console.log( 'LoadEditor()' ) ; // @Packager.Compactor.RemoveLine + // Removes the OnEmpty listener. FCKScriptLoader.OnEmpty = null ; Index: lams_central/web/fckeditor/editor/_source/internals/fckbrowserinfo.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckbrowserinfo.js (.../fckbrowserinfo.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckbrowserinfo.js (.../fckbrowserinfo.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -23,7 +23,8 @@ var sAgent = navigator.userAgent.toLowerCase() ; - FCKBrowserInfo.IsIE = sAgent.indexOf("msie") != -1 ; + FCKBrowserInfo.IsIE = ( sAgent.indexOf("msie") != -1 ) ; FCKBrowserInfo.IsGecko = !FCKBrowserInfo.IsIE ; - FCKBrowserInfo.IsNetscape = sAgent.indexOf("netscape") != -1 ; -} \ No newline at end of file + FCKBrowserInfo.IsSafari = ( sAgent.indexOf("safari") != -1 ) ; + FCKBrowserInfo.IsNetscape = ( sAgent.indexOf("netscape") != -1 ) ; +} Index: lams_central/web/fckeditor/editor/_source/internals/fckcommands.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckcommands.js (.../fckcommands.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckcommands.js (.../fckcommands.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -44,6 +44,7 @@ case 'Replace' : oCommand = new FCKDialogCommand( 'Replace' , FCKLang.DlgReplaceTitle , 'dialog/fck_replace.html' , 340, 200 ) ; break ; case 'Image' : oCommand = new FCKDialogCommand( 'Image' , FCKLang.DlgImgTitle , 'dialog/fck_image.html' , 450, 400 ) ; break ; + case 'Flash' : oCommand = new FCKDialogCommand( 'Flash' , FCKLang.DlgFlashTitle , 'dialog/fck_flash.html' , 450, 400 ) ; break ; case 'SpecialChar' : oCommand = new FCKDialogCommand( 'SpecialChar', FCKLang.DlgSpecialCharTitle , 'dialog/fck_specialchar.html' , 400, 300 ) ; break ; case 'Smiley' : oCommand = new FCKDialogCommand( 'Smiley' , FCKLang.DlgSmileyTitle , 'dialog/fck_smiley.html' , FCKConfig.SmileyWindowWidth, FCKConfig.SmileyWindowHeight ) ; break ; case 'Table' : oCommand = new FCKDialogCommand( 'Table' , FCKLang.DlgTableTitle , 'dialog/fck_table.html' , 400, 250 ) ; break ; Index: lams_central/web/fckeditor/editor/_source/internals/fckcontextmenu.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckcontextmenu.js (.../fckcontextmenu.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckcontextmenu.js (.../fckcontextmenu.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -108,6 +108,9 @@ case 'Image' : return new FCKContextMenuGroup( true, this, 'Image', FCKLang.ImageProperties, true ) ; + case 'Flash' : + return new FCKContextMenuGroup( true, this, 'Flash', FCKLang.FlashProperties, true ) ; + case 'Form' : return new FCKContextMenuGroup( true, this, 'Form', FCKLang.FormProp, true ) ; @@ -161,14 +164,16 @@ // Set items visibility. - var bIsAnchor = ( sTagName == 'A' && oTag.name.length > 0 && oTag.href.length == 0 ) ; +// var bIsAnchor = ( sTagName == 'A' && oTag.name.length > 0 && oTag.href.length == 0 ) ; - if ( this.Groups['Anchor'] ) this.Groups['Anchor'].SetVisible( bIsAnchor ) ; - if ( this.Groups['Link'] ) this.Groups['Link'].SetVisible( !bIsAnchor && FCK.GetNamedCommandState( 'Unlink' ) != FCK_TRISTATE_DISABLED ) ; + if ( this.Groups['Link'] ) this.Groups['Link'].SetVisible( /*!bIsAnchor &&*/ FCK.GetNamedCommandState( 'Unlink' ) != FCK_TRISTATE_DISABLED ) ; if ( this.Groups['TableCell'] ) this.Groups['TableCell'].SetVisible( sTagName != 'TABLE' && FCKSelection.HasAncestorNode('TABLE') ) ; if ( this.Groups['Table'] ) this.Groups['Table'].SetVisible( sTagName == 'TABLE' ) ; - if ( this.Groups['Image'] ) this.Groups['Image'].SetVisible( sTagName == 'IMG' ) ; + + if ( this.Groups['Image'] ) this.Groups['Image'].SetVisible( sTagName == 'IMG' && !oTag.getAttribute('_fckflash') && !oTag.getAttribute('_fckanchor') ) ; + if ( this.Groups['Flash'] ) this.Groups['Flash'].SetVisible( sTagName == 'IMG' && oTag.getAttribute('_fckflash') ) ; + if ( this.Groups['Anchor'] ) this.Groups['Anchor'].SetVisible( sTagName == 'IMG' && oTag.getAttribute('_fckanchor') ) ; if ( this.Groups['BulletedList'] ) this.Groups['BulletedList'].SetVisible( FCKSelection.HasAncestorNode('UL') ) ; if ( this.Groups['NumberedList'] ) this.Groups['NumberedList'].SetVisible( FCKSelection.HasAncestorNode('OL') ) ; Index: lams_central/web/fckeditor/editor/_source/internals/fckcoreextensions.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckcoreextensions.js (.../fckcoreextensions.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckcoreextensions.js (.../fckcoreextensions.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -39,15 +39,21 @@ } // Extends the String object, creating a "endsWith" method on it. -String.prototype.endsWith = function( value ) +String.prototype.endsWith = function( value, ignoreCase ) { var L1 = this.length ; var L2 = value.length ; if ( L2 > L1 ) return false ; - - return ( L2 == 0 || this.substr( L1 - L2, L2 ) == value ) ; + + if ( ignoreCase ) + { + var oRegex = new RegExp( value + '$' , 'i' ) ; + return oRegex.test( this ) ; + } + else + return ( L2 == 0 || this.substr( L1 - L2, L2 ) == value ) ; } String.prototype.remove = function( start, length ) Index: lams_central/web/fckeditor/editor/_source/internals/fckdialog.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckdialog.js (.../fckdialog.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckdialog.js (.../fckdialog.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -18,7 +18,7 @@ var FCKDialog = new Object() ; // This method opens a dialog window using the standard dialog template. -FCKDialog.OpenDialog = function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow ) +FCKDialog.OpenDialog = function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow, resizable ) { // Setup the dialog info. var oDialogInfo = new Object() ; @@ -28,5 +28,5 @@ oDialogInfo.CustomValue = customValue ; // Optional var sUrl = FCKConfig.BasePath + 'fckdialog.html' ; - this.Show( oDialogInfo, dialogName, sUrl, width, height, parentWindow ) ; + this.Show( oDialogInfo, dialogName, sUrl, width, height, parentWindow, resizable ) ; } Index: lams_central/web/fckeditor/editor/_source/internals/fckdialog_gecko.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckdialog_gecko.js (.../fckdialog_gecko.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckdialog_gecko.js (.../fckdialog_gecko.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -15,12 +15,13 @@ * Frederico Caldeira Knabben (fredck@fckeditor.net) */ -FCKDialog.Show = function( dialogInfo, dialogName, pageUrl, dialogWidth, dialogHeight, parentWindow ) +FCKDialog.Show = function( dialogInfo, dialogName, pageUrl, dialogWidth, dialogHeight, parentWindow, resizable ) { var iTop = (screen.height - dialogHeight) / 2 ; var iLeft = (screen.width - dialogWidth) / 2 ; - var sOption = "location=no,menubar=no,resizable=no,toolbar=no,dependent=yes,dialog=yes,minimizable=no,modal=yes,alwaysRaised=yes" + + var sOption = "location=no,menubar=no,toolbar=no,dependent=yes,dialog=yes,minimizable=no,modal=yes,alwaysRaised=yes" + + ",resizable=" + ( resizable ? 'yes' : 'no' ) + ",width=" + dialogWidth + ",height=" + dialogHeight + ",top=" + iTop + @@ -29,7 +30,7 @@ if ( !parentWindow ) parentWindow = window ; - var oWindow = parentWindow.open( '', 'FCKEditorDialog_' + dialogName, sOption, true ) ; + var oWindow = parentWindow.open( '', 'FCKeditorDialog_' + dialogName, sOption, true ) ; oWindow.moveTo( iLeft, iTop ) ; oWindow.resizeTo( dialogWidth, dialogHeight ) ; oWindow.focus() ; Index: lams_central/web/fckeditor/editor/_source/internals/fckregexlib.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckregexlib.js (.../fckregexlib.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckregexlib.js (.../fckregexlib.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -24,7 +24,7 @@ FCKRegexLib.ObjectElements = /^(?:IMG|TABLE|TR|TD|INPUT|SELECT|TEXTAREA|HR|OBJECT)$/i ; // Block Elements. -FCKRegexLib.BlockElements = /^(?:P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI)$/i ; +FCKRegexLib.BlockElements = /^(?:P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|TD)$/i ; // Elements marked as empty "Empty" in the XHTML DTD. FCKRegexLib.EmptyElements = /^(?:BASE|META|LINK|HR|BR|PARAM|IMG|AREA|INPUT)$/i ; @@ -46,4 +46,15 @@ FCKRegexLib.TableBorderClass = /\s*FCK__ShowTableBorders\s*/ ; -FCKRegexLib.ElementName = /^[A-Za-z_:][\w.-:]*$/ ; \ No newline at end of file +// Validate element names. +FCKRegexLib.ElementName = /^[A-Za-z_:][\w.-:]*$/ ; + +// Used in conjuction with the FCKConfig.ForceSimpleAmpersand configuration option. +FCKRegexLib.ForceSimpleAmpersand = /___FCKAmp___/g ; + +// Get the closing parts of the tags with no closing tags, like
... gets the "/>" part. +FCKRegexLib.SpaceNoClose = /\/>/g ; + +FCKRegexLib.EmptyParagraph = /^<(p|div)>\s*<\/\1>$/i ; + +FCKRegexLib.TagBody = /> 0 ) + { + this.CheckQueue() ; + return ; + } + + var oXmlRequest = new XMLHttpRequest() ; + + // Load the script synchronously. + oXmlRequest.open( "GET", filePath, false ) ; + oXmlRequest.send( null ) ; + + // Evaluate the script. + if ( oXmlRequest.status == 200 ) + { + try + { + eval( oXmlRequest.responseText ) ; + } + catch ( e ) + { + alert( 'Error parsing ' + filePath + ': ' + e.message ) ; + } + } + else + alert( 'Error loading ' + filePath ) ; + + this.CheckQueue() ; + } +} +else +{ + FCKScriptLoader.LoadFile = function( filePath ) + { + //window.status = ( 'Loading ' + filePath + '...' ) ; + // Dynamically load the file (it can be a CSS or a JS) var e ; // If is a CSS - if ( sScriptPath.lastIndexOf( '.css' ) > 0 ) + if ( filePath.lastIndexOf( '.css' ) > 0 ) { e = document.createElement( 'LINK' ) ; e.rel = 'stylesheet' ; @@ -67,7 +117,7 @@ else { e = document.createElement( "script" ) ; - e.type = "text/javascript" ; + e.type = "text/javascript" ; } // Add the new object to the HEAD. @@ -84,29 +134,21 @@ else FCKScriptLoader.CheckQueue() ; - e.href = sScriptPath ; + e.href = filePath ; } else { // Gecko fires the "onload" event and IE fires "onreadystatechange" e.onload = e.onreadystatechange = FCKScriptLoader_OnLoad ; - e.src = sScriptPath ; + e.src = filePath ; } } - else + + function FCKScriptLoader_OnLoad() { - this.IsLoading = false ; - - // Call the "OnEmpty" event. - if ( this.OnEmpty ) - this.OnEmpty() ; + // Gecko doesn't have a "readyState" property + if ( this.tagName == 'LINK' || !this.readyState || this.readyState == 'loaded' ) + // Load the next script available in the queue + FCKScriptLoader.CheckQueue() ; } -} - -function FCKScriptLoader_OnLoad() -{ - // Gecko doesn't have a "readyState" property - if ( this.tagName == 'LINK' || !this.readyState || this.readyState == 'loaded' ) - // Load the next script available in the queue - FCKScriptLoader.CheckQueue() ; } \ No newline at end of file Index: lams_central/web/fckeditor/editor/_source/internals/fcktablehandler.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fcktablehandler.js (.../fcktablehandler.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fcktablehandler.js (.../fcktablehandler.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -91,7 +91,9 @@ // Create the new cell element to be added. oCell = FCK.EditorDocument.createElement('TD') ; - oCell.innerHTML = ' ' ; + if ( FCKBrowserInfo.IsGecko ) + oCell.innerHTML = '
' ; +// oCell.innerHTML = ' ' ; // Get the cell that is placed in the new cell place. var oBaseCell = oRow.cells[iIndex] ; @@ -151,7 +153,9 @@ // Create the new cell element to be added. var oNewCell = FCK.EditorDocument.createElement("TD"); - oNewCell.innerHTML = " " ; + if ( FCKBrowserInfo.IsGecko ) + oNewCell.innerHTML = '
' ; +// oNewCell.innerHTML = " " ; // If it is the last cell in the row. if ( oCell.cellIndex == oCell.parentNode.cells.lenght - 1 ) @@ -342,9 +346,12 @@ // Get the array of row's cells. var aCells = tr.cells ; - // Replace the contents of each cell with "nbsp;". + // Replace the contents of each cell with "nothing". for ( var i = 0 ; i < aCells.length ; i++ ) { - aCells[i].innerHTML = ' ' ; + if ( FCKBrowserInfo.IsGecko ) + aCells[i].innerHTML = '
' ; + else + aCells[i].innerHTML = '' ; } } \ No newline at end of file Index: lams_central/web/fckeditor/editor/_source/internals/fcktoolbaritems.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fcktoolbaritems.js (.../fcktoolbaritems.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fcktoolbaritems.js (.../fcktoolbaritems.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -69,6 +69,7 @@ case 'Anchor' : oItem = new FCKToolbarButton( 'Anchor' , FCKLang.Anchor ) ; break ; case 'Image' : oItem = new FCKToolbarButton( 'Image' , FCKLang.InsertImageLbl, FCKLang.InsertImage ) ; break ; + case 'Flash' : oItem = new FCKToolbarButton( 'Flash' , FCKLang.InsertFlashLbl, FCKLang.InsertFlash ) ; break ; case 'Table' : oItem = new FCKToolbarButton( 'Table' , FCKLang.InsertTableLbl, FCKLang.InsertTable ) ; break ; case 'SpecialChar' : oItem = new FCKToolbarButton( 'SpecialChar' , FCKLang.InsertSpecialCharLbl, FCKLang.InsertSpecialChar ) ; break ; case 'Smiley' : oItem = new FCKToolbarButton( 'Smiley' , FCKLang.InsertSmileyLbl, FCKLang.InsertSmiley ) ; break ; Index: lams_central/web/fckeditor/editor/_source/internals/fcktools.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fcktools.js (.../fcktools.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fcktools.js (.../fcktools.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -65,10 +65,10 @@ // Creates a Array in the form object that will hold all Attached function call // (in the case there are more than one editor in the same page) - if (! oForm.updateFCKEditor) oForm.updateFCKEditor = new Array() ; + if (! oForm.updateFCKeditor) oForm.updateFCKeditor = new Array() ; // Adds the function pointer to the array of functions to call when "submit" is called - oForm.updateFCKEditor[oForm.updateFCKEditor.length] = functionPointer ; + oForm.updateFCKeditor[oForm.updateFCKeditor.length] = functionPointer ; // Switches the original submit method with a new one that first call all functions // on the above array and the call the original submit @@ -86,11 +86,11 @@ function FCKTools_SubmitReplacer() { - if (this.updateFCKEditor) + if (this.updateFCKeditor) { // Calls all functions in the functions array - for (var i = 0 ; i < this.updateFCKEditor.length ; i++) - this.updateFCKEditor[i]() ; + for (var i = 0 ; i < this.updateFCKeditor.length ; i++) + this.updateFCKeditor[i]() ; } // Calls the original "submit" this.originalSubmit() ; @@ -136,6 +136,9 @@ FCKTools.HTMLEncode = function( text ) { + if ( !text ) + return '' ; + text = text.replace( /&/g, "&" ) ; text = text.replace( /"/g, """ ) ; text = text.replace( / 0 ) + if ( FCKUndo.CurrentIndex >= 0 ) { // If it is the first step. if ( FCKUndo.CurrentIndex == ( FCKUndo.SavedData.length - 1 ) ) @@ -75,4 +77,7 @@ oRange.moveToBookmark( oData[1] ) ; oRange.select() ; } + + FCKUndo.TypesCount = 0 ; + FCKUndo.Typing = false ; } \ No newline at end of file Index: lams_central/web/fckeditor/editor/_source/internals/fckxhtml.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckxhtml.js (.../fckxhtml.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckxhtml.js (.../fckxhtml.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -43,9 +43,16 @@ // Strip the "XHTML" root node. sXHTML = sXHTML.substr( 7, sXHTML.length - 15 ).trim() ; + + // Remove the trailing
added by Gecko. + if ( FCKBrowserInfo.IsGecko ) + sXHTML = sXHTML.replace( /$/, '' ) ; + // Add a space in the tags with no closing tags, like
->
+ sXHTML = sXHTML.replace( FCKRegexLib.SpaceNoClose, ' />'); + if ( FCKConfig.ForceSimpleAmpersand ) - sXHTML = sXHTML.replace( /___FCKAmp___/g, '&' ) ; + sXHTML = sXHTML.replace( FCKRegexLib.ForceSimpleAmpersand, '&' ) ; if ( format ) sXHTML = FCKCodeFormatter.Format( sXHTML ) ; @@ -80,15 +87,21 @@ FCKXHtml._AppendChildNodes = function( xmlNode, htmlNode, isBlockElement ) { + var iCount = 0 ; + if ( htmlNode.hasChildNodes() ) { // Get all children nodes. var oChildren = htmlNode.childNodes ; for ( var i = 0 ; i < oChildren.length ; i++ ) - this._AppendNode( xmlNode, oChildren[i] ) ; + { + if ( this._AppendNode( xmlNode, oChildren[i] ) ) + iCount++ ; + } } - else + + if ( iCount == 0 ) { if ( isBlockElement && FCKConfig.FillEmptyBlocks ) { @@ -98,7 +111,7 @@ // We can't use short representation of empty elements that are not marked // as empty in th XHTML DTD. - if ( ! FCKRegexLib.EmptyElements.test( htmlNode.nodeName ) ) + if ( !FCKRegexLib.EmptyElements.test( htmlNode.nodeName ) ) xmlNode.appendChild( this.XML.createTextNode('') ) ; } } @@ -109,26 +122,32 @@ { // Element Node. case 1 : + if ( htmlNode.getAttribute('_fckfakelement') ) + return FCKXHtml._AppendNode( xmlNode, FCK.GetRealElement( htmlNode ) ) ; + // Mozilla insert custom nodes in the DOM. if ( FCKBrowserInfo.IsGecko && htmlNode.hasAttribute('_moz_editor_bogus_node') ) - return ; + return false ; + + if ( htmlNode.getAttribute('_fckdelete') ) + return false ; // Create the Element. var sNodeName = htmlNode.nodeName ; // Check if the node name is valid, otherwise ignore this tag. if ( !FCKRegexLib.ElementName.test( sNodeName ) ) - return ; + return false ; sNodeName = sNodeName.toLowerCase() ; if ( FCKBrowserInfo.IsGecko && sNodeName == 'br' && htmlNode.hasAttribute('type') && htmlNode.getAttribute( 'type', 2 ) == '_moz' ) - return ; + return false ; // The already processed nodes must be marked to avoid then to be duplicated (bad formatted HTML). // So here, the "mark" is checked... if the element is Ok, then mark it. if ( htmlNode._fckxhtmljob == FCKXHtml.CurrentJobNum ) - return ; + return false ; else htmlNode._fckxhtmljob = FCKXHtml.CurrentJobNum ; @@ -172,6 +191,7 @@ xmlNode.appendChild( this.XML.createComment( "Element not supported - Type: " + htmlNode.nodeType + " Name: " + htmlNode.nodeName ) ) ; break ; } + return true ; } // Append an item to the SpecialBlocks array and returns the tag to be used. Index: lams_central/web/fckeditor/editor/_source/internals/fckxhtml_ie.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/_source/internals/fckxhtml_ie.js (.../fckxhtml_ie.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/_source/internals/fckxhtml_ie.js (.../fckxhtml_ie.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -37,27 +37,28 @@ if ( oAttribute.specified ) { var sAttName = oAttribute.nodeName.toLowerCase() ; + var sAttValue ; // The "_fckxhtmljob" attribute is used to mark the already processed elements. if ( sAttName == '_fckxhtmljob' ) continue ; // The following must be done because of a bug on IE regarding the style // attribute. It returns "null" for the nodeValue. else if ( sAttName == 'style' ) - var sAttValue = htmlNode.style.cssText ; + sAttValue = htmlNode.style.cssText ; // There are two cases when the oAttribute.nodeValue must be used: // - for the "class" attribute // - for events attributes (on IE only). else if ( sAttName == 'class' || sAttName.indexOf('on') == 0 ) - var sAttValue = oAttribute.nodeValue ; + sAttValue = oAttribute.nodeValue ; else if ( nodeName == 'body' && sAttName == 'contenteditable' ) continue ; // XHTML doens't support attribute minimization like "CHECKED". It must be trasformed to cheched="checked". else if ( oAttribute.nodeValue === true ) sAttValue = sAttName ; // We must use getAttribute to get it exactly as it is defined. - else - var sAttValue = htmlNode.getAttribute( sAttName, 2 ) ; + else if ( ! (sAttValue = htmlNode.getAttribute( sAttName, 2 ) ) ) + sAttValue = oAttribute.nodeValue ; if ( FCKConfig.ForceSimpleAmpersand && sAttValue.replace ) sAttValue = sAttValue.replace( /&/g, '___FCKAmp___' ) ; @@ -174,7 +175,21 @@ if ( htmlNode.acceptCharset.length > 0 && htmlNode.acceptCharset != 'UNKNOWN' ) FCKXHtml._AppendAttribute( node, 'accept-charset', htmlNode.acceptCharset ) ; + if ( htmlNode.name ) + FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ; + FCKXHtml._AppendChildNodes( node, htmlNode ) ; return node ; -} \ No newline at end of file +} + +// IE doens't hold the name attribute as an attribute for the - + + + + + + + + +
+ +
+ +
+ +
+ + Index: lams_central/web/fckeditor/editor/dialog/fck_radiobutton.html =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/dialog/fck_radiobutton.html (.../fck_radiobutton.html) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/dialog/fck_radiobutton.html (.../fck_radiobutton.html) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -38,7 +38,7 @@ if ( oActiveEl && oActiveEl.tagName.toUpperCase() == 'INPUT' && oActiveEl.type == 'radio' ) { GetE('txtName').value = oActiveEl.name ; - GetE('txtValue').value = GetAttribute( oActiveEl, 'value' ) ; + GetE('txtValue').value = oActiveEl.value ; GetE('txtSelected').checked = oActiveEl.checked ; } else Index: lams_central/web/fckeditor/editor/dialog/fck_source.html =================================================================== diff -u --- lams_central/web/fckeditor/editor/dialog/fck_source.html (revision 0) +++ lams_central/web/fckeditor/editor/dialog/fck_source.html (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -0,0 +1,57 @@ + + + + + Source + + + + + + + + + + +
+ + Index: lams_central/web/fckeditor/editor/dialog/fck_specialchar.html =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/dialog/fck_specialchar.html (.../fck_specialchar.html) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/dialog/fck_specialchar.html (.../fck_specialchar.html) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -17,6 +17,8 @@ + + ';function Doc_OnMouseDown(){FCK.Focus();FCK.EditorWindow.event.cancelBubble=true;FCK.EditorWindow.event.returnValue=false;};function Doc_OnPaste(){if (FCK.Status==FCK_STATUS_COMPLETE) return FCK.Events.FireEvent("OnPaste");else return false;};function Doc_OnContextMenu(){var e=FCK.EditorWindow.event;FCK.ShowContextMenu(e.screenX,e.screenY);return false;};function Doc_OnKeyDown(){var e=FCK.EditorWindow.event;if (e.keyCode==13&&FCKConfig.UseBROnCarriageReturn){if ((e.ctrlKey||e.altKey||e.shiftKey)) return true;else{if (FCK.EditorDocument.queryCommandState('InsertOrderedList')||FCK.EditorDocument.queryCommandState('InsertUnorderedList')) return true;FCK.InsertHtml("
 ");var oRange=FCK.EditorDocument.selection.createRange();oRange.moveStart('character',-1);oRange.select();FCK.EditorDocument.selection.clear();return false;};}else if (e.keyCode==9&&FCKConfig.TabSpaces>0&&!(e.ctrlKey||e.altKey||e.shiftKey)){FCK.InsertHtml(window.FCKTabHTML);return false;};return true;};function Doc_OnDblClick(){FCK.OnDoubleClick(FCK.EditorWindow.event.srcElement);FCK.EditorWindow.event.cancelBubble=true;};function Doc_OnSelectionChange(){FCK.Events.FireEvent("OnSelectionChange");};FCK.InitializeBehaviors=function(dontReturn){this.EditorDocument.attachEvent('onmousedown',Doc_OnMouseDown);this.EditorDocument.attachEvent('onmouseup',Doc_OnMouseDown);this.EditorDocument.body.attachEvent('onpaste',Doc_OnPaste);this.EditorDocument.attachEvent('oncontextmenu',Doc_OnContextMenu);if (FCKConfig.UseBROnCarriageReturn||FCKConfig.TabSpaces>0){if (FCKConfig.TabSpaces>0){window.FCKTabHTML='';for (i=0;i';if (FCK.TempBaseTag.length>0&&!FCKRegexLib.HasBaseTag.test(html)) sHtml+=FCK.TempBaseTag;sHtml=html.replace(FCKRegexLib.HeadCloser,sHtml+'');}else{sHtml=FCKConfig.DocType+''+''+''+'';sHtml+=FCK._BehaviorsStyle;sHtml+=FCK.TempBaseTag;sHtml+=''+html+'';};this.EditorDocument.open('','_self','',true);this.EditorDocument.write(sHtml);this.EditorDocument.close();this.InitializeBehaviors();this.EditorDocument.body.contentEditable=true;this.Events.FireEvent('OnAfterSetHTML');}else document.getElementById('eSourceField').value=html;};FCK.InsertHtml=function(html){FCK.Focus();FCKUndo.SaveUndoStep();var oSel=FCK.EditorDocument.selection;if (oSel.type.toLowerCase()!="none") oSel.clear();oSel.createRange().pasteHTML(html);} +var FCKUndo=new Object();FCKUndo.SavedData=new Array();FCKUndo.CurrentIndex=-1;FCKUndo.TypesCount=FCKUndo.MaxTypes=25;FCKUndo.Typing=false;FCKUndo.SaveUndoStep=function(){FCKUndo.SavedData=FCKUndo.SavedData.slice(0,FCKUndo.CurrentIndex+1);var sHtml=FCK.EditorDocument.body.innerHTML;if (FCKUndo.CurrentIndex>=0&&sHtml==FCKUndo.SavedData[FCKUndo.CurrentIndex][0]) return;if (FCKUndo.CurrentIndex+1>=FCKConfig.MaxUndoLevels) FCKUndo.SavedData.shift();else FCKUndo.CurrentIndex++;var sBookmark;if (FCK.EditorDocument.selection.type=='Text') sBookmark=FCK.EditorDocument.selection.createRange().getBookmark();FCKUndo.SavedData[FCKUndo.CurrentIndex]=[sHtml,sBookmark];FCK.Events.FireEvent("OnSelectionChange");};FCKUndo.Undo=function(){if (FCKUndo.CurrentIndex>=0){if (FCKUndo.CurrentIndex==(FCKUndo.SavedData.length-1)){FCKUndo.SaveUndoStep();};FCKUndo._ApplyUndoLevel(--FCKUndo.CurrentIndex);FCK.Events.FireEvent("OnSelectionChange");};};FCKUndo.Redo=function(){if (FCKUndo.CurrentIndex<(FCKUndo.SavedData.length-1)){FCKUndo._ApplyUndoLevel(++FCKUndo.CurrentIndex);FCK.Events.FireEvent("OnSelectionChange");};};FCKUndo._ApplyUndoLevel=function(level){var oData=FCKUndo.SavedData[level];FCK.EditorDocument.body.innerHTML=oData[0];if (oData[1]){var oRange=FCK.EditorDocument.selection.createRange();oRange.moveToBookmark(oData[1]);oRange.select();};FCKUndo.TypesCount=0;FCKUndo.Typing=false;} +FCK.Events=new FCKEvents(FCK);FCK.Toolbar=null;FCK.TempBaseTag=FCKConfig.BaseHref.length>0?'':'';FCK.StartEditor=function(){this.EditorWindow=window.frames['eEditorArea'];this.EditorDocument=this.EditorWindow.document;if (FCKBrowserInfo.IsGecko) this.MakeEditable();this.SetHTML(FCKTools.GetLinkedFieldValue());FCKTools.AttachToLinkedFieldFormSubmit(this.UpdateLinkedField);FCKUndo.SaveUndoStep();this.SetStatus(FCK_STATUS_ACTIVE);};function Window_OnFocus(){FCK.Focus();};FCK.SetStatus=function(newStatus){this.Status=newStatus;if (newStatus==FCK_STATUS_ACTIVE){window.onfocus=window.document.body.onfocus=Window_OnFocus;if (FCKConfig.StartupFocus) FCK.Focus();if (FCKBrowserInfo.IsIE) FCKScriptLoader.AddScript('js/fckeditorcode_ie_2.js');else FCKScriptLoader.AddScript('js/fckeditorcode_gecko_2.js');};this.Events.FireEvent('OnStatusChange',newStatus);};FCK.GetHTML=function(format){var sHTML;if (FCK.EditMode==FCK_EDITMODE_WYSIWYG){if (FCKBrowserInfo.IsIE) sHTML=this.EditorDocument.body.innerHTML.replace(FCKRegexLib.ToReplace,'$1');else sHTML=this.EditorDocument.body.innerHTML;}else sHTML=document.getElementById('eSourceField').value;if (format) return FCKCodeFormatter.Format(sHTML);else return sHTML;};FCK.GetXHTML=function(format){var bSource=(FCK.EditMode==FCK_EDITMODE_SOURCE);if (bSource) this.SwitchEditMode();if (FCKConfig.FullPage) var sXHTML=FCKXHtml.GetXHTML(this.EditorDocument.getElementsByTagName('html')[0],true,format);else{if (FCKConfig.IgnoreEmptyParagraphValue&&this.EditorDocument.body.innerHTML=='

 

') var sXHTML='';else var sXHTML=FCKXHtml.GetXHTML(this.EditorDocument.body,false,format);};if (bSource) this.SwitchEditMode();if (FCKBrowserInfo.IsIE) sXHTML=sXHTML.replace(FCKRegexLib.ToReplace,'$1');if (FCK.DocTypeDeclaration&&FCK.DocTypeDeclaration.length>0) sXHTML=FCK.DocTypeDeclaration+'\n'+sXHTML;if (FCK.XmlDeclaration&&FCK.XmlDeclaration.length>0) sXHTML=FCK.XmlDeclaration+'\n'+sXHTML;return sXHTML;};FCK.UpdateLinkedField=function(){if (FCKConfig.EnableXHTML) FCKTools.SetLinkedFieldValue(FCK.GetXHTML(FCKConfig.FormatOutput));else FCKTools.SetLinkedFieldValue(FCK.GetHTML(FCKConfig.FormatOutput));};FCK.ShowContextMenu=function(x,y){if (this.Status!=FCK_STATUS_COMPLETE) return;FCKContextMenu.Show(x,y);this.Events.FireEvent("OnContextMenu");};FCK.RegisteredDoubleClickHandlers=new Object();FCK.OnDoubleClick=function(element){var oHandler=FCK.RegisteredDoubleClickHandlers[element.tagName];if (oHandler) oHandler(element);};FCK.RegisterDoubleClickHandler=function(handlerFunction,tag){FCK.RegisteredDoubleClickHandlers[tag.toUpperCase()]=handlerFunction;};FCK.OnAfterSetHTML=function(){var oProcessor,i=0;while(oProcessor=FCKDocumentProcessors[i++]) oProcessor.ProcessDocument(FCK.EditorDocument);this.Events.FireEvent('OnAfterSetHTML');};var FCKDocumentProcessors=new Array();var FCKDocumentProcessors_CreateFakeImage=function(fakeClass,realElement){var oImg=FCK.EditorDocument.createElement('IMG');oImg.className=fakeClass;oImg.src=FCKConfig.FullBasePath+'images/spacer.gif';oImg.setAttribute('_fckfakelement','true',0);oImg.setAttribute('_fckrealelement',FCKTempBin.AddElement(realElement),0);return oImg;};var FCKAnchorsProcessor=new Object();FCKAnchorsProcessor.ProcessDocument=function(document){var aLinks=document.getElementsByTagName('A');var oLink;var i=aLinks.length-1;while (i>=0&&(oLink=aLinks[i--])){if (oLink.name.length>0&&(!oLink.getAttribute('href')||oLink.getAttribute('href').length==0)){var oImg=FCKDocumentProcessors_CreateFakeImage('FCK__Anchor',oLink.cloneNode(true));oImg.setAttribute('_fckanchor','true',0);oLink.parentNode.insertBefore(oImg,oLink);oLink.parentNode.removeChild(oLink);};};};FCKDocumentProcessors.addItem(FCKAnchorsProcessor);var FCKFlashProcessor=new Object();FCKFlashProcessor.ProcessDocument=function(document){var aEmbeds=document.getElementsByTagName('EMBED');var oEmbed;var i=aEmbeds.length-1;while (i>=0&&(oEmbed=aEmbeds[i--])){if (oEmbed.src.endsWith('.swf',true)){var oImg=FCKDocumentProcessors_CreateFakeImage('FCK__Flash',oEmbed.cloneNode(true));oImg.setAttribute('_fckflash','true',0);FCKFlashProcessor.RefreshView(oImg,oEmbed);oEmbed.parentNode.insertBefore(oImg,oEmbed);oEmbed.parentNode.removeChild(oEmbed);};};};FCKFlashProcessor.RefreshView=function(placholderImage,originalEmbed){if (originalEmbed.width>0) placholderImage.style.width=FCKTools.ConvertHtmlSizeToStyle(originalEmbed.width);if (originalEmbed.height>0) placholderImage.style.height=FCKTools.ConvertHtmlSizeToStyle(originalEmbed.height);};FCKDocumentProcessors.addItem(FCKFlashProcessor);FCK.GetRealElement=function(fakeElement){var e=FCKTempBin.Elements[fakeElement.getAttribute('_fckrealelement')];if (fakeElement.getAttribute('_fckflash')){if (fakeElement.style.width.length>0) e.width=FCKTools.ConvertStyleSizeToHtml(fakeElement.style.width);if (fakeElement.style.height.length>0) e.height=FCKTools.ConvertStyleSizeToHtml(fakeElement.style.height);};return e;} +FCK.Description="FCKeditor for Internet Explorer 5.5+";FCK._BehaviorsStyle='';function Doc_OnMouseDown(){FCK.Focus();FCK.EditorWindow.event.cancelBubble=true;FCK.EditorWindow.event.returnValue=false;};function Doc_OnPaste(){if (FCK.Status==FCK_STATUS_COMPLETE) return FCK.Events.FireEvent("OnPaste");else return false;};function Doc_OnContextMenu(){var e=FCK.EditorWindow.event;FCK.ShowContextMenu(e.screenX,e.screenY);return false;};function Doc_OnKeyDown(){var e=FCK.EditorWindow.event;if (e.keyCode==13&&FCKConfig.UseBROnCarriageReturn){if ((e.ctrlKey||e.altKey||e.shiftKey)) return true;else{if (FCK.EditorDocument.queryCommandState('InsertOrderedList')||FCK.EditorDocument.queryCommandState('InsertUnorderedList')) return true;FCK.InsertHtml("
 ");var oRange=FCK.EditorDocument.selection.createRange();oRange.moveStart('character',-1);oRange.select();FCK.EditorDocument.selection.clear();return false;};}else if (e.keyCode==9&&FCKConfig.TabSpaces>0&&!(e.ctrlKey||e.altKey||e.shiftKey)){FCK.InsertHtml(window.FCKTabHTML);return false;};return true;};function Doc_OnKeyDownUndo(){if (!FCKUndo.Typing){FCKUndo.SaveUndoStep();FCKUndo.Typing=true;FCK.Events.FireEvent("OnSelectionChange");};FCKUndo.TypesCount++;if (FCKUndo.TypesCount>FCKUndo.MaxTypes){FCKUndo.TypesCount=0;FCKUndo.SaveUndoStep();};};function Doc_OnDblClick(){FCK.OnDoubleClick(FCK.EditorWindow.event.srcElement);FCK.EditorWindow.event.cancelBubble=true;};function Doc_OnSelectionChange(){FCK.Events.FireEvent("OnSelectionChange");};FCK.InitializeBehaviors=function(dontReturn){this.EditorDocument.attachEvent('onmousedown',Doc_OnMouseDown);this.EditorDocument.attachEvent('onmouseup',Doc_OnMouseDown);this.EditorDocument.body.attachEvent('onpaste',Doc_OnPaste);this.EditorDocument.attachEvent('oncontextmenu',Doc_OnContextMenu);if (FCKConfig.UseBROnCarriageReturn||FCKConfig.TabSpaces>0){if (FCKConfig.TabSpaces>0){window.FCKTabHTML='';for (i=0;i';if (FCK.TempBaseTag.length>0&&!FCKRegexLib.HasBaseTag.test(html)) sHtml+=FCK.TempBaseTag;sHtml=html.replace(FCKRegexLib.HeadCloser,sHtml+'');}else{sHtml=FCKConfig.DocType+''+'';sHtml+=FCK._BehaviorsStyle;sHtml+=FCK.TempBaseTag;sHtml+=''+html+'';};this.EditorDocument.open('','_self','',true);this.EditorDocument.write(sHtml);this.EditorDocument.close();this.InitializeBehaviors();this.EditorDocument.body.contentEditable=true;FCK.OnAfterSetHTML();}else document.getElementById('eSourceField').value=html;};FCK.InsertHtml=function(html){FCK.Focus();FCKUndo.SaveUndoStep();var oSel=FCK.EditorDocument.selection;if (oSel.type.toLowerCase()!="none") oSel.clear();oSel.createRange().pasteHTML(html);} Index: lams_central/web/fckeditor/editor/js/fckeditorcode_ie_2.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/js/fckeditorcode_ie_2.js (.../fckeditorcode_ie_2.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/js/fckeditorcode_ie_2.js (.../fckeditorcode_ie_2.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -10,26 +10,26 @@ * * This file has been compacted for best loading performance. */ -FCK.RedirectNamedCommands=new Object();FCK.ExecuteNamedCommand=function(commandName,commandParameter){FCKUndo.SaveUndoStep();if (FCK.RedirectNamedCommands[commandName]!=null) FCK.ExecuteRedirectedNamedCommand(commandName,commandParameter);else{FCK.Focus();FCK.EditorDocument.execCommand(commandName,false,commandParameter);FCK.Events.FireEvent('OnSelectionChange');};};FCK.GetNamedCommandState=function(commandName){try{if (!FCK.EditorDocument.queryCommandEnabled(commandName)) return FCK_TRISTATE_DISABLED;else return FCK.EditorDocument.queryCommandState(commandName)?FCK_TRISTATE_ON:FCK_TRISTATE_OFF;}catch (e){return FCK_TRISTATE_OFF;};};FCK.GetNamedCommandValue=function(commandName){var sValue='';var eState=FCK.GetNamedCommandState(commandName);if (eState==FCK_TRISTATE_DISABLED) return null;try{sValue=this.EditorDocument.queryCommandValue(commandName);}catch(e) {};return sValue?sValue:'';};FCK.CleanAndPaste=function(html){html=html.replace(/<\/?SPAN[^>]*>/gi,"");html=html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi,"<$1$3");html=html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi,"<$1$3");html=html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi,"<$1$3");html=html.replace(/<\\?\?xml[^>]*>/gi,"");html=html.replace(/<\/?\w+:[^>]*>/gi,"");html=html.replace(/ /," ");var re=new RegExp("(]*>.*?)(<\/P>)","gi");html=html.replace(re,"");FCK.InsertHtml(html);};FCK.Preview=function(){var oWindow=window.open('',null,'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');var sHTML=''+FCK.GetHTML()+'';oWindow.document.write(sHTML);oWindow.document.close();};FCK.SwitchEditMode=function(){var bWYSIWYG=(FCK.EditMode==FCK_EDITMODE_WYSIWYG);document.getElementById('eWysiwyg').style.display=bWYSIWYG?'none':'';document.getElementById('eSource').style.display=bWYSIWYG?'':'none';if (bWYSIWYG){if (FCKBrowserInfo.IsIE) FCKUndo.SaveUndoStep();document.getElementById('eSourceField').value=(FCKConfig.EnableXHTML&&FCKConfig.EnableSourceXHTML?FCK.GetXHTML(FCKConfig.FormatSource):FCK.GetHTML(FCKConfig.FormatSource));}else FCK.SetHTML(FCK.GetHTML(),true);FCK.EditMode=bWYSIWYG?FCK_EDITMODE_SOURCE:FCK_EDITMODE_WYSIWYG;FCKToolbarSet.RefreshModeState();FCK.Focus();};FCK.CreateElement=function(tag){var e=FCK.EditorDocument.createElement(tag);return FCK.InsertElementAndGetIt(e);};FCK.InsertElementAndGetIt=function(e){e.setAttribute('__FCKTempLabel',1);this.InsertElement(e);var aEls=FCK.EditorDocument.getElementsByTagName(e.tagName);for (var i=0;i]* class="?MsoNormal"?/gi;if (re.test(sHTML)){if (confirm(FCKLang["PasteWordConfirm"])){FCK.CleanAndPaste(sHTML);return false;};};}else return true;};FCK.PasteAsPlainText=function(){var sText=FCKTools.HTMLEncode(clipboardData.getData("Text"));sText=sText.replace(/\n/g,'
');this.InsertHtml(sText);};FCK.PasteFromWord=function(){FCK.CleanAndPaste(FCK.GetClipboardHTML());};FCK.InsertElement=function(element){FCK.InsertHtml(element.outerHTML);};FCK.GetClipboardHTML=function(){var oDiv=document.getElementById('___FCKHiddenDiv');if (!oDiv){var oDiv=document.createElement('DIV');oDiv.id='___FCKHiddenDiv';oDiv.style.visibility='hidden';oDiv.style.overflow='hidden';oDiv.style.position='absolute';oDiv.style.width=1;oDiv.style.height=1;document.body.appendChild(oDiv);};oDiv.innerHTML='';var oTextRange=document.body.createTextRange();oTextRange.moveToElementText(oDiv);oTextRange.execCommand('Paste');var sData=oDiv.innerHTML;oDiv.innerHTML='';return sData;};FCK.AttachToOnSelectionChange=function(functionPointer){this.Events.AttachEvent('OnSelectionChange',functionPointer);};FCK.CreateLink=function(url){FCK.ExecuteNamedCommand('Unlink');if (url.length>0){var sTempUrl='javascript:void(0);/*'+(new Date().getTime())+'*/';FCK.ExecuteNamedCommand('CreateLink',sTempUrl);var oLinks=this.EditorDocument.links;for (i=0;i');else sHTML=FCK.GetXHTML();}else{sHTML=FCKConfig.DocType + '' + '' + FCKLang.Preview + '' + '' + FCK.TempBaseTag + '' + FCK.GetXHTML() + '';};oWindow.document.write(sHTML);oWindow.document.close();};FCK.SwitchEditMode=function(){var bWYSIWYG=(FCK.EditMode==FCK_EDITMODE_WYSIWYG);document.getElementById('eWysiwyg').style.display = bWYSIWYG ? 'none' : '';document.getElementById('eSource').style.display = bWYSIWYG ? '' : 'none';if (bWYSIWYG){if (FCKBrowserInfo.IsIE) FCKUndo.SaveUndoStep();document.getElementById('eSourceField').value = ( FCKConfig.EnableXHTML && FCKConfig.EnableSourceXHTML ? FCK.GetXHTML( FCKConfig.FormatSource ) : FCK.GetHTML( FCKConfig.FormatSource ));}else FCK.SetHTML(FCK.GetHTML(), true);FCK.EditMode=bWYSIWYG ? FCK_EDITMODE_SOURCE : FCK_EDITMODE_WYSIWYG;FCKToolbarSet.RefreshModeState();FCK.Focus();};FCK.CreateElement=function(tag){var e=FCK.EditorDocument.createElement(tag);return FCK.InsertElementAndGetIt(e);};FCK.InsertElementAndGetIt=function(e){e.setAttribute('__FCKTempLabel', 1);this.InsertElement(e);var aEls=FCK.EditorDocument.getElementsByTagName(e.tagName);for (var i=0 ; i < aEls.length ; i++){if (aEls[i].getAttribute( '__FCKTempLabel' )){aEls[i].removeAttribute('__FCKTempLabel');return aEls[i];};};}; +FCK.Paste=function(){if (FCKConfig.ForcePasteAsPlainText){FCK.PasteAsPlainText();return false;}else if (FCKConfig.AutoDetectPasteFromWord){var sHTML=FCK.GetClipboardHTML();var re=/<\w[^>]* class="?MsoNormal"?/gi;if (re.test(sHTML)){if (confirm(FCKLang["PasteWordConfirm"])){FCK.PasteFromWord();return false;};};}else return true;};FCK.PasteAsPlainText=function(){var sText=FCKTools.HTMLEncode(clipboardData.getData("Text"));sText=sText.replace(/\n/g,'
');this.InsertHtml(sText);};FCK.InsertElement=function(element){FCK.InsertHtml(element.outerHTML);};FCK.GetClipboardHTML=function(){var oDiv=document.getElementById('___FCKHiddenDiv');if (!oDiv){var oDiv=document.createElement('DIV');oDiv.id='___FCKHiddenDiv';oDiv.style.visibility='hidden';oDiv.style.overflow='hidden';oDiv.style.position='absolute';oDiv.style.width=1;oDiv.style.height=1;document.body.appendChild(oDiv);};oDiv.innerHTML='';var oTextRange=document.body.createTextRange();oTextRange.moveToElementText(oDiv);oTextRange.execCommand('Paste');var sData=oDiv.innerHTML;oDiv.innerHTML='';return sData;};FCK.AttachToOnSelectionChange=function(functionPointer){this.Events.AttachEvent('OnSelectionChange',functionPointer);};FCK.CreateLink=function(url){FCK.ExecuteNamedCommand('Unlink');if (url.length>0){var sTempUrl='javascript:void(0);/*'+(new Date().getTime())+'*/';FCK.ExecuteNamedCommand('CreateLink',sTempUrl);var oLinks=this.EditorDocument.links;for (i=0;ithis.PanelDiv.offsetWidth)) var iWidth=this.PanelDiv.offsetWidth;else var iWidth=width;if (height==null||(autoSize&&height>this.PanelDiv.offsetHeight)) var iHeight=this.PanelDiv.offsetHeight;else var iHeight=height;this.PanelDiv.style.height=iHeight;this._Popup.show(panelX,panelY,iWidth,iHeight,relElement);};FCKPanel.prototype.Hide=function(){if (this._Popup) this._Popup.hide();} -var FCKTableHandler=new Object();FCKTableHandler.InsertRow=function(){var oRow=FCKSelection.MoveToAncestorNode("TR");if (!oRow) return;var oNewRow=oRow.cloneNode(true);oRow.parentNode.insertBefore(oNewRow,oRow);FCKTableHandler.ClearRow(oRow);};FCKTableHandler.DeleteRows=function(row){if (!row) row=FCKSelection.MoveToAncestorNode("TR");if (!row) return;var oTable=FCKTools.GetElementAscensor(row,'TABLE');if (oTable.rows.length==1){FCKTableHandler.DeleteTable(oTable);return;};row.parentNode.removeChild(row);};FCKTableHandler.DeleteTable=function(table){if (!table) table=FCKSelection.MoveToAncestorNode("TABLE");if (!table) return;table.parentNode.removeChild(table);};FCKTableHandler.InsertColumn=function(){var oCell=FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oTable=FCKTools.GetElementAscensor(oCell,'TABLE');var iIndex=oCell.cellIndex+1;for (var i=0;i=0;i--){var oRow=oTable.rows[i];if (iIndex==0&&oRow.cells.length==1){FCKTableHandler.DeleteRows(oRow);continue;};if (oRow.cells[iIndex]) oRow.removeChild(oRow.cells[iIndex]);};};FCKTableHandler.InsertCell=function(cell){var oCell=cell?cell:FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oNewCell=FCK.EditorDocument.createElement("TD");oNewCell.innerHTML=" ";if (oCell.cellIndex==oCell.parentNode.cells.lenght-1){oCell.parentNode.appendChild(oNewCell);}else{oCell.parentNode.insertBefore(oNewCell,oCell.nextSibling);};return oNewCell;};FCKTableHandler.DeleteCell=function(cell){if (cell.parentNode.cells.length==1){FCKTableHandler.DeleteRows(FCKTools.GetElementAscensor(cell,'TR'));return;};cell.parentNode.removeChild(cell);};FCKTableHandler.DeleteCells=function(){var aCells=FCKTableHandler.GetSelectedCells();for (var i=aCells.length-1;i>=0;i--){FCKTableHandler.DeleteCell(aCells[i]);};};FCKTableHandler.MergeCells=function(){var aCells=FCKTableHandler.GetSelectedCells();if (aCells.length<2) return;if (aCells[0].parentNode!=aCells[aCells.length-1].parentNode) return;var iColSpan=isNaN(aCells[0].colSpan)?1:aCells[0].colSpan;var sHtml='';for (var i=aCells.length-1;i>0;i--){iColSpan+=isNaN(aCells[i].colSpan)?1:aCells[i].colSpan;sHtml=aCells[i].innerHTML+sHtml;FCKTableHandler.DeleteCell(aCells[i]);};aCells[0].colSpan=iColSpan;aCells[0].innerHTML+=sHtml;};FCKTableHandler.SplitCell=function(){var aCells=FCKTableHandler.GetSelectedCells();if (aCells.length!=1) return;var aMap=this._CreateTableMap(aCells[0].parentNode.parentNode);var iCellIndex=FCKTableHandler._GetCellIndexSpan(aMap,aCells[0].parentNode.rowIndex,aCells[0]);var aCollCells=this._GetCollumnCells(aMap,iCellIndex);for (var i=0;i1) oNewCell.rowSpan=aCells[0].rowSpan;}else{if (isNaN(aCollCells[i].colSpan)) aCollCells[i].colSpan=2;else aCollCells[i].colSpan+=1;};};};FCKTableHandler._GetCellIndexSpan=function(tableMap,rowIndex,cell){if (tableMap.length=0;i--){var oRow=oTable.rows[i];if (iIndex==0&&oRow.cells.length==1){FCKTableHandler.DeleteRows(oRow);continue;};if (oRow.cells[iIndex]) oRow.removeChild(oRow.cells[iIndex]);};};FCKTableHandler.InsertCell=function(cell){var oCell=cell?cell:FCKSelection.MoveToAncestorNode("TD");if (!oCell) return;var oNewCell=FCK.EditorDocument.createElement("TD");if (FCKBrowserInfo.IsGecko) oNewCell.innerHTML='
';if (oCell.cellIndex==oCell.parentNode.cells.lenght-1){oCell.parentNode.appendChild(oNewCell);}else{oCell.parentNode.insertBefore(oNewCell,oCell.nextSibling);};return oNewCell;};FCKTableHandler.DeleteCell=function(cell){if (cell.parentNode.cells.length==1){FCKTableHandler.DeleteRows(FCKTools.GetElementAscensor(cell,'TR'));return;};cell.parentNode.removeChild(cell);};FCKTableHandler.DeleteCells=function(){var aCells=FCKTableHandler.GetSelectedCells();for (var i=aCells.length-1;i>=0;i--){FCKTableHandler.DeleteCell(aCells[i]);};};FCKTableHandler.MergeCells=function(){var aCells=FCKTableHandler.GetSelectedCells();if (aCells.length<2) return;if (aCells[0].parentNode!=aCells[aCells.length-1].parentNode) return;var iColSpan=isNaN(aCells[0].colSpan)?1:aCells[0].colSpan;var sHtml='';for (var i=aCells.length-1;i>0;i--){iColSpan+=isNaN(aCells[i].colSpan)?1:aCells[i].colSpan;sHtml=aCells[i].innerHTML+sHtml;FCKTableHandler.DeleteCell(aCells[i]);};aCells[0].colSpan=iColSpan;aCells[0].innerHTML+=sHtml;};FCKTableHandler.SplitCell=function(){var aCells=FCKTableHandler.GetSelectedCells();if (aCells.length!=1) return;var aMap=this._CreateTableMap(aCells[0].parentNode.parentNode);var iCellIndex=FCKTableHandler._GetCellIndexSpan(aMap,aCells[0].parentNode.rowIndex,aCells[0]);var aCollCells=this._GetCollumnCells(aMap,iCellIndex);for (var i=0;i1) oNewCell.rowSpan=aCells[0].rowSpan;}else{if (isNaN(aCollCells[i].colSpan)) aCollCells[i].colSpan=2;else aCollCells[i].colSpan+=1;};};};FCKTableHandler._GetCellIndexSpan=function(tableMap,rowIndex,cell){if (tableMap.length=0&&oRange.compareEndPoints('StartToEnd',oCellRange)<=0)||(oRange.compareEndPoints('EndToStart',oCellRange)>=0&&oRange.compareEndPoints('EndToEnd',oCellRange)<=0)){aCells[aCells.length]=oParent.cells[i];};};};};return aCells;}; var FCKXml;if (!(FCKXml=NS.FCKXml)){FCKXml=NS.FCKXml=function(){};FCKXml.prototype.LoadUrl=function(urlToCall){var oXmlHttp=FCKTools.CreateXmlObject('XmlHttp');oXmlHttp.open("GET",urlToCall,false);oXmlHttp.send(null);if (oXmlHttp.status==200) this.DOMDocument=oXmlHttp.responseXML;else if (oXmlHttp.status==0&&oXmlHttp.readyState==4){this.DOMDocument=FCKTools.CreateXmlObject('DOMDocument');this.DOMDocument.async=false;this.DOMDocument.resolveExternals=false;this.DOMDocument.loadXML(oXmlHttp.responseText);}else alert('Error loading "'+urlToCall+'"');};FCKXml.prototype.SelectNodes=function(xpath,contextNode){if (contextNode) return contextNode.selectNodes(xpath);else return this.DOMDocument.selectNodes(xpath);};FCKXml.prototype.SelectSingleNode=function(xpath,contextNode){if (contextNode) return contextNode.selectSingleNode(xpath);else return this.DOMDocument.selectSingleNode(xpath);};} var FCKStyleDef=function(name,element){this.Name=name;this.Element=element.toUpperCase();this.IsObjectElement=FCKRegexLib.ObjectElements.test(this.Element);this.Attributes=new Object();};FCKStyleDef.prototype.AddAttribute=function(name,value){this.Attributes[name]=value;};FCKStyleDef.prototype.GetOpenerTag=function(){var s='<'+this.Element;for (var a in this.Attributes) s+=' '+a+'="'+this.Attributes[a]+'"';return s+'>';};FCKStyleDef.prototype.GetCloserTag=function(){return '';};FCKStyleDef.prototype.RemoveFromSelection=function(){if (FCKSelection.GetType()=='Control') this._RemoveMe(FCKSelection.GetSelectedElement());else this._RemoveMe(FCKSelection.GetParentElement());} FCKStyleDef.prototype.ApplyToSelection=function(){var oSelection=FCK.EditorDocument.selection;if (oSelection.type=='Text'){var oRange=oSelection.createRange();var e=document.createElement(this.Element);e.innerHTML=oRange.htmlText;this._AddAttributes(e);this._RemoveDuplicates(e);oRange.pasteHTML(e.outerHTML);}else if (oSelection.type=='Control'){var oControl=FCKSelection.GetSelectedElement();if (oControl.tagName==this.Element) this._AddAttributes(oControl);};};FCKStyleDef.prototype._AddAttributes=function(targetElement){for (var a in this.Attributes){if (a.toLowerCase()=='style') targetElement.style.cssText=this.Attributes[a];else targetElement.setAttribute(a,this.Attributes[a],0);};};FCKStyleDef.prototype._RemoveDuplicates=function(parent){for (var i=0;i');else FCK.ExecuteNamedCommand('FormatBlock','<'+formatName+'>');};FCKFormatBlockCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FormatBlock');};var FCKPreviewCommand=function(){this.Name='Preview';};FCKPreviewCommand.prototype.Execute=function(){FCK.Preview();};FCKPreviewCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKSaveCommand=function(){this.Name='Save';};FCKSaveCommand.prototype.Execute=function(){var oForm=FCK.LinkedField.form;oForm.submit();};FCKSaveCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKNewPageCommand=function(){this.Name='NewPage';};FCKNewPageCommand.prototype.Execute=function(){FCKUndo.SaveUndoStep();FCK.SetHTML(FCKBrowserInfo.IsGecko?' ':'');};FCKNewPageCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKSourceCommand=function(){this.Name='Source';};FCKSourceCommand.prototype.Execute=function(){FCK.SwitchEditMode();};FCKSourceCommand.prototype.GetState=function(){return (FCK.EditMode==FCK_EDITMODE_WYSIWYG?FCK_TRISTATE_OFF:FCK_TRISTATE_ON);};var FCKUndoCommand=function(){this.Name='Undo';};FCKUndoCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsIE) FCKUndo.Undo();else FCK.ExecuteNamedCommand('Undo');};FCKUndoCommand.prototype.GetState=function(){if (FCKBrowserInfo.IsIE) return (FCKUndo.CurrentIndex>0?FCK_TRISTATE_OFF:FCK_TRISTATE_DISABLED);else return FCK.GetNamedCommandState('Undo');};var FCKRedoCommand=function(){this.Name='Redo';};FCKRedoCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsIE) FCKUndo.Redo();else FCK.ExecuteNamedCommand('Redo');};FCKRedoCommand.prototype.GetState=function(){if (FCKBrowserInfo.IsIE) return (FCKUndo.CurrentIndex<(FCKUndo.SavedData.length-1)?FCK_TRISTATE_OFF:FCK_TRISTATE_DISABLED);else return FCK.GetNamedCommandState('Redo');} +var FCKDialogCommand=function(name,title,url,width,height,getStateFunction,getStateParam){this.Name=name;this.Title=title;this.Url=url;this.Width=width;this.Height=height;this.GetStateFunction=getStateFunction;this.GetStateParam=getStateParam;};FCKDialogCommand.prototype.Execute=function(){FCKDialog.OpenDialog('FCKDialog_'+this.Name,this.Title,this.Url,this.Width,this.Height);};FCKDialogCommand.prototype.GetState=function(){if (this.GetStateFunction) return this.GetStateFunction(this.GetStateParam);else return FCK_TRISTATE_OFF;};var FCKUndefinedCommand=function(){this.Name='Undefined';};FCKUndefinedCommand.prototype.Execute=function(){alert(FCKLang.NotImplemented);};FCKUndefinedCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKFontNameCommand=function(){this.Name='FontName';};FCKFontNameCommand.prototype.Execute=function(fontName){if (fontName==null||fontName==""){}else FCK.ExecuteNamedCommand('FontName',fontName);};FCKFontNameCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FontName');};var FCKFontSizeCommand=function(){this.Name='FontSize';};FCKFontSizeCommand.prototype.Execute=function(fontSize){if (typeof(fontSize)=='string') fontSize=parseInt(fontSize);if (fontSize==null||fontSize==''){FCK.ExecuteNamedCommand('FontSize',3);}else FCK.ExecuteNamedCommand('FontSize',fontSize);};FCKFontSizeCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FontSize');};var FCKFormatBlockCommand=function(){this.Name='FormatBlock';};FCKFormatBlockCommand.prototype.Execute=function(formatName){if (formatName==null||formatName=='') FCK.ExecuteNamedCommand('FormatBlock','

');else FCK.ExecuteNamedCommand('FormatBlock','<'+formatName+'>');};FCKFormatBlockCommand.prototype.GetState=function(){return FCK.GetNamedCommandValue('FormatBlock');};var FCKPreviewCommand=function(){this.Name='Preview';};FCKPreviewCommand.prototype.Execute=function(){FCK.Preview();};FCKPreviewCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKSaveCommand=function(){this.Name='Save';};FCKSaveCommand.prototype.Execute=function(){var oForm=FCK.LinkedField.form;if (typeof(oForm.onsubmit)=='function'){var bRet=oForm.onsubmit();if (bRet!=null&&bRet===false) return;};oForm.submit();};FCKSaveCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKNewPageCommand=function(){this.Name='NewPage';};FCKNewPageCommand.prototype.Execute=function(){FCKUndo.SaveUndoStep();FCK.SetHTML('');};FCKNewPageCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};var FCKSourceCommand=function(){this.Name='Source';};FCKSourceCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsGecko){var iWidth=screen.width*0.65;var iHeight=screen.height*0.65;FCKDialog.OpenDialog('FCKDialog_Source',FCKLang.Source,'dialog/fck_source.html',iWidth,iHeight,null,null,true);}else FCK.SwitchEditMode();};FCKSourceCommand.prototype.GetState=function(){return (FCK.EditMode==FCK_EDITMODE_WYSIWYG?FCK_TRISTATE_OFF:FCK_TRISTATE_ON);};var FCKUndoCommand=function(){this.Name='Undo';};FCKUndoCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsIE) FCKUndo.Undo();else FCK.ExecuteNamedCommand('Undo');};FCKUndoCommand.prototype.GetState=function(){if (FCKBrowserInfo.IsIE) return (FCKUndo.Typing||FCKUndo.CurrentIndex>0?FCK_TRISTATE_OFF:FCK_TRISTATE_DISABLED);else return FCK.GetNamedCommandState('Undo');};var FCKRedoCommand=function(){this.Name='Redo';};FCKRedoCommand.prototype.Execute=function(){if (FCKBrowserInfo.IsIE) FCKUndo.Redo();else FCK.ExecuteNamedCommand('Redo');};FCKRedoCommand.prototype.GetState=function(){if (FCKBrowserInfo.IsIE) return (!FCKUndo.Typing&&FCKUndo.CurrentIndex<(FCKUndo.SavedData.length-1)?FCK_TRISTATE_OFF:FCK_TRISTATE_DISABLED);else return FCK.GetNamedCommandState('Redo');} var FCKSpellCheckCommand=function(){this.Name='SpellCheck';this.IsEnabled=(FCKConfig.SpellChecker=='ieSpell'||FCKConfig.SpellChecker=='SpellerPages');};FCKSpellCheckCommand.prototype.Execute=function(){switch (FCKConfig.SpellChecker){case 'ieSpell':this._RunIeSpell();break;case 'SpellerPages':FCKDialog.OpenDialog('FCKDialog_SpellCheck','Spell Check','dialog/fck_spellerpages.html',440,480);break;};};FCKSpellCheckCommand.prototype._RunIeSpell=function(){try{var oIeSpell=new ActiveXObject("ieSpell.ieSpellExtension");oIeSpell.CheckAllLinkedDocuments(FCK.EditorDocument);}catch(e){if(e.number==-2146827859){if (confirm(FCKLang.IeSpellDownload)) window.open(FCKConfig.IeSpellDownloadUrl,'IeSpellDownload');}else alert('Error Loading ieSpell: '+e.message+' ('+e.number+')');};};FCKSpellCheckCommand.prototype.GetState=function(){return this.IsEnabled?FCK_TRISTATE_OFF:FCK_TRISTATE_DISABLED;} var FCKTextColorCommand=function(type){this.Name=type=='ForeColor'?'TextColor':'BGColor';this.Type=type;this._Panel=new FCKPanel();this._Panel.StyleSheet=FCKConfig.SkinPath+'fck_contextmenu.css';this._Panel.Create();this._CreatePanelBody(this._Panel.Document,this._Panel.PanelDiv);};FCKTextColorCommand.prototype.Execute=function(panelX,panelY,relElement){FCK._ActiveColorPanelType=this.Type;this._Panel.Show(panelX,panelY,relElement);};FCKTextColorCommand.prototype.SetColor=function(color){if (FCK._ActiveColorPanelType=='ForeColor') FCK.ExecuteNamedCommand('ForeColor',color);else if (FCKBrowserInfo.IsGecko) FCK.ExecuteNamedCommand('hilitecolor',color);else FCK.ExecuteNamedCommand('BackColor',color);delete FCK._ActiveColorPanelType;};FCKTextColorCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;};function FCKTextColorCommand_OnMouseOver() { this.className='ColorSelected';};function FCKTextColorCommand_OnMouseOut() { this.className='ColorDeselected';};function FCKTextColorCommand_OnClick(){this.className='ColorDeselected';this.Command.SetColor('#'+this.Color);this.Command._Panel.Hide();};function FCKTextColorCommand_AutoOnClick(){this.className='ColorDeselected';this.Command.SetColor('');this.Command._Panel.Hide();};function FCKTextColorCommand_MoreOnClick(){this.className='ColorDeselected';this.Command._Panel.Hide();FCKDialog.OpenDialog('FCKDialog_Color',FCKLang.DlgColorTitle,'dialog/fck_colorselector.html',400,330,this.Command.SetColor);};FCKTextColorCommand.prototype._CreatePanelBody=function(targetDocument,targetDiv){function CreateSelectionDiv(){var oDiv=targetDocument.createElement("DIV");oDiv.className='ColorDeselected';oDiv.onmouseover=FCKTextColorCommand_OnMouseOver;oDiv.onmouseout=FCKTextColorCommand_OnMouseOut;return oDiv;};var oTable=targetDiv.appendChild(targetDocument.createElement("TABLE"));oTable.style.tableLayout='fixed';oTable.cellPadding=0;oTable.cellSpacing=0;oTable.border=0;oTable.width=150;var oCell=oTable.insertRow(-1).insertCell(-1);oCell.colSpan=8;var oDiv=oCell.appendChild(CreateSelectionDiv());oDiv.innerHTML='\ \ \ \ \
'+FCKLang.ColorAutomatic+'
';oDiv.Command=this;oDiv.onclick=FCKTextColorCommand_AutoOnClick;var aColors=FCKConfig.FontColors.toString().split(',');var iCounter=0;while (iCounter

';oDiv.Command=this;oDiv.onclick=FCKTextColorCommand_OnClick;};};var oCell=oTable.insertRow(-1).insertCell(-1);oCell.colSpan=8;var oDiv=oCell.appendChild(CreateSelectionDiv());oDiv.innerHTML='
'+FCKLang.ColorMoreColors+'
';oDiv.Command=this;oDiv.onclick=FCKTextColorCommand_MoreOnClick;} var FCKPastePlainTextCommand=function(){this.Name='PasteText';};FCKPastePlainTextCommand.prototype.Execute=function(){FCK.PasteAsPlainText();};FCKPastePlainTextCommand.prototype.GetState=function(){return FCK.GetNamedCommandState('Paste');}; -var FCKPasteWordCommand=function(){this.Name='PasteWord';};FCKPasteWordCommand.prototype.Execute=function(){FCK.PasteFromWord();};FCKPasteWordCommand.prototype.GetState=function(){return FCK.GetNamedCommandState('Paste');}; -var FCKTableCommand=function(command){this.Name=command;};FCKTableCommand.prototype.Execute=function(){switch (this.Name){case 'TableInsertRow':FCKTableHandler.InsertRow();break;case 'TableDeleteRows':FCKTableHandler.DeleteRows();break;case 'TableInsertColumn':FCKTableHandler.InsertColumn();break;case 'TableDeleteColumns':FCKTableHandler.DeleteColumns();break;case 'TableInsertCell':FCKTableHandler.InsertCell();break;case 'TableDeleteCells':FCKTableHandler.DeleteCells();break;case 'TableMergeCells':FCKTableHandler.MergeCells();break;case 'TableSplitCell':FCKTableHandler.SplitCell();break;default:alert(FCKLang.UnknownCommand.replace(/%1/g,this.Name));};};FCKTableCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;} +var FCKPasteWordCommand=function(){this.Name='PasteWord';};FCKPasteWordCommand.prototype.Execute=function(){FCK.PasteFromWord();};FCKPasteWordCommand.prototype.GetState=function(){if (FCKConfig.ForcePasteAsPlainText) return FCK_TRISTATE_DISABLED;else return FCK.GetNamedCommandState('Paste');}; +var FCKTableCommand=function(command){this.Name=command;};FCKTableCommand.prototype.Execute=function(){FCKUndo.SaveUndoStep();switch (this.Name){case 'TableInsertRow':FCKTableHandler.InsertRow();break;case 'TableDeleteRows':FCKTableHandler.DeleteRows();break;case 'TableInsertColumn':FCKTableHandler.InsertColumn();break;case 'TableDeleteColumns':FCKTableHandler.DeleteColumns();break;case 'TableInsertCell':FCKTableHandler.InsertCell();break;case 'TableDeleteCells':FCKTableHandler.DeleteCells();break;case 'TableMergeCells':FCKTableHandler.MergeCells();break;case 'TableSplitCell':FCKTableHandler.SplitCell();break;default:alert(FCKLang.UnknownCommand.replace(/%1/g,this.Name));};};FCKTableCommand.prototype.GetState=function(){return FCK_TRISTATE_OFF;} var FCKStyleCommand=function(){this.Name='Style';this.StylesLoader=new FCKStylesLoader();this.StylesLoader.Load(FCKConfig.StylesXmlPath);this.Styles=this.StylesLoader.Styles;};FCKStyleCommand.prototype.Execute=function(styleName,styleComboItem){if (styleComboItem.Selected) styleComboItem.Style.RemoveFromSelection();else styleComboItem.Style.ApplyToSelection();FCK.Focus();FCK.Events.FireEvent("OnSelectionChange");};FCKStyleCommand.prototype.GetState=function(){var oSelection=FCK.EditorDocument.selection;if (FCKSelection.GetType()=='Control'){var e=FCKSelection.GetSelectedElement();if (e) return this.StylesLoader.StyleGroups[e.tagName]?FCK_TRISTATE_OFF:FCK_TRISTATE_DISABLED;else FCK_TRISTATE_OFF;}else return FCK_TRISTATE_OFF;};FCKStyleCommand.prototype.GetActiveStyles=function(){var aActiveStyles=new Array();if (FCKSelection.GetType()=='Control') this._CheckStyle(FCKSelection.GetSelectedElement(),aActiveStyles,false);else this._CheckStyle(FCKSelection.GetParentElement(),aActiveStyles,true);return aActiveStyles;};FCKStyleCommand.prototype._CheckStyle=function(element,targetArray,checkParent){if (!element) return;if (element.nodeType==1){var aStyleGroup=this.StylesLoader.StyleGroups[element.tagName];if (aStyleGroup){for (var i=0;i'+'';if (this.Style!=FCK_TOOLBARITEM_ONLYTEXT) sHtml+='';if (this.Style!=FCK_TOOLBARITEM_ONLYICON) sHtml+=''+this.Label+'';sHtml+=''+'';this.DOMDiv.innerHTML=sHtml;var oCell=parentToolbar.DOMRow.insertCell(-1);oCell.appendChild(this.DOMDiv);this.RefreshState();};FCKToolbarButton.prototype.RefreshState=function(){var eState=this.Command.GetState();if (eState==this.State) return;this.State=eState;switch (this.State){case FCK_TRISTATE_ON:this.DOMDiv.className='TB_Button_On';this.DOMDiv.onmouseover=FCKToolbarButton_OnMouseOnOver;this.DOMDiv.onmouseout=FCKToolbarButton_OnMouseOnOut;this.DOMDiv.onclick=FCKToolbarButton_OnClick;break;case FCK_TRISTATE_OFF:this.DOMDiv.className='TB_Button_Off';this.DOMDiv.onmouseover=FCKToolbarButton_OnMouseOffOver;this.DOMDiv.onmouseout=FCKToolbarButton_OnMouseOffOut;this.DOMDiv.onclick=FCKToolbarButton_OnClick;break;default:this.Disable();break;};};function FCKToolbarButton_OnMouseOnOver(){this.className='TB_Button_On TB_Button_On_Over';};function FCKToolbarButton_OnMouseOnOut(){this.className='TB_Button_On';};function FCKToolbarButton_OnMouseOffOver(){this.className='TB_Button_On TB_Button_Off_Over';};function FCKToolbarButton_OnMouseOffOut(){this.className='TB_Button_Off';};function FCKToolbarButton_OnClick(e){this.FCKToolbarButton.Click(e);return false;};FCKToolbarButton.prototype.Click=function(){this.Command.Execute();};FCKToolbarButton.prototype.Enable=function(){this.RefreshState();};FCKToolbarButton.prototype.Disable=function(){this.State=FCK_TRISTATE_DISABLED;this.DOMDiv.className='TB_Button_Disabled';this.DOMDiv.onmouseover=null;this.DOMDiv.onmouseout=null;this.DOMDiv.onclick=null;} var FCKSpecialCombo=function(caption){this.FieldWidth=80;this.PanelWidth=130;this.PanelMaxHeight=150;this.Label=' ';this.Caption=caption;this.Enabled=true;this.Items=new Object();this._Panel=new FCKPanel();this._Panel.StyleSheet=FCKConfig.SkinPath+'fck_contextmenu.css';this._Panel.Create();this._Panel.PanelDiv.className+=' SC_Panel';this._Panel.PanelDiv.innerHTML='
';this._ItemsHolderEl=this._Panel.PanelDiv.getElementsByTagName('TD')[0];};function FCKSpecialCombo_ItemOnMouseOver(){this.className+=' SC_ItemOver';};function FCKSpecialCombo_ItemOnMouseOut(){this.className=this.originalClass;};function FCKSpecialCombo_ItemOnClick(){this.FCKSpecialCombo._Panel.Hide();this.FCKSpecialCombo.SetLabel(this.FCKItemLabel);if (typeof(this.FCKSpecialCombo.OnSelect)=='function') this.FCKSpecialCombo.OnSelect(this.FCKItemID,this);};FCKSpecialCombo.prototype.AddItem=function(id,html,label){var oDiv=this._ItemsHolderEl.appendChild(this._Panel.Document.createElement('DIV'));oDiv.className=oDiv.originalClass='SC_Item';oDiv.innerHTML=html;oDiv.FCKItemID=id;oDiv.FCKItemLabel=label?label:id;oDiv.FCKSpecialCombo=this;oDiv.Selected=false;oDiv.onmouseover=FCKSpecialCombo_ItemOnMouseOver;oDiv.onmouseout=FCKSpecialCombo_ItemOnMouseOut;oDiv.onclick=FCKSpecialCombo_ItemOnClick;this.Items[id.toString().toLowerCase()]=oDiv;return oDiv;};FCKSpecialCombo.prototype.SelectItem=function(itemId){itemId=itemId?itemId.toString().toLowerCase():'';var oDiv=this.Items[itemId];if (oDiv){oDiv.className=oDiv.originalClass='SC_ItemSelected';oDiv.Selected=true;};};FCKSpecialCombo.prototype.DeselectAll=function(){for (var i in this.Items){this.Items[i].className=this.Items[i].originalClass='SC_Item';this.Items[i].Selected=false;};};FCKSpecialCombo.prototype.SetLabelById=function(id){id=id?id.toString().toLowerCase():'';var oDiv=this.Items[id];this.SetLabel(oDiv?oDiv.FCKItemLabel:'');};FCKSpecialCombo.prototype.SetLabel=function(text){this.Label=text.length==0?' ':text;if (this._LabelEl) this._LabelEl.innerHTML=this.Label;};FCKSpecialCombo.prototype.SetEnabled=function(isEnabled){this.Enabled=isEnabled;this._OuterTable.className=isEnabled?'':'SC_FieldDisabled';};FCKSpecialCombo.prototype.Create=function(targetElement){this._OuterTable=targetElement.appendChild(document.createElement('TABLE'));this._OuterTable.cellPadding=0;this._OuterTable.cellSpacing=0;this._OuterTable.insertRow(-1);if (this.Caption&&this.Caption.length>0){var oCaptionCell=this._OuterTable.rows[0].insertCell(-1);oCaptionCell.unselectable='on';oCaptionCell.innerHTML=this.Caption;oCaptionCell.className='SC_FieldCaption';};var oField=this._OuterTable.rows[0].insertCell(-1).appendChild(document.createElement('DIV'));oField.className='SC_Field';oField.style.width=this.FieldWidth+'px';oField.innerHTML='
 
';this._LabelEl=oField.getElementsByTagName('label')[0];this._LabelEl.innerHTML=this.Label;oField.SpecialCombo=this;oField.onmouseover=FCKSpecialCombo_OnMouseOver;oField.onmouseout=FCKSpecialCombo_OnMouseOut;oField.onclick=FCKSpecialCombo_OnClick;};function FCKSpecialCombo_OnMouseOver(){if (this.SpecialCombo.Enabled) this.className='SC_Field SC_FieldOver';};function FCKSpecialCombo_OnMouseOut(){this.className='SC_Field';};function FCKSpecialCombo_OnClick(e){if (e){e.stopPropagation();FCKPanelEventHandlers.OnDocumentClick(e);};if (this.SpecialCombo.Enabled){if (typeof(this.SpecialCombo.OnBeforeClick)=='function') this.SpecialCombo.OnBeforeClick(this.SpecialCombo);if (this.SpecialCombo._ItemsHolderEl.offsetHeight>this.SpecialCombo.PanelMaxHeight) this.SpecialCombo._Panel.PanelDiv.style.height=this.SpecialCombo.PanelMaxHeight+'px';else this.SpecialCombo._Panel.PanelDiv.style.height=this.SpecialCombo._ItemsHolderEl.offsetHeight+'px';this.SpecialCombo._Panel.PanelDiv.style.width=this.SpecialCombo.PanelWidth+'px';if (FCKBrowserInfo.IsGecko) this.SpecialCombo._Panel.PanelDiv.style.overflow='-moz-scrollbars-vertical';this.SpecialCombo._Panel.Show(0,this.offsetHeight,this,null,this.SpecialCombo.PanelMaxHeight,true);};return false;}; var FCKToolbarSpecialCombo=function(){this.SourceView=false;this.ContextSensitive=true;};function FCKToolbarSpecialCombo_OnSelect(itemId,item){this.Command.Execute(itemId,item);};FCKToolbarSpecialCombo.prototype.CreateInstance=function(parentToolbar){this._Combo=new FCKSpecialCombo(this.GetLabel());this._Combo.FieldWidth=100;this._Combo.PanelWidth=150;this._Combo.PanelMaxHeight=150;this.CreateItems(this._Combo);this._Combo.Create(parentToolbar.DOMRow.insertCell(-1));this._Combo.Command=this.Command;this._Combo.OnSelect=FCKToolbarSpecialCombo_OnSelect;};function FCKToolbarSpecialCombo_RefreshActiveItems(combo,value){combo.DeselectAll();combo.SelectItem(value);combo.SetLabelById(value);};FCKToolbarSpecialCombo.prototype.RefreshState=function(){var eState;var sValue=this.Command.GetState();if (sValue!=FCK_TRISTATE_DISABLED){eState=FCK_TRISTATE_ON;if (this.RefreshActiveItems) this.RefreshActiveItems(this._Combo,sValue);else FCKToolbarSpecialCombo_RefreshActiveItems(this._Combo,sValue);}else eState=FCK_TRISTATE_DISABLED;if (eState==this.State) return;if (eState==FCK_TRISTATE_DISABLED){this._Combo.DeselectAll();this._Combo.SetLabel('');};this.State=eState;this._Combo.SetEnabled(eState!=FCK_TRISTATE_DISABLED);};FCKToolbarSpecialCombo.prototype.Enable=function(){this.RefreshState();};FCKToolbarSpecialCombo.prototype.Disable=function(){this.State=FCK_TRISTATE_DISABLED;this._Combo.DeselectAll();this._Combo.SetLabel('');this._Combo.SetEnabled(false);} @@ -38,16 +38,16 @@ var FCKToolbarFontFormatCombo=function(){this.Command=FCKCommands.GetCommand('FontFormat');};FCKToolbarFontFormatCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarFontFormatCombo.prototype.GetLabel=function(){return FCKLang.FontFormat;};FCKToolbarFontFormatCombo.prototype.CreateItems=function(targetSpecialCombo){var aNames=FCKLang['FontFormats'].split(';');var oNames={p:aNames[0],pre:aNames[1],address:aNames[2],h1:aNames[3],h2:aNames[4],h3:aNames[5],h4:aNames[6],h5:aNames[7],h6:aNames[8],div:aNames[9]};var aTags=FCKConfig.FontFormats.split(';');for (var i=0;i'+oNames[aTags[i]]+'',oNames[aTags[i]]);};} var FCKToolbarStyleCombo=function(){this.Command=FCKCommands.GetCommand('Style');};FCKToolbarStyleCombo.prototype=new FCKToolbarSpecialCombo;FCKToolbarStyleCombo.prototype.GetLabel=function(){return FCKLang.Style;};FCKToolbarStyleCombo.prototype.CreateItems=function(targetSpecialCombo){FCKTools.AppendStyleSheet(targetSpecialCombo._Panel.Document,FCKConfig.EditorAreaCSS);if (!FCKBrowserInfo.IsGecko) targetSpecialCombo.OnBeforeClick=this.RefreshVisibleItems;for (var s in this.Command.Styles){var oStyle=this.Command.Styles[s];if (oStyle.IsObjectElement) var oItem=targetSpecialCombo.AddItem(s,s);else var oItem=targetSpecialCombo.AddItem(s,oStyle.GetOpenerTag()+s+oStyle.GetCloserTag());oItem.Style=oStyle;};};FCKToolbarStyleCombo.prototype.RefreshActiveItems=function(targetSpecialCombo){targetSpecialCombo.DeselectAll();var aStyles=this.Command.GetActiveStyles();if (aStyles.length>0){for (var i=0;i'+'';if (this.Style!=FCK_TOOLBARITEM_ONLYTEXT) sHtml+='';if (this.Style!=FCK_TOOLBARITEM_ONLYICON) sHtml+=''+this.Label+'';sHtml+=''+''+'';this.DOMDiv.innerHTML=sHtml;var oCell=parentToolbar.DOMRow.insertCell(-1);oCell.appendChild(this.DOMDiv);this.RefreshState();};FCKToolbarPanelButton.prototype.RefreshState=FCKToolbarButton.prototype.RefreshState;FCKToolbarPanelButton.prototype.Enable=FCKToolbarButton.prototype.Enable;FCKToolbarPanelButton.prototype.Disable=FCKToolbarButton.prototype.Disable; -var FCKToolbarItems=new Object();FCKToolbarItems.LoadedItems=new Object();FCKToolbarItems.RegisterItem=function(itemName,item){this.LoadedItems[itemName]=item;};FCKToolbarItems.GetItem=function(itemName){var oItem=FCKToolbarItems.LoadedItems[itemName];if (oItem) return oItem;switch (itemName){case 'Source':oItem=new FCKToolbarButton('Source',FCKLang.Source,null,FCK_TOOLBARITEM_ICONTEXT,true,true);break;case 'DocProps':oItem=new FCKToolbarButton('DocProps',FCKLang.DocProps);break;case 'Templates':oItem=new FCKToolbarButton('Templates',FCKLang.Templates);break;case 'Save':oItem=new FCKToolbarButton('Save',FCKLang.Save,null,null,true);break;case 'NewPage':oItem=new FCKToolbarButton('NewPage',FCKLang.NewPage,null,null,true);break;case 'Preview':oItem=new FCKToolbarButton('Preview',FCKLang.Preview,null,null,true);break;case 'About':oItem=new FCKToolbarButton('About',FCKLang.About,null,null,true);break;case 'Cut':oItem=new FCKToolbarButton('Cut',FCKLang.Cut,null,null,false,true);break;case 'Copy':oItem=new FCKToolbarButton('Copy',FCKLang.Copy,null,null,false,true);break;case 'Paste':oItem=new FCKToolbarButton('Paste',FCKLang.Paste,null,null,false,true);break;case 'PasteText':oItem=new FCKToolbarButton('PasteText',FCKLang.PasteText,null,null,false,true);break;case 'PasteWord':oItem=new FCKToolbarButton('PasteWord',FCKLang.PasteWord,null,null,false,true);break;case 'Print':oItem=new FCKToolbarButton('Print',FCKLang.Print,null,null,false,true);break;case 'SpellCheck':oItem=new FCKToolbarButton('SpellCheck',FCKLang.SpellCheck);break;case 'Undo':oItem=new FCKToolbarButton('Undo',FCKLang.Undo,null,null,false,true);break;case 'Redo':oItem=new FCKToolbarButton('Redo',FCKLang.Redo,null,null,false,true);break;case 'SelectAll':oItem=new FCKToolbarButton('SelectAll',FCKLang.SelectAll);break;case 'RemoveFormat':oItem=new FCKToolbarButton('RemoveFormat',FCKLang.RemoveFormat,null,null,false,true);break;case 'Bold':oItem=new FCKToolbarButton('Bold',FCKLang.Bold,null,null,false,true);break;case 'Italic':oItem=new FCKToolbarButton('Italic',FCKLang.Italic,null,null,false,true);break;case 'Underline':oItem=new FCKToolbarButton('Underline',FCKLang.Underline,null,null,false,true);break;case 'StrikeThrough':oItem=new FCKToolbarButton('StrikeThrough',FCKLang.StrikeThrough,null,null,false,true);break;case 'Subscript':oItem=new FCKToolbarButton('Subscript',FCKLang.Subscript,null,null,false,true);break;case 'Superscript':oItem=new FCKToolbarButton('Superscript',FCKLang.Superscript,null,null,false,true);break;case 'OrderedList':oItem=new FCKToolbarButton('InsertOrderedList',FCKLang.NumberedListLbl,FCKLang.NumberedList,null,false,true);break;case 'UnorderedList':oItem=new FCKToolbarButton('InsertUnorderedList',FCKLang.BulletedListLbl,FCKLang.BulletedList,null,false,true);break;case 'Outdent':oItem=new FCKToolbarButton('Outdent',FCKLang.DecreaseIndent,null,null,false,true);break;case 'Indent':oItem=new FCKToolbarButton('Indent',FCKLang.IncreaseIndent,null,null,false,true);break;case 'Link':oItem=new FCKToolbarButton('Link',FCKLang.InsertLinkLbl,FCKLang.InsertLink,null,false,true);break;case 'Unlink':oItem=new FCKToolbarButton('Unlink',FCKLang.RemoveLink,null,null,false,true);break;case 'Anchor':oItem=new FCKToolbarButton('Anchor',FCKLang.Anchor);break;case 'Image':oItem=new FCKToolbarButton('Image',FCKLang.InsertImageLbl,FCKLang.InsertImage);break;case 'Table':oItem=new FCKToolbarButton('Table',FCKLang.InsertTableLbl,FCKLang.InsertTable);break;case 'SpecialChar':oItem=new FCKToolbarButton('SpecialChar',FCKLang.InsertSpecialCharLbl,FCKLang.InsertSpecialChar);break;case 'Smiley':oItem=new FCKToolbarButton('Smiley',FCKLang.InsertSmileyLbl,FCKLang.InsertSmiley);break;case 'UniversalKey':oItem=new FCKToolbarButton('UniversalKey',FCKLang.UniversalKeyboard);break;case 'Rule':oItem=new FCKToolbarButton('InsertHorizontalRule',FCKLang.InsertLineLbl,FCKLang.InsertLine,null,false,true);break;case 'JustifyLeft':oItem=new FCKToolbarButton('JustifyLeft',FCKLang.LeftJustify,null,null,false,true);break;case 'JustifyCenter':oItem=new FCKToolbarButton('JustifyCenter',FCKLang.CenterJustify,null,null,false,true);break;case 'JustifyRight':oItem=new FCKToolbarButton('JustifyRight',FCKLang.RightJustify,null,null,false,true);break;case 'JustifyFull':oItem=new FCKToolbarButton('JustifyFull',FCKLang.BlockJustify,null,null,false,true);break;case 'Style':oItem=new FCKToolbarStyleCombo();break;case 'FontName':oItem=new FCKToolbarFontsCombo();break;case 'FontSize':oItem=new FCKToolbarFontSizeCombo();break;case 'FontFormat':oItem=new FCKToolbarFontFormatCombo();break;case 'TextColor':oItem=new FCKToolbarPanelButton('TextColor',FCKLang.TextColor);break;case 'BGColor':oItem=new FCKToolbarPanelButton('BGColor',FCKLang.BGColor);break;case 'Find':oItem=new FCKToolbarButton('Find',FCKLang.Find);break;case 'Replace':oItem=new FCKToolbarButton('Replace',FCKLang.Replace);break;case 'Form':oItem=new FCKToolbarButton('Form',FCKLang.Form);break;case 'Checkbox':oItem=new FCKToolbarButton('Checkbox',FCKLang.Checkbox);break;case 'Radio':oItem=new FCKToolbarButton('Radio',FCKLang.RadioButton);break;case 'TextField':oItem=new FCKToolbarButton('TextField',FCKLang.TextField);break;case 'Textarea':oItem=new FCKToolbarButton('Textarea',FCKLang.Textarea);break;case 'HiddenField':oItem=new FCKToolbarButton('HiddenField',FCKLang.HiddenField);break;case 'Button':oItem=new FCKToolbarButton('Button',FCKLang.Button);break;case 'Select':oItem=new FCKToolbarButton('Select',FCKLang.SelectionField);break;case 'ImageButton':oItem=new FCKToolbarButton('ImageButton',FCKLang.ImageButton);break;default:alert(FCKLang.UnknownToolbarItem.replace(/%1/g,itemName));return;};FCKToolbarItems.LoadedItems[itemName]=oItem;return oItem;} +var FCKToolbarItems=new Object();FCKToolbarItems.LoadedItems=new Object();FCKToolbarItems.RegisterItem=function(itemName,item){this.LoadedItems[itemName]=item;};FCKToolbarItems.GetItem=function(itemName){var oItem=FCKToolbarItems.LoadedItems[itemName];if (oItem) return oItem;switch (itemName){case 'Source':oItem=new FCKToolbarButton('Source',FCKLang.Source,null,FCK_TOOLBARITEM_ICONTEXT,true,true);break;case 'DocProps':oItem=new FCKToolbarButton('DocProps',FCKLang.DocProps);break;case 'Templates':oItem=new FCKToolbarButton('Templates',FCKLang.Templates);break;case 'Save':oItem=new FCKToolbarButton('Save',FCKLang.Save,null,null,true);break;case 'NewPage':oItem=new FCKToolbarButton('NewPage',FCKLang.NewPage,null,null,true);break;case 'Preview':oItem=new FCKToolbarButton('Preview',FCKLang.Preview,null,null,true);break;case 'About':oItem=new FCKToolbarButton('About',FCKLang.About,null,null,true);break;case 'Cut':oItem=new FCKToolbarButton('Cut',FCKLang.Cut,null,null,false,true);break;case 'Copy':oItem=new FCKToolbarButton('Copy',FCKLang.Copy,null,null,false,true);break;case 'Paste':oItem=new FCKToolbarButton('Paste',FCKLang.Paste,null,null,false,true);break;case 'PasteText':oItem=new FCKToolbarButton('PasteText',FCKLang.PasteText,null,null,false,true);break;case 'PasteWord':oItem=new FCKToolbarButton('PasteWord',FCKLang.PasteWord,null,null,false,true);break;case 'Print':oItem=new FCKToolbarButton('Print',FCKLang.Print,null,null,false,true);break;case 'SpellCheck':oItem=new FCKToolbarButton('SpellCheck',FCKLang.SpellCheck);break;case 'Undo':oItem=new FCKToolbarButton('Undo',FCKLang.Undo,null,null,false,true);break;case 'Redo':oItem=new FCKToolbarButton('Redo',FCKLang.Redo,null,null,false,true);break;case 'SelectAll':oItem=new FCKToolbarButton('SelectAll',FCKLang.SelectAll);break;case 'RemoveFormat':oItem=new FCKToolbarButton('RemoveFormat',FCKLang.RemoveFormat,null,null,false,true);break;case 'Bold':oItem=new FCKToolbarButton('Bold',FCKLang.Bold,null,null,false,true);break;case 'Italic':oItem=new FCKToolbarButton('Italic',FCKLang.Italic,null,null,false,true);break;case 'Underline':oItem=new FCKToolbarButton('Underline',FCKLang.Underline,null,null,false,true);break;case 'StrikeThrough':oItem=new FCKToolbarButton('StrikeThrough',FCKLang.StrikeThrough,null,null,false,true);break;case 'Subscript':oItem=new FCKToolbarButton('Subscript',FCKLang.Subscript,null,null,false,true);break;case 'Superscript':oItem=new FCKToolbarButton('Superscript',FCKLang.Superscript,null,null,false,true);break;case 'OrderedList':oItem=new FCKToolbarButton('InsertOrderedList',FCKLang.NumberedListLbl,FCKLang.NumberedList,null,false,true);break;case 'UnorderedList':oItem=new FCKToolbarButton('InsertUnorderedList',FCKLang.BulletedListLbl,FCKLang.BulletedList,null,false,true);break;case 'Outdent':oItem=new FCKToolbarButton('Outdent',FCKLang.DecreaseIndent,null,null,false,true);break;case 'Indent':oItem=new FCKToolbarButton('Indent',FCKLang.IncreaseIndent,null,null,false,true);break;case 'Link':oItem=new FCKToolbarButton('Link',FCKLang.InsertLinkLbl,FCKLang.InsertLink,null,false,true);break;case 'Unlink':oItem=new FCKToolbarButton('Unlink',FCKLang.RemoveLink,null,null,false,true);break;case 'Anchor':oItem=new FCKToolbarButton('Anchor',FCKLang.Anchor);break;case 'Image':oItem=new FCKToolbarButton('Image',FCKLang.InsertImageLbl,FCKLang.InsertImage);break;case 'Flash':oItem=new FCKToolbarButton('Flash',FCKLang.InsertFlashLbl,FCKLang.InsertFlash);break;case 'Table':oItem=new FCKToolbarButton('Table',FCKLang.InsertTableLbl,FCKLang.InsertTable);break;case 'SpecialChar':oItem=new FCKToolbarButton('SpecialChar',FCKLang.InsertSpecialCharLbl,FCKLang.InsertSpecialChar);break;case 'Smiley':oItem=new FCKToolbarButton('Smiley',FCKLang.InsertSmileyLbl,FCKLang.InsertSmiley);break;case 'UniversalKey':oItem=new FCKToolbarButton('UniversalKey',FCKLang.UniversalKeyboard);break;case 'Rule':oItem=new FCKToolbarButton('InsertHorizontalRule',FCKLang.InsertLineLbl,FCKLang.InsertLine,null,false,true);break;case 'JustifyLeft':oItem=new FCKToolbarButton('JustifyLeft',FCKLang.LeftJustify,null,null,false,true);break;case 'JustifyCenter':oItem=new FCKToolbarButton('JustifyCenter',FCKLang.CenterJustify,null,null,false,true);break;case 'JustifyRight':oItem=new FCKToolbarButton('JustifyRight',FCKLang.RightJustify,null,null,false,true);break;case 'JustifyFull':oItem=new FCKToolbarButton('JustifyFull',FCKLang.BlockJustify,null,null,false,true);break;case 'Style':oItem=new FCKToolbarStyleCombo();break;case 'FontName':oItem=new FCKToolbarFontsCombo();break;case 'FontSize':oItem=new FCKToolbarFontSizeCombo();break;case 'FontFormat':oItem=new FCKToolbarFontFormatCombo();break;case 'TextColor':oItem=new FCKToolbarPanelButton('TextColor',FCKLang.TextColor);break;case 'BGColor':oItem=new FCKToolbarPanelButton('BGColor',FCKLang.BGColor);break;case 'Find':oItem=new FCKToolbarButton('Find',FCKLang.Find);break;case 'Replace':oItem=new FCKToolbarButton('Replace',FCKLang.Replace);break;case 'Form':oItem=new FCKToolbarButton('Form',FCKLang.Form);break;case 'Checkbox':oItem=new FCKToolbarButton('Checkbox',FCKLang.Checkbox);break;case 'Radio':oItem=new FCKToolbarButton('Radio',FCKLang.RadioButton);break;case 'TextField':oItem=new FCKToolbarButton('TextField',FCKLang.TextField);break;case 'Textarea':oItem=new FCKToolbarButton('Textarea',FCKLang.Textarea);break;case 'HiddenField':oItem=new FCKToolbarButton('HiddenField',FCKLang.HiddenField);break;case 'Button':oItem=new FCKToolbarButton('Button',FCKLang.Button);break;case 'Select':oItem=new FCKToolbarButton('Select',FCKLang.SelectionField);break;case 'ImageButton':oItem=new FCKToolbarButton('ImageButton',FCKLang.ImageButton);break;default:alert(FCKLang.UnknownToolbarItem.replace(/%1/g,itemName));return;};FCKToolbarItems.LoadedItems[itemName]=oItem;return oItem;} var FCKToolbar=function(){this.Items=new Array();this.DOMTable=document.createElement('table');this.DOMTable.className='TB_Toolbar';with (this.DOMTable){style.styleFloat=style.cssFloat=FCKLang.Dir=='rtl'?'right':'left';cellPadding=0;cellSpacing=0;border=0;};this.DOMRow=this.DOMTable.insertRow(-1);var oCell=this.DOMRow.insertCell(-1);oCell.className='TB_Start';oCell.innerHTML='';FCKToolbarSet.DOMElement.appendChild(this.DOMTable);};FCKToolbar.prototype.AddItem=function(toolbarItem){this.Items[this.Items.length]=toolbarItem;toolbarItem.CreateInstance(this);};FCKToolbar.prototype.AddSeparator=function(){var oCell=this.DOMRow.insertCell(-1);oCell.unselectable='on';oCell.innerHTML='';};FCKToolbar.prototype.AddTerminator=function(){var oCell=this.DOMRow.insertCell(-1);oCell.className='TB_End';oCell.innerHTML='';}; var FCKToolbarBreak=function(){var oBreakDiv=document.createElement('div');oBreakDiv.className='TB_Break';oBreakDiv.style.clear=FCKLang.Dir=='rtl'?'left':'right';FCKToolbarSet.DOMElement.appendChild(oBreakDiv);} var FCKToolbarSet=FCK.ToolbarSet=new Object();document.getElementById('ExpandHandle').title=FCKLang.ToolbarExpand;document.getElementById('CollapseHandle').title=FCKLang.ToolbarCollapse;FCKToolbarSet.Toolbars=new Array();FCKToolbarSet.ItemsWysiwygOnly=new Array();FCKToolbarSet.ItemsContextSensitive=new Array();FCKToolbarSet.Expand=function(){document.getElementById('Collapsed').style.display='none';document.getElementById('Expanded').style.display='';if (!FCKBrowserInfo.IsIE){window.setTimeout("window.onresize()",1);};};FCKToolbarSet.Collapse=function(){document.getElementById('Collapsed').style.display='';document.getElementById('Expanded').style.display='none';if (!FCKBrowserInfo.IsIE){window.setTimeout("window.onresize()",1);};};FCKToolbarSet.Restart=function(){if (!FCKConfig.ToolbarCanCollapse||FCKConfig.ToolbarStartExpanded) this.Expand();else this.Collapse();document.getElementById('CollapseHandle').style.display=FCKConfig.ToolbarCanCollapse?'':'none';};FCKToolbarSet.Load=function(toolbarSetName){this.DOMElement=document.getElementById('eToolbar');var ToolbarSet=FCKConfig.ToolbarSets[toolbarSetName];if (!ToolbarSet){alert(FCKLang.UnknownToolbarSet.replace(/%1/g,toolbarSetName));return;};this.Toolbars=new Array();for (var x=0;x';oCell=this._Row.insertCell(-1);oCell.className='CM_Label';oCell.unselectable='on';oCell.noWrap=true;oCell.innerHTML=this.Label;};FCKContextMenuItem.prototype.SetVisible=function(isVisible){this._Row.style.display=isVisible?'':'none';};FCKContextMenuItem.prototype.RefreshState=function(){switch (this.Command.GetState()){case FCK_TRISTATE_ON:case FCK_TRISTATE_OFF:this._Row.className='CM_Option';break;default:this._Row.className='CM_Disabled';break;};}; var FCKContextMenuSeparator=function(){};FCKContextMenuSeparator.prototype.CreateTableRow=function(targetTable){this._Row=targetTable.insertRow(-1);this._Row.className='CM_Separator';var oCell=this._Row.insertCell(-1);oCell.className='CM_Icon';oCell=this._Row.insertCell(-1);oCell.className='CM_Label';oCell.innerHTML='
';};FCKContextMenuSeparator.prototype.SetVisible=function(isVisible){this._Row.style.display=isVisible?'':'none';};FCKContextMenuSeparator.prototype.RefreshState=function(){}; var FCKContextMenuGroup=function(addSeparator,contextMenu,firstItemCommand,firstItemLabel,hasIcon){this.IsVisible=true;this.Items=new Array();if (addSeparator) this.Add(new FCKContextMenuSeparator());if (contextMenu&&firstItemCommand&&firstItemLabel) this.Add(new FCKContextMenuItem(contextMenu,firstItemCommand,firstItemLabel,hasIcon));this.ValidationFunction=null;};FCKContextMenuGroup.prototype.Add=function(contextMenuItem){this.Items[this.Items.length]=contextMenuItem;};FCKContextMenuGroup.prototype.CreateTableRows=function(table){for (var i=0;i0&&oTag.href.length==0);if (this.Groups['Anchor']) this.Groups['Anchor'].SetVisible(bIsAnchor);if (this.Groups['Link']) this.Groups['Link'].SetVisible(!bIsAnchor&&FCK.GetNamedCommandState('Unlink')!=FCK_TRISTATE_DISABLED);if (this.Groups['TableCell']) this.Groups['TableCell'].SetVisible(sTagName!='TABLE'&&FCKSelection.HasAncestorNode('TABLE'));if (this.Groups['Table']) this.Groups['Table'].SetVisible(sTagName=='TABLE');if (this.Groups['Image']) this.Groups['Image'].SetVisible(sTagName=='IMG');if (this.Groups['BulletedList']) this.Groups['BulletedList'].SetVisible(FCKSelection.HasAncestorNode('UL'));if (this.Groups['NumberedList']) this.Groups['NumberedList'].SetVisible(FCKSelection.HasAncestorNode('OL'));if (this.Groups['Select']) this.Groups['Select'].SetVisible(sTagName=='SELECT');if (this.Groups['Textarea']) this.Groups['Textarea'].SetVisible(sTagName=='TEXTAREA');if (this.Groups['Form']) this.Groups['Form'].SetVisible(FCKSelection.HasAncestorNode('FORM'));if (this.Groups['Checkbox']) this.Groups['Checkbox'].SetVisible(sTagName=='INPUT'&&oTag.type=='checkbox');if (this.Groups['Radio']) this.Groups['Radio'].SetVisible(sTagName=='INPUT'&&oTag.type=='radio');if (this.Groups['TextField']) this.Groups['TextField'].SetVisible(sTagName=='INPUT'&&(oTag.type=='text'||oTag.type=='password'));if (this.Groups['HiddenField']) this.Groups['HiddenField'].SetVisible(sTagName=='INPUT'&&oTag.type=='hidden');if (this.Groups['ImageButton']) this.Groups['ImageButton'].SetVisible(sTagName=='INPUT'&&oTag.type=='image');if (this.Groups['Button']) this.Groups['Button'].SetVisible(sTagName=='INPUT'&&(oTag.type=='button'||oTag.type=='submit'||oTag.type=='reset'));for (var o in this.Groups){this.Groups[o].RefreshState();};}; +var FCKContextMenu=new Object();FCKContextMenu._IsLoaded=false;FCKContextMenu.Reload=function(){this._Div=this._Document.createElement('DIV');this._Div.className='CM_ContextMenu';this._Div.style.position='absolute';this._Div.style.visibility='hidden';this._Document.body.appendChild(this._Div);var oTable=this._Document.createElement('TABLE');oTable.cellSpacing=0;oTable.cellPadding=0;oTable.border=0;this._Div.appendChild(oTable);this.Groups=new Object();for (var i=0;i0){if (this.AvailableLangs.indexOf(FCKLanguageManager.ActiveLanguage.Code)>=0) var sLang=FCKLanguageManager.ActiveLanguage.Code;else var sLang=this.AvailableLangs[0];FCKScriptLoader.AddScript(this.Path+'lang/'+sLang+'.js');};FCKScriptLoader.AddScript(this.Path+'fckplugin.js');} var FCKPlugins=FCK.Plugins=new Object();FCKPlugins.ItemsCount=0;FCKPlugins.Loaded=false;FCKPlugins.Items=new Object();for (var i=0;iلإعدادت متصفحك الأمنية.
فضلاً إلصق داخل المربع التالي باستخدام لوحة المفاتيح (Ctrl+V) ثم اضغط موافق.", +DlgPasteMsg2 : "الصق داخل الصندوق باستخدام زرّي (Ctrl+V) في لوحة المفاتيح، ثم اضغط زر موافق.", +DlgPasteIgnoreFont : "تجاهل تعريفات أسماء الخطوط", +DlgPasteRemoveStyles : "إزالة تعريفات الأنماط", +DlgPasteCleanBox : "نظّف محتوى الصندوق", + // Color Picker ColorAutomatic : "تلقائي", ColorMoreColors : "ألوان إضافية...", @@ -438,11 +457,11 @@ DlgDocPreview : "معاينة", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "القوالب", +DlgTemplatesTitle : "قوالب المحتوى", +DlgTemplatesSelMsg : "اختر القالب الذي تود وضعه في المحرر
(سيتم فقدان المحتوى الحالي):", +DlgTemplatesLoading : "جاري تحميل قائمة القوالب، الرجاء الانتظار...", +DlgTemplatesNoTpl : "(لم يتم تعريف أي قالب)", // About Dialog DlgAboutAboutTab : "نبذة", Index: lams_central/web/fckeditor/editor/lang/bg.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/bg.js (.../bg.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/bg.js (.../bg.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Добави/Редактирай котва", InsertImageLbl : "Изображение", InsertImage : "Добави/Редактирай изображение", +InsertFlashLbl : "Flash", +InsertFlash : "Добави/Редактиай Flash обект", InsertTableLbl : "Таблица", InsertTable : "Добави/Редактирай таблица", InsertLineLbl : "Линия", @@ -105,6 +107,7 @@ CellProperties : "Параметри на клетката", TableProperties : "Параметри на таблицата", ImageProperties : "Параметри на изображението", +FlashProperties : "Параметри на Flash обекта", AnchorProp : "Параметри на котвата", ButtonProp : "Параметри на бутона", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Разгледай сървъра", DlgAdvancedTag : "Подробности...", DlgOpOther : "<Друго>", +DlgInfoTab : "Информация", +DlgAlertUrl : "Моля, въведете пълния път (URL)", // General Dialogs Labels DlgGenNotSet : "<не е настроен>", @@ -180,8 +185,18 @@ DlgImgAlignTop : "Отгоре", DlgImgPreview : "Изглед", DlgImgAlertUrl : "Моля, въведете пълния път до изображението", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Връзка", +// Flash Dialog +DlgFlashTitle : "Параметри на Flash обекта", +DlgFlashChkPlay : "Автоматично стартиране", +DlgFlashChkLoop : "Ново стартиране след завършването", +DlgFlashChkMenu : "Разрешено Flash меню", +DlgFlashScale : "Оразмеряване", +DlgFlashScaleAll : "Покажи целия обект", +DlgFlashScaleNoBorder : "Без рамка", +DlgFlashScaleFit : "Според мястото", + // Link Dialog DlgLnkWindowTitle : "Връзка", DlgLnkInfoTab : "Информация за връзката", @@ -191,7 +206,7 @@ DlgLnkTypeURL : "Пълен път (URL)", DlgLnkTypeAnchor : "Котва в текущата страница", DlgLnkTypeEMail : "Е-поща", -DlgLnkProto : "Прокотол", +DlgLnkProto : "Протокол", DlgLnkProtoOther : "<друго>", DlgLnkURL : "Пълен път (URL)", DlgLnkAnchorSel : "Изберете котва", @@ -211,7 +226,7 @@ DlgLnkTargetParent : "Родителски прозорец (_parent)", DlgLnkTargetSelf : "Активния прозорец (_self)", DlgLnkTargetTop : "Целия прозорец (_top)", -DlgLnkTargetFrameName : "Име на целиевия прозорец", +DlgLnkTargetFrameName : "Име на целевия прозорец", DlgLnkPopWinName : "Име на дъщерния прозорец", DlgLnkPopWinFeat : "Параметри на дъщерния прозорец", DlgLnkPopResize : "С променливи размери", @@ -310,8 +325,12 @@ PasteAsText : "Вмъкни като чист текст", PasteFromWord : "Вмъкни от MS Word", -DlgPasteMsg : "Редакторът не успя да изпълни автоматичното вмъкване заради настройките за сигурност на вашия браузър.
Моля, изпълнете вмъкването, използвайки клавиатурата (Ctrl+V), след което изберете OK.", +DlgPasteMsg2 : "Вмъкнете тук съдъжанието с клавиатуарата (Ctrl+V) и натиснете OK.", +DlgPasteIgnoreFont : "Игнорирай шрифтовите дефиниции", +DlgPasteRemoveStyles : "Изтрий стиловите дефиниции", +DlgPasteCleanBox : "Изчисти", + // Color Picker ColorAutomatic : "По подразбиране", ColorMoreColors : "Други цветове...", @@ -438,16 +457,16 @@ DlgDocPreview : "Изглед", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Шаблони", +DlgTemplatesTitle : "Шаблони", +DlgTemplatesSelMsg : "Изберете шаблон
(текущото съдържание на редактора ще бъде загубено):", +DlgTemplatesLoading : "Зареждане на списъка с шаблоните. Моля изчакайте...", +DlgTemplatesNoTpl : "(Няма дефинирани шаблони)", // About Dialog DlgAboutAboutTab : "За", DlgAboutBrowserInfoTab : "Информация за браузъра", DlgAboutVersion : "версия", DlgAboutLicense : "Лиценз по условията на GNU Lesser General Public License", -DlgAboutInfo : "За повече информация отидете на" +DlgAboutInfo : "За повече информация посетете" } \ No newline at end of file Index: lams_central/web/fckeditor/editor/lang/bs.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/bs.js (.../bs.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/bs.js (.../bs.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "Slika", InsertImage : "Ubaci/Izmjeni sliku", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabela", InsertTable : "Ubaci/Izmjeni tabelu", InsertLineLbl : "Linija", @@ -105,6 +107,7 @@ CellProperties : "Svojstva æelije", TableProperties : "Svojstva tabele", ImageProperties : "Svojstva slike", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Anchor Properties", //MISSING ButtonProp : "Button Properties", //MISSING @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "Naprednije", DlgOpOther : "<Other>", //MISSING +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<nije podešeno>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Molimo ukucajte URL od slike.", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link info", @@ -310,8 +325,12 @@ PasteAsText : "Zalijepi kao obièan tekst", PasteFromWord : "Zalijepi iz Word-a", -DlgPasteMsg : "Editor nije mogao automatski zaljepiti zbog sigurnosnih postavki vašeg pretraživaèa.
Molimo zalijepite unutar slijedeæe kocke koristeæi tastaturu (Ctrl+V) i pritisnite OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automatska", ColorMoreColors : "Više boja...", Index: lams_central/web/fckeditor/editor/lang/ca.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/ca.js (.../ca.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/ca.js (.../ca.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Afegir/Editar Àncora", InsertImageLbl : "Imatge", InsertImage : "Afegir/Editar Imatge", +InsertFlashLbl : "Flash", +InsertFlash : "Afegir/Editar Flash", InsertTableLbl : "Taula", InsertTable : "Afegir/Editar Taula", InsertLineLbl : "Línia", @@ -105,6 +107,7 @@ CellProperties : "Proprietats de Cel·la", TableProperties : "Proprietats de Taula", ImageProperties : "Proprietats d'Image", +FlashProperties : "Proprietats Flash", AnchorProp : "Proprietats d'àncora", ButtonProp : "Proprietats de botó", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Veure servidor", DlgAdvancedTag : "Avançat", DlgOpOther : "Altres", +DlgInfoTab : "Info", +DlgAlertUrl : "Si us plau, afegiu la URL", // General Dialogs Labels DlgGenNotSet : "<no definit>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Si us plau, escriviu la URL de la imatge", DlgImgLinkTab : "Enllaç", +// Flash Dialog +DlgFlashTitle : "Propietats Flash", +DlgFlashChkPlay : "Reprodució Automàtica", +DlgFlashChkLoop : "Bucle", +DlgFlashChkMenu : "Habilitar Menu Flash", +DlgFlashScale : "Escala", +DlgFlashScaleAll : "Mostrar tot", +DlgFlashScaleNoBorder : "Sense Costats", +DlgFlashScaleFit : "Mida exacta", + // Link Dialog DlgLnkWindowTitle : "Enllaç", DlgLnkInfoTab : "Informació d'Enllaç", @@ -310,8 +325,12 @@ PasteAsText : "Enganxar com Text Planer", PasteFromWord : "Enganxar com Word", -DlgPasteMsg : "L'editor no ha pogut executar automàticament l'operació d'enganxar a causa de la configuració de seguretat del seu navigador.
Si us plau, enganxi en el següent cuadre de text utilitzant el teclat (Ctrl+V) i premeu OK.", +DlgPasteMsg2 : "Si us plau, enganxeu dins del següent camp utilitzant el teclat (Ctrl+V) i premeu OK.", +DlgPasteIgnoreFont : "Ignorar definicions de font", +DlgPasteRemoveStyles : "Eliminar definicions d'estil", +DlgPasteCleanBox : "Netejar camp", + // Color Picker ColorAutomatic : "Automàtic", ColorMoreColors : "Més Colors...", Index: lams_central/web/fckeditor/editor/lang/cs.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/cs.js (.../cs.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/cs.js (.../cs.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "Vložít/změnit záložku", InsertImageLbl : "Obrázek", InsertImage : "Vložit/změnit obrázek", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabulka", InsertTable : "Vložit/změnit tabulku", InsertLineLbl : "Linka", @@ -106,6 +108,7 @@ CellProperties : "Vlastnosti buňky", TableProperties : "Vlastnosti tabulky", ImageProperties : "Vlastnosti obrázku", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Vlastnosti záložky", ButtonProp : "Vlastnosti tlačítka", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "Vybrat na serveru", DlgAdvancedTag : "Rozšířené", DlgOpOther : "<Ostatní>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<nenastaveno>", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "Zadejte prosím URL obrázku", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Odkaz", DlgLnkInfoTab : "Informace o odkazu", @@ -311,8 +326,12 @@ PasteAsText : "Vložit jako čistý text", PasteFromWord : "Vložit text z Wordu", -DlgPasteMsg : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro vložení textu ze schránky.
Text ze schránky prosím vložte pomocí klávesnice do tohoto pole (Ctrl+V) a pak stiskněte tlačítko OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automaticky", ColorMoreColors : "Více barev...", Index: lams_central/web/fckeditor/editor/lang/da.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/da.js (.../da.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/da.js (.../da.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "Insert/Rediger Anker", InsertImageLbl : "Indsæt Billed", InsertImage : "Indsæt/Rediger Billed", +InsertFlashLbl : "Flash", +InsertFlash : "Indsæt/rediger Flash", InsertTableLbl : "Table", InsertTable : "Indsæt/Rediger Tabel", InsertLineLbl : "Linie", @@ -106,6 +108,7 @@ CellProperties : "Celle egenskaber", TableProperties : "Tabel egenskaber", ImageProperties : "Billed egenskaber", +FlashProperties : "Flash egenskaber", AnchorProp : "Anker egenskaber", ButtonProp : "Knap egenskaber", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "Gennemse Server", DlgAdvancedTag : "Avanceret", DlgOpOther : "<Andet>", +DlgInfoTab : "Info", +DlgAlertUrl : "Indtast URL", // General Dialogs Labels DlgGenNotSet : "<ikke sat>", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "Indtast stien til billedet", DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Flash egenskaber", +DlgFlashChkPlay : "Automatisk afspilning", +DlgFlashChkLoop : "Gentagelse", +DlgFlashChkMenu : "Vis Flash menu", +DlgFlashScale : "Skalér", +DlgFlashScaleAll : "Vis alt", +DlgFlashScaleNoBorder : "Ingen ramme", +DlgFlashScaleFit : "Tilpas størrelse", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link info", @@ -311,8 +326,12 @@ PasteAsText : "Indsæt som ren tekst", PasteFromWord : "Indsæt fra Word", -DlgPasteMsg : "Editoren kunne ikke indsætte teksten automatisk på grund af din browsers sikkerhedsindstillinger.
Indsæt i stedet teksten i den følgende boks ved hjælp af tastaturet (Ctrl+V) og klik OK.", +DlgPasteMsg2 : "Indsæt i boksen herunder (Ctrl+V) og klik OK.", +DlgPasteIgnoreFont : "Ignorer font definitioner", +DlgPasteRemoveStyles : "Fjern typografi definitioner", +DlgPasteCleanBox : "Slet indhold", + // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Flere farver...", Index: lams_central/web/fckeditor/editor/lang/de.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/de.js (.../de.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/de.js (.../de.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "Anker einfügen/editieren", InsertImageLbl : "Bild", InsertImage : "Bild einfügen/editieren", +InsertFlashLbl : "Flash", +InsertFlash : "Flash einfügen/editieren", InsertTableLbl : "Tabelle", InsertTable : "Tabelle einfügen/editieren", InsertLineLbl : "Linie", @@ -106,11 +108,12 @@ CellProperties : "Zellen Eigenschaften", TableProperties : "Tabellen Eigenschaften", ImageProperties : "Bild Eigenschaften", +FlashProperties : "Flash Eigenschaften", AnchorProp : "Anker Eigenschaften", ButtonProp : "Button Eigenschaften", CheckboxProp : "Checkbox Eigenschaften", -HiddenFieldProp : "verstecktes Feld Eigenschaften", +HiddenFieldProp : "Verstecktes Feld Eigenschaften", RadioButtonProp : "Radiobutton Eigenschaften", ImageButtonProp : "Bildbutton Eigenschaften", TextFieldProp : "Textfeld einzeilig Eigenschaften", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "Server durchsuchen", DlgAdvancedTag : "Erweitert", DlgOpOther : "<andere>", +DlgInfoTab : "Info", +DlgAlertUrl : "Bitte tragen Sie die URL ein", // General Dialogs Labels DlgGenNotSet : "< nichts >", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "Bitte geben Sie die Bild-URL an", DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Flash Eigenschaften", +DlgFlashChkPlay : "autom. Abspielen", +DlgFlashChkLoop : "Endlosschleife", +DlgFlashChkMenu : "Aktiviere Flash Menü", +DlgFlashScale : "Skalierung", +DlgFlashScaleAll : "Alles anzeigen", +DlgFlashScaleNoBorder : "ohne Rand", +DlgFlashScaleFit : "Passgenau", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", @@ -311,8 +326,12 @@ PasteAsText : "Als Text einfügen", PasteFromWord : "Aus Word einfügen", -DlgPasteMsg : "Der Text konnte nicht automatisch eingefügt werden, da die Sicherheitseinstellungen Ihres Browsers dies nicht zulassen.
Bitte nutzen Sie in der folgenden Box die System-Zwischenablage ueber STRG-C (kopieren) und STRG-V (einfügen).", +DlgPasteMsg2 : "Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit Ctrl+V) ein und bestätigen Sie mit OK.", +DlgPasteIgnoreFont : "Ignoriere Schriftart-Definitionen", +DlgPasteRemoveStyles : "Entferne Style-Definitionen", +DlgPasteCleanBox : "Inhalt aufräumen", + // Color Picker ColorAutomatic : "Automatisch", ColorMoreColors : "Weitere Farben...", Index: lams_central/web/fckeditor/editor/lang/el.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/el.js (.../el.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/el.js (.../el.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "Εικόνα", InsertImage : "Εισαγωγή/Μεταβολή Εικόνας", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Πίνακας", InsertTable : "Εισαγωγή/Μεταβολή Πίνακα", InsertLineLbl : "Γραμμή", @@ -105,6 +107,7 @@ CellProperties : "Ιδιότητες Κελιού", TableProperties : "Ιδιότητες Πίνακα", ImageProperties : "Ιδιότητες Εικόνας", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Anchor Properties", //MISSING ButtonProp : "Button Properties", //MISSING @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "Για προχωρημένους", DlgOpOther : "<Other>", //MISSING +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<χωρίς>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Εισάγετε την τοποθεσία (URL) της εικόνας", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Υπερσύνδεσμος (Link)", DlgLnkInfoTab : "Link", @@ -310,8 +325,12 @@ PasteAsText : "Επικόλληση ως Απλό Κείμενο", PasteFromWord : "Επικόλληση από το Word", -DlgPasteMsg : "Ο επεξεργαστής κειμένου δεν μπορεί να εκτελέσει αυτόματα την επικόλληση λόγω των τυθμίσεων ασφαλείας του φυλλομετρητή σας.
Εισάγετε το κείμενο στο πιο κάτω περιθώριο χρησιμοποιώντας το πληκτρολόγιο (Ctrl+V) και πιέστε OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Αυτόματο", ColorMoreColors : "Περισσότερα χρώματα...", Index: lams_central/web/fckeditor/editor/lang/en-au.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/en-au.js (.../en-au.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/en-au.js (.../en-au.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -39,9 +39,11 @@ InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", -Anchor : "Insert/Edit Anchor", //MISSING +Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", @@ -75,23 +77,23 @@ FontFormat : "Format", Font : "Font", FontSize : "Size", -TextColor : "Text Color", //MISSING -BGColor : "Background Color", //MISSING +TextColor : "Text Color", +BGColor : "Background Color", Source : "Source", Find : "Find", Replace : "Replace", -SpellCheck : "Check Spell", //MISSING -UniversalKeyboard : "Universal Keyboard", //MISSING +SpellCheck : "Check Spell", +UniversalKeyboard : "Universal Keyboard", -Form : "Form", //MISSING -Checkbox : "Checkbox", //MISSING -RadioButton : "Radio Button", //MISSING -TextField : "Text Field", //MISSING -Textarea : "Textarea", //MISSING -HiddenField : "Hidden Field", //MISSING -Button : "Button", //MISSING -SelectionField : "Selection Field", //MISSING -ImageButton : "Image Button", //MISSING +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", // Context Menu EditLink : "Edit Link", @@ -106,17 +108,18 @@ CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", -AnchorProp : "Anchor Properties", //MISSING -ButtonProp : "Button Properties", //MISSING -CheckboxProp : "Checkbox Properties", //MISSING -HiddenFieldProp : "Hidden Field Properties", //MISSING -RadioButtonProp : "Radio Button Properties", //MISSING -ImageButtonProp : "Image Button Properties", //MISSING -TextFieldProp : "Text Field Properties", //MISSING -SelectionFieldProp : "Selection Field Properties", //MISSING -TextareaProp : "Textarea Properties", //MISSING -FormProp : "Form Properties", //MISSING +AnchorProp : "Anchor Properties", +ButtonProp : "Button Properties", +CheckboxProp : "Checkbox Properties", +HiddenFieldProp : "Hidden Field Properties", +RadioButtonProp : "Radio Button Properties", +ImageButtonProp : "Image Button Properties", +TextFieldProp : "Text Field Properties", +SelectionFieldProp : "Selection Field Properties", +TextareaProp : "Textarea Properties", +FormProp : "Form Properties", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", @@ -134,9 +137,11 @@ DlgBtnOK : "OK", DlgBtnCancel : "Cancel", DlgBtnClose : "Close", -DlgBtnBrowseServer : "Browse Server", //MISSING +DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", -DlgOpOther : "<Other>", //MISSING +DlgOpOther : "<Other>", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "<not set>", @@ -181,8 +186,18 @@ DlgImgAlignTop : "Top", DlgImgPreview : "Preview", DlgImgAlertUrl : "Please type the image URL", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", @@ -212,7 +227,7 @@ DlgLnkTargetParent : "Parent Window (_parent)", DlgLnkTargetSelf : "Same Window (_self)", DlgLnkTargetTop : "Topmost Window (_top)", -DlgLnkTargetFrameName : "Target Frame Name", //MISSING +DlgLnkTargetFrameName : "Target Frame Name", DlgLnkPopWinName : "Popup Window Name", DlgLnkPopWinFeat : "Popup Window Features", DlgLnkPopResize : "Resizable", @@ -233,10 +248,10 @@ DlnLnkMsgNoAnchor : "Please select an anchor", // Color Dialog -DlgColorTitle : "Select Color", //MISSING -DlgColorBtnClear : "Clear", //MISSING -DlgColorHighlight : "Highlight", //MISSING -DlgColorSelected : "Selected", //MISSING +DlgColorTitle : "Select Color", +DlgColorBtnClear : "Clear", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Selected", // Smiley Dialog DlgSmileyTitle : "Insert a Smiley", @@ -285,8 +300,8 @@ DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", -DlgCellBackColor : "Background Color", //MISSING -DlgCellBorderColor : "Border Color", //MISSING +DlgCellBackColor : "Background Color", +DlgCellBorderColor : "Border Color", DlgCellBtnSelect : "Select...", // Find Dialog @@ -311,143 +326,147 @@ PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", -DlgPasteMsg : "The editor was not able to automaticaly execute pasting because of the security settings of your browser.
Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", +DlgPasteCleanBox : "Clean Up Box", + // Color Picker -ColorAutomatic : "Automatic", //MISSING -ColorMoreColors : "More Colors...", //MISSING +ColorAutomatic : "Automatic", +ColorMoreColors : "More Colors...", // Document Properties -DocProps : "Document Properties", //MISSING +DocProps : "Document Properties", // Anchor Dialog -DlgAnchorTitle : "Anchor Properties", //MISSING -DlgAnchorName : "Anchor Name", //MISSING -DlgAnchorErrorName : "Please type the anchor name", //MISSING +DlgAnchorTitle : "Anchor Properties", +DlgAnchorName : "Anchor Name", +DlgAnchorErrorName : "Please type the anchor name", // Speller Pages Dialog -DlgSpellNotInDic : "Not in dictionary", //MISSING -DlgSpellChangeTo : "Change to", //MISSING -DlgSpellBtnIgnore : "Ignore", //MISSING -DlgSpellBtnIgnoreAll : "Ignore All", //MISSING -DlgSpellBtnReplace : "Replace", //MISSING -DlgSpellBtnReplaceAll : "Replace All", //MISSING -DlgSpellBtnUndo : "Undo", //MISSING -DlgSpellNoSuggestions : "- No suggestions -", //MISSING -DlgSpellProgress : "Spell check in progress...", //MISSING -DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING -DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING -DlgSpellOneChange : "Spell check complete: One word changed", //MISSING -DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING +DlgSpellNotInDic : "Not in dictionary", +DlgSpellChangeTo : "Change to", +DlgSpellBtnIgnore : "Ignore", +DlgSpellBtnIgnoreAll : "Ignore All", +DlgSpellBtnReplace : "Replace", +DlgSpellBtnReplaceAll : "Replace All", +DlgSpellBtnUndo : "Undo", +DlgSpellNoSuggestions : "- No suggestions -", +DlgSpellProgress : "Spell check in progress...", +DlgSpellNoMispell : "Spell check complete: No misspellings found", +DlgSpellNoChanges : "Spell check complete: No words changed", +DlgSpellOneChange : "Spell check complete: One word changed", +DlgSpellManyChanges : "Spell check complete: %1 words changed", -IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", // Button Dialog -DlgButtonText : "Text (Value)", //MISSING -DlgButtonType : "Type", //MISSING +DlgButtonText : "Text (Value)", +DlgButtonType : "Type", // Checkbox and Radio Button Dialogs -DlgCheckboxName : "Name", //MISSING -DlgCheckboxValue : "Value", //MISSING -DlgCheckboxSelected : "Selected", //MISSING +DlgCheckboxName : "Name", +DlgCheckboxValue : "Value", +DlgCheckboxSelected : "Selected", // Form Dialog -DlgFormName : "Name", //MISSING -DlgFormAction : "Action", //MISSING -DlgFormMethod : "Method", //MISSING +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", // Select Field Dialog -DlgSelectName : "Name", //MISSING -DlgSelectValue : "Value", //MISSING -DlgSelectSize : "Size", //MISSING -DlgSelectLines : "lines", //MISSING -DlgSelectChkMulti : "Allow multiple selections", //MISSING -DlgSelectOpAvail : "Available Options", //MISSING -DlgSelectOpText : "Text", //MISSING -DlgSelectOpValue : "Value", //MISSING -DlgSelectBtnAdd : "Add", //MISSING -DlgSelectBtnModify : "Modify", //MISSING -DlgSelectBtnUp : "Up", //MISSING -DlgSelectBtnDown : "Down", //MISSING -DlgSelectBtnSetValue : "Set as selected value", //MISSING -DlgSelectBtnDelete : "Delete", //MISSING +DlgSelectName : "Name", +DlgSelectValue : "Value", +DlgSelectSize : "Size", +DlgSelectLines : "lines", +DlgSelectChkMulti : "Allow multiple selections", +DlgSelectOpAvail : "Available Options", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Value", +DlgSelectBtnAdd : "Add", +DlgSelectBtnModify : "Modify", +DlgSelectBtnUp : "Up", +DlgSelectBtnDown : "Down", +DlgSelectBtnSetValue : "Set as selected value", +DlgSelectBtnDelete : "Delete", // Textarea Dialog -DlgTextareaName : "Name", //MISSING -DlgTextareaCols : "Columns", //MISSING -DlgTextareaRows : "Rows", //MISSING +DlgTextareaName : "Name", +DlgTextareaCols : "Columns", +DlgTextareaRows : "Rows", // Text Field Dialog -DlgTextName : "Name", //MISSING -DlgTextValue : "Value", //MISSING -DlgTextCharWidth : "Character Width", //MISSING -DlgTextMaxChars : "Maximum Characters", //MISSING -DlgTextType : "Type", //MISSING -DlgTextTypeText : "Text", //MISSING -DlgTextTypePass : "Password", //MISSING +DlgTextName : "Name", +DlgTextValue : "Value", +DlgTextCharWidth : "Character Width", +DlgTextMaxChars : "Maximum Characters", +DlgTextType : "Type", +DlgTextTypeText : "Text", +DlgTextTypePass : "Password", // Hidden Field Dialog -DlgHiddenName : "Name", //MISSING -DlgHiddenValue : "Value", //MISSING +DlgHiddenName : "Name", +DlgHiddenValue : "Value", // Bulleted List Dialog -BulletedListProp : "Bulleted List Properties", //MISSING -NumberedListProp : "Numbered List Properties", //MISSING -DlgLstType : "Type", //MISSING -DlgLstTypeCircle : "Circle", //MISSING -DlgLstTypeDisk : "Disk", //MISSING -DlgLstTypeSquare : "Square", //MISSING -DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING -DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING -DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING -DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING -DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING +BulletedListProp : "Bulleted List Properties", +NumberedListProp : "Numbered List Properties", +DlgLstType : "Type", +DlgLstTypeCircle : "Circle", +DlgLstTypeDisk : "Disk", +DlgLstTypeSquare : "Square", +DlgLstTypeNumbers : "Numbers (1, 2, 3)", +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "General", //MISSING -DlgDocBackTab : "Background", //MISSING -DlgDocColorsTab : "Colors and Margins", //MISSING -DlgDocMetaTab : "Meta Data", //MISSING +DlgDocGeneralTab : "General", +DlgDocBackTab : "Background", +DlgDocColorsTab : "Colors and Margins", +DlgDocMetaTab : "Meta Data", -DlgDocPageTitle : "Page Title", //MISSING -DlgDocLangDir : "Language Direction", //MISSING -DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING -DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING -DlgDocLangCode : "Language Code", //MISSING -DlgDocCharSet : "Character Set Encoding", //MISSING -DlgDocCharSetOther : "Other Character Set Encoding", //MISSING +DlgDocPageTitle : "Page Title", +DlgDocLangDir : "Language Direction", +DlgDocLangDirLTR : "Left to Right (LTR)", +DlgDocLangDirRTL : "Right to Left (RTL)", +DlgDocLangCode : "Language Code", +DlgDocCharSet : "Character Set Encoding", +DlgDocCharSetOther : "Other Character Set Encoding", -DlgDocDocType : "Document Type Heading", //MISSING -DlgDocDocTypeOther : "Other Document Type Heading", //MISSING -DlgDocIncXHTML : "Include XHTML Declarations", //MISSING -DlgDocBgColor : "Background Color", //MISSING -DlgDocBgImage : "Background Image URL", //MISSING -DlgDocBgNoScroll : "Nonscrolling Background", //MISSING -DlgDocCText : "Text", //MISSING -DlgDocCLink : "Link", //MISSING -DlgDocCVisited : "Visited Link", //MISSING -DlgDocCActive : "Active Link", //MISSING -DlgDocMargins : "Page Margins", //MISSING -DlgDocMaTop : "Top", //MISSING -DlgDocMaLeft : "Left", //MISSING -DlgDocMaRight : "Right", //MISSING -DlgDocMaBottom : "Bottom", //MISSING -DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING -DlgDocMeDescr : "Document Description", //MISSING -DlgDocMeAuthor : "Author", //MISSING -DlgDocMeCopy : "Copyright", //MISSING -DlgDocPreview : "Preview", //MISSING +DlgDocDocType : "Document Type Heading", +DlgDocDocTypeOther : "Other Document Type Heading", +DlgDocIncXHTML : "Include XHTML Declarations", +DlgDocBgColor : "Background Color", +DlgDocBgImage : "Background Image URL", +DlgDocBgNoScroll : "Nonscrolling Background", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Visited Link", +DlgDocCActive : "Active Link", +DlgDocMargins : "Page Margins", +DlgDocMaTop : "Top", +DlgDocMaLeft : "Left", +DlgDocMaRight : "Right", +DlgDocMaBottom : "Bottom", +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", +DlgDocMeDescr : "Document Description", +DlgDocMeAuthor : "Author", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Preview", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Templates", +DlgTemplatesTitle : "Content Templates", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesLoading : "Loading templates list. Please wait...", +DlgTemplatesNoTpl : "(No templates defined)", // About Dialog -DlgAboutAboutTab : "About", //MISSING -DlgAboutBrowserInfoTab : "Browser Info", //MISSING +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "Browser Info", DlgAboutVersion : "version", DlgAboutLicense : "Licensed under the terms of the GNU Lesser General Public License", DlgAboutInfo : "For further information go to" Index: lams_central/web/fckeditor/editor/lang/en-uk.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/en-uk.js (.../en-uk.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/en-uk.js (.../en-uk.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -39,9 +39,11 @@ InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", -Anchor : "Insert/Edit Anchor", //MISSING +Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", @@ -75,23 +77,23 @@ FontFormat : "Format", Font : "Font", FontSize : "Size", -TextColor : "Text Color", //MISSING -BGColor : "Background Color", //MISSING +TextColor : "Text Color", +BGColor : "Background Color", Source : "Source", Find : "Find", Replace : "Replace", -SpellCheck : "Check Spell", //MISSING -UniversalKeyboard : "Universal Keyboard", //MISSING +SpellCheck : "Check Spell", +UniversalKeyboard : "Universal Keyboard", -Form : "Form", //MISSING -Checkbox : "Checkbox", //MISSING -RadioButton : "Radio Button", //MISSING -TextField : "Text Field", //MISSING -Textarea : "Textarea", //MISSING -HiddenField : "Hidden Field", //MISSING -Button : "Button", //MISSING -SelectionField : "Selection Field", //MISSING -ImageButton : "Image Button", //MISSING +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", // Context Menu EditLink : "Edit Link", @@ -106,17 +108,18 @@ CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", -AnchorProp : "Anchor Properties", //MISSING -ButtonProp : "Button Properties", //MISSING -CheckboxProp : "Checkbox Properties", //MISSING -HiddenFieldProp : "Hidden Field Properties", //MISSING -RadioButtonProp : "Radio Button Properties", //MISSING -ImageButtonProp : "Image Button Properties", //MISSING -TextFieldProp : "Text Field Properties", //MISSING -SelectionFieldProp : "Selection Field Properties", //MISSING -TextareaProp : "Textarea Properties", //MISSING -FormProp : "Form Properties", //MISSING +AnchorProp : "Anchor Properties", +ButtonProp : "Button Properties", +CheckboxProp : "Checkbox Properties", +HiddenFieldProp : "Hidden Field Properties", +RadioButtonProp : "Radio Button Properties", +ImageButtonProp : "Image Button Properties", +TextFieldProp : "Text Field Properties", +SelectionFieldProp : "Selection Field Properties", +TextareaProp : "Textarea Properties", +FormProp : "Form Properties", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", @@ -134,9 +137,11 @@ DlgBtnOK : "OK", DlgBtnCancel : "Cancel", DlgBtnClose : "Close", -DlgBtnBrowseServer : "Browse Server", //MISSING +DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", -DlgOpOther : "<Other>", //MISSING +DlgOpOther : "<Other>", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "<not set>", @@ -181,8 +186,18 @@ DlgImgAlignTop : "Top", DlgImgPreview : "Preview", DlgImgAlertUrl : "Please type the image URL", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", @@ -212,7 +227,7 @@ DlgLnkTargetParent : "Parent Window (_parent)", DlgLnkTargetSelf : "Same Window (_self)", DlgLnkTargetTop : "Topmost Window (_top)", -DlgLnkTargetFrameName : "Target Frame Name", //MISSING +DlgLnkTargetFrameName : "Target Frame Name", DlgLnkPopWinName : "Popup Window Name", DlgLnkPopWinFeat : "Popup Window Features", DlgLnkPopResize : "Resizable", @@ -233,10 +248,10 @@ DlnLnkMsgNoAnchor : "Please select an anchor", // Color Dialog -DlgColorTitle : "Select Color", //MISSING -DlgColorBtnClear : "Clear", //MISSING -DlgColorHighlight : "Highlight", //MISSING -DlgColorSelected : "Selected", //MISSING +DlgColorTitle : "Select Color", +DlgColorBtnClear : "Clear", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Selected", // Smiley Dialog DlgSmileyTitle : "Insert a Smiley", @@ -285,8 +300,8 @@ DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", -DlgCellBackColor : "Background Color", //MISSING -DlgCellBorderColor : "Border Color", //MISSING +DlgCellBackColor : "Background Color", +DlgCellBorderColor : "Border Color", DlgCellBtnSelect : "Select...", // Find Dialog @@ -311,143 +326,147 @@ PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", -DlgPasteMsg : "The editor was not able to automaticaly execute pasting because of the security settings of your browser.
Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", +DlgPasteCleanBox : "Clean Up Box", + // Color Picker -ColorAutomatic : "Automatic", //MISSING -ColorMoreColors : "More Colors...", //MISSING +ColorAutomatic : "Automatic", +ColorMoreColors : "More Colors...", // Document Properties -DocProps : "Document Properties", //MISSING +DocProps : "Document Properties", // Anchor Dialog -DlgAnchorTitle : "Anchor Properties", //MISSING -DlgAnchorName : "Anchor Name", //MISSING -DlgAnchorErrorName : "Please type the anchor name", //MISSING +DlgAnchorTitle : "Anchor Properties", +DlgAnchorName : "Anchor Name", +DlgAnchorErrorName : "Please type the anchor name", // Speller Pages Dialog -DlgSpellNotInDic : "Not in dictionary", //MISSING -DlgSpellChangeTo : "Change to", //MISSING -DlgSpellBtnIgnore : "Ignore", //MISSING -DlgSpellBtnIgnoreAll : "Ignore All", //MISSING -DlgSpellBtnReplace : "Replace", //MISSING -DlgSpellBtnReplaceAll : "Replace All", //MISSING -DlgSpellBtnUndo : "Undo", //MISSING -DlgSpellNoSuggestions : "- No suggestions -", //MISSING -DlgSpellProgress : "Spell check in progress...", //MISSING -DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING -DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING -DlgSpellOneChange : "Spell check complete: One word changed", //MISSING -DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING +DlgSpellNotInDic : "Not in dictionary", +DlgSpellChangeTo : "Change to", +DlgSpellBtnIgnore : "Ignore", +DlgSpellBtnIgnoreAll : "Ignore All", +DlgSpellBtnReplace : "Replace", +DlgSpellBtnReplaceAll : "Replace All", +DlgSpellBtnUndo : "Undo", +DlgSpellNoSuggestions : "- No suggestions -", +DlgSpellProgress : "Spell check in progress...", +DlgSpellNoMispell : "Spell check complete: No misspellings found", +DlgSpellNoChanges : "Spell check complete: No words changed", +DlgSpellOneChange : "Spell check complete: One word changed", +DlgSpellManyChanges : "Spell check complete: %1 words changed", -IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", // Button Dialog -DlgButtonText : "Text (Value)", //MISSING -DlgButtonType : "Type", //MISSING +DlgButtonText : "Text (Value)", +DlgButtonType : "Type", // Checkbox and Radio Button Dialogs -DlgCheckboxName : "Name", //MISSING -DlgCheckboxValue : "Value", //MISSING -DlgCheckboxSelected : "Selected", //MISSING +DlgCheckboxName : "Name", +DlgCheckboxValue : "Value", +DlgCheckboxSelected : "Selected", // Form Dialog -DlgFormName : "Name", //MISSING -DlgFormAction : "Action", //MISSING -DlgFormMethod : "Method", //MISSING +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", // Select Field Dialog -DlgSelectName : "Name", //MISSING -DlgSelectValue : "Value", //MISSING -DlgSelectSize : "Size", //MISSING -DlgSelectLines : "lines", //MISSING -DlgSelectChkMulti : "Allow multiple selections", //MISSING -DlgSelectOpAvail : "Available Options", //MISSING -DlgSelectOpText : "Text", //MISSING -DlgSelectOpValue : "Value", //MISSING -DlgSelectBtnAdd : "Add", //MISSING -DlgSelectBtnModify : "Modify", //MISSING -DlgSelectBtnUp : "Up", //MISSING -DlgSelectBtnDown : "Down", //MISSING -DlgSelectBtnSetValue : "Set as selected value", //MISSING -DlgSelectBtnDelete : "Delete", //MISSING +DlgSelectName : "Name", +DlgSelectValue : "Value", +DlgSelectSize : "Size", +DlgSelectLines : "lines", +DlgSelectChkMulti : "Allow multiple selections", +DlgSelectOpAvail : "Available Options", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Value", +DlgSelectBtnAdd : "Add", +DlgSelectBtnModify : "Modify", +DlgSelectBtnUp : "Up", +DlgSelectBtnDown : "Down", +DlgSelectBtnSetValue : "Set as selected value", +DlgSelectBtnDelete : "Delete", // Textarea Dialog -DlgTextareaName : "Name", //MISSING -DlgTextareaCols : "Columns", //MISSING -DlgTextareaRows : "Rows", //MISSING +DlgTextareaName : "Name", +DlgTextareaCols : "Columns", +DlgTextareaRows : "Rows", // Text Field Dialog -DlgTextName : "Name", //MISSING -DlgTextValue : "Value", //MISSING -DlgTextCharWidth : "Character Width", //MISSING -DlgTextMaxChars : "Maximum Characters", //MISSING -DlgTextType : "Type", //MISSING -DlgTextTypeText : "Text", //MISSING -DlgTextTypePass : "Password", //MISSING +DlgTextName : "Name", +DlgTextValue : "Value", +DlgTextCharWidth : "Character Width", +DlgTextMaxChars : "Maximum Characters", +DlgTextType : "Type", +DlgTextTypeText : "Text", +DlgTextTypePass : "Password", // Hidden Field Dialog -DlgHiddenName : "Name", //MISSING -DlgHiddenValue : "Value", //MISSING +DlgHiddenName : "Name", +DlgHiddenValue : "Value", // Bulleted List Dialog -BulletedListProp : "Bulleted List Properties", //MISSING -NumberedListProp : "Numbered List Properties", //MISSING -DlgLstType : "Type", //MISSING -DlgLstTypeCircle : "Circle", //MISSING -DlgLstTypeDisk : "Disk", //MISSING -DlgLstTypeSquare : "Square", //MISSING -DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING -DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING -DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING -DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING -DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING +BulletedListProp : "Bulleted List Properties", +NumberedListProp : "Numbered List Properties", +DlgLstType : "Type", +DlgLstTypeCircle : "Circle", +DlgLstTypeDisk : "Disk", +DlgLstTypeSquare : "Square", +DlgLstTypeNumbers : "Numbers (1, 2, 3)", +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "General", //MISSING -DlgDocBackTab : "Background", //MISSING -DlgDocColorsTab : "Colors and Margins", //MISSING -DlgDocMetaTab : "Meta Data", //MISSING +DlgDocGeneralTab : "General", +DlgDocBackTab : "Background", +DlgDocColorsTab : "Colors and Margins", +DlgDocMetaTab : "Meta Data", -DlgDocPageTitle : "Page Title", //MISSING -DlgDocLangDir : "Language Direction", //MISSING -DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING -DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING -DlgDocLangCode : "Language Code", //MISSING -DlgDocCharSet : "Character Set Encoding", //MISSING -DlgDocCharSetOther : "Other Character Set Encoding", //MISSING +DlgDocPageTitle : "Page Title", +DlgDocLangDir : "Language Direction", +DlgDocLangDirLTR : "Left to Right (LTR)", +DlgDocLangDirRTL : "Right to Left (RTL)", +DlgDocLangCode : "Language Code", +DlgDocCharSet : "Character Set Encoding", +DlgDocCharSetOther : "Other Character Set Encoding", -DlgDocDocType : "Document Type Heading", //MISSING -DlgDocDocTypeOther : "Other Document Type Heading", //MISSING -DlgDocIncXHTML : "Include XHTML Declarations", //MISSING -DlgDocBgColor : "Background Color", //MISSING -DlgDocBgImage : "Background Image URL", //MISSING -DlgDocBgNoScroll : "Nonscrolling Background", //MISSING -DlgDocCText : "Text", //MISSING -DlgDocCLink : "Link", //MISSING -DlgDocCVisited : "Visited Link", //MISSING -DlgDocCActive : "Active Link", //MISSING -DlgDocMargins : "Page Margins", //MISSING -DlgDocMaTop : "Top", //MISSING -DlgDocMaLeft : "Left", //MISSING -DlgDocMaRight : "Right", //MISSING -DlgDocMaBottom : "Bottom", //MISSING -DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING -DlgDocMeDescr : "Document Description", //MISSING -DlgDocMeAuthor : "Author", //MISSING -DlgDocMeCopy : "Copyright", //MISSING -DlgDocPreview : "Preview", //MISSING +DlgDocDocType : "Document Type Heading", +DlgDocDocTypeOther : "Other Document Type Heading", +DlgDocIncXHTML : "Include XHTML Declarations", +DlgDocBgColor : "Background Color", +DlgDocBgImage : "Background Image URL", +DlgDocBgNoScroll : "Nonscrolling Background", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Visited Link", +DlgDocCActive : "Active Link", +DlgDocMargins : "Page Margins", +DlgDocMaTop : "Top", +DlgDocMaLeft : "Left", +DlgDocMaRight : "Right", +DlgDocMaBottom : "Bottom", +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", +DlgDocMeDescr : "Document Description", +DlgDocMeAuthor : "Author", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Preview", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Templates", +DlgTemplatesTitle : "Content Templates", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesLoading : "Loading templates list. Please wait...", +DlgTemplatesNoTpl : "(No templates defined)", // About Dialog -DlgAboutAboutTab : "About", //MISSING -DlgAboutBrowserInfoTab : "Browser Info", //MISSING +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "Browser Info", DlgAboutVersion : "version", DlgAboutLicense : "Licensed under the terms of the GNU Lesser General Public License", DlgAboutInfo : "For further information go to" Index: lams_central/web/fckeditor/editor/lang/en.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/en.js (.../en.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/en.js (.../en.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", @@ -105,6 +107,7 @@ CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", AnchorProp : "Anchor Properties", ButtonProp : "Button Properties", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", DlgOpOther : "<Other>", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "<not set>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Please type the image URL", DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", @@ -310,8 +325,12 @@ PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", -DlgPasteMsg : "The editor was not able to automatically execute pasting because of the security settings of your browser.
Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", +DlgPasteCleanBox : "Clean Up Box", + // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "More Colors...", Index: lams_central/web/fckeditor/editor/lang/eo.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/eo.js (.../eo.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/eo.js (.../eo.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Enmeti/Ŝanĝi Ankron", InsertImageLbl : "Bildo", InsertImage : "Enmeti/Ŝanĝi Bildon", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabelo", InsertTable : "Enmeti/Ŝanĝi Tabelon", InsertLineLbl : "Horizonta Linio", @@ -105,6 +107,7 @@ CellProperties : "Atributoj de Ĉelo", TableProperties : "Atributoj de Tabelo", ImageProperties : "Atributoj de Bildo", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Ankraj Atributoj", ButtonProp : "Butonaj Atributoj", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Foliumi en la Servilo", DlgAdvancedTag : "Speciala", DlgOpOther : "<Alia>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<Defaŭlta>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Bonvolu tajpi la URL de la bildo", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Ligilo", DlgLnkInfoTab : "Informoj pri la Ligilo", @@ -310,8 +325,12 @@ PasteAsText : "Interglui kiel Tekston", PasteFromWord : "Interglui el Word", -DlgPasteMsg : "La redaktilo ne povis aŭtomate interglui pro la sekurecagordo de via TTT-legilo.
Bonvolu interglui viajn datumojn en la ĉi suban tekstozonon per la klavaro (Ctrl-V) kaj musklaku la butonon Akceptita.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Aŭtomata", ColorMoreColors : "Pli da Koloroj...", Index: lams_central/web/fckeditor/editor/lang/es.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/es.js (.../es.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/es.js (.../es.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Referencia", InsertImageLbl : "Imagen", InsertImage : "Insertar/Editar Imagen", +InsertFlashLbl : "Flash", +InsertFlash : "Insertar/Editar Flash", InsertTableLbl : "Tabla", InsertTable : "Insertar/Editar Tabla", InsertLineLbl : "Línea", @@ -105,6 +107,7 @@ CellProperties : "Propiedades de Celda", TableProperties : "Propiedades de Tabla", ImageProperties : "Propiedades de Imagen", +FlashProperties : "Propiedades de Flash", AnchorProp : "Propiedades de Referencia", ButtonProp : "Propiedades de Botón", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Ver Servidor", DlgAdvancedTag : "Avanzado", DlgOpOther : "<Otro>", +DlgInfoTab : "Información", +DlgAlertUrl : "Inserte el URL", // General Dialogs Labels DlgGenNotSet : "<No definido>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Por favor tipee el URL de la imagen", DlgImgLinkTab : "Vínculo", +// Flash Dialog +DlgFlashTitle : "Propiedades de Flash", +DlgFlashChkPlay : "Autoejecución", +DlgFlashChkLoop : "Repetir", +DlgFlashChkMenu : "Activar Menú Flash", +DlgFlashScale : "Escala", +DlgFlashScaleAll : "Mostrar todo", +DlgFlashScaleNoBorder : "Sin Borde", +DlgFlashScaleFit : "Ajustado", + // Link Dialog DlgLnkWindowTitle : "Vínculo", DlgLnkInfoTab : "Información de Vínculo", @@ -310,8 +325,12 @@ PasteAsText : "Pegar como Texto Plano", PasteFromWord : "Pegar desde Word", -DlgPasteMsg : "El editor no pudo ejecutar automáticamente el pegado debido a la configuración de seguridad de su navegador.
Por favor pegue dentro del sigueinte recuadro usando el teclado (Ctrl+V) y presione OK.", +DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (Ctrl+V); luego presione OK.", +DlgPasteIgnoreFont : "Ignorar definiciones de fuentes", +DlgPasteRemoveStyles : "Remover definiciones de estilo", +DlgPasteCleanBox : "Clean Up Box", + // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Más Colores...", Index: lams_central/web/fckeditor/editor/lang/et.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/et.js (.../et.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/et.js (.../et.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "Pilt", InsertImage : "Sisesta/Muuda pilt", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabel", InsertTable : "Sisesta/Muuda tabel", InsertLineLbl : "Joon", @@ -105,6 +107,7 @@ CellProperties : "Lahtri atribuudid", TableProperties : "Tabeli atribuudid", ImageProperties : "Pildi atribuudid", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Anchor Properties", //MISSING ButtonProp : "Button Properties", //MISSING @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "Täpsemalt", DlgOpOther : "<Other>", //MISSING +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<määramata>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Palun kirjuta pildi URL", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Lingi info", @@ -310,8 +325,12 @@ PasteAsText : "Kleebi tavalise tekstina", PasteFromWord : "Kleebi Wordist", -DlgPasteMsg : "Redaktor ei saanud sinu brauseri turvaseadete pärast automatselt kleepida.
Palun kleebi järgmisse kasti kasutades klaviatuuri(Ctrl+V) ja vajuta OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automaatne", ColorMoreColors : "Rohkem värve...", Index: lams_central/web/fckeditor/editor/lang/eu.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/eu.js (.../eu.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/eu.js (.../eu.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "Aingura", InsertImageLbl : "Irudia", InsertImage : "Txertatu/Editatu Irudia", +InsertFlashLbl : "Flasha", +InsertFlash : "Txertatu/Editatu Flasha", InsertTableLbl : "Taula", InsertTable : "Txertatu/Editatu Taula", InsertLineLbl : "Lerroa", @@ -106,6 +108,7 @@ CellProperties : "Gelaxkaren Ezaugarriak", TableProperties : "Taularen Ezaugarriak", ImageProperties : "Irudiaren Ezaugarriak", +FlashProperties : "Flasharen Ezaugarriak", AnchorProp : "Ainguraren Ezaugarriak", ButtonProp : "Botoiaren Ezaugarriak", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "Zerbitzaria arakatu", DlgAdvancedTag : "Aurreratua", DlgOpOther : "<Bestelakoak>", +DlgInfoTab : "Informazioa", +DlgAlertUrl : "Mesedez URLa idatzi ezazu", // General Dialogs Labels DlgGenNotSet : "<Ezarri gabe>", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "Mesedez Irudiaren URLa idatzi", DlgImgLinkTab : "Esteka", +// Flash Dialog +DlgFlashTitle : "Flasharen Ezaugarriak", +DlgFlashChkPlay : "Automatikoki Erreproduzitu", +DlgFlashChkLoop : "Begizta", +DlgFlashChkMenu : "Flasharen Menua Gaitu", +DlgFlashScale : "Eskalatu", +DlgFlashScaleAll : "Dena erakutsi", +DlgFlashScaleNoBorder : "Ertzarik gabe", +DlgFlashScaleFit : "Doitu", + // Link Dialog DlgLnkWindowTitle : "Esteka", DlgLnkInfoTab : "Estekaren Informazioa", @@ -311,8 +326,12 @@ PasteAsText : "Testu Arrunta bezala Itsatsi", PasteFromWord : "Word-etik itsatsi", -DlgPasteMsg : "Editoreak ezin du atomatikoki testua itsatsi zure nabigatzailearen segurtasun neurriengatik.
Mesedez, itsatsi ezazu ondorengo kutxan teklatuaren bidez (Ctrl+V) eta Ados botoian klik egin.", +DlgPasteMsg2 : "Mesedez teklatua erabilita (Ctrl+V) ondorego eremuan testua itsatsi eta OK sakatu.", +DlgPasteIgnoreFont : "Letra Motaren definizioa ezikusi", +DlgPasteRemoveStyles : "Estilo definizioak kendu", +DlgPasteCleanBox : "Testu-eremua Garbitu", + // Color Picker ColorAutomatic : "Automatikoa", ColorMoreColors : "Kolore gehiago...", Index: lams_central/web/fckeditor/editor/lang/fa.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/fa.js (.../fa.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/fa.js (.../fa.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "درج/ويرايش لنگر", InsertImageLbl : "تصوير", InsertImage : "درج/ويرايش تصوير", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "جدول", InsertTable : "درج/ويرايش جدول", InsertLineLbl : "خط", @@ -105,6 +107,7 @@ CellProperties : "ويژگيهای سلول", TableProperties : "ويژگيهای جدول", ImageProperties : "ويژگيهای تصوير", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "ويژگيهای لنگر", ButtonProp : "ويژگيهای دکمه", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "فهرست نمايی سرور", DlgAdvancedTag : "پيشرفته", DlgOpOther : "<غيره>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<تعين نشده>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "لطفا URL تصوير را انتخاب کنيد", DlgImgLinkTab : "لينک", +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "لينک", DlgLnkInfoTab : "اطلاعات لينک", @@ -310,8 +325,12 @@ PasteAsText : "چسباندن به عنوان متن ساده", PasteFromWord : "چسباندن از Word", -DlgPasteMsg : "به خاطر تنظيمات امنيتی مرورگر شما، ويرايشگر نتوانست به طور خودکار عملکرد چسباندن را به انجام برساند.
لطفا به کمک کليد (Ctrl+V) متن را درون جهبه زير بچسبانيد و دکمه تائيد را فشار دهيد.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "خودکار", ColorMoreColors : "رنگهای بيشتر...", Index: lams_central/web/fckeditor/editor/lang/fi.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/fi.js (.../fi.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/fi.js (.../fi.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Lisää ankkuri/muokkaa ankkuria", InsertImageLbl : "Kuva", InsertImage : "Lisää kuva/muokkaa kuvaa", +InsertFlashLbl : "Flash", +InsertFlash : "Lisää/muokkaa Flashia", InsertTableLbl : "Taulu", InsertTable : "Lisää taulu/muokkaa taulua", InsertLineLbl : "Murtoviiva", @@ -105,6 +107,7 @@ CellProperties : "Solun ominaisuudet", TableProperties : "Taulun ominaisuudet", ImageProperties : "Kuvan ominaisuudet", +FlashProperties : "Flash ominaisuudet", AnchorProp : "Ankkurin ominaisuudet", ButtonProp : "Painikkeen ominaisuudet", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Selaa palvelinta", DlgAdvancedTag : "Lisäominaisuudet", DlgOpOther : "Muut", +DlgInfoTab : "Info", +DlgAlertUrl : "Lisää URL", // General Dialogs Labels DlgGenNotSet : "<ei asetettu>", @@ -160,7 +165,7 @@ DlgImgBtnUpload : "Lähetä palvelimelle", DlgImgURL : "Osoite", DlgImgUpload : "Lisää kuva", -DlgImgAlt : "Kuvateksti", +DlgImgAlt : "Vaihtoehtoinen teksti", DlgImgWidth : "Leveys", DlgImgHeight : "Korkeus", DlgImgLockRatio : "Lukitse suhteet", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Kirjoita kuvan osoite (URL)", DlgImgLinkTab : "Linkki", +// Flash Dialog +DlgFlashTitle : "Flash ominaisuudet", +DlgFlashChkPlay : "Automaattinen käynnistys", +DlgFlashChkLoop : "Toisto", +DlgFlashChkMenu : "Näytä Flash-valikko", +DlgFlashScale : "Levitä", +DlgFlashScaleAll : "Näytä kaikki", +DlgFlashScaleNoBorder : "Ei rajaa", +DlgFlashScaleFit : "Tarkka koko", + // Link Dialog DlgLnkWindowTitle : "Linkki", DlgLnkInfoTab : "Linkin tiedot", @@ -310,8 +325,12 @@ PasteAsText : "Liitä tekstinä", PasteFromWord : "Liitä Wordista", -DlgPasteMsg : "Editori ei voinut toteuttaa liittämistä selaimesi turva-asetusten takia.
Suorita liittäminen käyttäen näppäimistöä (Ctrl+V) ja valitse OK.", +DlgPasteMsg2 : "Liitä painamalla (Ctrl+V) ja painamalla OK.", +DlgPasteIgnoreFont : "Jätä huomioimatta fonttimääritykset", +DlgPasteRemoveStyles : "Poista tyylimääritykset", +DlgPasteCleanBox : "Tyhjennä", + // Color Picker ColorAutomatic : "Automaattinen", ColorMoreColors : "Lisää värejä...", Index: lams_central/web/fckeditor/editor/lang/fr.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/fr.js (.../fr.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/fr.js (.../fr.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insérer/Modifier Ancre", InsertImageLbl : "Image", InsertImage : "Insérer/Modifier Image", +InsertFlashLbl : "Animation Flash", +InsertFlash : "Insérer/Modifier Animation Flash", InsertTableLbl : "Tableau", InsertTable : "Insérer/Modifier Tableau", InsertLineLbl : "Séparateur", @@ -105,6 +107,7 @@ CellProperties : "Propriétés de Cellule", TableProperties : "Propriétés de Tableau", ImageProperties : "Propriétés d'Image", +FlashProperties : "Propriétés d'Animation Flash", AnchorProp : "Propriétés d'Ancre", ButtonProp : "Propriétés de Bouton", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Parcourir le Serveur", DlgAdvancedTag : "Avancé", DlgOpOther : "<Autre>", +DlgInfoTab : "Info", +DlgAlertUrl : "Veuillez saisir l'URL", // General Dialogs Labels DlgGenNotSet : "<Par Défaut>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Veuillez saisir l'URL de l'image", DlgImgLinkTab : "Lien", +// Flash Dialog +DlgFlashTitle : "Propriétés d'animation Flash", +DlgFlashChkPlay : "Lecture automatique", +DlgFlashChkLoop : "Boucle", +DlgFlashChkMenu : "Activer menu Flash", +DlgFlashScale : "Affichage", +DlgFlashScaleAll : "Par défault (tout montrer)", +DlgFlashScaleNoBorder : "Sans Bordure", +DlgFlashScaleFit : "Ajuster aux Dimensions", + // Link Dialog DlgLnkWindowTitle : "Propriétés de Lien", DlgLnkInfoTab : "Informations sur le Lien", @@ -310,8 +325,12 @@ PasteAsText : "Coller comme texte", PasteFromWord : "Coller à partir de Word", -DlgPasteMsg : "L'éditeur n'a pu coller automatiquement vos données à cause des paramètres de sécurité de votre navigateur.
Veuillez coller dans la zone suivante en utilisant le clavier (Ctrl+V) et cliquez sur OK.", +DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et cliquez sur OK.", +DlgPasteIgnoreFont : "Ignorer les Polices de Caractères", +DlgPasteRemoveStyles : "Supprimer les Styles", +DlgPasteCleanBox : "Effacer le contenu", + // Color Picker ColorAutomatic : "Automatique", ColorMoreColors : "Plus de Couleurs...", Index: lams_central/web/fckeditor/editor/lang/gl.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/gl.js (.../gl.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/gl.js (.../gl.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Inserir/Editar Referencia", InsertImageLbl : "Imaxe", InsertImage : "Inserir/Editar Imaxe", +InsertFlashLbl : "Flash", +InsertFlash : "Inserir/Editar Flash", InsertTableLbl : "Tabla", InsertTable : "Inserir/Editar Tabla", InsertLineLbl : "Liña", @@ -105,6 +107,7 @@ CellProperties : "Propriedades da Cela", TableProperties : "Propriedades da Taboa", ImageProperties : "Propriedades Imaxe", +FlashProperties : "Propriedades Flash", AnchorProp : "Propriedades da Referencia", ButtonProp : "Propriedades do Botón", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Navegar no Servidor", DlgAdvancedTag : "Advanzado", DlgOpOther : "<Outro>", +DlgInfoTab : "Info", +DlgAlertUrl : "Por favor, insira a URL", // General Dialogs Labels DlgGenNotSet : "<non definido>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Por favor, escriba a URL da imaxe", DlgImgLinkTab : "Ligazón", +// Flash Dialog +DlgFlashTitle : "Propriedades Flash", +DlgFlashChkPlay : "Auto Execución", +DlgFlashChkLoop : "Bucle", +DlgFlashChkMenu : "Activar Menú Flash", +DlgFlashScale : "Escalar", +DlgFlashScaleAll : "Amosar Todo", +DlgFlashScaleNoBorder : "Sen Borde", +DlgFlashScaleFit : "Encaixar axustando", + // Link Dialog DlgLnkWindowTitle : "Ligazón", DlgLnkInfoTab : "Información da Ligazón", @@ -310,8 +325,12 @@ PasteAsText : "Pegar como texto plano", PasteFromWord : "Pegar dende Word", -DlgPasteMsg : "O editor non pode executar automáticamente o pegado debido ós axustes de seguridade do seu navegador.
Por favor, pegue dentro do seguinte cadro usando o atallo de teclado (Ctrl+V) e pulse OK.", +DlgPasteMsg2 : "Por favor, pegue dentro do seguinte cadro usando o teclado (Ctrl+V) e pulse OK.", +DlgPasteIgnoreFont : "Ignorar as definicións de Tipografía", +DlgPasteRemoveStyles : "Eliminar as definicións de Estilos", +DlgPasteCleanBox : "Limpar o Cadro", + // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Máis Cores...", Index: lams_central/web/fckeditor/editor/lang/he.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/he.js (.../he.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/he.js (.../he.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "תמונה", InsertImage : "הוספת/עריכת תמונה", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "טבלה", InsertTable : "הוספת/עריכת טבלה", InsertLineLbl : "קו", @@ -105,6 +107,7 @@ CellProperties : "תכונות התא", TableProperties : "תכונות הטבלה", ImageProperties : "תכונות התמונה", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Anchor Properties", //MISSING ButtonProp : "Button Properties", //MISSING @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "אפשרויות מתקדמות", DlgOpOther : "<Other>", //MISSING +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<לא נקבע>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "נא להקליד את כתובת התמונה", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "קישור", DlgLnkInfoTab : "מידע על הקישור", @@ -310,8 +325,12 @@ PasteAsText : "הדבקה כטקסט פשוט", PasteFromWord : "הדבקה מ-Word", -DlgPasteMsg : "העורך לא הצליח לבצע הדבקה אוטומטית בגללהגדרות האבטחה של הדפדפן שלך.
נא להדביק לתוך התיבה הבאה באמצעות המקלדת (Ctrl+V) וללחוץ על אישור.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "אוטומטי", ColorMoreColors : "צבעים נוספים...", Index: lams_central/web/fckeditor/editor/lang/hr.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/hr.js (.../hr.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/hr.js (.../hr.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,12 +41,14 @@ Anchor : "Ubaci/promjeni sidro", InsertImageLbl : "Slika", InsertImage : "Ubaci/promjeni sliku", +InsertFlashLbl : "Flash", +InsertFlash : "Ubaci/promjeni Flash", InsertTableLbl : "Tablica", InsertTable : "Ubaci/promjeni tablicu", InsertLineLbl : "Linija", InsertLine : "Ubaci vodoravnu liniju", InsertSpecialCharLbl: "Posebni karakteri", -InsertSpecialChar : "Ubaci posebne karaktere", +InsertSpecialChar : "Ubaci posebne znakove", InsertSmileyLbl : "Smješko", InsertSmiley : "Ubaci smješka", About : "O FCKeditoru", @@ -105,6 +107,7 @@ CellProperties : "Svojstva ćelije", TableProperties : "Svojstva tablice", ImageProperties : "Svojstva slike", +FlashProperties : "Flash svojstva", AnchorProp : "Svojstva sidra", ButtonProp : "Image Button svojstva", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Pretraži server", DlgAdvancedTag : "Napredno", DlgOpOther : "<Drugo>", +DlgInfoTab : "Info", +DlgAlertUrl : "Molimo unesite URL", // General Dialogs Labels DlgGenNotSet : "<nije postavljeno>", @@ -151,7 +156,7 @@ DlgGenClass : "Stylesheet klase", DlgGenTitle : "Advisory naslov", DlgGenContType : "Advisory vrsta sadržaja", -DlgGenLinkCharset : "Linked Resource Charset", +DlgGenLinkCharset : "Kodna stranica povezanih resursa", DlgGenStyle : "Stil", // Image Dialog @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Unesite URL slike", DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Flash svojstva", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Ponavljaj", +DlgFlashChkMenu : "Omogući Flash izbornik", +DlgFlashScale : "Omjer", +DlgFlashScaleAll : "Prikaži sve", +DlgFlashScaleNoBorder : "Bez okvira", +DlgFlashScaleFit : "Točna veličina", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", @@ -213,7 +228,7 @@ DlgLnkTargetTop : "Vršni prozor (_top)", DlgLnkTargetFrameName : "Ime ciljnog okvira", DlgLnkPopWinName : "Naziv popup prozora", -DlgLnkPopWinFeat : "Mogućnosti popup prozora", +DlgLnkPopWinFeat : "Mogučnosti popup prozora", DlgLnkPopResize : "Promjenjljive veličine", DlgLnkPopLocation : "Traka za lokaciju", DlgLnkPopMenu : "Izborna traka", @@ -310,8 +325,12 @@ PasteAsText : "Zalijepi kao čisti tekst", PasteFromWord : "Zalijepi iz Worda", -DlgPasteMsg : "Editor nije mogao automatski zalijepiti zbog sigurnosnih postavki Vašeg pretraživača.
Molimo zalijepite unutar sljedeće kocke koristeći tipkovnicu (Ctrl+V) i pritisnite na OK.", +DlgPasteMsg2 : "Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (Ctrl+V) i kliknite OK.", +DlgPasteIgnoreFont : "Zanemari definiciju vrste fonta", +DlgPasteRemoveStyles : "Ukloni definicije stilova", +DlgPasteCleanBox : "Očisti okvir", + // Color Picker ColorAutomatic : "Automatski", ColorMoreColors : "Više boja...", @@ -334,7 +353,7 @@ DlgSpellBtnUndo : "Vrati", DlgSpellNoSuggestions : "-Nema preporuke-", DlgSpellProgress : "Provjera u tijeku...", -DlgSpellNoMispell : "Provjera završena: Nema greaka", +DlgSpellNoMispell : "Provjera završena: Nema grešaka", DlgSpellNoChanges : "Provjera završena: Nije napravljena promjena", DlgSpellOneChange : "Provjera završena: Jedna riječ promjenjena", DlgSpellManyChanges : "Provjera završena: Promjenjeno %1 riječi", Index: lams_central/web/fckeditor/editor/lang/hu.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/hu.js (.../hu.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/hu.js (.../hu.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Horgony beillesztése/szerkesztése", InsertImageLbl : "Kép", InsertImage : "Kép beillesztése/módosítása", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Táblázat", InsertTable : "Táblázat beillesztése/módosítása", InsertLineLbl : "Vonal", @@ -105,6 +107,7 @@ CellProperties : "Cellák tulajdonsága", TableProperties : "Táblázat tulajdonsága", ImageProperties : "Kép tulajdonsága", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Horgony(ok) tulajdonsága(i)", ButtonProp : "Gomb(ok) tulajdonsága(i) ", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Szerver tallózása", DlgAdvancedTag : "Haladó", DlgOpOther : "Egyéb", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<nincs beállítva>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Töltse ki a kép URL-ét", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Hivatkozás", DlgLnkInfoTab : "Hivatkozás információ", @@ -310,8 +325,12 @@ PasteAsText : "Beillesztés formázatlan szövegként", PasteFromWord : "Beillesztés Wordbõl", -DlgPasteMsg : "A szerkesztõ nem képes végrehajtani a beillesztési mûveletet a bõngészõ biztonsági beállításai miatt.
Másolja be az alábbi mezõbe a (Ctrl+V) billentyûzetkombinációval és kattintson OK gombra.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automatikus", ColorMoreColors : "Több szín...", Index: lams_central/web/fckeditor/editor/lang/it.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/it.js (.../it.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/it.js (.../it.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Inserisci/Modifica Ancora", InsertImageLbl : "Immagine", InsertImage : "Inserisci/Modifica immagine", +InsertFlashLbl : "Oggetto Flash", +InsertFlash : "Inserisci/Modifica Oggetto Flash", InsertTableLbl : "Tabella", InsertTable : "Inserisci/Modifica tabella", InsertLineLbl : "Riga orizzontale", @@ -76,7 +78,7 @@ FontSize : "Dimensione", TextColor : "Colore testo", BGColor : "Colore sfondo", -Source : "Codice", +Source : "Codice Sorgente", Find : "Trova", Replace : "Sostituisci", SpellCheck : "Correttore ortografico", @@ -102,28 +104,29 @@ DeleteCells : "Elimina celle", MergeCells : "Unisce celle", SplitCell : "Dividi celle", -CellProperties : "Proprietà cella", -TableProperties : "Proprietà tabella", -ImageProperties : "Proprietà immagine", +CellProperties : "Propriet cella", +TableProperties : "Propriet tabella", +ImageProperties : "Propriet immagine", +FlashProperties : "Propriet Oggetto Flash", -AnchorProp : "Proprietà ancora", -ButtonProp : "Proprietà bottone", -CheckboxProp : "Proprietà checkbox", -HiddenFieldProp : "Proprietà campo nascosto", -RadioButtonProp : "Proprietà radio button", -ImageButtonProp : "Proprietà bottone immagine", -TextFieldProp : "Proprietà campo di testo", -SelectionFieldProp : "Proprietà menu di selezione", -TextareaProp : "Proprietà area di testo", -FormProp : "Proprietà modulo", +AnchorProp : "Propriet ancora", +ButtonProp : "Propriet bottone", +CheckboxProp : "Propriet checkbox", +HiddenFieldProp : "Propriet campo nascosto", +RadioButtonProp : "Propriet radio button", +ImageButtonProp : "Propriet bottone immagine", +TextFieldProp : "Propriet campo di testo", +SelectionFieldProp : "Propriet menu di selezione", +TextareaProp : "Propriet area di testo", +FormProp : "Propriet modulo", FontFormats : "Normale;Formattato;Indirizzo;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", // Alerts and Messages ProcessingXHTML : "Elaborazione XHTML in corso. Attendere prego...", Done : "Completato", PasteWordConfirm : "Il testo da incollare sembra provenire da Word. Desideri pulirlo prima di incollare?", -NotCompatiblePaste : "Questa funzione è disponibile solo per Internet Explorer 5.5 o superiore. Desideri incollare il testo senza pulirlo?", +NotCompatiblePaste : "Questa funzione disponibile solo per Internet Explorer 5.5 o superiore. Desideri incollare il testo senza pulirlo?", UnknownToolbarItem : "Elemento della barra strumenti sconosciuto \"%1\"", UnknownCommand : "Comando sconosciuto \"%1\"", NotImplemented : "Commando non implementato", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Cerca sul server", DlgAdvancedTag : "Avanzate", DlgOpOther : "<Altro>", +DlgInfoTab : "Info", +DlgAlertUrl : "Devi inserire l'URL", // General Dialogs Labels DlgGenNotSet : "<non impostato>", @@ -155,7 +160,7 @@ DlgGenStyle : "Stile", // Image Dialog -DlgImgTitle : "Proprietà immagine", +DlgImgTitle : "Propriet immagine", DlgImgInfoTab : "Informazioni immagine", DlgImgBtnUpload : "Invia al server", DlgImgURL : "URL", @@ -179,9 +184,19 @@ DlgImgAlignTextTop : "In alto al testo", DlgImgAlignTop : "In Alto", DlgImgPreview : "Anteprima", -DlgImgAlertUrl : "Inserisci il tipo di URL per l'immagine", +DlgImgAlertUrl : "Devi inserire l'URL per l'immagine", DlgImgLinkTab : "Collegamento", +// Flash Dialog +DlgFlashTitle : "Propriet Oggetto Flash", +DlgFlashChkPlay : "Avvio Automatico", +DlgFlashChkLoop : "Cicla", +DlgFlashChkMenu : "Abilita Menu di Flash", +DlgFlashScale : "Ridimensiona", +DlgFlashScaleAll : "Mostra Tutto", +DlgFlashScaleNoBorder : "Senza Bordo", +DlgFlashScaleFit : "Dimensione Esatta", + // Link Dialog DlgLnkWindowTitle : "Collegamento", DlgLnkInfoTab : "Informazioni collegamento", @@ -244,7 +259,7 @@ DlgSpecialCharTitle : "Seleziona carattere speciale", // Table Dialog -DlgTableTitle : "Proprietà tabella", +DlgTableTitle : "Propriet tabella", DlgTableRows : "Righe", DlgTableColumns : "Colonne", DlgTableBorder : "Dimensione bordo", @@ -262,7 +277,7 @@ DlgTableCaption : "Intestazione", // Table Cell Dialog -DlgCellTitle : "Proprietà cella", +DlgCellTitle : "Propriet cella", DlgCellWidth : "Larghezza", DlgCellWidthPx : "pixel", DlgCellWidthPc : "percento", @@ -291,7 +306,7 @@ // Find Dialog DlgFindTitle : "Trova", DlgFindFindBtn : "Trova", -DlgFindNotFoundMsg : "L'elemento cercato non è stato trovato.", +DlgFindNotFoundMsg : "L'elemento cercato non stato trovato.", // Replace Dialog DlgReplaceTitle : "Sostituisci", @@ -310,17 +325,21 @@ PasteAsText : "Incolla come testo semplice", PasteFromWord : "Incolla da Word", -DlgPasteMsg : "Impossibile incollare automaticamente a causa delle impostazioni di sicurezza del browser.
Incolla nel riquadro sottostante (Ctrl+V) e premi OK.", +DlgPasteMsg2 : "Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (Ctrl+V) e premi OK.", +DlgPasteIgnoreFont : "Ignora le definizioni di Font", +DlgPasteRemoveStyles : "Rimuovi le definizioni di Stile", +DlgPasteCleanBox : "Svuota area di testo", + // Color Picker ColorAutomatic : "Automatico", ColorMoreColors : "Altri colori...", // Document Properties -DocProps : "Proprietà del Documento", +DocProps : "Propriet del Documento", // Anchor Dialog -DlgAnchorTitle : "Proprietà ancora", +DlgAnchorTitle : "Propriet ancora", DlgAnchorName : "Nome ancora", DlgAnchorErrorName : "Inserici il nome dell'ancora", @@ -367,7 +386,7 @@ DlgSelectBtnAdd : "Aggiungi", DlgSelectBtnModify : "Modifica", DlgSelectBtnUp : "Su", -DlgSelectBtnDown : "Giù", +DlgSelectBtnDown : "Gi", DlgSelectBtnSetValue : "Imposta come predefinito", DlgSelectBtnDelete : "Rimuovi", @@ -390,8 +409,8 @@ DlgHiddenValue : "Valore", // Bulleted List Dialog -BulletedListProp : "Proprietà lista puntata", -NumberedListProp : "Proprietà lista numerata", +BulletedListProp : "Propriet lista puntata", +NumberedListProp : "Propriet lista numerata", DlgLstType : "Tipo", DlgLstTypeCircle : "Tondo", DlgLstTypeDisk : "Disco", @@ -440,7 +459,7 @@ // Templates Dialog Templates : "Modelli", DlgTemplatesTitle : "Contenuto dei modelli", -DlgTemplatesSelMsg : "Seleziona il modello da aprire nell'editor
(il contenuto attuale verrà eliminato):", +DlgTemplatesSelMsg : "Seleziona il modello da aprire nell'editor
(il contenuto attuale verr eliminato):", DlgTemplatesLoading : "Caricamento modelli in corso. Attendere prego...", DlgTemplatesNoTpl : "(Nessun modello definito)", Index: lams_central/web/fckeditor/editor/lang/ja.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/ja.js (.../ja.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/ja.js (.../ja.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -9,7 +9,7 @@ * http://www.fckeditor.net/ * * File Name: ja.js - * English language file. + * Japanese language file. * * File Authors: * Takashi Yamaguchi (jack@omakase.net) @@ -41,6 +41,8 @@ Anchor : "アンカー挿入/編集", InsertImageLbl : "イメージ", InsertImage : "イメージ挿入/編集", +InsertFlashLbl : "Flash", +InsertFlash : "Flash挿入/編集", InsertTableLbl : "テーブル", InsertTable : "テーブル挿入/編集", InsertLineLbl : "ライン", @@ -105,6 +107,7 @@ CellProperties : "セル プロパティ", TableProperties : "テーブル プロパティ", ImageProperties : "イメージ プロパティ", +FlashProperties : "Flash プロパティ", AnchorProp : "アンカー プロパティ", ButtonProp : "ボタン プロパティ", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "サーバーブラウザー", DlgAdvancedTag : "高度な設定", DlgOpOther : "<その他>", +DlgInfoTab : "情報", +DlgAlertUrl : "URLを挿入してください", // General Dialogs Labels DlgGenNotSet : "<なし>", @@ -180,8 +185,18 @@ DlgImgAlignTop : "上", DlgImgPreview : "プレビュー", DlgImgAlertUrl : "イメージのURLを入力してください。", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "リンク", +// Flash Dialog +DlgFlashTitle : "Flash プロパティ", +DlgFlashChkPlay : "再生", +DlgFlashChkLoop : "ループ再生", +DlgFlashChkMenu : "Flashメニュー可能", +DlgFlashScale : "拡大縮小設定", +DlgFlashScaleAll : "すべて表示", +DlgFlashScaleNoBorder : "外が見えない様に拡大", +DlgFlashScaleFit : "上下左右にフィット", + // Link Dialog DlgLnkWindowTitle : "ハイパーリンク", DlgLnkInfoTab : "ハイパーリンク 情報", @@ -310,8 +325,12 @@ PasteAsText : "プレーンテキスト貼り付け", PasteFromWord : "ワード文章から貼り付け", -DlgPasteMsg : "ブラウザーのセキュリティ設定によりエディタの貼り付け操作が自動で実行することができません。
実行するには手動でキーボードの(Ctrl+V)を実行してOKを押してください。", +DlgPasteMsg2 : "キーボード(Ctrl+V)を使用して、次の入力エリア内で貼って、OKを押してください。", +DlgPasteIgnoreFont : "FontタグのFace属性を無視します。", +DlgPasteRemoveStyles : "スタイル定義を削除します。", +DlgPasteCleanBox : "入力エリアクリア", + // Color Picker ColorAutomatic : "自動", ColorMoreColors : "その他の色...", @@ -438,11 +457,11 @@ DlgDocPreview : "プレビュー", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "テンプレート(雛形)", +DlgTemplatesTitle : "テンプレート内容", +DlgTemplatesSelMsg : "エディターで使用するテンプレートを選択してください。
(現在のエディタの内容は失われます):", +DlgTemplatesLoading : "テンプレート一覧読み込み中. しばらくお待ちください...", +DlgTemplatesNoTpl : "(テンプレートが定義されていません)", // About Dialog DlgAboutAboutTab : "バージョン情報", Index: lams_central/web/fckeditor/editor/lang/ko.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/ko.js (.../ko.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/ko.js (.../ko.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "책갈피 삽입/변경", InsertImageLbl : "이미지", InsertImage : "이미지 삽입/변경", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "표", InsertTable : "표 삽입/변경", InsertLineLbl : "수평선", @@ -105,6 +107,7 @@ CellProperties : "셀 속성", TableProperties : "표 속성", ImageProperties : "이미지 속성", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "책갈피 속성", ButtonProp : "버튼 속성", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "서버 보기", DlgAdvancedTag : "자세히", DlgOpOther : "<기타>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<설정되지 않음>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "이미지 URL을 입력하십시요", DlgImgLinkTab : "링크", +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "링크", DlgLnkInfoTab : "링크 정보", @@ -310,8 +325,12 @@ PasteAsText : "텍스트로 붙여넣기", PasteFromWord : "MS Word 형식에서 붙여넣기", -DlgPasteMsg : "브라우저의 보안설정/STRONG> 때문에 붙여넣기 할 수 없습니다.
키보드 명령(Ctrl+V)을 이용하여 붙여넣은 다음 버튼을 클릭하십시요.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "기본색상", ColorMoreColors : "색상선택...", Index: lams_central/web/fckeditor/editor/lang/lt.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/lt.js (.../lt.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/lt.js (.../lt.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Įterpti/modifikuoti žymę", InsertImageLbl : "Vaizdas", InsertImage : "Įterpti/taisyti vaizdą", +InsertFlashLbl : "Flash", +InsertFlash : "Įterpti/taisyti Flash", InsertTableLbl : "Lentelė", InsertTable : "Įterpti/taisyti lentelę", InsertLineLbl : "Linija", @@ -105,6 +107,7 @@ CellProperties : "Langelio savybės", TableProperties : "Lentelės savybės", ImageProperties : "Vaizdo savybės", +FlashProperties : "Flash savybės", AnchorProp : "Žymės savybės", ButtonProp : "Mygtuko savybės", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Naršyti po serverį", DlgAdvancedTag : "Papildomas", DlgOpOther : "<Kita>", +DlgInfoTab : "Informacija", +DlgAlertUrl : "Prašome įrašyti URL", // General Dialogs Labels DlgGenNotSet : "<nėra nustatyta>", @@ -180,8 +185,18 @@ DlgImgAlignTop : "Viršūnę", DlgImgPreview : "Peržiūra", DlgImgAlertUrl : "Prašome įvesti vaizdo URL", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Nuoroda", +// Flash Dialog +DlgFlashTitle : "Flash savybės", +DlgFlashChkPlay : "Automatinis paleidimas", +DlgFlashChkLoop : "Ciklas", +DlgFlashChkMenu : "Leisti Flash meniu", +DlgFlashScale : "Mastelis", +DlgFlashScaleAll : "Rodyti visą", +DlgFlashScaleNoBorder : "Be rėmelio", +DlgFlashScaleFit : "Tikslus atitikimas", + // Link Dialog DlgLnkWindowTitle : "Nuoroda", DlgLnkInfoTab : "Nuorodos informacija", @@ -310,8 +325,12 @@ PasteAsText : "Įdėti kaip gryną tekstą", PasteFromWord : "Įdėti iš Word", -DlgPasteMsg : "Redaktorius nesugeba automatiškai įvykdyti įdėjimo dėl saugumo nustatymų jūsų naršyklėje.
Prašome įdėti tekstą šiame langelyje naudojantis klaviatūra (Ctrl+V) ir paspauskite OK.", +DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (Ctrl+V) ir spūstelkite mygtuką OK.", +DlgPasteIgnoreFont : "Ignoruoti šriftų nustatymus", +DlgPasteRemoveStyles : "Pašalinti stilių nustatymus", +DlgPasteCleanBox : "Trinti įvedimo lauką", + // Color Picker ColorAutomatic : "Automatinis", ColorMoreColors : "Daugiau spalvų...", @@ -438,11 +457,11 @@ DlgDocPreview : "Peržiūra", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Šablonai", +DlgTemplatesTitle : "Turinio šablonai", +DlgTemplatesSelMsg : "Pasirinkite norimą šabloną
(Dėmesio! esamas turinys bus prarastas):", +DlgTemplatesLoading : "Įkeliamas šablonų sąrašas. Prašome palaukti...", +DlgTemplatesNoTpl : "(Šablonų sąrašas tuščias)", // About Dialog DlgAboutAboutTab : "Apie", Index: lams_central/web/fckeditor/editor/lang/nl.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/nl.js (.../nl.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/nl.js (.../nl.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Interne link", InsertImageLbl : "Afbeelding", InsertImage : "Invoegen/Wijzigen afbeelding", +InsertFlashLbl : "Flash", +InsertFlash : "Invoegen/Wijzigen Flash", InsertTableLbl : "Tabel", InsertTable : "Invoegen/Wijzigen tabel", InsertLineLbl : "Lijn", @@ -105,6 +107,7 @@ CellProperties : "Eigenschappen cel", TableProperties : "Eigenschappen tabel", ImageProperties : "Eigenschappen afbeelding", +FlashProperties : "Eigenschappen Flash", AnchorProp : "Eigenschappen interne link", ButtonProp : "Eigenschappen knop", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Bladeren op server", DlgAdvancedTag : "Geavanceerd", DlgOpOther : "<Anders>", +DlgInfoTab : "Informatie", +DlgAlertUrl : "Geef URL op", // General Dialogs Labels DlgGenNotSet : "<niet ingevuld>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Geeft de URL van de afbeelding", DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Eigenschappen Flash", +DlgFlashChkPlay : "Automatisch afspelen", +DlgFlashChkLoop : "Herhalen", +DlgFlashChkMenu : "Flaschmenu\'s inschakelen", +DlgFlashScale : "Verschalen", +DlgFlashScaleAll : "Alles tonen", +DlgFlashScaleNoBorder : "Geen rand", +DlgFlashScaleFit : "Precies passen", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Informatie link", @@ -310,8 +325,12 @@ PasteAsText : "Plakken als platte tekst", PasteFromWord : "Plakken van Word-gegevens", -DlgPasteMsg : "De beveiligingsinstelling van de browser verhinderen het automatisch plakken.
Plak de data in de volgende pagina door gebruik te maken van toetsenbord(Ctrl+V). Klik hierna op OK.", +DlgPasteMsg2 : "Plak de tekst in de volgende box gebruikmakend van je toetstenbord (Ctrl+V) en kies OK.", +DlgPasteIgnoreFont : "Negeer Font Face definities", +DlgPasteRemoveStyles : "Verwijder Styles definities", +DlgPasteCleanBox : "Box opschonen", + // Color Picker ColorAutomatic : "Automatisch", ColorMoreColors : "Meer kleuren...", Index: lams_central/web/fckeditor/editor/lang/no.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/no.js (.../no.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/no.js (.../no.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Sett inn/Rediger anker", InsertImageLbl : "Bilde", InsertImage : "Sett inn/Rediger bilde", +InsertFlashLbl : "Flash", +InsertFlash : "Sett inn/Rediger Flash", InsertTableLbl : "Tabell", InsertTable : "Sett inn/Rediger tabell", InsertLineLbl : "Linje", @@ -105,6 +107,7 @@ CellProperties : "Celleegenskaper", TableProperties : "Tabellegenskaper", ImageProperties : "Bildeegenskaper", +FlashProperties : "Flash Egenskaper", AnchorProp : "Ankeregenskaper", ButtonProp : "Knappegenskaper", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Bla igjennom server", DlgAdvancedTag : "Avansert", DlgOpOther : "<Annet>", +DlgInfoTab : "Info", +DlgAlertUrl : "Vennligst skriv inn URL'en", // General Dialogs Labels DlgGenNotSet : "<ikke satt>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Vennligst skriv bildeurlen", DlgImgLinkTab : "Lenke", +// Flash Dialog +DlgFlashTitle : "Flash Egenskaper", +DlgFlashChkPlay : "Auto Spill", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Slå på Flash meny", +DlgFlashScale : "Skaler", +DlgFlashScaleAll : "Vis alt", +DlgFlashScaleNoBorder : "Ingen ramme", +DlgFlashScaleFit : "Skaler til å passeExact Fit", + // Link Dialog DlgLnkWindowTitle : "Lenke", DlgLnkInfoTab : "Lenkeinfo", @@ -310,8 +325,12 @@ PasteAsText : "Lim inn som ren tekst", PasteFromWord : "Lim inn fra word", -DlgPasteMsg : "Programmet kan ikke lime inn tekst på grunn av din nettlesers sikkerhetsinstillinger.
Vennligst lim inn teksten i boksen nedenfor med tastatursnareveien. (Ctrl+V) og trykk OK.", +DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (Ctrl+V) og trykk OK.", +DlgPasteIgnoreFont : "Ignorer fonter", +DlgPasteRemoveStyles : "Fjern stildefinisjoner", +DlgPasteCleanBox : "Tøm boksen", + // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Flere farger...", Index: lams_central/web/fckeditor/editor/lang/pl.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/pl.js (.../pl.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/pl.js (.../pl.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "Wstaw/edytuj kotwicę", InsertImageLbl : "Obrazek", InsertImage : "Wstaw/edytuj obrazek", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabela", InsertTable : "Wstaw/edytuj tabelę", InsertLineLbl : "Linia pozioma", @@ -106,6 +108,7 @@ CellProperties : "Właściwości komórki", TableProperties : "Właściwości tabeli", ImageProperties : "Właściwości obrazka", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Właściwości kotwicy", ButtonProp : "Właściwości przycisku", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "Przeglądaj", DlgAdvancedTag : "Zaawansowane", DlgOpOther : "<Inny>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<nieustawione>", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "Podaj adres obrazka.", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Hiperłącze", DlgLnkInfoTab : "Informacje ", @@ -311,8 +326,12 @@ PasteAsText : "Wklej jako czysty tekst", PasteFromWord : "Wklej z Worda", -DlgPasteMsg : "Automatyczne wklejenie tekstu nie było możliwe z powodu restrykcyjnych ustawień bezpieczeństwa Twojej przeglądarki.
Wklej tekst w poniższe pole używając skrótu klawiszowego (Ctrl+V) i wciśnij OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automatycznie", ColorMoreColors : "Więcej kolorów...", Index: lams_central/web/fckeditor/editor/lang/pt-br.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/pt-br.js (.../pt-br.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/pt-br.js (.../pt-br.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Inserir/Editar Âncora", InsertImageLbl : "Figura", InsertImage : "Inserir/Editar Figura", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabela", InsertTable : "Inserir/Editar Tabela", InsertLineLbl : "Linha", @@ -105,6 +107,7 @@ CellProperties : "Formatar Célula", TableProperties : "Formatar Tabela", ImageProperties : "Formatar Figura", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Formatar Âncora", ButtonProp : "Formatar Botão", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Localizar no Servidor", DlgAdvancedTag : "Avançado", DlgOpOther : "<Outros>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<não ajustado>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Por favor, digite o URL da figura.", DlgImgLinkTab : "Hiperlink", +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Hiperlink", DlgLnkInfoTab : "Informações do hiperlink", @@ -310,8 +325,12 @@ PasteAsText : "Colar como Texto sem Formatação", PasteFromWord : "Colar do Word", -DlgPasteMsg : "Não foi possível execurar o comando colar automaticamente devido às configurações de segurança seu navegador.
Cole o conteúdo desejado dentro da seguinte caixa texto utilizando a tecla de atalho (Ctrl+V) e clique em OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Mais Cores...", Index: lams_central/web/fckeditor/editor/lang/pt.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/pt.js (.../pt.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/pt.js (.../pt.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : " Inserir/Editar Âncora", InsertImageLbl : "Imagem", InsertImage : "Inserir/Editar Imagem", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tabela", InsertTable : "Inserir/Editar Tabela", InsertLineLbl : "Linha", @@ -105,6 +107,7 @@ CellProperties : "Propriedades da Célula", TableProperties : "Propriedades da Tabela", ImageProperties : "Propriedades da Imagem", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Propriedades da Âncora", ButtonProp : "Propriedades do Botão", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Navegar no Servidor", DlgAdvancedTag : "Avançado", DlgOpOther : "<Outro>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<Não definido>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Por favor introduza o URL da imagem", DlgImgLinkTab : "Hiperligação", +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Hiperligação", DlgLnkInfoTab : "Informação de Hiperligação", @@ -310,8 +325,12 @@ PasteAsText : "Colar como Texto Simples", PasteFromWord : "Colar do Word", -DlgPasteMsg : "O editor não pode executar automaticamente o colar devido à configuração de segurança do navegador.
Por favor cole dentro do seguinte quadro usando o teclado (Ctrl+V) e pressione OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Mais Cores...", Index: lams_central/web/fckeditor/editor/lang/ro.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/ro.js (.../ro.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/ro.js (.../ro.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "Inserează/Editează ancoră", InsertImageLbl : "Imagine", InsertImage : "Inserează/Editează imagine", +InsertFlashLbl : "Flash", +InsertFlash : "Inserează/Editează flash", InsertTableLbl : "Tabel", InsertTable : "Inserează/Editează tabel", InsertLineLbl : "Linie", @@ -106,6 +108,7 @@ CellProperties : "Proprietăţile celulei", TableProperties : "Proprietăţile tabelului", ImageProperties : "Proprietăţile imaginii", +FlashProperties : "Proprietăţile flash-ului", AnchorProp : "Proprietăţi ancoră", ButtonProp : "Proprietăţi buton", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "Răsfoieşte server", DlgAdvancedTag : "Avansat", DlgOpOther : "<Altul>", +DlgInfoTab : "Informaţii", +DlgAlertUrl : "Vă rugăm să scrieţi URL-ul", // General Dialogs Labels DlgGenNotSet : "<nesetat>", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "Vă rugăm să scrieţi URL-ul imaginii", DlgImgLinkTab : "Link (Legătură web)", +// Flash Dialog +DlgFlashTitle : "Proprietăţile flash-ului", +DlgFlashChkPlay : "Rulează automat", +DlgFlashChkLoop : "Repetă (Loop)", +DlgFlashChkMenu : "Activează meniul flash", +DlgFlashScale : "Scală", +DlgFlashScaleAll : "Arată tot", +DlgFlashScaleNoBorder : "Fără margini (No border)", +DlgFlashScaleFit : "Potriveşte", + // Link Dialog DlgLnkWindowTitle : "Link (Legătură web)", DlgLnkInfoTab : "Informaţii despre link (Legătură web)", @@ -311,8 +326,12 @@ PasteAsText : "Adaugă ca text simplu (Plain Text)", PasteFromWord : "Adaugă din Word", -DlgPasteMsg : "Editor nu a putut executa automat adăugarea din cauza setărilor de securitate ale navigatorului (browser) dvs.
Vă rugăm adăugaţi inăuntrul casuţei folosind tastatura (Ctrl+V) şi apăsaţi Bine.", +DlgPasteMsg2 : "Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (Ctrl+V) şi apăsaţi OK.", +DlgPasteIgnoreFont : "Ignoră definiţiile Font Face", +DlgPasteRemoveStyles : "Şterge definiţiile stilurilor", +DlgPasteCleanBox : "Şterge căsuţa", + // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "Mai multe culori...", @@ -340,7 +359,7 @@ DlgSpellOneChange : "Verificarea textului terminată: Un cuvânt modificat", DlgSpellManyChanges : "Verificarea textului terminată: 1% cuvinte modificate", -IeSpellDownload : "Spell checker not installed. Do you want to download it now?", +IeSpellDownload : "Unealta pentru verificat textul (Spell checker) neinstalată. Doriţi să o descărcaţi acum?", // Button Dialog DlgButtonText : "Text (Valoare)", Index: lams_central/web/fckeditor/editor/lang/ru.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/ru.js (.../ru.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/ru.js (.../ru.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Вставить/Редактировать якорь", InsertImageLbl : "Изображение", InsertImage : "Вставить/Редактировать изображение", +InsertFlashLbl : "Flash", +InsertFlash : "Вставить/Редактировать Flash", InsertTableLbl : "Таблица", InsertTable : "Вставить/Редактировать таблицу", InsertLineLbl : "Линия", @@ -105,6 +107,7 @@ CellProperties : "Свойства ячейки", TableProperties : "Свойства таблицы", ImageProperties : "Свойства изображения", +FlashProperties : "Свойства Flash", AnchorProp : "Свойства якоря", ButtonProp : "Свойства кнопки", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Просмотреть на сервере", DlgAdvancedTag : "Расширенный", DlgOpOther : "<Другое>", +DlgInfoTab : "Информация", +DlgAlertUrl : "Пожалуйста вставьте URL", // General Dialogs Labels DlgGenNotSet : "<не определено>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Пожалуйста введите URL изображения", DlgImgLinkTab : "Ссылка", +// Flash Dialog +DlgFlashTitle : "Свойства Flash", +DlgFlashChkPlay : "Авто проигрывание", +DlgFlashChkLoop : "Повтор", +DlgFlashChkMenu : "Включить меню Flash", +DlgFlashScale : "Масштабировать", +DlgFlashScaleAll : "Показывать все", +DlgFlashScaleNoBorder : "Без бордюра", +DlgFlashScaleFit : "Точное совпадение", + // Link Dialog DlgLnkWindowTitle : "Ссылка", DlgLnkInfoTab : "Информация ссылки", @@ -310,8 +325,12 @@ PasteAsText : "Вставить только текст", PasteFromWord : "Вставить из Word", -DlgPasteMsg : "Редактор не может автоматически выполнить операцию вставки, по причине настроек безопасности вашего браузера.
Пожалуйста вставьте текст в следующее поле ввода, используя клавиатуру (Ctrl+V) и нажмите ОК.", +DlgPasteMsg2 : "Пожалуйста вставьте текст в прямоугольник используя сочетание клавиш (Ctrl+V) и нажмите OK.", +DlgPasteIgnoreFont : "Игнорировать определения гарнитуры", +DlgPasteRemoveStyles : "Убрать определения стилей", +DlgPasteCleanBox : "Очистить", + // Color Picker ColorAutomatic : "Автоматический", ColorMoreColors : "Цвета...", Index: lams_central/web/fckeditor/editor/lang/sk.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/sk.js (.../sk.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/sk.js (.../sk.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -26,7 +26,7 @@ // Toolbar Items and Context Menu Save : "Uložit", NewPage : "Nová stránka", -Preview : "Náhľed", +Preview : "Náhľad", Cut : "Vystrihnúť", Copy : "Kopírovať", Paste : "Vložiť", @@ -41,6 +41,8 @@ Anchor : "Vložiť/zmeniť kotvu", InsertImageLbl : "Obrázok", InsertImage : "Vložiť/zmeniť obrazok", +InsertFlashLbl : "Flash", +InsertFlash : "Vložiť/zmeniť Flash", InsertTableLbl : "Tabuľka", InsertTable : "Vložiť/zmeniť tabulku", InsertLineLbl : "Čiara", @@ -61,13 +63,13 @@ RightJustify : "Zarovnať vpravo", BlockJustify : "Zarovnať do bloku", DecreaseIndent : "Zmenšiť odsadenie", -IncreaseIndent : "Zvětšiť odsadenie", +IncreaseIndent : "Zväčšiť odsadenie", Undo : "Späť", Redo : "Znovu", NumberedListLbl : "Číslovanie", NumberedList : "Vložiť/odstrániť číslovaný zoznam", BulletedListLbl : "Odrážky", -BulletedList : "Vloži/odstranit odrážky", +BulletedList : "Vložiť/odstraniť odrážky", ShowTableBorders : "Zobraziť okraje tabuliek", ShowDetails : "Zobraziť podrobnosti", Style : "Štýl", @@ -105,6 +107,7 @@ CellProperties : "Vlastnosti bunky", TableProperties : "Vlastnosti tabulky", ImageProperties : "Vlastnosti obrázka", +FlashProperties : "Vlastnosti Flashu", AnchorProp : "Vlastnosti kotvy", ButtonProp : "Vlastnosti tlačítka", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Prechádzať server", DlgAdvancedTag : "Rozšírené", DlgOpOther : "<Ďalšie>", +DlgInfoTab : "Info", +DlgAlertUrl : "Prosím vložte URL", // General Dialogs Labels DlgGenNotSet : "<nenastavené>", @@ -180,8 +185,18 @@ DlgImgAlignTop : "Nahor", DlgImgPreview : "Náhľad", DlgImgAlertUrl : "Zadajte prosím URL obrázku", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Odkaz", +// Flash Dialog +DlgFlashTitle : "Vlastnosti Flashu", +DlgFlashChkPlay : "Automatické prehrávanie", +DlgFlashChkLoop : "Opakovanie", +DlgFlashChkMenu : "Povoliť Flash Menu", +DlgFlashScale : "Mierka", +DlgFlashScaleAll : "Zobraziť mierku", +DlgFlashScaleNoBorder : "Bez okrajov", +DlgFlashScaleFit : "Roztiahnuť na celé", + // Link Dialog DlgLnkWindowTitle : "Odkaz", DlgLnkInfoTab : "Informácie o odkaze", @@ -310,8 +325,12 @@ PasteAsText : "Vložiť ako čistý text", PasteFromWord : "Vložiť text z Wordu", -DlgPasteMsg : "Bezpečnostné nastavenie Vášho prohehliadača nedovoľujú editoru spustiť funkciu pre vloženie textu zo schránky.
Text zo schránky prosím vložte pomocou klávesnice do tohto poľa (Ctrl+V) a potom stlačte tlačítko OK.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteIgnoreFont : "Ignorovať nastavenia typu písma", +DlgPasteRemoveStyles : "Odstrániť formátovanie", +DlgPasteCleanBox : "Vyčistiť schránku", + // Color Picker ColorAutomatic : "Automaticky", ColorMoreColors : "Viac farieb...", @@ -438,11 +457,11 @@ DlgDocPreview : "Náhľad", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Šablóny", +DlgTemplatesTitle : "Šablóny obsahu", +DlgTemplatesSelMsg : "Prosím vyberte šablóny ma otvorenie v editore
(terajší obsah bude stratený):", +DlgTemplatesLoading : "Nahrávam zoznam šablón. Čakajte prosím...", +DlgTemplatesNoTpl : "(žiadne šablóny nenájdené)", // About Dialog DlgAboutAboutTab : "O aplikáci", Index: lams_central/web/fckeditor/editor/lang/sl.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/sl.js (.../sl.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/sl.js (.../sl.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Vstavi/uredi zaznamek", InsertImageLbl : "Slika", InsertImage : "Vstavi/uredi sliko", +InsertFlashLbl : "Flash", +InsertFlash : "Vstavi/Uredi Flash", InsertTableLbl : "Tabela", InsertTable : "Vstavi/uredi tabelo", InsertLineLbl : "Črta", @@ -105,6 +107,7 @@ CellProperties : "Lastnosti celice", TableProperties : "Lastnosti tabele", ImageProperties : "Lastnosti slike", +FlashProperties : "Lastnosti Flash", AnchorProp : "Lastnosti zaznamka", ButtonProp : "Lastnosti gumba", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Prebrskaj na strežniku", DlgAdvancedTag : "Napredno", DlgOpOther : "<Ostalo>", +DlgInfoTab : "Podatki", +DlgAlertUrl : "Prosim vpiši spletni naslov", // General Dialogs Labels DlgGenNotSet : "<ni postavljen>", @@ -180,8 +185,18 @@ DlgImgAlignTop : "Na vrh", DlgImgPreview : "Predogled", DlgImgAlertUrl : "Vnesite URL slike", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Povezava", +// Flash Dialog +DlgFlashTitle : "Lastnosti Flash", +DlgFlashChkPlay : "Samodejno predvajaj", +DlgFlashChkLoop : "Ponavljanje", +DlgFlashChkMenu : "Omogoči Flash Meni", +DlgFlashScale : "Povečava", +DlgFlashScaleAll : "Pokaži vse", +DlgFlashScaleNoBorder : "Brez obrobe", +DlgFlashScaleFit : "Natančno prileganje", + // Link Dialog DlgLnkWindowTitle : "Povezava", DlgLnkInfoTab : "Podatki o povezavi", @@ -310,8 +325,12 @@ PasteAsText : "Prilepi kot golo besedilo", PasteFromWord : "Prilepi iz Worda", -DlgPasteMsg : "Ni bilo mogoče izvesti lepljenja zaradi varnostnih nastavitev vašega brskalnika.
Prilepite v sledeče okno s kombinacijo tipk na tipkovnici (Ctrl+V) in pritisnite V redu.", +DlgPasteMsg2 : "Prosim prilepite v sleči okvir s pomočjo tipkovnice (Ctrl+V) in pritisnite V redu.", +DlgPasteIgnoreFont : "Prezri obliko pisave", +DlgPasteRemoveStyles : "Odstrani nastavitve stila", +DlgPasteCleanBox : "Počisti okvir", + // Color Picker ColorAutomatic : "Samodejno", ColorMoreColors : "Več barv...", @@ -438,11 +457,11 @@ DlgDocPreview : "Predogled", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Predloge", +DlgTemplatesTitle : "Vsebinske predloge", +DlgTemplatesSelMsg : "Izberite predlogo, ki jo želite odpreti v urejevalniku
(trenutna vsebina bo izgubljena):", +DlgTemplatesLoading : "Nalagam seznam predlog. Prosim počakajte...", +DlgTemplatesNoTpl : "(Ni pripravljenih predlog)", // About Dialog DlgAboutAboutTab : "Vizitka", Index: lams_central/web/fckeditor/editor/lang/sr-latn.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/sr-latn.js (.../sr-latn.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/sr-latn.js (.../sr-latn.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -12,35 +12,37 @@ * Serbian (Latin) language file. * * File Authors: - * Zoran Subić (zoran@tf.zr.ac.yu) + * Zoran Subic (zoran@tf.zr.ac.yu) */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", -ToolbarCollapse : "Collapse Toolbar", //MISSING -ToolbarExpand : "Expand Toolbar", //MISSING +ToolbarCollapse : "Smanji liniju sa alatkama", +ToolbarExpand : "Proiri liniju sa alatkama", // Toolbar Items and Context Menu -Save : "Sačuvaj", +Save : "Sacuvaj", NewPage : "Nova stranica", Preview : "Izgled stranice", Cut : "Iseci", Copy : "Kopiraj", Paste : "Zalepi", PasteText : "Zalepi kao neformatiran tekst", PasteWord : "Zalepi iz Worda", -Print : "Štampa", -SelectAll : "Označi sve", +Print : "tampa", +SelectAll : "Oznaci sve", RemoveFormat : "Ukloni formatiranje", InsertLinkLbl : "Link", InsertLink : "Unesi/izmeni link", RemoveLink : "Ukloni link", -Anchor : "Insert/Edit Anchor", //MISSING +Anchor : "Unesi/izmeni sidro", InsertImageLbl : "Slika", InsertImage : "Unesi/izmeni sliku", +InsertFlashLbl : "Fle", +InsertFlash : "Unesi/izmeni fle", InsertTableLbl : "Tabela", InsertTable : "Unesi/izmeni tabelu", InsertLineLbl : "Linija", @@ -52,7 +54,7 @@ About : "O FCKeditoru", Bold : "Podebljano", Italic : "Kurziv", -Underline : "Podvučeno", +Underline : "Podvuceno", StrikeThrough : "Precrtano", Subscript : "Indeks", Superscript : "Stepen", @@ -61,81 +63,84 @@ RightJustify : "Desno ravnanje", BlockJustify : "Obostrano ravnanje", DecreaseIndent : "Smanji levu marginu", -IncreaseIndent : "Uvećaj levu marginu", -Undo : "Poništi akciju", +IncreaseIndent : "Uvecaj levu marginu", +Undo : "Poniti akciju", Redo : "Ponovi akciju", NumberedListLbl : "Nabrojiva lista", NumberedList : "Unesi/ukloni nabrojivu listu", BulletedListLbl : "Nenabrojiva lista", BulletedList : "Unesi/ukloni nenabrojivu listu", -ShowTableBorders : "Prikaži okvir tabele", -ShowDetails : "Prikaži detalje", +ShowTableBorders : "Prikai okvir tabele", +ShowDetails : "Prikai detalje", Style : "Stil", FontFormat : "Format", Font : "Font", -FontSize : "Veličina fonta", +FontSize : "Velicina fonta", TextColor : "Boja teksta", BGColor : "Boja pozadine", Source : "Kôd", Find : "Pretraga", Replace : "Zamena", -SpellCheck : "Check Spell", //MISSING -UniversalKeyboard : "Universal Keyboard", //MISSING +SpellCheck : "Proveri spelovanje", +UniversalKeyboard : "Univerzalna tastatura", -Form : "Form", //MISSING -Checkbox : "Checkbox", //MISSING -RadioButton : "Radio Button", //MISSING -TextField : "Text Field", //MISSING -Textarea : "Textarea", //MISSING -HiddenField : "Hidden Field", //MISSING -Button : "Button", //MISSING -SelectionField : "Selection Field", //MISSING -ImageButton : "Image Button", //MISSING +Form : "Forma", +Checkbox : "Polje za potvrdu", +RadioButton : "Radio-dugme", +TextField : "Tekstualno polje", +Textarea : "Zona teksta", +HiddenField : "Skriveno polje", +Button : "Dugme", +SelectionField : "Izborno polje", +ImageButton : "Dugme sa slikom", // Context Menu EditLink : "Izmeni link", InsertRow : "Unesi red", -DeleteRows : "Obriši redove", +DeleteRows : "Obrii redove", InsertColumn : "Unesi kolonu", -DeleteColumns : "Obriši kolone", -InsertCell : "Unesi ćelije", -DeleteCells : "Obriši ćelije", -MergeCells : "Spoj ćelije", -SplitCell : "Razdvoji ćelije", -CellProperties : "Osobine ćelije", +DeleteColumns : "Obrii kolone", +InsertCell : "Unesi celije", +DeleteCells : "Obrii celije", +MergeCells : "Spoj celije", +SplitCell : "Razdvoji celije", +CellProperties : "Osobine celije", TableProperties : "Osobine tabele", ImageProperties : "Osobine slike", +FlashProperties : "Osobine flea", -AnchorProp : "Anchor Properties", //MISSING -ButtonProp : "Button Properties", //MISSING -CheckboxProp : "Checkbox Properties", //MISSING -HiddenFieldProp : "Hidden Field Properties", //MISSING -RadioButtonProp : "Radio Button Properties", //MISSING -ImageButtonProp : "Image Button Properties", //MISSING -TextFieldProp : "Text Field Properties", //MISSING -SelectionFieldProp : "Selection Field Properties", //MISSING -TextareaProp : "Textarea Properties", //MISSING -FormProp : "Form Properties", //MISSING +AnchorProp : "Osobine sidra", +ButtonProp : "Osobine dugmeta", +CheckboxProp : "Osobine polja za potvrdu", +HiddenFieldProp : "Osobine skrivenog polja", +RadioButtonProp : "Osobine radio-dugmeta", +ImageButtonProp : "Osobine dugmeta sa slikom", +TextFieldProp : "Osobine tekstualnog polja", +SelectionFieldProp : "Osobine izbornog polja", +TextareaProp : "Osobine zone teksta", +FormProp : "Osobine forme", FontFormats : "Normal;Formatirano;Adresa;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", // Alerts and Messages -ProcessingXHTML : "Obrađujem XHTML. Malo strpljenja...", -Done : "Završio", -PasteWordConfirm : "Tekst koji želite da nalepite kopiran je iz Worda. Da li želite da bude očišćen od formata pre lepljenja?", -NotCompatiblePaste : "Ova komanda je dostupna samo za Internet Explorer od verzije 5.5. Da li želite da nalepim tekst bez čišćenja?", +ProcessingXHTML : "Obradujem XHTML. Malo strpljenja...", +Done : "Zavrio", +PasteWordConfirm : "Tekst koji elite da nalepite kopiran je iz Worda. Da li elite da bude ocicen od formata pre lepljenja?", +NotCompatiblePaste : "Ova komanda je dostupna samo za Internet Explorer od verzije 5.5. Da li elite da nalepim tekst bez cicenja?", UnknownToolbarItem : "Nepoznata stavka toolbara \"%1\"", UnknownCommand : "Nepoznata naredba \"%1\"", NotImplemented : "Naredba nije implementirana", UnknownToolbarSet : "Toolbar \"%1\" ne postoji", // Dialogs DlgBtnOK : "OK", -DlgBtnCancel : "Otkaži", +DlgBtnCancel : "Otkai", DlgBtnClose : "Zatvori", -DlgBtnBrowseServer : "Browse Server", //MISSING +DlgBtnBrowseServer : "Pretrai server", DlgAdvancedTag : "Napredni tagovi", -DlgOpOther : "<Other>", //MISSING +DlgOpOther : "<Ostali>", +DlgInfoTab : "Info", +DlgAlertUrl : "Molimo Vas, unesite URL", // General Dialogs Labels DlgGenNotSet : "<nije postavljeno>", @@ -150,21 +155,21 @@ DlgGenLongDescr : "Pun opis URL", DlgGenClass : "Stylesheet klase", DlgGenTitle : "Advisory naslov", -DlgGenContType : "Advisory vrsta sadržaja", +DlgGenContType : "Advisory vrsta sadraja", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Osobine slika", DlgImgInfoTab : "Info slike", -DlgImgBtnUpload : "Pošalji na server", +DlgImgBtnUpload : "Poalji na server", DlgImgURL : "URL", -DlgImgUpload : "Pošalji", +DlgImgUpload : "Poalji", DlgImgAlt : "Alternativni tekst", -DlgImgWidth : "Širina", +DlgImgWidth : "irina", DlgImgHeight : "Visina", -DlgImgLockRatio : "Zaključaj odnos", -DlgBtnResetSize : "Resetuj veličinu", +DlgImgLockRatio : "Zakljucaj odnos", +DlgBtnResetSize : "Resetuj velicinu", DlgImgBorder : "Okvir", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", @@ -180,8 +185,18 @@ DlgImgAlignTop : "Vrh", DlgImgPreview : "Izgled", DlgImgAlertUrl : "Unesite URL slike", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Link", +// Flash Dialog +DlgFlashTitle : "Osobine flea", +DlgFlashChkPlay : "Automatski start", +DlgFlashChkLoop : "Ponavljaj", +DlgFlashChkMenu : "Ukljuci fle meni", +DlgFlashScale : "Skaliraj", +DlgFlashScaleAll : "Prikai sve", +DlgFlashScaleNoBorder : "Bez ivice", +DlgFlashScaleFit : "Popuni povrinu", + // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", @@ -200,9 +215,9 @@ DlgLnkNoAnchors : "<Nema dostupnih sidra>", DlgLnkEMail : "E-Mail adresa", DlgLnkEMailSubject : "Naslov", -DlgLnkEMailBody : "Sadržaj poruke", -DlgLnkUpload : "Pošalji", -DlgLnkBtnUpload : "Pošalji na server", +DlgLnkEMailBody : "Sadraj poruke", +DlgLnkUpload : "Poalji", +DlgLnkBtnUpload : "Poalji na server", DlgLnkTarget : "Meta", DlgLnkTargetFrame : "<okvir>", @@ -211,29 +226,29 @@ DlgLnkTargetParent : "Roditeljski prozor (_parent)", DlgLnkTargetSelf : "Isti prozor (_self)", DlgLnkTargetTop : "Prozor na vrhu (_top)", -DlgLnkTargetFrameName : "Target Frame Name", //MISSING +DlgLnkTargetFrameName : "Naziv odredinog frejma", DlgLnkPopWinName : "Naziv popup prozora", -DlgLnkPopWinFeat : "Mogućnosti popup prozora", -DlgLnkPopResize : "Promenljiva veličina", +DlgLnkPopWinFeat : "Mogucnosti popup prozora", +DlgLnkPopResize : "Promenljiva velicina", DlgLnkPopLocation : "Lokacija", DlgLnkPopMenu : "Kontekstni meni", DlgLnkPopScroll : "Scroll bar", DlgLnkPopStatus : "Statusna linija", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Prikaz preko celog ekrana (IE)", DlgLnkPopDependent : "Zavisno (Netscape)", -DlgLnkPopWidth : "Širina", +DlgLnkPopWidth : "irina", DlgLnkPopHeight : "Visina", DlgLnkPopLeft : "Od leve ivice ekrana (px)", DlgLnkPopTop : "Od vrha ekrana (px)", -DlnLnkMsgNoUrl : "Please type the link URL", //MISSING -DlnLnkMsgNoEMail : "Please type the e-mail address", //MISSING -DlnLnkMsgNoAnchor : "Please select an anchor", //MISSING +DlnLnkMsgNoUrl : "Unesite URL linka", +DlnLnkMsgNoEMail : "Otkucajte adresu elektronske pote", +DlnLnkMsgNoAnchor : "Odaberite sidro", // Color Dialog DlgColorTitle : "Odaberite boju", -DlgColorBtnClear : "Obriši", +DlgColorBtnClear : "Obrii", DlgColorHighlight : "Posvetli", DlgColorSelected : "Odaberi", @@ -247,27 +262,27 @@ DlgTableTitle : "Osobine tabele", DlgTableRows : "Redova", DlgTableColumns : "Kolona", -DlgTableBorder : "Veličina okvira", +DlgTableBorder : "Velicina okvira", DlgTableAlign : "Ravnanje", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Levo", DlgTableAlignCenter : "Sredina", DlgTableAlignRight : "Desno", -DlgTableWidth : "Širina", +DlgTableWidth : "irina", DlgTableWidthPx : "piksela", DlgTableWidthPc : "procenata", DlgTableHeight : "Visina", -DlgTableCellSpace : "Ćelijski prostor", -DlgTableCellPad : "Razmak ćelija", +DlgTableCellSpace : "Celijski prostor", +DlgTableCellPad : "Razmak celija", DlgTableCaption : "Naslov tabele", // Table Cell Dialog -DlgCellTitle : "Osobine ćelije", -DlgCellWidth : "Širina", +DlgCellTitle : "Osobine celije", +DlgCellWidth : "irina", DlgCellWidthPx : "piksela", DlgCellWidthPc : "procenata", DlgCellHeight : "Visina", -DlgCellWordWrap : "Deljenje reči", +DlgCellWordWrap : "Deljenje reci", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Da", DlgCellWordWrapNo : "Ne", @@ -289,165 +304,169 @@ DlgCellBtnSelect : "Odaberi...", // Find Dialog -DlgFindTitle : "Pronađi", -DlgFindFindBtn : "Pronađi", -DlgFindNotFoundMsg : "Traženi tekst nije pronađen.", +DlgFindTitle : "Pronadi", +DlgFindFindBtn : "Pronadi", +DlgFindNotFoundMsg : "Traeni tekst nije pronaden.", // Replace Dialog DlgReplaceTitle : "Zameni", -DlgReplaceFindLbl : "Pronađi:", +DlgReplaceFindLbl : "Pronadi:", DlgReplaceReplaceLbl : "Zameni sa:", DlgReplaceCaseChk : "Razlikuj mala i velika slova", DlgReplaceReplaceBtn : "Zameni", DlgReplaceReplAllBtn : "Zameni sve", -DlgReplaceWordChk : "Uporedi cele reči", +DlgReplaceWordChk : "Uporedi cele reci", // Paste Operations / Dialog -PasteErrorPaste : "Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog lepljenja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+V).", -PasteErrorCut : "Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog isecanja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+X).", -PasteErrorCopy : "Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+C).", +PasteErrorPaste : "Sigurnosna podeavanja Vaeg pretraivaca ne dozvoljavaju operacije automatskog lepljenja teksta. Molimo Vas da koristite precicu sa tastature (Ctrl+V).", +PasteErrorCut : "Sigurnosna podeavanja Vaeg pretraivaca ne dozvoljavaju operacije automatskog isecanja teksta. Molimo Vas da koristite precicu sa tastature (Ctrl+X).", +PasteErrorCopy : "Sigurnosna podeavanja Vaeg pretraivaca ne dozvoljavaju operacije automatskog kopiranja teksta. Molimo Vas da koristite precicu sa tastature (Ctrl+C).", -PasteAsText : "Zalepi kao čist tekst", +PasteAsText : "Zalepi kao cist tekst", PasteFromWord : "Zalepi iz Worda", -DlgPasteMsg : "Editor nije mogao izvršiti automatsko lepljenje zbog sigurnosnih postavki Vašeg pretraživača.
Molimo da zalepite sadržaj unutar sledeće površine koristeći tastaturnu prečicu (Ctrl+V), a zatim kliknite na OK.", +DlgPasteMsg2 : "Molimo Vas da zalepite unutar donje povrine koristeci tastaturnu precicu (Ctrl+V) i da pritisnete OK.", +DlgPasteIgnoreFont : "Ignorii Font Face definicije", +DlgPasteRemoveStyles : "Ukloni definicije stilova", +DlgPasteCleanBox : "Obrii sve", + // Color Picker ColorAutomatic : "Automatski", -ColorMoreColors : "Više boja...", +ColorMoreColors : "Vie boja...", // Document Properties -DocProps : "Document Properties", //MISSING +DocProps : "Osobine dokumenta", // Anchor Dialog -DlgAnchorTitle : "Anchor Properties", //MISSING -DlgAnchorName : "Anchor Name", //MISSING -DlgAnchorErrorName : "Please type the anchor name", //MISSING +DlgAnchorTitle : "Osobine sidra", +DlgAnchorName : "Ime sidra", +DlgAnchorErrorName : "Unesite ime sidra", // Speller Pages Dialog -DlgSpellNotInDic : "Not in dictionary", //MISSING -DlgSpellChangeTo : "Change to", //MISSING -DlgSpellBtnIgnore : "Ignore", //MISSING -DlgSpellBtnIgnoreAll : "Ignore All", //MISSING -DlgSpellBtnReplace : "Replace", //MISSING -DlgSpellBtnReplaceAll : "Replace All", //MISSING -DlgSpellBtnUndo : "Undo", //MISSING -DlgSpellNoSuggestions : "- No suggestions -", //MISSING -DlgSpellProgress : "Spell check in progress...", //MISSING -DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING -DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING -DlgSpellOneChange : "Spell check complete: One word changed", //MISSING -DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING +DlgSpellNotInDic : "Nije u recniku", +DlgSpellChangeTo : "Izmeni", +DlgSpellBtnIgnore : "Ignorii", +DlgSpellBtnIgnoreAll : "Ignorii sve", +DlgSpellBtnReplace : "Zameni", +DlgSpellBtnReplaceAll : "Zameni sve", +DlgSpellBtnUndo : "Vrati akciju", +DlgSpellNoSuggestions : "- Bez sugestija -", +DlgSpellProgress : "Provera spelovanja u toku...", +DlgSpellNoMispell : "Provera spelovanja zavrena: greke nisu pronadene", +DlgSpellNoChanges : "Provera spelovanja zavrena: Nije izmenjena nijedna rec", +DlgSpellOneChange : "Provera spelovanja zavrena: Izmenjena je jedna rec", +DlgSpellManyChanges : "Provera spelovanja zavrena: %1 rec(i) je izmenjeno", -IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING +IeSpellDownload : "Provera spelovanja nije instalirana. Da li elite da je skinete sa Interneta?", // Button Dialog -DlgButtonText : "Text (Value)", //MISSING -DlgButtonType : "Type", //MISSING +DlgButtonText : "Tekst (vrednost)", +DlgButtonType : "Tip", // Checkbox and Radio Button Dialogs -DlgCheckboxName : "Name", //MISSING -DlgCheckboxValue : "Value", //MISSING -DlgCheckboxSelected : "Selected", //MISSING +DlgCheckboxName : "Naziv", +DlgCheckboxValue : "Vrednost", +DlgCheckboxSelected : "Oznaceno", // Form Dialog -DlgFormName : "Name", //MISSING -DlgFormAction : "Action", //MISSING -DlgFormMethod : "Method", //MISSING +DlgFormName : "Naziv", +DlgFormAction : "Akcija", +DlgFormMethod : "Metoda", // Select Field Dialog -DlgSelectName : "Name", //MISSING -DlgSelectValue : "Value", //MISSING -DlgSelectSize : "Size", //MISSING -DlgSelectLines : "lines", //MISSING -DlgSelectChkMulti : "Allow multiple selections", //MISSING -DlgSelectOpAvail : "Available Options", //MISSING -DlgSelectOpText : "Text", //MISSING -DlgSelectOpValue : "Value", //MISSING -DlgSelectBtnAdd : "Add", //MISSING -DlgSelectBtnModify : "Modify", //MISSING -DlgSelectBtnUp : "Up", //MISSING -DlgSelectBtnDown : "Down", //MISSING -DlgSelectBtnSetValue : "Set as selected value", //MISSING -DlgSelectBtnDelete : "Delete", //MISSING +DlgSelectName : "Naziv", +DlgSelectValue : "Vrednost", +DlgSelectSize : "Velicina", +DlgSelectLines : "linija", +DlgSelectChkMulti : "Dozvoli viestruku selekciju", +DlgSelectOpAvail : "Dostupne opcije", +DlgSelectOpText : "Tekst", +DlgSelectOpValue : "Vrednost", +DlgSelectBtnAdd : "Dodaj", +DlgSelectBtnModify : "Izmeni", +DlgSelectBtnUp : "Gore", +DlgSelectBtnDown : "Dole", +DlgSelectBtnSetValue : "Podesi kao oznacenu vrednost", +DlgSelectBtnDelete : "Obrii", // Textarea Dialog -DlgTextareaName : "Name", //MISSING -DlgTextareaCols : "Columns", //MISSING -DlgTextareaRows : "Rows", //MISSING +DlgTextareaName : "Naziv", +DlgTextareaCols : "Broj kolona", +DlgTextareaRows : "Broj redova", // Text Field Dialog -DlgTextName : "Name", //MISSING -DlgTextValue : "Value", //MISSING -DlgTextCharWidth : "Character Width", //MISSING -DlgTextMaxChars : "Maximum Characters", //MISSING -DlgTextType : "Type", //MISSING -DlgTextTypeText : "Text", //MISSING -DlgTextTypePass : "Password", //MISSING +DlgTextName : "Naziv", +DlgTextValue : "Vrednost", +DlgTextCharWidth : "irina (karaktera)", +DlgTextMaxChars : "Maksimalno karaktera", +DlgTextType : "Tip", +DlgTextTypeText : "Tekst", +DlgTextTypePass : "Lozinka", // Hidden Field Dialog -DlgHiddenName : "Name", //MISSING -DlgHiddenValue : "Value", //MISSING +DlgHiddenName : "Naziv", +DlgHiddenValue : "Vrednost", // Bulleted List Dialog -BulletedListProp : "Bulleted List Properties", //MISSING -NumberedListProp : "Numbered List Properties", //MISSING -DlgLstType : "Type", //MISSING -DlgLstTypeCircle : "Circle", //MISSING -DlgLstTypeDisk : "Disk", //MISSING -DlgLstTypeSquare : "Square", //MISSING -DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING -DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING -DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING -DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING -DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING +BulletedListProp : "Osobine Bulleted liste", +NumberedListProp : "Osobine nabrojive liste", +DlgLstType : "Tip", +DlgLstTypeCircle : "Krug", +DlgLstTypeDisk : "Disk", +DlgLstTypeSquare : "Kvadrat", +DlgLstTypeNumbers : "Brojevi (1, 2, 3)", +DlgLstTypeLCase : "mala slova (a, b, c)", +DlgLstTypeUCase : "VELIKA slova (A, B, C)", +DlgLstTypeSRoman : "Male rimske cifre (i, ii, iii)", +DlgLstTypeLRoman : "Velike rimske cifre (I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "General", //MISSING -DlgDocBackTab : "Background", //MISSING -DlgDocColorsTab : "Colors and Margins", //MISSING -DlgDocMetaTab : "Meta Data", //MISSING +DlgDocGeneralTab : "Opte osobine", +DlgDocBackTab : "Pozadina", +DlgDocColorsTab : "Boje i margine", +DlgDocMetaTab : "Metapodaci", -DlgDocPageTitle : "Page Title", //MISSING -DlgDocLangDir : "Language Direction", //MISSING -DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING -DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING -DlgDocLangCode : "Language Code", //MISSING -DlgDocCharSet : "Character Set Encoding", //MISSING -DlgDocCharSetOther : "Other Character Set Encoding", //MISSING +DlgDocPageTitle : "Naslov stranice", +DlgDocLangDir : "Smer jezika", +DlgDocLangDirLTR : "Sleva nadesno (LTR)", +DlgDocLangDirRTL : "Zdesna nalevo (RTL)", +DlgDocLangCode : "ifra jezika", +DlgDocCharSet : "Kodiranje skupa karaktera", +DlgDocCharSetOther : "Ostala kodiranja skupa karaktera", -DlgDocDocType : "Document Type Heading", //MISSING -DlgDocDocTypeOther : "Other Document Type Heading", //MISSING -DlgDocIncXHTML : "Include XHTML Declarations", //MISSING -DlgDocBgColor : "Background Color", //MISSING -DlgDocBgImage : "Background Image URL", //MISSING -DlgDocBgNoScroll : "Nonscrolling Background", //MISSING -DlgDocCText : "Text", //MISSING -DlgDocCLink : "Link", //MISSING -DlgDocCVisited : "Visited Link", //MISSING -DlgDocCActive : "Active Link", //MISSING -DlgDocMargins : "Page Margins", //MISSING -DlgDocMaTop : "Top", //MISSING -DlgDocMaLeft : "Left", //MISSING -DlgDocMaRight : "Right", //MISSING -DlgDocMaBottom : "Bottom", //MISSING -DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING -DlgDocMeDescr : "Document Description", //MISSING -DlgDocMeAuthor : "Author", //MISSING -DlgDocMeCopy : "Copyright", //MISSING -DlgDocPreview : "Preview", //MISSING +DlgDocDocType : "Zaglavlje tipa dokumenta", +DlgDocDocTypeOther : "Ostala zaglavlja tipa dokumenta", +DlgDocIncXHTML : "Ukljuci XHTML deklaracije", +DlgDocBgColor : "Boja pozadine", +DlgDocBgImage : "URL pozadinske slike", +DlgDocBgNoScroll : "Fiksirana pozadina", +DlgDocCText : "Tekst", +DlgDocCLink : "Link", +DlgDocCVisited : "Poseceni link", +DlgDocCActive : "Aktivni link", +DlgDocMargins : "Margine stranice", +DlgDocMaTop : "Gornja", +DlgDocMaLeft : "Leva", +DlgDocMaRight : "Desna", +DlgDocMaBottom : "Donja", +DlgDocMeIndex : "Kljucne reci za indeksiranje dokumenta (razdvojene zarezima)", +DlgDocMeDescr : "Opis dokumenta", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Autorska prava", +DlgDocPreview : "Izgled stranice", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Obrasci", +DlgTemplatesTitle : "Obrasci za sadraj", +DlgTemplatesSelMsg : "Molimo Vas da odaberete obrazac koji ce biti primenjen na stranicu (trenutni sadraj ce biti obrisan):", +DlgTemplatesLoading : "Ucitavam listu obrazaca. Malo strpljenja...", +DlgTemplatesNoTpl : "(Nema definisanih obrazaca)", // About Dialog -DlgAboutAboutTab : "About", //MISSING -DlgAboutBrowserInfoTab : "Browser Info", //MISSING +DlgAboutAboutTab : "O editoru", +DlgAboutBrowserInfoTab : "Informacije o pretraivacu", DlgAboutVersion : "verzija", DlgAboutLicense : "Licencirano pod uslovima GNU Lesser General Public License", -DlgAboutInfo : "Za više informacija posetite" +DlgAboutInfo : "Za vie informacija posetite" } \ No newline at end of file Index: lams_central/web/fckeditor/editor/lang/sr.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/sr.js (.../sr.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/sr.js (.../sr.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -20,8 +20,8 @@ // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", -ToolbarCollapse : "Collapse Toolbar", //MISSING -ToolbarExpand : "Expand Toolbar", //MISSING +ToolbarCollapse : "Смањи линију са алаткама", +ToolbarExpand : "Прошири линију са алаткама", // Toolbar Items and Context Menu Save : "Сачувај", @@ -38,9 +38,11 @@ InsertLinkLbl : "Линк", InsertLink : "Унеси/измени линк", RemoveLink : "Уклони линк", -Anchor : "Insert/Edit Anchor", //MISSING +Anchor : "Унеси/измени сидро", InsertImageLbl : "Слика", InsertImage : "Унеси/измени слику", +InsertFlashLbl : "Флеш елемент", +InsertFlash : "Унеси/измени флеш", InsertTableLbl : "Табела", InsertTable : "Унеси/измени табелу", InsertLineLbl : "Линија", @@ -79,18 +81,18 @@ Source : "Kôд", Find : "Претрага", Replace : "Замена", -SpellCheck : "Check Spell", //MISSING -UniversalKeyboard : "Universal Keyboard", //MISSING +SpellCheck : "Провери спеловање", +UniversalKeyboard : "Универзална тастатура", -Form : "Form", //MISSING -Checkbox : "Checkbox", //MISSING -RadioButton : "Radio Button", //MISSING -TextField : "Text Field", //MISSING -Textarea : "Textarea", //MISSING -HiddenField : "Hidden Field", //MISSING -Button : "Button", //MISSING -SelectionField : "Selection Field", //MISSING -ImageButton : "Image Button", //MISSING +Form : "Форма", +Checkbox : "Поље за потврду", +RadioButton : "Радио-дугме", +TextField : "Текстуално поље", +Textarea : "Зона текста", +HiddenField : "Скривено поље", +Button : "Дугме", +SelectionField : "Изборно поље", +ImageButton : "Дугме са сликом", // Context Menu EditLink : "Промени линк", @@ -105,17 +107,18 @@ CellProperties : "Особине ћелије", TableProperties : "Особине табеле", ImageProperties : "Особине слике", +FlashProperties : "Особине Флеша", -AnchorProp : "Anchor Properties", //MISSING -ButtonProp : "Button Properties", //MISSING -CheckboxProp : "Checkbox Properties", //MISSING -HiddenFieldProp : "Hidden Field Properties", //MISSING -RadioButtonProp : "Radio Button Properties", //MISSING -ImageButtonProp : "Image Button Properties", //MISSING -TextFieldProp : "Text Field Properties", //MISSING -SelectionFieldProp : "Selection Field Properties", //MISSING -TextareaProp : "Textarea Properties", //MISSING -FormProp : "Form Properties", //MISSING +AnchorProp : "Особине сидра", +ButtonProp : "Особине дугмета", +CheckboxProp : "Особине поља за потврду", +HiddenFieldProp : "Особине скривеног поља", +RadioButtonProp : "Особине радио-дугмета", +ImageButtonProp : "Особине дугмета са сликом", +TextFieldProp : "Особине текстуалног поља", +SelectionFieldProp : "Особине изборног поља", +TextareaProp : "Особине зоне текста", +FormProp : "Особине форме", FontFormats : "Normal;Formatirano;Adresa;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", @@ -133,9 +136,11 @@ DlgBtnOK : "OK", DlgBtnCancel : "Oткажи", DlgBtnClose : "Затвори", -DlgBtnBrowseServer : "Browse Server", //MISSING +DlgBtnBrowseServer : "Претражи сервер", DlgAdvancedTag : "Напредни тагови", -DlgOpOther : "<Other>", //MISSING +DlgOpOther : "<Остали>", +DlgInfoTab : "Инфо", +DlgAlertUrl : "Молимо Вас, унесите УРЛ", // General Dialogs Labels DlgGenNotSet : "<није постављено>", @@ -180,16 +185,26 @@ DlgImgAlignTop : "Врх", DlgImgPreview : "Изглед", DlgImgAlertUrl : "Унесите УРЛ слике", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "Линк", +// Flash Dialog +DlgFlashTitle : "Особине флеша", +DlgFlashChkPlay : "Аутоматски старт", +DlgFlashChkLoop : "Понављај", +DlgFlashChkMenu : "Укључи флеш мени", +DlgFlashScale : "Скалирај", +DlgFlashScaleAll : "Прикажи све", +DlgFlashScaleNoBorder : "Без ивице", +DlgFlashScaleFit : "Попуни површину", + // Link Dialog DlgLnkWindowTitle : "Линк", DlgLnkInfoTab : "Линк инфо", DlgLnkTargetTab : "Мета", DlgLnkType : "Врста линка", DlgLnkTypeURL : "URL", -DlgLnkTypeAnchor : "Сидро на овој странициц", +DlgLnkTypeAnchor : "Сидро на овој страници", DlgLnkTypeEMail : "Eлектронска пошта", DlgLnkProto : "Протокол", DlgLnkProtoOther : "<друго>", @@ -211,7 +226,7 @@ DlgLnkTargetParent : "Родитељски прозор (_parent)", DlgLnkTargetSelf : "Исти прозор (_self)", DlgLnkTargetTop : "Прозор на врху (_top)", -DlgLnkTargetFrameName : "Target Frame Name", //MISSING +DlgLnkTargetFrameName : "Назив одредишног фрејма", DlgLnkPopWinName : "Назив искачућег прозора", DlgLnkPopWinFeat : "Могућности искачућег прозора", DlgLnkPopResize : "Променљива величина", @@ -227,9 +242,9 @@ DlgLnkPopLeft : "Од леве ивице екрана (пиксела)", DlgLnkPopTop : "Од врха екрана (пиксела)", -DlnLnkMsgNoUrl : "Please type the link URL", //MISSING -DlnLnkMsgNoEMail : "Please type the e-mail address", //MISSING -DlnLnkMsgNoAnchor : "Please select an anchor", //MISSING +DlnLnkMsgNoUrl : "Унесите УРЛ линка", +DlnLnkMsgNoEMail : "Откуцајте адресу електронске поште", +DlnLnkMsgNoAnchor : "Одаберите сидро", // Color Dialog DlgColorTitle : "Одаберите боју", @@ -310,143 +325,147 @@ PasteAsText : "Залепи као чист текст", PasteFromWord : "Залепи из Worda", -DlgPasteMsg : "Едитор није могао да изврши аутоматско лепљење због сигурносних поставки Вашег претраживача.
Молимо да залепите садржај унутар следеће површине користећи тастатурну пречицу (Ctrl+V), a затим кликните на OK.", +DlgPasteMsg2 : "Молимо Вас да залепите унутар доње површине користећи тастатурну пречицу (Ctrl+V) и да притиснете OK.", +DlgPasteIgnoreFont : "Игнориши Font Face дефиниције", +DlgPasteRemoveStyles : "Уклони дефиниције стилова", +DlgPasteCleanBox : "Обриши све", + // Color Picker ColorAutomatic : "Аутоматски", ColorMoreColors : "Више боја...", // Document Properties -DocProps : "Document Properties", //MISSING +DocProps : "Особине документа", // Anchor Dialog -DlgAnchorTitle : "Anchor Properties", //MISSING -DlgAnchorName : "Anchor Name", //MISSING -DlgAnchorErrorName : "Please type the anchor name", //MISSING +DlgAnchorTitle : "Особине сидра", +DlgAnchorName : "Име сидра", +DlgAnchorErrorName : "Молимо Вас да унесете име сидра", // Speller Pages Dialog -DlgSpellNotInDic : "Not in dictionary", //MISSING -DlgSpellChangeTo : "Change to", //MISSING -DlgSpellBtnIgnore : "Ignore", //MISSING -DlgSpellBtnIgnoreAll : "Ignore All", //MISSING -DlgSpellBtnReplace : "Replace", //MISSING -DlgSpellBtnReplaceAll : "Replace All", //MISSING -DlgSpellBtnUndo : "Undo", //MISSING -DlgSpellNoSuggestions : "- No suggestions -", //MISSING -DlgSpellProgress : "Spell check in progress...", //MISSING -DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING -DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING -DlgSpellOneChange : "Spell check complete: One word changed", //MISSING -DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING +DlgSpellNotInDic : "Није у речнику", +DlgSpellChangeTo : "Измени", +DlgSpellBtnIgnore : "Игнориши", +DlgSpellBtnIgnoreAll : "Игнориши све", +DlgSpellBtnReplace : "Замени", +DlgSpellBtnReplaceAll : "Замени све", +DlgSpellBtnUndo : "Врати акцију", +DlgSpellNoSuggestions : "- Без сугестија -", +DlgSpellProgress : "Провера спеловања у току...", +DlgSpellNoMispell : "Провера спеловања завршена: грешке нису пронађене", +DlgSpellNoChanges : "Провера спеловања завршена: Није измењена ниједна реч", +DlgSpellOneChange : "Провера спеловања завршена: Измењена је једна реч", +DlgSpellManyChanges : "Провера спеловања завршена: %1 реч(и) је измењено", -IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING +IeSpellDownload : "Провера спеловања није инсталирана. Да ли желите да је скинете са Интернета?", // Button Dialog -DlgButtonText : "Text (Value)", //MISSING -DlgButtonType : "Type", //MISSING +DlgButtonText : "Текст (вредност)", +DlgButtonType : "Tип", // Checkbox and Radio Button Dialogs -DlgCheckboxName : "Name", //MISSING -DlgCheckboxValue : "Value", //MISSING -DlgCheckboxSelected : "Selected", //MISSING +DlgCheckboxName : "Назив", +DlgCheckboxValue : "Вредност", +DlgCheckboxSelected : "Означено", // Form Dialog -DlgFormName : "Name", //MISSING -DlgFormAction : "Action", //MISSING -DlgFormMethod : "Method", //MISSING +DlgFormName : "Назив", +DlgFormAction : "Aкција", +DlgFormMethod : "Mетода", // Select Field Dialog -DlgSelectName : "Name", //MISSING -DlgSelectValue : "Value", //MISSING -DlgSelectSize : "Size", //MISSING -DlgSelectLines : "lines", //MISSING -DlgSelectChkMulti : "Allow multiple selections", //MISSING -DlgSelectOpAvail : "Available Options", //MISSING -DlgSelectOpText : "Text", //MISSING -DlgSelectOpValue : "Value", //MISSING -DlgSelectBtnAdd : "Add", //MISSING -DlgSelectBtnModify : "Modify", //MISSING -DlgSelectBtnUp : "Up", //MISSING -DlgSelectBtnDown : "Down", //MISSING -DlgSelectBtnSetValue : "Set as selected value", //MISSING -DlgSelectBtnDelete : "Delete", //MISSING +DlgSelectName : "Назив", +DlgSelectValue : "Вредност", +DlgSelectSize : "Величина", +DlgSelectLines : "линија", +DlgSelectChkMulti : "Дозволи вишеструку селекцију", +DlgSelectOpAvail : "Доступне опције", +DlgSelectOpText : "Текст", +DlgSelectOpValue : "Вредност", +DlgSelectBtnAdd : "Додај", +DlgSelectBtnModify : "Измени", +DlgSelectBtnUp : "Горе", +DlgSelectBtnDown : "Доле", +DlgSelectBtnSetValue : "Подеси као означену вредност", +DlgSelectBtnDelete : "Обриши", // Textarea Dialog -DlgTextareaName : "Name", //MISSING -DlgTextareaCols : "Columns", //MISSING -DlgTextareaRows : "Rows", //MISSING +DlgTextareaName : "Назив", +DlgTextareaCols : "Број колона", +DlgTextareaRows : "Број редова", // Text Field Dialog -DlgTextName : "Name", //MISSING -DlgTextValue : "Value", //MISSING -DlgTextCharWidth : "Character Width", //MISSING -DlgTextMaxChars : "Maximum Characters", //MISSING -DlgTextType : "Type", //MISSING -DlgTextTypeText : "Text", //MISSING -DlgTextTypePass : "Password", //MISSING +DlgTextName : "Назив", +DlgTextValue : "Вредност", +DlgTextCharWidth : "Ширина (карактера)", +DlgTextMaxChars : "Максимално карактера", +DlgTextType : "Тип", +DlgTextTypeText : "Текст", +DlgTextTypePass : "Лозинка", // Hidden Field Dialog -DlgHiddenName : "Name", //MISSING -DlgHiddenValue : "Value", //MISSING +DlgHiddenName : "Назив", +DlgHiddenValue : "Вредност", // Bulleted List Dialog -BulletedListProp : "Bulleted List Properties", //MISSING -NumberedListProp : "Numbered List Properties", //MISSING -DlgLstType : "Type", //MISSING -DlgLstTypeCircle : "Circle", //MISSING -DlgLstTypeDisk : "Disk", //MISSING -DlgLstTypeSquare : "Square", //MISSING -DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING -DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING -DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING -DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING -DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING +BulletedListProp : "Особине Bulleted листе", +NumberedListProp : "Особине набројиве листе", +DlgLstType : "Тип", +DlgLstTypeCircle : "Круг", +DlgLstTypeDisk : "Диск", +DlgLstTypeSquare : "Квадрат", +DlgLstTypeNumbers : "Бројеви (1, 2, 3)", +DlgLstTypeLCase : "мала слова (a, b, c)", +DlgLstTypeUCase : "ВЕЛИКА СЛОВА (A, B, C)", +DlgLstTypeSRoman : "Мале римске цифре (i, ii, iii)", +DlgLstTypeLRoman : "Велике римске цифре (I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "General", //MISSING -DlgDocBackTab : "Background", //MISSING -DlgDocColorsTab : "Colors and Margins", //MISSING -DlgDocMetaTab : "Meta Data", //MISSING +DlgDocGeneralTab : "Опште особине", +DlgDocBackTab : "Позадина", +DlgDocColorsTab : "Боје и маргине", +DlgDocMetaTab : "Метаподаци", -DlgDocPageTitle : "Page Title", //MISSING -DlgDocLangDir : "Language Direction", //MISSING -DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING -DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING -DlgDocLangCode : "Language Code", //MISSING -DlgDocCharSet : "Character Set Encoding", //MISSING -DlgDocCharSetOther : "Other Character Set Encoding", //MISSING +DlgDocPageTitle : "Наслов странице", +DlgDocLangDir : "Смер језика", +DlgDocLangDirLTR : "Слева надесно (LTR)", +DlgDocLangDirRTL : "Здесна налево (RTL)", +DlgDocLangCode : "Шифра језика", +DlgDocCharSet : "Кодирање скупа карактера", +DlgDocCharSetOther : "Остала кодирања скупа карактера", -DlgDocDocType : "Document Type Heading", //MISSING -DlgDocDocTypeOther : "Other Document Type Heading", //MISSING -DlgDocIncXHTML : "Include XHTML Declarations", //MISSING -DlgDocBgColor : "Background Color", //MISSING -DlgDocBgImage : "Background Image URL", //MISSING -DlgDocBgNoScroll : "Nonscrolling Background", //MISSING -DlgDocCText : "Text", //MISSING -DlgDocCLink : "Link", //MISSING -DlgDocCVisited : "Visited Link", //MISSING -DlgDocCActive : "Active Link", //MISSING -DlgDocMargins : "Page Margins", //MISSING -DlgDocMaTop : "Top", //MISSING -DlgDocMaLeft : "Left", //MISSING -DlgDocMaRight : "Right", //MISSING -DlgDocMaBottom : "Bottom", //MISSING -DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING -DlgDocMeDescr : "Document Description", //MISSING -DlgDocMeAuthor : "Author", //MISSING -DlgDocMeCopy : "Copyright", //MISSING -DlgDocPreview : "Preview", //MISSING +DlgDocDocType : "Заглавље типа документа", +DlgDocDocTypeOther : "Остала заглавља типа документа", +DlgDocIncXHTML : "Улључи XHTML декларације", +DlgDocBgColor : "Боја позадине", +DlgDocBgImage : "УРЛ позадинске слике", +DlgDocBgNoScroll : "Фиксирана позадина", +DlgDocCText : "Текст", +DlgDocCLink : "Линк", +DlgDocCVisited : "Посећени линк", +DlgDocCActive : "Активни линк", +DlgDocMargins : "Маргине странице", +DlgDocMaTop : "Горња", +DlgDocMaLeft : "Лева", +DlgDocMaRight : "Десна", +DlgDocMaBottom : "Доња", +DlgDocMeIndex : "Кључне речи за индексирање документа (раздвојене зарезом)", +DlgDocMeDescr : "Опис документа", +DlgDocMeAuthor : "Аутор", +DlgDocMeCopy : "Ауторска права", +DlgDocPreview : "Изглед странице", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "Обрасци", +DlgTemplatesTitle : "Обрасци за садржај", +DlgTemplatesSelMsg : "Молимо Вас да одаберете образац који ће бити примењен на страницу (тренутни садржај ће бити обрисан):", +DlgTemplatesLoading : "Учитавам листу образаца. Мало стрпљења...", +DlgTemplatesNoTpl : "(Нема дефинисаних образаца)", // About Dialog -DlgAboutAboutTab : "About", //MISSING -DlgAboutBrowserInfoTab : "Browser Info", //MISSING +DlgAboutAboutTab : "О едитору", +DlgAboutBrowserInfoTab : "Информације о претраживачу", DlgAboutVersion : "верзија", DlgAboutLicense : "Лиценцирано под условима GNU Lesser General Public License", DlgAboutInfo : "За више информација посетите" Index: lams_central/web/fckeditor/editor/lang/sv.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/sv.js (.../sv.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/sv.js (.../sv.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Infoga/Editera ankarlänk", InsertImageLbl : "Bild", InsertImage : "Infoga/Editera bild", +InsertFlashLbl : "Flash", +InsertFlash : "Infoga/Editera Flash", InsertTableLbl : "Tabell", InsertTable : "Infoga/Editera tabell", InsertLineLbl : "Linje", @@ -105,6 +107,7 @@ CellProperties : "Cellegenskaper", TableProperties : "Tabellegenskaper", ImageProperties : "Bildegenskaper", +FlashProperties : "Flashegenskaper", AnchorProp : "Egenskaper för ankarlänk", ButtonProp : "Egenskaper för knapp", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Bläddra på server", DlgAdvancedTag : "Avancerad", DlgOpOther : "Övrigt", +DlgInfoTab : "Information", +DlgAlertUrl : "Var god och ange en URL", // General Dialogs Labels DlgGenNotSet : "<ej angivet>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Var god och ange bildens URL", DlgImgLinkTab : "Länk", +// Flash Dialog +DlgFlashTitle : "Flashegenskaper", +DlgFlashChkPlay : "Automatisk uppspelning", +DlgFlashChkLoop : "Upprepa/Loopa", +DlgFlashChkMenu : "Aktivera Flashmeny", +DlgFlashScale : "Skala", +DlgFlashScaleAll : "Visa allt", +DlgFlashScaleNoBorder : "Ingen ram", +DlgFlashScaleFit : "Exakt passning", + // Link Dialog DlgLnkWindowTitle : "Länk", DlgLnkInfoTab : "Länkinformation", @@ -310,8 +325,12 @@ PasteAsText : "Klistra in som vanlig text", PasteFromWord : "Klistra in från Word", -DlgPasteMsg : "Editorn tilläts ej att Klistra in p.g.a webläsarens säkerhetsinställning.
Var god och Klistra in i fältet nedan genom att använda (Ctrl+V). Klicka sen på OK", +DlgPasteMsg2 : "Var god och klistra in Er text i rutan nedan genom att använda (Ctrl+V) klicka sen på OK.", +DlgPasteIgnoreFont : "Ignorera typsnitts definitioner", +DlgPasteRemoveStyles : "Radera Stil definitioner", +DlgPasteCleanBox : "Upprensningsruta", + // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Fler färger...", Index: lams_central/web/fckeditor/editor/lang/th.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/th.js (.../th.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/th.js (.../th.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -42,6 +42,8 @@ Anchor : "แทรก/แก้ไข Anchor", InsertImageLbl : "รูปภาพ", InsertImage : "แทรก/แก้ไข รูปภาพ", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "ตาราง", InsertTable : "แทรก/แก้ไข ตาราง", InsertLineLbl : "เส้นคั่นบรรทัด", @@ -106,6 +108,7 @@ CellProperties : "คุณสมบัติของช่อง", TableProperties : "คุณสมบัติของตาราง", ImageProperties : "คุณสมบัติของรูปภาพ", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "รายละเอียด Anchor", ButtonProp : "รายละเอียดของ ปุ่ม", @@ -137,6 +140,8 @@ DlgBtnBrowseServer : "เปิดหน้าต่างจัดการไฟล์อัพโหลด", DlgAdvancedTag : "ขั้นสูง", DlgOpOther : "<อื่นๆ>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<ไม่ระบุ>", @@ -183,6 +188,16 @@ DlgImgAlertUrl : "กรุณาระบุที่อยู่อ้างอิงออนไลน์ของไฟล์รูปภาพ (URL)", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ", DlgLnkInfoTab : "รายละเอียด", @@ -311,8 +326,12 @@ PasteAsText : "วางแบบตัวอักษรธรรมดา", PasteFromWord : "วางแบบตัวอักษรจากโปรแกรมเวิร์ด", -DlgPasteMsg : "ไม่สามารถวางข้อความที่สำเนามาได้เนื่องจาก การกำหนดค่าระดับความปลอดภัย ในโปรแกรมท่องเว็บที่ท่านกำลังใช้อยู่.
กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว V พร้อมกัน) และกดปุ่ม ตกลง.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "สีอัตโนมัติ", ColorMoreColors : "เลือกสีอื่นๆ...", Index: lams_central/web/fckeditor/editor/lang/tr.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/tr.js (.../tr.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/tr.js (.../tr.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "Resim", InsertImage : "Resim Ekle/Düzenle", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Tablo", InsertTable : "Tablo Ekle/Düzenle", InsertLineLbl : "Satir", @@ -105,6 +107,7 @@ CellProperties : "Hücre Özellikleri", TableProperties : "Tablo Özellikleri", ImageProperties : "Resim Özellikleri", +FlashProperties : "Flash Properties", //MISSING AnchorProp : "Çapa Özellikleri", ButtonProp : "Dügme Özellikleri", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Sunucuyu Gez", DlgAdvancedTag : "Gelismis", DlgOpOther : "<Diger>", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<tanimlanmamis>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Lütfen resimin URL'sini yaziniz", DlgImgLinkTab : "Link", //MISSING +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + // Link Dialog DlgLnkWindowTitle : "Köprü", DlgLnkInfoTab : "Köprü Bilgisi", @@ -310,8 +325,12 @@ PasteAsText : "Düz Metin Olarak Yapistir", PasteFromWord : "Word'den yapistir", -DlgPasteMsg : "Gezgin yaziliminizin güvenlik ayarlari editörün otomatik yapistirma islemine izin vermiyor.
Lütfen yandaki kutuya klavyenin (Ctrl+V) tuslarini kullanarak yapistirin ve Tamam'a basin.", +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING +DlgPasteCleanBox : "Clean Up Box", //MISSING + // Color Picker ColorAutomatic : "Otomatik", ColorMoreColors : "Diger renkler...", Index: lams_central/web/fckeditor/editor/lang/uk.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/uk.js (.../uk.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/uk.js (.../uk.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,6 +41,8 @@ Anchor : "Вставити/Редагувати якір", InsertImageLbl : "Зображення", InsertImage : "Вставити/Редагувати зображення", +InsertFlashLbl : "Flash", +InsertFlash : "Вставити/Редагувати Flash", InsertTableLbl : "Таблиця", InsertTable : "Вставити/Редагувати таблицю", InsertLineLbl : "Лінія", @@ -105,6 +107,7 @@ CellProperties : "Властивості комірки", TableProperties : "Властивості таблиці", ImageProperties : "Властивості зображення", +FlashProperties : "Властивості Flash", AnchorProp : "Властивості якоря", ButtonProp : "Властивості кнопки", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "Передивитися на сервері", DlgAdvancedTag : "Розширений", DlgOpOther : "<Інше>", +DlgInfoTab : "Інфо", +DlgAlertUrl : "Вставте, будь-ласка, URL", // General Dialogs Labels DlgGenNotSet : "<не визначено>", @@ -182,6 +187,16 @@ DlgImgAlertUrl : "Будь ласка, введіть URL зображення", DlgImgLinkTab : "Посилання", +// Flash Dialog +DlgFlashTitle : "Властивості Flash", +DlgFlashChkPlay : "Авто програвання", +DlgFlashChkLoop : "Зациклити", +DlgFlashChkMenu : "Дозволити меню Flash", +DlgFlashScale : "Масштаб", +DlgFlashScaleAll : "Показати всі", +DlgFlashScaleNoBorder : "Без рамки", +DlgFlashScaleFit : "Дійсний розмір", + // Link Dialog DlgLnkWindowTitle : "Посилання", DlgLnkInfoTab : "Інформація посилання", @@ -310,8 +325,12 @@ PasteAsText : "Вставити тільки текст", PasteFromWord : "Вставити з Word", -DlgPasteMsg : "Редактор не може автоматично виконати операцію вставки внаслідок налаштування безпеки вашого браузера.
Будь ласка, вставте текст в наступне поле введення, використовуючи клавіатуру (Ctrl+V), і натисніть ОК.", +DlgPasteMsg2 : "Будь-ласка, вставте з буфера обміну в цю область, користуючись комбінацією клавіш (Ctrl+V) та натисніть OK.", +DlgPasteIgnoreFont : "Ігнорувати налаштування шрифтів", +DlgPasteRemoveStyles : "Видалити налаштування стилів", +DlgPasteCleanBox : "Очистити область", + // Color Picker ColorAutomatic : "Автоматичний", ColorMoreColors : "Кольори...", Index: lams_central/web/fckeditor/editor/lang/zh-cn.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/zh-cn.js (.../zh-cn.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/zh-cn.js (.../zh-cn.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -41,14 +41,16 @@ Anchor : "插入/编辑锚点链接", InsertImageLbl : "图象", InsertImage : "插入/编辑图象", +InsertFlashLbl : "Flash", +InsertFlash : "插入/编辑 Flash", InsertTableLbl : "表格", InsertTable : "插入/编辑表格", InsertLineLbl : "水平线", InsertLine : "插入水平线", InsertSpecialCharLbl: "特殊符号", InsertSpecialChar : "插入特殊符号", -InsertSmileyLbl : "图释", -InsertSmiley : "插入图释", +InsertSmileyLbl : "表情符", +InsertSmiley : "插入表情图标", About : "关于 FCKeditor", Bold : "加粗", Italic : "倾斜", @@ -76,7 +78,7 @@ FontSize : "大小", TextColor : "文本颜色", BGColor : "背景颜色", -Source : "代码", +Source : "源代码", Find : "查找", Replace : "替换", SpellCheck : "拼写检查", @@ -105,6 +107,7 @@ CellProperties : "单元格属性", TableProperties : "表格属性", ImageProperties : "图象属性", +FlashProperties : "Flash 属性", AnchorProp : "锚点链接属性", ButtonProp : "按钮属性", @@ -136,6 +139,8 @@ DlgBtnBrowseServer : "浏览服务器", DlgAdvancedTag : "高级", DlgOpOther : "<其它>", +DlgInfoTab : "信息", +DlgAlertUrl : "请插入 URL", // General Dialogs Labels DlgGenNotSet : "<没有设置>", @@ -148,11 +153,11 @@ DlgGenName : "名称", DlgGenTabIndex : "Tab 键次序", DlgGenLongDescr : "详细说明地址", -DlgGenClass : "样式类", +DlgGenClass : "样式类名称", DlgGenTitle : "标题", -DlgGenContType : "类型", -DlgGenLinkCharset : "编码", -DlgGenStyle : "样式", +DlgGenContType : "内容类型", +DlgGenLinkCharset : "字符编码", +DlgGenStyle : "行内样式", // Image Dialog DlgImgTitle : "图象属性", @@ -180,15 +185,25 @@ DlgImgAlignTop : "顶端", DlgImgPreview : "预览", DlgImgAlertUrl : "请输入图象地址", -DlgImgLinkTab : "Link", //MISSING +DlgImgLinkTab : "链接", +// Flash Dialog +DlgFlashTitle : "Flash 属性", +DlgFlashChkPlay : "自动播放", +DlgFlashChkLoop : "循环", +DlgFlashChkMenu : "启用 Flash 菜单", +DlgFlashScale : "缩放", +DlgFlashScaleAll : "全部显示", +DlgFlashScaleNoBorder : "无边框", +DlgFlashScaleFit : "严格匹配", + // Link Dialog DlgLnkWindowTitle : "超链接", DlgLnkInfoTab : "超链接信息", DlgLnkTargetTab : "目标", DlgLnkType : "超链接类型", -DlgLnkTypeURL : "网址", +DlgLnkTypeURL : "超链接", DlgLnkTypeAnchor : "页内锚点链接", DlgLnkTypeEMail : "电子邮件", DlgLnkProto : "协议", @@ -238,7 +253,7 @@ DlgColorSelected : "选择", // Smiley Dialog -DlgSmileyTitle : "插入一个图释", +DlgSmileyTitle : "插入表情图标", // Special Character Dialog DlgSpecialCharTitle : "选择特殊符号", @@ -310,8 +325,12 @@ PasteAsText : "粘贴为无格式文本", PasteFromWord : "从 MS Word 粘贴", -DlgPasteMsg : "因为您的浏览器编辑器 安全设置 原因,不能自动执行粘贴。
请使用键盘快捷键(Ctrl+V)粘贴到下面并按 确定。", +DlgPasteMsg2 : "请使用键盘快捷键(Ctrl+V)把内容粘贴到下面的方框里,再按 确定。", +DlgPasteIgnoreFont : "忽略 Font 标签", +DlgPasteRemoveStyles : "清理 CSS 样式", +DlgPasteCleanBox : "清空上面内容", + // Color Picker ColorAutomatic : "自动", ColorMoreColors : "其它颜色...", @@ -378,7 +397,7 @@ // Text Field Dialog DlgTextName : "名称", -DlgTextValue : "值", +DlgTextValue : "初始值", DlgTextCharWidth : "字符宽度", DlgTextMaxChars : "最多字符数", DlgTextType : "类型", @@ -387,7 +406,7 @@ // Hidden Field Dialog DlgHiddenName : "名称", -DlgHiddenValue : "值", +DlgHiddenValue : "初始值", // Bulleted List Dialog BulletedListProp : "项目列表属性", @@ -438,11 +457,11 @@ DlgDocPreview : "预览", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "模板", +DlgTemplatesTitle : "内容模板", +DlgTemplatesSelMsg : "请选择编辑器内容模板
(当前内容将会被清除替换):", +DlgTemplatesLoading : "正在加载模板列表,请稍等...", +DlgTemplatesNoTpl : "(没有模板)", // About Dialog DlgAboutAboutTab : "关于", Index: lams_central/web/fckeditor/editor/lang/zh.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/editor/lang/zh.js (.../zh.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/editor/lang/zh.js (.../zh.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -12,343 +12,362 @@ * Chinese Traditional language file. * * File Authors: - * NetRube (NetRube@126.com) + * Zak Fong (zakfong@yahoo.com.tw) */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", -ToolbarCollapse : "折疊工具欄", -ToolbarExpand : "展開工具欄", +ToolbarCollapse : "隱藏面板", +ToolbarExpand : "顯示面板", // Toolbar Items and Context Menu Save : "儲存", -NewPage : "新建", +NewPage : "開新檔案", Preview : "預覽", -Cut : "剪切", -Copy : "拷貝", -Paste : "粘貼", -PasteText : "粘貼為無格式文本", -PasteWord : "從 MS Word 粘貼", +Cut : "剪下", +Copy : "複製", +Paste : "貼上", +PasteText : "貼為純文字格式", +PasteWord : "自 Word 貼上", Print : "列印", SelectAll : "全選", RemoveFormat : "清除格式", -InsertLinkLbl : "超鏈結", -InsertLink : "插入/編輯超鏈結", -RemoveLink : "取消超鏈結", -Anchor : "插入/編輯錨點鏈結", -InsertImageLbl : "圖像", -InsertImage : "插入/編輯圖像", +InsertLinkLbl : "超連結", +InsertLink : "插入/編輯超連結", +RemoveLink : "移除超連結", +Anchor : "插入/編輯錨點", +InsertImageLbl : "影像", +InsertImage : "插入/編輯影像", +InsertFlashLbl : "Flash", +InsertFlash : "插入/編輯 Flash", InsertTableLbl : "表格", InsertTable : "插入/編輯表格", InsertLineLbl : "水平線", InsertLine : "插入水平線", InsertSpecialCharLbl: "特殊符號", InsertSpecialChar : "插入特殊符號", -InsertSmileyLbl : "圖釋", -InsertSmiley : "插入圖釋", +InsertSmileyLbl : "表情符號", +InsertSmiley : "插入表情符號", About : "關於 FCKeditor", -Bold : "加粗", -Italic : "傾斜", -Underline : "下劃線", +Bold : "粗體", +Italic : "斜體", +Underline : "底線", StrikeThrough : "刪除線", Subscript : "下標", Superscript : "上標", -LeftJustify : "左對齊", -CenterJustify : "居中對齊", -RightJustify : "右對齊", -BlockJustify : "兩端對齊", -DecreaseIndent : "減少縮進量", -IncreaseIndent : "增加縮進量", -Undo : "撤銷", -Redo : "重做", -NumberedListLbl : "編號列表", -NumberedList : "插入/刪除編號列表", -BulletedListLbl : "項目列表", -BulletedList : "插入/刪除項目列表", +LeftJustify : "靠左對齊", +CenterJustify : "置中", +RightJustify : "靠右對齊", +BlockJustify : "左右對齊", +DecreaseIndent : "減少縮排", +IncreaseIndent : "增加縮排", +Undo : "復原", +Redo : "重複", +NumberedListLbl : "編號清單", +NumberedList : "插入/移除編號清單", +BulletedListLbl : "項目清單", +BulletedList : "插入/移除項目清單", ShowTableBorders : "顯示表格邊框", ShowDetails : "顯示詳細資料", Style : "樣式", FontFormat : "格式", Font : "字體", -FontSize : "尺寸", -TextColor : "文本顏色", +FontSize : "大小", +TextColor : "文字顏色", BGColor : "背景顏色", -Source : "代碼", -Find : "查找", -Replace : "替換", -SpellCheck : "拼寫檢查", -UniversalKeyboard : "軟鍵盤", +Source : "原始碼", +Find : "尋找", +Replace : "取代", +SpellCheck : "拼字檢查", +UniversalKeyboard : "各國鍵盤", Form : "表單", Checkbox : "核取方塊", -RadioButton : "單選按鈕", -TextField : "單行文本", -Textarea : "多行文本", -HiddenField : "隱藏域", +RadioButton : "選項按鈕", +TextField : "文字方塊", +Textarea : "文字區域", +HiddenField : "隱藏欄位", Button : "按鈕", -SelectionField : "列表/菜單", -ImageButton : "圖像域", +SelectionField : "清單/選單", +ImageButton : "影像按鈕", // Context Menu -EditLink : "編輯超鏈結", -InsertRow : "插入行", -DeleteRows : "刪除行", -InsertColumn : "插入列", -DeleteColumns : "刪除列", -InsertCell : "插入單格", -DeleteCells : "刪除單格", -MergeCells : "合併單格", -SplitCell : "拆分單格", -CellProperties : "單格屬性", +EditLink : "編輯超連結", +InsertRow : "插入列", +DeleteRows : "刪除列", +InsertColumn : "插入欄", +DeleteColumns : "刪除欄", +InsertCell : "插入儲存格", +DeleteCells : "刪除儲存格", +MergeCells : "合併儲存格", +SplitCell : "分割儲存格", +CellProperties : "儲存格屬性", TableProperties : "表格屬性", -ImageProperties : "圖像屬性", +ImageProperties : "影像屬性", +FlashProperties : "Flash 屬性", -AnchorProp : "錨點鏈結屬性", +AnchorProp : "錨點屬性", ButtonProp : "按鈕屬性", CheckboxProp : "核取方塊屬性", -HiddenFieldProp : "隱藏域屬性", -RadioButtonProp : "單選按鈕屬性", -ImageButtonProp : "圖像域屬性", -TextFieldProp : "單行文本屬性", -SelectionFieldProp : "功能表/列表屬性", -TextareaProp : "多行文本屬性", +HiddenFieldProp : "隱藏欄位屬性", +RadioButtonProp : "選項按鈕屬性", +ImageButtonProp : "影像按鈕屬性", +TextFieldProp : "文字方塊屬性", +SelectionFieldProp : "清單/選單屬性", +TextareaProp : "文字區域屬性", FormProp : "表單屬性", -FontFormats : "普通;帶格式的;地址;標題 1;標題 2;標題 3;標題 4;標題 5;標題 6;段落(DIV)", +FontFormats : "一般;格式化;地址;標題 1;標題 2;標題 3;標題 4;標題 5;標題 6;段落 (DIV)", // Alerts and Messages -ProcessingXHTML : "正在處理 XHTML,請稍等...", +ProcessingXHTML : "處理 XHTML 中,請稍候…", Done : "完成", -PasteWordConfirm : "您要粘貼的內容好像是來自 MS Word,是否要清除 MS Word 格式後再粘貼?", -NotCompatiblePaste : "該命令需要 Internet Explorer 5.5 或更高版本的支持,是否按常規粘貼進行?", -UnknownToolbarItem : "未知工具欄項目 \"%1\"", -UnknownCommand : "未知命令名稱 \"%1\"", -NotImplemented : "命令無法執行", -UnknownToolbarSet : "工具欄設置 \"%1\" 不存在", +PasteWordConfirm : "您想要貼上的文字似乎是自 Word 複製而來,請問您是否要先清除 Word 的格式後再行貼上?", +NotCompatiblePaste : "此指令僅在 Internet Explorer 5.5 或以上的版本有效。請問您是否同意不清除格式即貼上?", +UnknownToolbarItem : "未知工具列項目 \"%1\"", +UnknownCommand : "未知指令名稱 \"%1\"", +NotImplemented : "尚未安裝此指令", +UnknownToolbarSet : "工具列設定 \"%1\" 不存在", // Dialogs DlgBtnOK : "確定", DlgBtnCancel : "取消", DlgBtnClose : "關閉", -DlgBtnBrowseServer : "流覽伺服器", +DlgBtnBrowseServer : "瀏覽伺服器端", DlgAdvancedTag : "進階", DlgOpOther : "<其他>", +DlgInfoTab : "資訊", +DlgAlertUrl : "請插入 URL", // General Dialogs Labels -DlgGenNotSet : "<沒有設置>", +DlgGenNotSet : "<尚未設定>", DlgGenId : "ID", DlgGenLangDir : "語言方向", -DlgGenLangDirLtr : "自左到右 (LTR)", -DlgGenLangDirRtl : "自右到左 (RTL)", +DlgGenLangDirLtr : "由左而右 (LTR)", +DlgGenLangDirRtl : "由右而左 (RTL)", DlgGenLangCode : "語言代碼", -DlgGenAccessKey : "訪問鍵", +DlgGenAccessKey : "存取鍵", DlgGenName : "名稱", -DlgGenTabIndex : "Tab 鍵次序", -DlgGenLongDescr : "詳細說明地址", -DlgGenClass : "樣式類", +DlgGenTabIndex : "定位順序", +DlgGenLongDescr : "詳細 URL", +DlgGenClass : "樣式表類別", DlgGenTitle : "標題", -DlgGenContType : "類型", -DlgGenLinkCharset : "編碼", +DlgGenContType : "內容類型", +DlgGenLinkCharset : "連結資源之編碼", DlgGenStyle : "樣式", // Image Dialog -DlgImgTitle : "圖像屬性", -DlgImgInfoTab : "圖像", -DlgImgBtnUpload : "發送到伺服器上", -DlgImgURL : "源檔案", -DlgImgUpload : "上載", -DlgImgAlt : "替換文本", +DlgImgTitle : "影像屬性", +DlgImgInfoTab : "影像資訊", +DlgImgBtnUpload : "上傳至伺服器", +DlgImgURL : "URL", +DlgImgUpload : "上傳", +DlgImgAlt : "替代文字", DlgImgWidth : "寬度", DlgImgHeight : "高度", -DlgImgLockRatio : "鎖定比例", -DlgBtnResetSize : "恢復尺寸", -DlgImgBorder : "邊框尺寸", -DlgImgHSpace : "水準間距", -DlgImgVSpace : "垂直間距", -DlgImgAlign : "對齊方式", -DlgImgAlignLeft : "左對齊", -DlgImgAlignAbsBottom: "絕對底邊", -DlgImgAlignAbsMiddle: "絕對居中", -DlgImgAlignBaseline : "基線", -DlgImgAlignBottom : "底邊", -DlgImgAlignMiddle : "居中", -DlgImgAlignRight : "右對齊", -DlgImgAlignTextTop : "文本上方", -DlgImgAlignTop : "頂端", +DlgImgLockRatio : "等比例", +DlgBtnResetSize : "重設為原大小", +DlgImgBorder : "邊框", +DlgImgHSpace : "水平距離", +DlgImgVSpace : "垂直距離", +DlgImgAlign : "對齊", +DlgImgAlignLeft : "靠左對齊", +DlgImgAlignAbsBottom: "絕對下方", +DlgImgAlignAbsMiddle: "絕對中間", +DlgImgAlignBaseline : "基準線", +DlgImgAlignBottom : "靠下對齊", +DlgImgAlignMiddle : "置中對齊", +DlgImgAlignRight : "靠右對齊", +DlgImgAlignTextTop : "文字上方", +DlgImgAlignTop : "靠上對齊", DlgImgPreview : "預覽", -DlgImgAlertUrl : "請輸入圖像位址", -DlgImgLinkTab : "Link", //MISSING +DlgImgAlertUrl : "請輸入影像 URL", +DlgImgLinkTab : "超連結", +// Flash Dialog +DlgFlashTitle : "Flash 屬性", +DlgFlashChkPlay : "自動播放", +DlgFlashChkLoop : "重複", +DlgFlashChkMenu : "開啟選單", +DlgFlashScale : "縮放", +DlgFlashScaleAll : "全部顯示", +DlgFlashScaleNoBorder : "無邊框", +DlgFlashScaleFit : "精確符合", + // Link Dialog -DlgLnkWindowTitle : "超鏈結", -DlgLnkInfoTab : "超鏈結資訊", +DlgLnkWindowTitle : "超連結", +DlgLnkInfoTab : "超連結資訊", DlgLnkTargetTab : "目標", -DlgLnkType : "超鏈結類型", -DlgLnkTypeURL : "網址", -DlgLnkTypeAnchor : "頁內錨點鏈結", +DlgLnkType : "超連接類型", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "本頁錨點", DlgLnkTypeEMail : "電子郵件", -DlgLnkProto : "協議", +DlgLnkProto : "通訊協定", DlgLnkProtoOther : "<其他>", -DlgLnkURL : "地址", -DlgLnkAnchorSel : "選擇一個錨點", -DlgLnkAnchorByName : "按錨點名稱", -DlgLnkAnchorById : "按錨點 ID", -DlgLnkNoAnchors : "<此文檔沒有可用的錨點>", -DlgLnkEMail : "地址", -DlgLnkEMailSubject : "主題", -DlgLnkEMailBody : "內容", -DlgLnkUpload : "上载", -DlgLnkBtnUpload : "發送到伺服器上", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "請選擇錨點", +DlgLnkAnchorByName : "依錨點名稱", +DlgLnkAnchorById : "依元件 ID", +DlgLnkNoAnchors : "<本文件尚無可用之錨點>", +DlgLnkEMail : "電子郵件", +DlgLnkEMailSubject : "郵件主旨", +DlgLnkEMailBody : "郵件內容", +DlgLnkUpload : "上傳", +DlgLnkBtnUpload : "傳送至伺服器", DlgLnkTarget : "目標", DlgLnkTargetFrame : "<框架>", -DlgLnkTargetPopup : "<彈出窗口>", -DlgLnkTargetBlank : "新窗口 (_blank)", -DlgLnkTargetParent : "父窗口 (_parent)", -DlgLnkTargetSelf : "本窗口 (_self)", -DlgLnkTargetTop : "整頁 (_top)", +DlgLnkTargetPopup : "<快顯視窗>", +DlgLnkTargetBlank : "新視窗 (_blank)", +DlgLnkTargetParent : "父視窗 (_parent)", +DlgLnkTargetSelf : "本視窗 (_self)", +DlgLnkTargetTop : "最上層視窗 (_top)", DlgLnkTargetFrameName : "目標框架名稱", -DlgLnkPopWinName : "彈出視窗名稱", -DlgLnkPopWinFeat : "彈出視窗屬性", -DlgLnkPopResize : "調整大小", -DlgLnkPopLocation : "地址欄", -DlgLnkPopMenu : "菜單欄", +DlgLnkPopWinName : "快顯視窗名稱", +DlgLnkPopWinFeat : "快顯視窗屬性", +DlgLnkPopResize : "可調整大小", +DlgLnkPopLocation : "網址列", +DlgLnkPopMenu : "選單列", DlgLnkPopScroll : "捲軸", -DlgLnkPopStatus : "狀態欄", -DlgLnkPopToolbar : "工具欄", -DlgLnkPopFullScrn : "全屏 (IE)", -DlgLnkPopDependent : "依附 (NS)", +DlgLnkPopStatus : "狀態列", +DlgLnkPopToolbar : "工具列", +DlgLnkPopFullScrn : "全螢幕 (IE)", +DlgLnkPopDependent : "從屬 (NS)", DlgLnkPopWidth : "寬", DlgLnkPopHeight : "高", DlgLnkPopLeft : "左", DlgLnkPopTop : "右", -DlnLnkMsgNoUrl : "請輸入超鏈結位址", +DlnLnkMsgNoUrl : "請輸入欲連結的 URL", DlnLnkMsgNoEMail : "請輸入電子郵件位址", -DlnLnkMsgNoAnchor : "請選擇一個錨點", +DlnLnkMsgNoAnchor : "請選擇錨點", // Color Dialog -DlgColorTitle : "選擇顏色", +DlgColorTitle : "請選擇顏色", DlgColorBtnClear : "清除", DlgColorHighlight : "預覽", DlgColorSelected : "選擇", // Smiley Dialog -DlgSmileyTitle : "插入一個圖釋", +DlgSmileyTitle : "插入表情符號", // Special Character Dialog -DlgSpecialCharTitle : "選擇特殊符號", +DlgSpecialCharTitle : "請選擇特殊符號", // Table Dialog DlgTableTitle : "表格屬性", -DlgTableRows : "行數", -DlgTableColumns : "列數", +DlgTableRows : "列數", +DlgTableColumns : "欄數", DlgTableBorder : "邊框", DlgTableAlign : "對齊", -DlgTableAlignNotSet : "<沒有設置>", -DlgTableAlignLeft : "左對齊", -DlgTableAlignCenter : "居中", -DlgTableAlignRight : "右對齊", +DlgTableAlignNotSet : "<未設定>", +DlgTableAlignLeft : "靠左對齊", +DlgTableAlignCenter : "置中", +DlgTableAlignRight : "靠右對齊", DlgTableWidth : "寬度", -DlgTableWidthPx : "圖元", +DlgTableWidthPx : "像素", DlgTableWidthPc : "百分比", DlgTableHeight : "高度", DlgTableCellSpace : "間距", -DlgTableCellPad : "邊距", +DlgTableCellPad : "內距", DlgTableCaption : "標題", // Table Cell Dialog -DlgCellTitle : "單格屬性", +DlgCellTitle : "儲存格屬性", DlgCellWidth : "寬度", -DlgCellWidthPx : "圖元", +DlgCellWidthPx : "像素", DlgCellWidthPc : "百分比", DlgCellHeight : "高度", DlgCellWordWrap : "自動換行", -DlgCellWordWrapNotSet : "<沒有設置>", +DlgCellWordWrapNotSet : "<尚未設定>", DlgCellWordWrapYes : "是", DlgCellWordWrapNo : "否", -DlgCellHorAlign : "水準對齊", -DlgCellHorAlignNotSet : "<沒有設置>", -DlgCellHorAlignLeft : "左對齊", -DlgCellHorAlignCenter : "居中", -DlgCellHorAlignRight: "右對齊", +DlgCellHorAlign : "水平對齊", +DlgCellHorAlignNotSet : "<尚未設定>", +DlgCellHorAlignLeft : "靠左對齊", +DlgCellHorAlignCenter : "置中", +DlgCellHorAlignRight: "靠右對齊", DlgCellVerAlign : "垂直對齊", -DlgCellVerAlignNotSet : "<沒有設置>", -DlgCellVerAlignTop : "頂端", -DlgCellVerAlignMiddle : "居中", -DlgCellVerAlignBottom : "底部", -DlgCellVerAlignBaseline : "基線", -DlgCellRowSpan : "縱跨行數", -DlgCellCollSpan : "橫跨列數", +DlgCellVerAlignNotSet : "<尚未設定>", +DlgCellVerAlignTop : "靠上對齊", +DlgCellVerAlignMiddle : "置中", +DlgCellVerAlignBottom : "靠下對齊", +DlgCellVerAlignBaseline : "基準線", +DlgCellRowSpan : "合併列數", +DlgCellCollSpan : "合併欄数", DlgCellBackColor : "背景顏色", DlgCellBorderColor : "邊框顏色", -DlgCellBtnSelect : "選擇...", +DlgCellBtnSelect : "請選擇…", // Find Dialog -DlgFindTitle : "查找", -DlgFindFindBtn : "查找", -DlgFindNotFoundMsg : "指定文本沒有找到。", +DlgFindTitle : "尋找", +DlgFindFindBtn : "尋找", +DlgFindNotFoundMsg : "未找到指定的文字。", // Replace Dialog -DlgReplaceTitle : "替換", -DlgReplaceFindLbl : "查找:", -DlgReplaceReplaceLbl : "替換:", -DlgReplaceCaseChk : "區分大小寫", -DlgReplaceReplaceBtn : "替換", -DlgReplaceReplAllBtn : "全部替換", -DlgReplaceWordChk : "全字匹配", +DlgReplaceTitle : "取代", +DlgReplaceFindLbl : "尋找:", +DlgReplaceReplaceLbl : "取代:", +DlgReplaceCaseChk : "大小寫須相符", +DlgReplaceReplaceBtn : "取代", +DlgReplaceReplAllBtn : "全部取代", +DlgReplaceWordChk : "全字相符", // Paste Operations / Dialog -PasteErrorPaste : "您的流覽器安全設置不允許編輯器自動執行粘貼操作,請使用鍵盤快捷鍵(Ctrl+V)來完成。", -PasteErrorCut : "您的流覽器安全設置不允許編輯器自動執行剪切操作,請使用鍵盤快捷鍵(Ctrl+X)來完成。", -PasteErrorCopy : "您的流覽器安全設置不允許編輯器自動執行複製操作,請使用鍵盤快捷鍵(Ctrl+C)來完成。", +PasteErrorPaste : "您的瀏覽器的安全性設定不允編輯器自動執行貼上動作。請使用快捷鍵 (Ctrl+V) 貼上。", +PasteErrorCut : "您的瀏覽器的安全性設定不允編輯器自動執行剪下動作。請使用快捷鍵 (Ctrl+X) 剪下。", +PasteErrorCopy : "您的瀏覽器的安全性設定不允編輯器自動執行複製動作。請使用快捷鍵 (Ctrl+C) 複製。", -PasteAsText : "粘貼為無格式文本", -PasteFromWord : "從 MS Word 粘貼", +PasteAsText : "貼為純文字格式", +PasteFromWord : "自 Word 貼上", -DlgPasteMsg : "因為您的流覽器編輯器 安全設置 原因,不能自動執行粘貼。
請使用鍵盤快捷鍵(Ctrl+V)粘貼到下面並按 確定。", +DlgPasteMsg2 : "請使用快捷鍵 (Ctrl+V) 貼到下方區域中並按下 確定", +DlgPasteIgnoreFont : "移除字型設定", +DlgPasteRemoveStyles : "移除樣式設定", +DlgPasteCleanBox : "清除文字區域", + // Color Picker ColorAutomatic : "自動", -ColorMoreColors : "其他顏色...", +ColorMoreColors : "更多顏色…", // Document Properties -DocProps : "頁面屬性", +DocProps : "文件屬性", // Anchor Dialog DlgAnchorTitle : "命名錨點", DlgAnchorName : "錨點名稱", DlgAnchorErrorName : "請輸入錨點名稱", // Speller Pages Dialog -DlgSpellNotInDic : "沒有在字典裏", +DlgSpellNotInDic : "不在字典中", DlgSpellChangeTo : "更改為", DlgSpellBtnIgnore : "忽略", DlgSpellBtnIgnoreAll : "全部忽略", -DlgSpellBtnReplace : "替換", -DlgSpellBtnReplaceAll : "全部替換", -DlgSpellBtnUndo : "撤銷", -DlgSpellNoSuggestions : "- 沒有建議 -", -DlgSpellProgress : "正在進行拼寫檢查...", -DlgSpellNoMispell : "拼寫檢查完成:沒有發現拼寫錯誤", -DlgSpellNoChanges : "拼寫檢查完成:沒有更改任何單詞", -DlgSpellOneChange : "拼寫檢查完成:更改了一個單詞", -DlgSpellManyChanges : "拼寫檢查完成:更改了 %1 個單詞", +DlgSpellBtnReplace : "取代", +DlgSpellBtnReplaceAll : "全部取代", +DlgSpellBtnUndo : "復原", +DlgSpellNoSuggestions : "- 無建議值 -", +DlgSpellProgress : "進行拼字檢查中…", +DlgSpellNoMispell : "拼字檢查完成:未發現拼字錯誤", +DlgSpellNoChanges : "拼字檢查完成:未更改任何單字", +DlgSpellOneChange : "拼字檢查完成:更改了 1 個單字", +DlgSpellManyChanges : "拼字檢查完成:更改了 %1 個單字", -IeSpellDownload : "拼寫檢查插件還沒安裝,你是否想現在就下載?", +IeSpellDownload : "尚未安裝拼字檢查元件。您是否想要現在下載?", // Button Dialog -DlgButtonText : "標籤(值)", +DlgButtonText : "顯示文字 (值)", DlgButtonType : "類型", // Checkbox and Radio Button Dialogs DlgCheckboxName : "名稱", -DlgCheckboxValue : "選定值", -DlgCheckboxSelected : "已勾選", +DlgCheckboxValue : "選取值", +DlgCheckboxSelected : "已選取", // Form Dialog DlgFormName : "名稱", @@ -357,42 +376,42 @@ // Select Field Dialog DlgSelectName : "名稱", -DlgSelectValue : "選定", -DlgSelectSize : "高度", +DlgSelectValue : "選取值", +DlgSelectSize : "大小", DlgSelectLines : "行", -DlgSelectChkMulti : "允許多選", -DlgSelectOpAvail : "列表值", -DlgSelectOpText : "標籤", +DlgSelectChkMulti : "可多選", +DlgSelectOpAvail : "可用選項", +DlgSelectOpText : "顯示文字", DlgSelectOpValue : "值", DlgSelectBtnAdd : "新增", DlgSelectBtnModify : "修改", DlgSelectBtnUp : "上移", DlgSelectBtnDown : "下移", -DlgSelectBtnSetValue : "設為初始化時選定", -DlgSelectBtnDelete : "移除", +DlgSelectBtnSetValue : "設為預設值", +DlgSelectBtnDelete : "刪除", // Textarea Dialog DlgTextareaName : "名稱", DlgTextareaCols : "字元寬度", -DlgTextareaRows : "行數", +DlgTextareaRows : "列數", // Text Field Dialog DlgTextName : "名稱", DlgTextValue : "值", DlgTextCharWidth : "字元寬度", DlgTextMaxChars : "最多字元數", DlgTextType : "類型", -DlgTextTypeText : "文本", +DlgTextTypeText : "文字", DlgTextTypePass : "密碼", // Hidden Field Dialog DlgHiddenName : "名稱", DlgHiddenValue : "值", // Bulleted List Dialog -BulletedListProp : "項目列表屬性", -NumberedListProp : "編號列表屬性", -DlgLstType : "列表類型", +BulletedListProp : "項目清單屬性", +NumberedListProp : "編號清單屬性", +DlgLstType : "清單類型", DlgLstTypeCircle : "圓圈", DlgLstTypeDisk : "圓點", DlgLstTypeSquare : "方塊", @@ -403,51 +422,51 @@ DlgLstTypeLRoman : "大寫羅馬數字 (I, II, III)", // Document Properties Dialog -DlgDocGeneralTab : "常規", +DlgDocGeneralTab : "一般", DlgDocBackTab : "背景", -DlgDocColorsTab : "顏色和邊距", +DlgDocColorsTab : "顯色與邊界", DlgDocMetaTab : "Meta 資料", DlgDocPageTitle : "頁面標題", DlgDocLangDir : "語言方向", -DlgDocLangDirLTR : "從左到右 (LTR)", -DlgDocLangDirRTL : "從右到左 (RTL)", +DlgDocLangDirLTR : "由左而右 (LTR)", +DlgDocLangDirRTL : "由右而左 (RTL)", DlgDocLangCode : "語言代碼", DlgDocCharSet : "字元編碼", DlgDocCharSetOther : "其他字元編碼", -DlgDocDocType : "文檔類型", -DlgDocDocTypeOther : "其他文檔類型", -DlgDocIncXHTML : "包含 XHTML 聲明", +DlgDocDocType : "文件類型", +DlgDocDocTypeOther : "其他文件類型", +DlgDocIncXHTML : "包含 XHTML 定義", DlgDocBgColor : "背景顏色", -DlgDocBgImage : "背景圖像", -DlgDocBgNoScroll : "不滾動背景圖像", -DlgDocCText : "文本", -DlgDocCLink : "超鏈結", -DlgDocCVisited : "已訪問的超鏈結", -DlgDocCActive : "活動超鏈結", -DlgDocMargins : "頁面邊距", +DlgDocBgImage : "背景影像", +DlgDocBgNoScroll : "浮水印", +DlgDocCText : "文字", +DlgDocCLink : "超連結", +DlgDocCVisited : "已瀏覽過的超連結", +DlgDocCActive : "作用中的超連結", +DlgDocMargins : "頁面邊界", DlgDocMaTop : "上", DlgDocMaLeft : "左", DlgDocMaRight : "右", DlgDocMaBottom : "下", -DlgDocMeIndex : "頁面索引關鍵字 (用半形逗號[,]分隔)", -DlgDocMeDescr : "頁面說明", +DlgDocMeIndex : "文件索引關鍵字 (用半形逗號[,]分隔)", +DlgDocMeDescr : "文件說明", DlgDocMeAuthor : "作者", -DlgDocMeCopy : "版權", +DlgDocMeCopy : "版權所有", DlgDocPreview : "預覽", // Templates Dialog -Templates : "Templates", //MISSING -DlgTemplatesTitle : "Content Templates", //MISSING -DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING -DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING -DlgTemplatesNoTpl : "(No templates defined)", //MISSING +Templates : "樣版", +DlgTemplatesTitle : "內容樣版", +DlgTemplatesSelMsg : "請選擇欲開啟的樣版
(原有的內容將會被清除):", +DlgTemplatesLoading : "讀取樣版清單中,請稍候…", +DlgTemplatesNoTpl : "(無樣版)", // About Dialog DlgAboutAboutTab : "關於", -DlgAboutBrowserInfoTab : "流覽器資訊", +DlgAboutBrowserInfoTab : "瀏覽器資訊", DlgAboutVersion : "版本", -DlgAboutLicense : "基於 GNU 通用公共許可證授權發佈 ", -DlgAboutInfo : "要獲得更多資訊請訪問 " +DlgAboutLicense : "依據 GNU 較寬鬆公共許可證(LGPL)發佈", +DlgAboutInfo : "想獲得更多資訊請至 " } \ No newline at end of file Index: lams_central/web/fckeditor/editor/skins/default/toolbar/flash.gif =================================================================== diff -u Binary files differ Index: lams_central/web/fckeditor/editor/skins/silver/toolbar/flash.gif =================================================================== diff -u Binary files differ Index: lams_central/web/fckeditor/fckconfig.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/fckconfig.js (.../fckconfig.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/fckconfig.js (.../fckconfig.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -38,8 +38,8 @@ FCKConfig.DefaultLanguage = 'en' ; FCKConfig.ContentLangDirection = 'ltr' ; -FCKConfig.EnableXHTML = true ; -FCKConfig.EnableSourceXHTML = true ; +FCKConfig.EnableXHTML = true ; // Unsupported: Do not change. +FCKConfig.EnableSourceXHTML = true ; // Unsupported: Do not change. FCKConfig.ProcessHTMLEntities = true ; FCKConfig.IncludeLatinEntities = true ; @@ -60,16 +60,18 @@ FCKConfig.UseBROnCarriageReturn = false ; FCKConfig.ToolbarStartExpanded = false ; FCKConfig.ToolbarCanCollapse = true ; +FCKConfig.IEForceVScroll = false ; +FCKConfig.IgnoreEmptyParagraphValue = true ; -FCKConfig.ToolbarSets["Default_original"] = [ +FCKConfig.ToolbarSets["Default"] = [ ['Source','DocProps','-','Save','NewPage','Preview','-','Templates'], ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], ['OrderedList','UnorderedList','-','Outdent','Indent'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], ['Link','Unlink','Anchor'], - ['Image','Table','Rule','Smiley','SpecialChar','UniversalKey'], + ['Image','Flash','Table','Rule','Smiley','SpecialChar','UniversalKey'], ['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'], '/', ['Style','FontFormat','FontName','FontSize'], @@ -81,7 +83,7 @@ ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About'] ] ; -FCKConfig.ToolbarSets["Default"] = [ +FCKConfig.ToolbarSets["Default_lams"] = [ ['Source','-','NewPage','Preview','-','Templates'], ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], @@ -92,7 +94,7 @@ ['Style','FontFormat','FontName','FontSize'] ] ; -FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','TableCell','Table','Form'] ; +FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','TableCell','Table','Form'] ; FCKConfig.FontColors = '000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,808080,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF' ; @@ -108,15 +110,19 @@ FCKConfig.MaxUndoLevels = 15 ; +FCKConfig.DisableImageHandles = false ; +FCKConfig.DisableTableHandles = false ; + FCKConfig.LinkDlgHideTarget = false ; FCKConfig.LinkDlgHideAdvanced = false ; FCKConfig.ImageDlgHideLink = false ; FCKConfig.ImageDlgHideAdvanced = false ; +FCKConfig.FlashDlgHideAdvanced = false ; + FCKConfig.LinkBrowser = true ; FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" ; - //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=connectors/asp/connector.asp' ; //FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=connectors/asp/connector.asp&ServerPath=/CustomFiles/' ; // ASP.Net // FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx' ; @@ -128,11 +134,8 @@ FCKConfig.LinkBrowserWindowHeight = screen.height * 0.7 ; // 70% FCKConfig.ImageBrowser = true ; +FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector" ; //FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/asp/connector.asp' ; -//JSP -FCKConfig.imageBrowserURL= FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector'; - - // ASP.Net // FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx' ; // ColdFusion // FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/cfm/connector.cfm' ; // Perl // FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=connectors/perl/connector.cgi' ; @@ -141,8 +144,43 @@ FCKConfig.ImageBrowserWindowWidth = screen.width * 0.7 ; // 70% ; FCKConfig.ImageBrowserWindowHeight = screen.height * 0.7 ; // 70% ; + +FCKConfig.FlashBrowser = true ; +FCKConfig.FlashBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector" ; +//FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/asp/connector.asp' ; +// ASP.Net // FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/aspx/connector.aspx' ; +// ColdFusion // FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/cfm/connector.cfm' ; +// Perl // FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/perl/connector.cgi' ; +// PHP // FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/php/connector.php' ; +// PHP - mcpuk // FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/mcpuk/browser.html?Type=Flash&Connector=connectors/php/connector.php' ; +FCKConfig.FlashBrowserWindowWidth = screen.width * 0.7 ; //70% ; +FCKConfig.FlashBrowserWindowHeight = screen.height * 0.7 ; //70% ; + +FCKConfig.LinkUpload = true ; +FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=File' ; +//FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/asp/upload.asp' ; +// PHP // FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/php/upload.php' ; +FCKConfig.LinkUploadAllowedExtensions = "" ; // empty for all +FCKConfig.LinkUploadDeniedExtensions = ".(php|php3|php5|phtml|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|dll|reg|cgi)$" ; // empty for no one + +FCKConfig.ImageUpload = true ; +FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Image' ; +//FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/asp/upload.asp?Type=Image' ; +// PHP // FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/php/upload.php?Type=Image' ; +FCKConfig.ImageUploadAllowedExtensions = ".(jpg|gif|jpeg|png)$" ; // empty for all +FCKConfig.ImageUploadDeniedExtensions = "" ; // empty for no one + +FCKConfig.FlashUpload = true ; +FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Flash' ; +//FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/asp/upload.asp?Type=Flash' ; +// PHP // FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/php/upload.php?Type=Flash' ; +FCKConfig.FlashUploadAllowedExtensions = ".(swf|fla)$" ; // empty for all +FCKConfig.FlashUploadDeniedExtensions = "" ; // empty for no one + FCKConfig.SmileyPath = FCKConfig.BasePath + 'images/smiley/msn/' ; FCKConfig.SmileyImages = ['regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif','embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif','devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif','broken_heart.gif','kiss.gif','envelope.gif'] ; FCKConfig.SmileyColumns = 8 ; FCKConfig.SmileyWindowWidth = 320 ; -FCKConfig.SmileyWindowHeight = 240 ; \ No newline at end of file +FCKConfig.SmileyWindowHeight = 240 ; + +if( window.console ) window.console.log( 'Config is loaded!' ) ; // @Packager.Compactor.RemoveLine \ No newline at end of file Index: lams_central/web/fckeditor/fckeditor.js =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/fckeditor.js (.../fckeditor.js) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/fckeditor.js (.../fckeditor.js) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -1,4 +1,4 @@ -/* +/* * FCKeditor - The text editor for internet * Copyright (C) 2003-2005 Frederico Caldeira Knabben * @@ -31,6 +31,7 @@ this.BasePath = '/fckeditor/' ; this.CheckBrowser = true ; this.DisplayErrors = true ; + this.EnableSafari = false ; // This is a temporary property, while Safari support is under development. this.Config = new Object() ; @@ -132,6 +133,9 @@ // Gecko else if ( navigator.product == "Gecko" && navigator.productSub >= 20030210 ) return true ; + // Safari + else if ( this.EnableSafari && sAgent.indexOf( 'safari' ) != -1 ) + return ( sAgent.match( /safari\/(\d+)/ )[1] >= 312 ) ; // Build must be at least 312 (1.3) else return false ; } Index: lams_central/web/fckeditor/fcktemplates.xml =================================================================== diff -u -rec7cf4ccd30c2f44920a59691c6055f714e5e36c -re7bc7c1b21c5e95239af85cf7d5e5ab01b18e279 --- lams_central/web/fckeditor/fcktemplates.xml (.../fcktemplates.xml) (revision ec7cf4ccd30c2f44920a59691c6055f714e5e36c) +++ lams_central/web/fckeditor/fcktemplates.xml (.../fcktemplates.xml) (revision e7bc7c1b21c5e95239af85cf7d5e5ab01b18e279) @@ -40,38 +40,38 @@ A title with some text and a table. -

Title goes here

-

- - - - - - - - - - - - - - - - - - - - - - - - - - -
Table title
   
   
   
   
- Type the text here

- +
+

Title goes here

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Table title
   
   
   
   
+ Type the text here

+
]]>