db/0000755000102600010270000000000011240261352010420 5ustar imarkimarkdb/index.html0000644000102600010270000000000011251166433012411 0ustar imarkimarkdb/connect.php0000644000102600010270000000162511251166431012572 0ustar imarkimarkdb/functions.php0000644000102600010270000003226311251166432013154 0ustar imarkimark 'swf', 'image/pjpeg' => 'jpg', 'image/jpeg' => 'jpg', 'image/jpg' => 'jpg', 'image/x-png' => 'png', 'image/png' => 'png', 'image/gif' => 'gif', 'image/bmp' => 'bmp', ); if(array_key_exists($type, $file_types)) return $file_types[$type]; return null; } /**************************************************** * Gets upload error message by error code. * ***************************************************/ function getUploadErrorMessage($code) { switch($code) { case UPLOAD_ERR_OK: return null; case UPLOAD_ERR_INI_SIZE: return "The uploaded file exceeds the upload_max_filesize directive in php.ini."; case UPLOAD_ERR_FORM_SIZE: return "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."; case UPLOAD_ERR_PARTIAL: return "The uploaded file was only partially uploaded."; case UPLOAD_ERR_NO_FILE: return "No file was uploaded."; case UPLOAD_ERR_NO_TMP_DIR: return "Missing a temporary folder."; case UPLOAD_ERR_CANT_WRITE: return "Failed to write file to disk. Introduced in PHP 5.1.0."; case UPLOAD_ERR_EXTENSION: return "File upload stopped by extension."; default: return "Unknow upload error occured."; } } /**************************************************** * Adds message to existing string. * ***************************************************/ function addErrorMessage($string, $message) { $result = "".L_ERROR.": ".$message; if ($string == null || $string == "") return $result; return $string."
".$result; } /**************************************************** * Gets file directory path. * ***************************************************/ function getFileDirectory($fileName) { //Win $i = strrpos($fileName, "\\"); //Unix if ($i === false) $i = strrpos($fileName, "/"); if ($i === false) return null; return substr($fileName, 0, $i + 1); } /**************************************************** * Extanded sting trim. * ***************************************************/ function extendedTrim($string, $maxLegth) { $string = substr($string, 0, $maxLegth); //comma $index = strrpos($string, ","); //semicolon $temp = strrpos($string, ";"); if ($temp > $index) $index = $temp; //colon $temp = strrpos($string, ":"); if ($temp > $index) $index = $temp; //dot $temp = strrpos($string, "."); if ($temp > $index) $index = $temp; //cr $temp = strrpos($string, "\r"); if ($temp > $index) $index = $temp; //nl $temp = strrpos($string, "\n"); if ($temp > $index) $index = $temp; //space $temp = strrpos($string, " "); if ($temp - 1 > $index) $index = $temp; return substr($string, 0, $index); } /**************************************************** * Extanded sting trim. * ***************************************************/ function extendedTrim2($string, $maxLegth) { if(strlen($string) >= $maxLegth) { //$string = substr($string, 0, $maxLegth); //comma $index = strrpos($string, ","); //semicolon $temp = strrpos($string, ";"); if ($temp > $index) $index = $temp; //colon $temp = strrpos($string, ":"); if ($temp > $index) $index = $temp; //dot $temp = strrpos($string, "."); if ($temp > $index) $index = $temp; //cr $temp = strrpos($string, "\r"); if ($temp > $index) $index = $temp; //nl $temp = strrpos($string, "\n"); if ($temp > $index) $index = $temp; //space $temp = strrpos($string, " "); if ($temp - 1 > $index) $index = $temp; } else $index = $maxLegth; return substr($string, 0, $index); } /**************************************************** * Extanded sting trim. * ***************************************************/ function extendedTrim1($string, $maxLegth, $lang) { if($lang == 'heb') { $st = extendedTrim2($string, 38); if(strlen($st)>38) { $st = substr($st, 0, 38); $st = extendedTrim2($st, 38); } } else { $st = extendedTrim2($string, 17); if(strlen($st)>17) { $st = substr($st, 0, 17); $st = extendedTrim2($st, 17); } } return $st; } /**************************************************** * Gets max dimension value string. * * Example: width:100 * ***************************************************/ function getMaxDimension($width, $height, $maxWidth, $maxHeight) { //width if ($width > $height) { if ($width > $maxWidth) return "width:".$maxWidth; return "width:".$width; } //height if ($height > $maxHeight) return "height:".$maxHeight; return "height:".$height; } /**************************************************** * Gets max dimension value string for image file. * * Example: width:100 * ***************************************************/ function getMaxImageDimension($image, $maxWidth, $maxHeight) { list($width, $height) = getimagesize($image); return getMaxDimension($width, $height, $maxWidth, $maxHeight); } /**************************************************** * Gets max dimension value string. * * Example: width:100; height:150 * ***************************************************/ function getMaxDimension1($width, $height, $maxWidth, $maxHeight) { //width if ($width > $maxWidth) return "width:".$maxWidth; } /**************************************************** * Gets max dimension value string for image file. * * Example: width:100; height:150 * ***************************************************/ function getMaxImageDimension1($image, $maxWidth, $maxHeight) { list($width, $height) = getimagesize($image); return getMaxDimension1($width, $height, $maxWidth, $maxHeight); } /**************************************************** * Send a mail message at html format. * ***************************************************/ function send_mail($to, $body, $subject, $fromaddress, $fromname, $attachments=false) { $eol="\r\n"; $mime_boundary=md5(time()); # Common Headers $headers = "From: ".$fromname."<".$fromaddress.">".$eol; $headers .= "Reply-To: ".$fromname."<".$fromaddress.">".$eol; $headers .= "Return-Path: ".$fromname."<".$fromaddress.">".$eol; // these two to set reply address $headers .= "Message-ID: <".time()."-".$fromaddress.">".$eol; $headers .= "X-Mailer: PHP v".phpversion().$eol; // These two to help avoid spam-filters # Boundry for marking the split & Multitype Headers $headers .= 'MIME-Version: 1.0'.$eol.$eol; $headers .= "Content-Type: multipart/mixed; boundary=\"".$mime_boundary."\"".$eol.$eol; # Open the first part of the mail $msg = "--".$mime_boundary.$eol; $htmlalt_mime_boundary = $mime_boundary."_htmlalt"; //we must define a different MIME boundary for this section # Setup for text OR html - $msg .= "Content-Type: multipart/alternative; boundary=\"".$htmlalt_mime_boundary."\"".$eol.$eol; # Text Version $msg .= "--".$htmlalt_mime_boundary.$eol; $msg .= "Content-Type: text/plain; charset=utf-8".$eol; $msg .= "Content-Transfer-Encoding: 8bit".$eol.$eol; $msg .= strip_tags(str_replace("
", "\n", substr($body, (strpos($body, "")+6)))).$eol.$eol; # HTML Version $msg .= "--".$htmlalt_mime_boundary.$eol; $msg .= "Content-Type: text/html; charset=utf-8".$eol; $msg .= "Content-Transfer-Encoding: 8bit".$eol.$eol; $msg .= $body.$eol.$eol; //close the html/plain text alternate portion $msg .= "--".$htmlalt_mime_boundary."--".$eol.$eol; if ($attachments !== false) { for($i=0; $i < count($attachments); $i++) { if (is_file($attachments[$i]["file"])) { # File for Attachment $file_name = substr($attachments[$i]["file"], (strrpos($attachments[$i]["file"], "/")+1)); $handle=fopen($attachments[$i]["file"], 'rb'); $f_contents=fread($handle, filesize($attachments[$i]["file"])); $f_contents=chunk_split(base64_encode($f_contents)); //Encode The Data For Transition using base64_encode(); $f_type=filetype($attachments[$i]["file"]); fclose($handle); # Attachment $msg .= "--".$mime_boundary.$eol; $msg .= "Content-Type: ".$attachments[$i]["content_type"]."; name=\"".$file_name."\"".$eol; // sometimes i have to send MS Word, use 'msword' instead of 'pdf' $msg .= "Content-Transfer-Encoding: base64".$eol; $msg .= "Content-Description: ".$file_name.$eol; $msg .= "Content-Disposition: attachment; filename=\"".$file_name."\"".$eol.$eol; // !! This line needs TWO end of lines !! IMPORTANT !! $msg .= $f_contents.$eol.$eol; } } } # Finished $msg .= "--".$mime_boundary."--".$eol.$eol; // finish with two eol's for better security. see Injection. # SEND THE EMAIL ini_set("sendmail_from", $fromaddress); // the INI lines are to force the From Address to be used ! $mail_sent = mail($to, $subject, $msg, $headers); ini_restore("sendmail_from"); return $mail_sent; } /**************************************************** * Gets showMessage java script code. * ***************************************************/ function getShowMessageScript($message) { return "\r\n"; } ?>FCKeditor/0000755000102600010270000000000011240261352011645 5ustar imarkimarkFCKeditor/fckeditor.lasso0000644000102600010270000000664711234071137014702 0ustar imarkimark[//lasso /* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * This is the integration file for Lasso. * * It defines the FCKeditor class ("custom type" in Lasso terms) that can * be used to create editor instances in Lasso pages on server side. */ define_type( 'editor', -namespace='fck_', -description='Creates an instance of FCKEditor.' ); local( 'instancename' = 'FCKEditor1', 'width' = '100%', 'height' = '200', 'toolbarset' = 'Default', 'initialvalue' = string, 'basepath' = '/fckeditor/', 'config' = array, 'checkbrowser' = true, 'displayerrors' = false ); define_tag( 'onCreate', -required='instancename', -type='string', -optional='width', -type='string', -optional='height', -type='string', -optional='toolbarset', -type='string', -optional='initialvalue', -type='string', -optional='basepath', -type='string', -optional='config', -type='array' ); self->instancename = #instancename; local_defined('width') ? self->width = #width; local_defined('height') ? self->height = #height; local_defined('toolbarset') ? self->toolbarset = #toolbarset; local_defined('initialvalue') ? self->initialvalue = #initialvalue; local_defined('basepath') ? self->basepath = #basepath; local_defined('config') ? self->config = #config; /define_tag; define_tag('create'); if(self->isCompatibleBrowser); local('out' = '
' + self->parseConfig + '
'); else; local('out' = '
'); /if; return(@#out); /define_tag; define_tag('isCompatibleBrowser'); local('result' = true); (client_browser >> 'Apple' || client_browser >> 'Opera' || client_browser >> 'KHTML') ? #result = false; return(#result); /define_tag; define_tag('parseConfig'); if(self->config->size); local('out' = '\n'; return(@#out); /if; /define_tag; /define_type; ] FCKeditor/fckeditor.cfc0000644000102600010270000002156211234071135014303 0ustar imarkimark // display the html editor or a plain textarea? if( isCompatible() ) showHTMLEditor(); else showTextArea(); var sAgent = lCase( cgi.HTTP_USER_AGENT ); var stResult = ""; var sBrowserVersion = ""; // do not check if argument "checkBrowser" is false if( not this.checkBrowser ) return true; // check for Internet Explorer ( >= 5.5 ) if( find( "msie", sAgent ) and not find( "mac", sAgent ) and not find( "opera", sAgent ) ) { // try to extract IE version stResult = reFind( "msie ([5-9]\.[0-9])", sAgent, 1, true ); if( arrayLen( stResult.pos ) eq 2 ) { // get IE Version sBrowserVersion = mid( sAgent, stResult.pos[2], stResult.len[2] ); return ( sBrowserVersion GTE 5.5 ); } } // check for Gecko ( >= 20030210+ ) else if( find( "gecko/", sAgent ) ) { // try to extract Gecko version date stResult = reFind( "gecko/(200[3-9][0-1][0-9][0-3][0-9])", sAgent, 1, true ); if( arrayLen( stResult.pos ) eq 2 ) { // get Gecko build (i18n date) sBrowserVersion = mid( sAgent, stResult.pos[2], stResult.len[2] ); return ( sBrowserVersion GTE 20030210 ); } } return false; // append unit "px" for numeric width and/or height values if( isNumeric( this.width ) ) this.width = this.width & "px"; if( isNumeric( this.height ) ) this.height = this.height & "px";
var sURL = ""; // try to fix the basePath, if ending slash is missing if( len( this.basePath) and right( this.basePath, 1 ) is not "/" ) this.basePath = this.basePath & "/"; // construct the url sURL = this.basePath & "editor/fckeditor.html?InstanceName=" & this.instanceName; // append toolbarset name to the url if( len( this.toolbarSet ) ) sURL = sURL & "&Toolbar=" & this.toolbarSet;
var sParams = ""; var key = ""; var fieldValue = ""; var fieldLabel = ""; var lConfigKeys = ""; var iPos = ""; /** * CFML doesn't store casesensitive names for structure keys, but the configuration names must be casesensitive for js. * So we need to find out the correct case for the configuration keys. * We "fix" this by comparing the caseless configuration keys to a list of all available configuration options in the correct case. * changed 20041206 hk@lwd.de (improvements are welcome!) */ lConfigKeys = lConfigKeys & "DisableEnterKeyHandler,CustomConfigurationsPath,EditorAreaCSS,ToolbarComboPreviewCSS,DocType"; lConfigKeys = lConfigKeys & ",BaseHref,FullPage,Debug,AllowQueryStringDebug,SkinPath"; lConfigKeys = lConfigKeys & ",PreloadImages,PluginsPath,AutoDetectLanguage,DefaultLanguage,ContentLangDirection"; lConfigKeys = lConfigKeys & ",ProcessHTMLEntities,IncludeLatinEntities,IncludeGreekEntities,ProcessNumericEntities,AdditionalNumericEntities"; lConfigKeys = lConfigKeys & ",FillEmptyBlocks,FormatSource,FormatOutput,FormatIndentator,ForceStrongEm"; lConfigKeys = lConfigKeys & ",GeckoUseSPAN,StartupFocus,ForcePasteAsPlainText,AutoDetectPasteFromWord,ForceSimpleAmpersand"; lConfigKeys = lConfigKeys & ",TabSpaces,ShowBorders,SourcePopup,ToolbarStartExpanded,ToolbarCanCollapse"; lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,PreserveSessionOnFileBrowser,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; lConfigKeys = lConfigKeys & ",ToolbarLocation,ToolbarSets,EnterMode,ShiftEnterMode,Keystrokes"; lConfigKeys = lConfigKeys & ",ContextMenu,BrowserContextMenuOnCtrl,FontColors,FontNames,FontSizes"; lConfigKeys = lConfigKeys & ",FontFormats,StylesXmlPath,TemplatesXmlPath,SpellChecker,IeSpellDownloadUrl"; lConfigKeys = lConfigKeys & ",SpellerPagesServerScript,FirefoxSpellChecker,MaxUndoLevels,DisableObjectResizing,DisableFFTableHandles"; lConfigKeys = lConfigKeys & ",LinkDlgHideTarget ,LinkDlgHideAdvanced,ImageDlgHideLink ,ImageDlgHideAdvanced,FlashDlgHideAdvanced"; lConfigKeys = lConfigKeys & ",ProtectedTags,BodyId,BodyClass,DefaultLinkTarget,CleanWordKeepsStructure"; lConfigKeys = lConfigKeys & ",LinkBrowser,LinkBrowserURL,LinkBrowserWindowWidth,LinkBrowserWindowHeight,ImageBrowser"; lConfigKeys = lConfigKeys & ",ImageBrowserURL,ImageBrowserWindowWidth,ImageBrowserWindowHeight,FlashBrowser,FlashBrowserURL"; lConfigKeys = lConfigKeys & ",FlashBrowserWindowWidth ,FlashBrowserWindowHeight,LinkUpload,LinkUploadURL,LinkUploadWindowWidth"; lConfigKeys = lConfigKeys & ",LinkUploadWindowHeight,LinkUploadAllowedExtensions,LinkUploadDeniedExtensions,ImageUpload,ImageUploadURL"; lConfigKeys = lConfigKeys & ",ImageUploadAllowedExtensions,ImageUploadDeniedExtensions,FlashUpload,FlashUploadURL,FlashUploadAllowedExtensions"; lConfigKeys = lConfigKeys & ",FlashUploadDeniedExtensions,SmileyPath,SmileyImages,SmileyColumns,SmileyWindowWidth,SmileyWindowHeight"; for( key in this.config ) { iPos = listFindNoCase( lConfigKeys, key ); if( iPos GT 0 ) { if( len( sParams ) ) sParams = sParams & "&"; fieldValue = this.config[key]; fieldName = listGetAt( lConfigKeys, iPos ); // set all boolean possibilities in CFML to true/false values if( isBoolean( fieldValue) and fieldValue ) fieldValue = "true"; else if( isBoolean( fieldValue) ) fieldValue = "false"; sParams = sParams & HTMLEditFormat( fieldName ) & '=' & HTMLEditFormat( fieldValue ); } } return sParams;
FCKeditor/fckeditor.afp0000644000102600010270000000765411234071133014322 0ustar imarkimark<% * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * This is the integration file for Active FoxPro Pages. * DEFINE CLASS goFckeditor AS CONTAINER OLEPUBLIC cInstanceName ="" BasePath ="" cWIDTH ="" cHEIGHT ="" ToolbarSet ="" cValue="" DIMENSION aConfig(10,2) && ----------------------------------------------------------------------- FUNCTION fckeditor( tcInstanceName ) LOCAL lnLoop,lnLoop2 THIS.cInstanceName = tcInstanceName THIS.BasePath = '/fckeditor/' THIS.cWIDTH = '100%' THIS.cHEIGHT = '200' THIS.ToolbarSet = 'Default' THIS.cValue = '' FOR lnLoop=1 TO 10 FOR lnLoop2=1 TO 2 THIS.aConfig(lnLoop,lnLoop2) = "" NEXT NEXT RETURN ENDFUNC && ----------------------------------------------------------------------- FUNCTION CREATE() ? THIS.CreateHtml() RETURN ENDFUNC && ----------------------------------------------------------------------- FUNCTION CreateHtml() LOCAL html LOCAL lcLink HtmlValue = THIS.cValue && HTMLSPECIALCHARS() html = [
] IF THIS.IsCompatible() lcLink = THIS.BasePath+[editor/fckeditor.html?InstanceName=]+THIS.cInstanceName IF ( !THIS.ToolbarSet == '' ) lcLink = lcLink + [&Toolbar=]+THIS.ToolbarSet ENDIF && Render the LINKED HIDDEN FIELD. html = html + [] && Render the configurations HIDDEN FIELD. html = html + [] +CHR(13)+CHR(10) && Render the EDITOR IFRAME. html = html + [] ELSE IF ( AT("%", THIS.cWIDTH)=0 ) WidthCSS = THIS.cWIDTH + 'px' ELSE WidthCSS = THIS.cWIDTH ENDIF IF ( AT("%",THIS.cHEIGHT)=0 ) HeightCSS = THIS.cHEIGHT + 'px' ELSE HeightCSS = THIS.cHEIGHT ENDIF html = html + [] ENDIF html = html + [
] RETURN (html) ENDFUNC && ----------------------------------------------------------------------- FUNCTION IsCompatible() LOCAL llRetval LOCAL sAgent llRetval=.F. sAgent = LOWER(ALLTRIM(request.servervariables("HTTP_USER_AGENT"))) IF AT("msie",sAgent) >0 .AND. AT("mac",sAgent)=0 .AND. AT("opera",sAgent)=0 iVersion=VAL(SUBSTR(sAgent,AT("msie",sAgent)+5,3)) llRetval= iVersion > 5.5 ELSE IF AT("gecko",sAgent)>0 iVersion=VAL(SUBSTR(sAgent,AT("gecko/",sAgent)+6,8)) llRetval =iVersion > 20030210 ENDIF ENDIF RETURN (llRetval) ENDFUNC && ----------------------------------------------------------------------- FUNCTION GetConfigFieldString() LOCAL sParams LOCAL bFirst LOCAL sKey sParams = "" bFirst = .T. FOR lnLoop=1 TO 10 && ALEN(this.aconfig) IF !EMPTY(THIS.aConfig(lnLoop,1)) IF bFirst = .F. sParams = sParams + "&" ELSE bFirst = .F. ENDIF sParams = sParams +THIS.aConfig(lnLoop,1)+[=]+THIS.aConfig(lnLoop,2) ELSE EXIT ENDIF NEXT RETURN(sParams) ENDFUNC ENDDEFINE %>FCKeditor/editor/0000755000102600010270000000000011240261352013133 5ustar imarkimarkFCKeditor/editor/fckdialog.html0000644000102600010270000002061011234071154015745 0ustar imarkimark
   
FCKeditor/editor/dialog/0000755000102600010270000000000011240261352014372 5ustar imarkimarkFCKeditor/editor/dialog/fck_flash/0000755000102600010270000000000011240261352016312 5ustar imarkimarkFCKeditor/editor/dialog/fck_flash/fck_flash.js0000644000102600010270000001743111234071246020602 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Scripts related to the Flash dialog window (see fck_flash.html). */ var oEditor = window.parent.InnerDialogLoaded() ; var FCK = oEditor.FCK ; var FCKLang = oEditor.FCKLang ; var FCKConfig = oEditor.FCKConfig ; //#### Dialog Tabs // Set the dialog tabs. window.parent.AddTab( 'Info', oEditor.FCKLang.DlgInfoTab ) ; if ( FCKConfig.FlashUpload ) window.parent.AddTab( 'Upload', FCKLang.DlgLnkUpload ) ; if ( !FCKConfig.FlashDlgHideAdvanced ) window.parent.AddTab( 'Advanced', oEditor.FCKLang.DlgAdvancedTag ) ; // Function called when a dialog tag is selected. function OnDialogTabChange( tabCode ) { ShowE('divInfo' , ( tabCode == 'Info' ) ) ; ShowE('divUpload' , ( tabCode == 'Upload' ) ) ; ShowE('divAdvanced' , ( tabCode == 'Advanced' ) ) ; } // Get the selected flash embed (if available). var oFakeImage = FCK.Selection.GetSelectedElement() ; var oEmbed ; if ( oFakeImage ) { if ( oFakeImage.tagName == 'IMG' && oFakeImage.getAttribute('_fckflash') ) oEmbed = FCK.GetRealElement( oFakeImage ) ; else oFakeImage = null ; } window.onload = function() { // Translate the dialog box texts. oEditor.FCKLanguageManager.TranslatePage(document) ; // Load the selected element information (if any). LoadSelection() ; // Show/Hide the "Browse Server" button. GetE('tdBrowse').style.display = FCKConfig.FlashBrowser ? '' : 'none' ; // Set the actual uploader URL. if ( FCKConfig.FlashUpload ) GetE('frmUpload').action = FCKConfig.FlashUploadURL ; window.parent.SetAutoSize( true ) ; // Activate the "OK" button. window.parent.SetOkButton( true ) ; } function LoadSelection() { if ( ! oEmbed ) return ; GetE('txtUrl').value = GetAttribute( oEmbed, 'src', '' ) ; GetE('txtWidth').value = GetAttribute( oEmbed, 'width', '' ) ; GetE('txtHeight').value = GetAttribute( oEmbed, 'height', '' ) ; // Get Advances Attributes GetE('txtAttId').value = oEmbed.id ; GetE('chkAutoPlay').checked = GetAttribute( oEmbed, 'play', 'true' ) == 'true' ; GetE('chkLoop').checked = GetAttribute( oEmbed, 'loop', 'true' ) == 'true' ; GetE('chkMenu').checked = GetAttribute( oEmbed, 'menu', 'true' ) == 'true' ; GetE('cmbScale').value = GetAttribute( oEmbed, 'scale', '' ).toLowerCase() ; GetE('txtAttTitle').value = oEmbed.title ; if ( oEditor.FCKBrowserInfo.IsIE ) { GetE('txtAttClasses').value = oEmbed.getAttribute('className') || '' ; GetE('txtAttStyle').value = oEmbed.style.cssText ; } else { GetE('txtAttClasses').value = oEmbed.getAttribute('class',2) || '' ; GetE('txtAttStyle').value = oEmbed.getAttribute('style',2) || '' ; } UpdatePreview() ; } //#### The OK button was hit. function Ok() { if ( GetE('txtUrl').value.length == 0 ) { window.parent.SetSelectedTab( 'Info' ) ; GetE('txtUrl').focus() ; alert( oEditor.FCKLang.DlgAlertUrl ) ; return false ; } if ( !oEmbed ) { oEmbed = FCK.EditorDocument.createElement( 'EMBED' ) ; oFakeImage = null ; } UpdateEmbed( oEmbed ) ; if ( !oFakeImage ) { oFakeImage = oEditor.FCKDocumentProcessor_CreateFakeImage( 'FCK__Flash', oEmbed ) ; oFakeImage.setAttribute( '_fckflash', 'true', 0 ) ; oFakeImage = FCK.InsertElementAndGetIt( oFakeImage ) ; } else oEditor.FCKUndo.SaveUndoStep() ; oEditor.FCKFlashProcessor.RefreshView( oFakeImage, oEmbed ) ; return true ; } function UpdateEmbed( e ) { SetAttribute( e, 'type' , 'application/x-shockwave-flash' ) ; SetAttribute( e, 'pluginspage' , 'http://www.macromedia.com/go/getflashplayer' ) ; SetAttribute( e, 'src', GetE('txtUrl').value ) ; SetAttribute( e, "width" , GetE('txtWidth').value ) ; SetAttribute( e, "height", GetE('txtHeight').value ) ; // Advances Attributes SetAttribute( e, 'id' , GetE('txtAttId').value ) ; SetAttribute( e, 'scale', GetE('cmbScale').value ) ; SetAttribute( e, 'play', GetE('chkAutoPlay').checked ? 'true' : 'false' ) ; SetAttribute( e, 'loop', GetE('chkLoop').checked ? 'true' : 'false' ) ; SetAttribute( e, 'menu', GetE('chkMenu').checked ? 'true' : 'false' ) ; SetAttribute( e, 'title' , GetE('txtAttTitle').value ) ; if ( oEditor.FCKBrowserInfo.IsIE ) { SetAttribute( e, 'className', GetE('txtAttClasses').value ) ; e.style.cssText = GetE('txtAttStyle').value ; } else { SetAttribute( e, 'class', GetE('txtAttClasses').value ) ; SetAttribute( e, 'style', GetE('txtAttStyle').value ) ; } } var ePreview ; function SetPreviewElement( previewEl ) { ePreview = previewEl ; if ( GetE('txtUrl').value.length > 0 ) UpdatePreview() ; } function UpdatePreview() { if ( !ePreview ) return ; while ( ePreview.firstChild ) ePreview.removeChild( ePreview.firstChild ) ; if ( GetE('txtUrl').value.length == 0 ) ePreview.innerHTML = ' ' ; else { var oDoc = ePreview.ownerDocument || ePreview.document ; var e = oDoc.createElement( 'EMBED' ) ; SetAttribute( e, 'src', GetE('txtUrl').value ) ; SetAttribute( e, 'type', 'application/x-shockwave-flash' ) ; SetAttribute( e, 'width', '100%' ) ; SetAttribute( e, 'height', '100%' ) ; ePreview.appendChild( e ) ; } } // function BrowseServer() { OpenFileBrowser( FCKConfig.FlashBrowserURL, FCKConfig.FlashBrowserWindowWidth, FCKConfig.FlashBrowserWindowHeight ) ; } function SetUrl( url, width, height ) { GetE('txtUrl').value = url ; if ( width ) GetE('txtWidth').value = width ; if ( height ) GetE('txtHeight').value = height ; UpdatePreview() ; window.parent.SetSelectedTab( 'Info' ) ; } function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg ) { switch ( errorNumber ) { case 0 : // No errors alert( 'Your file has been successfully uploaded' ) ; break ; case 1 : // Custom error alert( customMsg ) ; return ; case 101 : // Custom warning alert( customMsg ) ; break ; case 201 : alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ; break ; case 202 : alert( 'Invalid file type' ) ; return ; case 203 : alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ; return ; default : alert( 'Error on file upload. Error number: ' + errorNumber ) ; return ; } SetUrl( fileUrl ) ; GetE('frmUpload').reset() ; } var oUploadAllowedExtRegex = new RegExp( FCKConfig.FlashUploadAllowedExtensions, 'i' ) ; var oUploadDeniedExtRegex = new RegExp( FCKConfig.FlashUploadDeniedExtensions, 'i' ) ; function CheckUpload() { var sFile = GetE('txtUploadFile').value ; if ( sFile.length == 0 ) { alert( 'Please select a file to upload' ) ; return false ; } if ( ( FCKConfig.FlashUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) || ( FCKConfig.FlashUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) ) { OnUploadCompleted( 202 ) ; return false ; } return true ; }FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html0000644000102600010270000000272311234071247022672 0ustar imarkimark FCKeditor/editor/dialog/fck_docprops.html0000644000102600010270000005416011234071202017736 0ustar imarkimark
Page Title

Language Direction
    Language Code

Character Set Encoding
    Other Character Set Encoding
 
Document Type Heading
Other Document Type Heading

FCKeditor/editor/dialog/fck_smiley.html0000644000102600010270000000543411234071215017413 0ustar imarkimark
FCKeditor/editor/dialog/fck_paste.html0000644000102600010270000002303211234071211017213 0ustar imarkimark
Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.
 

FCKeditor/editor/dialog/fck_about.html0000644000102600010270000001207711234071175017231 0ustar imarkimark
version
2.4.3
Build 15657
 

Support Open Source Software



For further information go to http://www.fckeditor.net/.
Copyright © 2003-2007 Frederico Caldeira Knabben
FCKeditor/editor/dialog/fck_hiddenfield.html0000644000102600010270000000604311234071206020345 0ustar imarkimark Hidden Field Properties
Name
Value
FCKeditor/editor/dialog/fck_table.html0000644000102600010270000002402311234071221017170 0ustar imarkimark Table Properties
Rows:  
Columns:  
   
Border size:  
Alignment:  
   
Width:    
Height:    pixels
     
Cell spacing:    
Cell padding:    
Caption  
Summary  
FCKeditor/editor/dialog/fck_image.html0000644000102600010270000002267511234071207017202 0ustar imarkimark Image Properties
URL
Short Description


Width 
Height 

Border 
HSpace 
VSpace 
Align 
   
Preview
FCKeditor/editor/dialog/fck_source.html0000644000102600010270000000422411234071216017406 0ustar imarkimark Source
FCKeditor/editor/dialog/fck_tablecell.html0000644000102600010270000002130611234071222020032 0ustar imarkimark Table Cell Properties
Width:   
Height:   pixels
   
Word Wrap:  
   
Horizontal Alignment:  
Vertical Alignment:  
   
Rows Span:  
Columns Span:  
     
Background Color:    
Border Color:    
FCKeditor/editor/dialog/fck_docprops/0000755000102600010270000000000011240261352017046 5ustar imarkimarkFCKeditor/editor/dialog/fck_docprops/fck_document_preview.html0000644000102600010270000000543311234071243024144 0ustar imarkimark Document Properties - Preview
Normal Text
Visited Link Active Link
















FCKeditor/editor/dialog/fck_link.html0000644000102600010270000003077611234071210017050 0ustar imarkimark Link Properties FCKeditor/editor/dialog/fck_find.html0000644000102600010270000001074011234071203017022 0ustar imarkimark
 
 
FCKeditor/editor/dialog/fck_listprop.html0000644000102600010270000000727711234071210017767 0ustar imarkimark
List Type
 
FCKeditor/editor/dialog/common/0000755000102600010270000000000011240261352015662 5ustar imarkimarkFCKeditor/editor/dialog/common/fck_dialog_common.css0000644000102600010270000000317611234071227022040 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * This is the CSS file used for interface details in some dialog * windows. */ .ImagePreviewArea { border: #000000 1px solid; overflow: auto; width: 100%; height: 170px; background-color: #ffffff; } .FlashPreviewArea { border: #000000 1px solid; padding: 5px; overflow: auto; width: 100%; height: 170px; background-color: #ffffff; } .BtnReset { float: left; background-position: center center; background-image: url(images/reset.gif); width: 16px; height: 16px; background-repeat: no-repeat; border: 1px none; font-size: 1px ; } .BtnLocked, .BtnUnlocked { float: left; background-position: center center; background-image: url(images/locked.gif); width: 16px; height: 16px; background-repeat: no-repeat; border: none 1px; font-size: 1px ; } .BtnUnlocked { background-image: url(images/unlocked.gif); } .BtnOver { border: outset 1px; cursor: pointer; cursor: hand; } .FCK__FieldNumeric { behavior: url(common/fcknumericfield.htc) ; }FCKeditor/editor/dialog/common/images/0000755000102600010270000000000011240261352017127 5ustar imarkimarkFCKeditor/editor/dialog/common/images/reset.gif0000644000102600010270000000015011234071234020735 0ustar imarkimarkGIF89a wwwff33!, -X2 Ѡd!Q}`Xt G4;LO` C\$;FCKeditor/editor/dialog/common/images/unlocked.gif0000644000102600010270000000011311234071235021417 0ustar imarkimarkGIF89a !, qf58=`] z_IO;FCKeditor/editor/dialog/common/images/locked.gif0000644000102600010270000000011211234071233021051 0ustar imarkimarkGIF89a !, !c&.;ށ㖥*;FCKeditor/editor/dialog/common/fcknumericfield.htc0000644000102600010270000000066711234071226021527 0ustar imarkimark FCKeditor/editor/dialog/common/moz-bindings.xml0000644000102600010270000000130711234071231021003 0ustar imarkimark this.keypress = CheckIsDigit ; = 48 && iCode <= 57 ) // Numbers || (iCode >= 37 && iCode <= 40) // Arrows || iCode == 8 // Backspace || iCode == 46 // Delete ) ; return bAccepted ; ]]> FCKeditor/editor/dialog/common/fck_dialog_common.js0000644000102600010270000001001211234071230021641 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Useful functions used by almost all dialog window pages. */ var GECKO_BOGUS = '
' ; // Gets a element by its Id. Used for shorter coding. function GetE( elementId ) { return document.getElementById( elementId ) ; } function ShowE( element, isVisible ) { if ( typeof( element ) == 'string' ) element = GetE( element ) ; element.style.display = isVisible ? '' : 'none' ; } function SetAttribute( element, attName, attValue ) { if ( attValue == null || attValue.length == 0 ) element.removeAttribute( attName, 0 ) ; // 0 : Case Insensitive else element.setAttribute( attName, attValue, 0 ) ; // 0 : Case Insensitive } function GetAttribute( element, attName, valueIfNull ) { var oAtt = element.attributes[attName] ; if ( oAtt == null || !oAtt.specified ) return valueIfNull ? valueIfNull : '' ; var oValue = element.getAttribute( attName, 2 ) ; if ( oValue == null ) oValue = oAtt.nodeValue ; return ( oValue == null ? valueIfNull : oValue ) ; } // Functions used by text fiels to accept numbers only. function IsDigit( e ) { if ( !e ) e = event ; var iCode = ( e.keyCode || e.charCode ) ; return ( ( iCode >= 48 && iCode <= 57 ) // Numbers || (iCode >= 37 && iCode <= 40) // Arrows || iCode == 8 // Backspace || iCode == 46 // Delete ) ; } String.prototype.Trim = function() { return this.replace( /(^\s*)|(\s*$)/g, '' ) ; } String.prototype.StartsWith = function( value ) { return ( this.substr( 0, value.length ) == value ) ; } String.prototype.Remove = function( start, length ) { var s = '' ; if ( start > 0 ) s = this.substring( 0, start ) ; if ( start + length < this.length ) s += this.substring( start + length , this.length ) ; return s ; } String.prototype.ReplaceAll = function( searchArray, replaceArray ) { var replaced = this ; for ( var i = 0 ; i < searchArray.length ; i++ ) { replaced = replaced.replace( searchArray[i], replaceArray[i] ) ; } return replaced ; } function OpenFileBrowser( url, width, height ) { // oEditor must be defined. var iLeft = ( oEditor.FCKConfig.ScreenWidth - width ) / 2 ; var iTop = ( oEditor.FCKConfig.ScreenHeight - height ) / 2 ; var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes,scrollbars=yes" ; sOptions += ",width=" + width ; sOptions += ",height=" + height ; sOptions += ",left=" + iLeft ; sOptions += ",top=" + iTop ; // The "PreserveSessionOnFileBrowser" because the above code could be // blocked by popup blockers. if ( oEditor.FCKConfig.PreserveSessionOnFileBrowser && oEditor.FCKBrowserInfo.IsIE ) { // The following change has been made otherwise IE will open the file // browser on a different server session (on some cases): // http://support.microsoft.com/default.aspx?scid=kb;en-us;831678 // by Simone Chiaretta. var oWindow = oEditor.window.open( url, 'FCKBrowseWindow', sOptions ) ; if ( oWindow ) { // Detect Yahoo popup blocker. try { var sTest = oWindow.name ; // Yahoo returns "something", but we can't access it, so detect that and avoid strange errors for the user. oWindow.opener = window ; } catch(e) { alert( oEditor.FCKLang.BrowseServerBlocked ) ; } } else alert( oEditor.FCKLang.BrowseServerBlocked ) ; } else window.open( url, 'FCKBrowseWindow', sOptions ) ; }FCKeditor/editor/dialog/fck_textarea.html0000644000102600010270000000522311234071223017721 0ustar imarkimark Text Area Properties
Name
Collumns

Rows
FCKeditor/editor/dialog/fck_anchor.html0000644000102600010270000001457711234071176017401 0ustar imarkimark Anchor Properties
Anchor Name
FCKeditor/editor/dialog/fck_spellerpages/0000755000102600010270000000000011240261352017703 5ustar imarkimarkFCKeditor/editor/dialog/fck_spellerpages/spellerpages/0000755000102600010270000000000011240261352022371 5ustar imarkimarkFCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js0000644000102600010270000001635211234071271025103 0ustar imarkimark//////////////////////////////////////////////////// // wordWindow object //////////////////////////////////////////////////// function wordWindow() { // private properties this._forms = []; // private methods this._getWordObject = _getWordObject; //this._getSpellerObject = _getSpellerObject; this._wordInputStr = _wordInputStr; this._adjustIndexes = _adjustIndexes; this._isWordChar = _isWordChar; this._lastPos = _lastPos; // public properties this.wordChar = /[a-zA-Z]/; this.windowType = "wordWindow"; this.originalSpellings = new Array(); this.suggestions = new Array(); this.checkWordBgColor = "pink"; this.normWordBgColor = "white"; this.text = ""; this.textInputs = new Array(); this.indexes = new Array(); //this.speller = this._getSpellerObject(); // public methods this.resetForm = resetForm; this.totalMisspellings = totalMisspellings; this.totalWords = totalWords; this.totalPreviousWords = totalPreviousWords; //this.getTextObjectArray = getTextObjectArray; this.getTextVal = getTextVal; this.setFocus = setFocus; this.removeFocus = removeFocus; this.setText = setText; //this.getTotalWords = getTotalWords; this.writeBody = writeBody; this.printForHtml = printForHtml; } function resetForm() { if( this._forms ) { for( var i = 0; i < this._forms.length; i++ ) { this._forms[i].reset(); } } return true; } function totalMisspellings() { var total_words = 0; for( var i = 0; i < this.textInputs.length; i++ ) { total_words += this.totalWords( i ); } return total_words; } function totalWords( textIndex ) { return this.originalSpellings[textIndex].length; } function totalPreviousWords( textIndex, wordIndex ) { var total_words = 0; for( var i = 0; i <= textIndex; i++ ) { for( var j = 0; j < this.totalWords( i ); j++ ) { if( i == textIndex && j == wordIndex ) { break; } else { total_words++; } } } return total_words; } //function getTextObjectArray() { // return this._form.elements; //} function getTextVal( textIndex, wordIndex ) { var word = this._getWordObject( textIndex, wordIndex ); if( word ) { return word.value; } } function setFocus( textIndex, wordIndex ) { var word = this._getWordObject( textIndex, wordIndex ); if( word ) { if( word.type == "text" ) { word.focus(); word.style.backgroundColor = this.checkWordBgColor; } } } function removeFocus( textIndex, wordIndex ) { var word = this._getWordObject( textIndex, wordIndex ); if( word ) { if( word.type == "text" ) { word.blur(); word.style.backgroundColor = this.normWordBgColor; } } } function setText( textIndex, wordIndex, newText ) { var word = this._getWordObject( textIndex, wordIndex ); var beginStr; var endStr; if( word ) { var pos = this.indexes[textIndex][wordIndex]; var oldText = word.value; // update the text given the index of the string beginStr = this.textInputs[textIndex].substring( 0, pos ); endStr = this.textInputs[textIndex].substring( pos + oldText.length, this.textInputs[textIndex].length ); this.textInputs[textIndex] = beginStr + newText + endStr; // adjust the indexes on the stack given the differences in // length between the new word and old word. var lengthDiff = newText.length - oldText.length; this._adjustIndexes( textIndex, wordIndex, lengthDiff ); word.size = newText.length; word.value = newText; this.removeFocus( textIndex, wordIndex ); } } function writeBody() { var d = window.document; var is_html = false; d.open(); // iterate through each text input. for( var txtid = 0; txtid < this.textInputs.length; txtid++ ) { var end_idx = 0; var begin_idx = 0; d.writeln( '
' ); var wordtxt = this.textInputs[txtid]; this.indexes[txtid] = []; if( wordtxt ) { var orig = this.originalSpellings[txtid]; if( !orig ) break; //!!! plain text, or HTML mode? d.writeln( '
' ); // iterate through each occurrence of a misspelled word. for( var i = 0; i < orig.length; i++ ) { // find the position of the current misspelled word, // starting at the last misspelled word. // and keep looking if it's a substring of another word do { begin_idx = wordtxt.indexOf( orig[i], end_idx ); end_idx = begin_idx + orig[i].length; // word not found? messed up! if( begin_idx == -1 ) break; // look at the characters immediately before and after // the word. If they are word characters we'll keep looking. var before_char = wordtxt.charAt( begin_idx - 1 ); var after_char = wordtxt.charAt( end_idx ); } while ( this._isWordChar( before_char ) || this._isWordChar( after_char ) ); // keep track of its position in the original text. this.indexes[txtid][i] = begin_idx; // write out the characters before the current misspelled word for( var j = this._lastPos( txtid, i ); j < begin_idx; j++ ) { // !!! html mode? make it html compatible d.write( this.printForHtml( wordtxt.charAt( j ))); } // write out the misspelled word. d.write( this._wordInputStr( orig[i] )); // if it's the last word, write out the rest of the text if( i == orig.length-1 ){ d.write( printForHtml( wordtxt.substr( end_idx ))); } } d.writeln( '
' ); } d.writeln( '
' ); } //for ( var j = 0; j < d.forms.length; j++ ) { // alert( d.forms[j].name ); // for( var k = 0; k < d.forms[j].elements.length; k++ ) { // alert( d.forms[j].elements[k].name + ": " + d.forms[j].elements[k].value ); // } //} // set the _forms property this._forms = d.forms; d.close(); } // return the character index in the full text after the last word we evaluated function _lastPos( txtid, idx ) { if( idx > 0 ) return this.indexes[txtid][idx-1] + this.originalSpellings[txtid][idx-1].length; else return 0; } function printForHtml( n ) { return n ; // by FredCK /* var htmlstr = n; if( htmlstr.length == 1 ) { // do simple case statement if it's just one character switch ( n ) { case "\n": htmlstr = '
'; break; case "<": htmlstr = '<'; break; case ">": htmlstr = '>'; break; } return htmlstr; } else { htmlstr = htmlstr.replace( //g, '>' ); htmlstr = htmlstr.replace( /\n/g, '
' ); return htmlstr; } */ } function _isWordChar( letter ) { if( letter.search( this.wordChar ) == -1 ) { return false; } else { return true; } } function _getWordObject( textIndex, wordIndex ) { if( this._forms[textIndex] ) { if( this._forms[textIndex].elements[wordIndex] ) { return this._forms[textIndex].elements[wordIndex]; } } return null; } function _wordInputStr( word ) { var str = ''; return str; } function _adjustIndexes( textIndex, wordIndex, lengthDiff ) { for( var i = wordIndex + 1; i < this.originalSpellings[textIndex].length; i++ ) { this.indexes[textIndex][i] = this.indexes[textIndex][i] + lengthDiff; } } FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/0000755000102600010270000000000011240261352025364 5ustar imarkimarkFCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm0000644000102600010270000001413211234071273030524 0ustar imarkimark function LastIndexOf(subs, str) { return Len(str) - Find(subs, Reverse(str)) + 1; } FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php0000644000102600010270000001312111234071274030544 0ustar imarkimark$val ) { # $val = str_replace( "'", "%27", $val ); echo "textinputs[$key] = decodeURIComponent(\"" . $val . "\");\n"; } } # make declarations for the text input index function print_textindex_decl( $text_input_idx ) { echo "words[$text_input_idx] = [];\n"; echo "suggs[$text_input_idx] = [];\n"; } # set an element of the JavaScript 'words' array to a misspelled word function print_words_elem( $word, $index, $text_input_idx ) { echo "words[$text_input_idx][$index] = '" . escape_quote( $word ) . "';\n"; } # set an element of the JavaScript 'suggs' array to a list of suggestions function print_suggs_elem( $suggs, $index, $text_input_idx ) { echo "suggs[$text_input_idx][$index] = ["; foreach( $suggs as $key=>$val ) { if( $val ) { echo "'" . escape_quote( $val ) . "'"; if ( $key+1 < count( $suggs )) { echo ", "; } } } echo "];\n"; } # escape single quote function escape_quote( $str ) { return preg_replace ( "/'/", "\\'", $str ); } # handle a server-side error. function error_handler( $err ) { echo "error = '" . escape_quote( $err ) . "';\n"; } ## get the list of misspelled words. Put the results in the javascript words array ## for each misspelled word, get suggestions and put in the javascript suggs array function print_checker_results() { global $aspell_prog; global $aspell_opts; global $tempfiledir; global $textinputs; global $input_separator; $aspell_err = ""; # create temp file $tempfile = tempnam( $tempfiledir, 'aspell_data_' ); # open temp file, add the submitted text. if( $fh = fopen( $tempfile, 'w' )) { for( $i = 0; $i < count( $textinputs ); $i++ ) { $text = urldecode( $textinputs[$i] ); $lines = explode( "\n", $text ); fwrite ( $fh, "%\n" ); # exit terse mode fwrite ( $fh, "^$input_separator\n" ); fwrite ( $fh, "!\n" ); # enter terse mode foreach( $lines as $key=>$value ) { # use carat on each line to escape possible aspell commands fwrite( $fh, "^$value\n" ); } } fclose( $fh ); # exec aspell command - redirect STDERR to STDOUT $cmd = "$aspell_prog $aspell_opts < $tempfile 2>&1"; if( $aspellret = shell_exec( $cmd )) { $linesout = explode( "\n", $aspellret ); $index = 0; $text_input_index = -1; # parse each line of aspell return foreach( $linesout as $key=>$val ) { $chardesc = substr( $val, 0, 1 ); # if '&', then not in dictionary but has suggestions # if '#', then not in dictionary and no suggestions # if '*', then it is a delimiter between text inputs # if '@' then version info if( $chardesc == '&' || $chardesc == '#' ) { $line = explode( " ", $val, 5 ); print_words_elem( $line[1], $index, $text_input_index ); if( isset( $line[4] )) { $suggs = explode( ", ", $line[4] ); } else { $suggs = array(); } print_suggs_elem( $suggs, $index, $text_input_index ); $index++; } elseif( $chardesc == '*' ) { $text_input_index++; print_textindex_decl( $text_input_index ); $index = 0; } elseif( $chardesc != '@' && $chardesc != "" ) { # assume this is error output $aspell_err .= $val; } } if( $aspell_err ) { $aspell_err = "Error executing `$cmd`\\n$aspell_err"; error_handler( $aspell_err ); } } else { error_handler( "System error: Aspell program execution failed (`$cmd`)" ); } } else { error_handler( "System error: Could not open file '$tempfile' for writing" ); } # close temp file, delete file unlink( $tempfile ); } ?> FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl0000644000102600010270000001135211234071275030375 0ustar imarkimark#!/usr/bin/perl use CGI qw/ :standard /; use File::Temp qw/ tempfile tempdir /; # my $spellercss = '/speller/spellerStyle.css'; # by FredCK my $spellercss = '../spellerStyle.css'; # by FredCK # my $wordWindowSrc = '/speller/wordWindow.js'; # by FredCK my $wordWindowSrc = '../wordWindow.js'; # by FredCK my @textinputs = param( 'textinputs[]' ); # array # my $aspell_cmd = 'aspell'; # by FredCK (for Linux) my $aspell_cmd = '"C:\Program Files\Aspell\bin\aspell.exe"'; # by FredCK (for Windows) my $lang = 'en_US'; # my $aspell_opts = "-a --lang=$lang --encoding=utf-8"; # by FredCK my $aspell_opts = "-a --lang=$lang --encoding=utf-8 -H --rem-sgml-check=alt"; # by FredCK my $input_separator = "A"; # set the 'wordtext' JavaScript variable to the submitted text. sub printTextVar { for( my $i = 0; $i <= $#textinputs; $i++ ) { print "textinputs[$i] = decodeURIComponent('" . escapeQuote( $textinputs[$i] ) . "')\n"; } } sub printTextIdxDecl { my $idx = shift; print "words[$idx] = [];\n"; print "suggs[$idx] = [];\n"; } sub printWordsElem { my( $textIdx, $wordIdx, $word ) = @_; print "words[$textIdx][$wordIdx] = '" . escapeQuote( $word ) . "';\n"; } sub printSuggsElem { my( $textIdx, $wordIdx, @suggs ) = @_; print "suggs[$textIdx][$wordIdx] = ["; for my $i ( 0..$#suggs ) { print "'" . escapeQuote( $suggs[$i] ) . "'"; if( $i < $#suggs ) { print ", "; } } print "];\n"; } sub printCheckerResults { my $textInputIdx = -1; my $wordIdx = 0; my $unhandledText; # create temp file my $dir = tempdir( CLEANUP => 1 ); my( $fh, $tmpfilename ) = tempfile( DIR => $dir ); # temp file was created properly? # open temp file, add the submitted text. for( my $i = 0; $i <= $#textinputs; $i++ ) { $text = url_decode( $textinputs[$i] ); @lines = split( /\n/, $text ); print $fh "\%\n"; # exit terse mode print $fh "^$input_separator\n"; print $fh "!\n"; # enter terse mode for my $line ( @lines ) { # use carat on each line to escape possible aspell commands print $fh "^$line\n"; } } # exec aspell command my $cmd = "$aspell_cmd $aspell_opts < $tmpfilename 2>&1"; open ASPELL, "$cmd |" or handleError( "Could not execute `$cmd`\\n$!" ) and return; # parse each line of aspell return for my $ret ( ) { chomp( $ret ); # if '&', then not in dictionary but has suggestions # if '#', then not in dictionary and no suggestions # if '*', then it is a delimiter between text inputs if( $ret =~ /^\*/ ) { $textInputIdx++; printTextIdxDecl( $textInputIdx ); $wordIdx = 0; } elsif( $ret =~ /^(&|#)/ ) { my @tokens = split( " ", $ret, 5 ); printWordsElem( $textInputIdx, $wordIdx, $tokens[1] ); my @suggs = (); if( $tokens[4] ) { @suggs = split( ", ", $tokens[4] ); } printSuggsElem( $textInputIdx, $wordIdx, @suggs ); $wordIdx++; } else { $unhandledText .= $ret; } } close ASPELL or handleError( "Error executing `$cmd`\\n$unhandledText" ) and return; } sub escapeQuote { my $str = shift; $str =~ s/'/\\'/g; return $str; } sub handleError { my $err = shift; print "error = '" . escapeQuote( $err ) . "';\n"; } sub url_decode { local $_ = @_ ? shift : $_; defined or return; # change + signs to spaces tr/+/ /; # change hex escapes to the proper characters s/%([a-fA-F0-9]{2})/pack "H2", $1/eg; return $_; } # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Display HTML # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # print < EOF FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js0000644000102600010270000000440111234071265025603 0ustar imarkimark//////////////////////////////////////////////////// // controlWindow object //////////////////////////////////////////////////// function controlWindow( controlForm ) { // private properties this._form = controlForm; // public properties this.windowType = "controlWindow"; // this.noSuggestionSelection = "- No suggestions -"; // by FredCK this.noSuggestionSelection = FCKLang.DlgSpellNoSuggestions ; // set up the properties for elements of the given control form this.suggestionList = this._form.sugg; this.evaluatedText = this._form.misword; this.replacementText = this._form.txtsugg; this.undoButton = this._form.btnUndo; // public methods this.addSuggestion = addSuggestion; this.clearSuggestions = clearSuggestions; this.selectDefaultSuggestion = selectDefaultSuggestion; this.resetForm = resetForm; this.setSuggestedText = setSuggestedText; this.enableUndo = enableUndo; this.disableUndo = disableUndo; } function resetForm() { if( this._form ) { this._form.reset(); } } function setSuggestedText() { var slct = this.suggestionList; var txt = this.replacementText; var str = ""; if( (slct.options[0].text) && slct.options[0].text != this.noSuggestionSelection ) { str = slct.options[slct.selectedIndex].text; } txt.value = str; } function selectDefaultSuggestion() { var slct = this.suggestionList; var txt = this.replacementText; if( slct.options.length == 0 ) { this.addSuggestion( this.noSuggestionSelection ); } else { slct.options[0].selected = true; } this.setSuggestedText(); } function addSuggestion( sugg_text ) { var slct = this.suggestionList; if( sugg_text ) { var i = slct.options.length; var newOption = new Option( sugg_text, 'sugg_text'+i ); slct.options[i] = newOption; } } function clearSuggestions() { var slct = this.suggestionList; for( var j = slct.length - 1; j > -1; j-- ) { if( slct.options[j] ) { slct.options[j] = null; } } } function enableUndo() { if( this.undoButton ) { if( this.undoButton.disabled == true ) { this.undoButton.disabled = false; } } } function disableUndo() { if( this.undoButton ) { if( this.undoButton.disabled == false ) { this.undoButton.disabled = true; } } } FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css0000644000102600010270000000157011234071270025576 0ustar imarkimark.blend { font-family: courier new; font-size: 10pt; border: 0; margin-bottom:-1; } .normalLabel { font-size:8pt; } .normalText { font-family:arial, helvetica, sans-serif; font-size:10pt; color:000000; background-color:FFFFFF; } .plainText { font-family: courier new, courier, monospace; font-size: 10pt; color:000000; background-color:FFFFFF; } .controlWindowBody { font-family:arial, helvetica, sans-serif; font-size:8pt; padding: 7px ; /* by FredCK */ margin: 0px ; /* by FredCK */ /* color:000000; by FredCK */ /* background-color:DADADA; by FredCK */ } .readonlyInput { background-color:DADADA; color:000000; font-size:8pt; width:392px; } .textDefault { font-size:8pt; width: 200px; } .buttonDefault { width:90px; height:22px; font-size:8pt; } .suggSlct { width:200px; margin-top:2; font-size:8pt; }FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js0000644000102600010270000003441211234071267025346 0ustar imarkimark//////////////////////////////////////////////////// // spellChecker.js // // spellChecker object // // This file is sourced on web pages that have a textarea object to evaluate // for spelling. It includes the implementation for the spellCheckObject. // //////////////////////////////////////////////////// // constructor function spellChecker( textObject ) { // public properties - configurable // this.popUpUrl = '/speller/spellchecker.html'; // by FredCK this.popUpUrl = 'fck_spellerpages/spellerpages/spellchecker.html'; // by FredCK this.popUpName = 'spellchecker'; // this.popUpProps = "menu=no,width=440,height=350,top=70,left=120,resizable=yes,status=yes"; // by FredCK this.popUpProps = null ; // by FredCK // this.spellCheckScript = '/speller/server-scripts/spellchecker.php'; // by FredCK //this.spellCheckScript = '/cgi-bin/spellchecker.pl'; // values used to keep track of what happened to a word this.replWordFlag = "R"; // single replace this.ignrWordFlag = "I"; // single ignore this.replAllFlag = "RA"; // replace all occurances this.ignrAllFlag = "IA"; // ignore all occurances this.fromReplAll = "~RA"; // an occurance of a "replace all" word this.fromIgnrAll = "~IA"; // an occurance of a "ignore all" word // properties set at run time this.wordFlags = new Array(); this.currentTextIndex = 0; this.currentWordIndex = 0; this.spellCheckerWin = null; this.controlWin = null; this.wordWin = null; this.textArea = textObject; // deprecated this.textInputs = arguments; // private methods this._spellcheck = _spellcheck; this._getSuggestions = _getSuggestions; this._setAsIgnored = _setAsIgnored; this._getTotalReplaced = _getTotalReplaced; this._setWordText = _setWordText; this._getFormInputs = _getFormInputs; // public methods this.openChecker = openChecker; this.startCheck = startCheck; this.checkTextBoxes = checkTextBoxes; this.checkTextAreas = checkTextAreas; this.spellCheckAll = spellCheckAll; this.ignoreWord = ignoreWord; this.ignoreAll = ignoreAll; this.replaceWord = replaceWord; this.replaceAll = replaceAll; this.terminateSpell = terminateSpell; this.undo = undo; // set the current window's "speller" property to the instance of this class. // this object can now be referenced by child windows/frames. window.speller = this; } // call this method to check all text boxes (and only text boxes) in the HTML document function checkTextBoxes() { this.textInputs = this._getFormInputs( "^text$" ); this.openChecker(); } // call this method to check all textareas (and only textareas ) in the HTML document function checkTextAreas() { this.textInputs = this._getFormInputs( "^textarea$" ); this.openChecker(); } // call this method to check all text boxes and textareas in the HTML document function spellCheckAll() { this.textInputs = this._getFormInputs( "^text(area)?$" ); this.openChecker(); } // call this method to check text boxe(s) and/or textarea(s) that were passed in to the // object's constructor or to the textInputs property function openChecker() { this.spellCheckerWin = window.open( this.popUpUrl, this.popUpName, this.popUpProps ); if( !this.spellCheckerWin.opener ) { this.spellCheckerWin.opener = window; } } function startCheck( wordWindowObj, controlWindowObj ) { // set properties from args this.wordWin = wordWindowObj; this.controlWin = controlWindowObj; // reset properties this.wordWin.resetForm(); this.controlWin.resetForm(); this.currentTextIndex = 0; this.currentWordIndex = 0; // initialize the flags to an array - one element for each text input this.wordFlags = new Array( this.wordWin.textInputs.length ); // each element will be an array that keeps track of each word in the text for( var i=0; i wi ) || i > ti ) { // future word: set as "from ignore all" if // 1) do not already have a flag and // 2) have the same value as current word if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl ) && ( !this.wordFlags[i][j] )) { this._setAsIgnored( i, j, this.fromIgnrAll ); } } } } // finally, move on this.currentWordIndex++; this._spellcheck(); return true; } function replaceWord() { var wi = this.currentWordIndex; var ti = this.currentTextIndex; if( !this.wordWin ) { alert( 'Error: Word frame not available.' ); return false; } if( !this.wordWin.getTextVal( ti, wi )) { alert( 'Error: "Not in dictionary" text is missing' ); return false; } if( !this.controlWin.replacementText ) { return false ; } var txt = this.controlWin.replacementText; if( txt.value ) { var newspell = new String( txt.value ); if( this._setWordText( ti, wi, newspell, this.replWordFlag )) { this.currentWordIndex++; this._spellcheck(); } } return true; } function replaceAll() { var ti = this.currentTextIndex; var wi = this.currentWordIndex; if( !this.wordWin ) { alert( 'Error: Word frame not available.' ); return false; } var s_word_to_repl = this.wordWin.getTextVal( ti, wi ); if( !s_word_to_repl ) { alert( 'Error: "Not in dictionary" text is missing' ); return false; } var txt = this.controlWin.replacementText; if( !txt.value ) return false; var newspell = new String( txt.value ); // set this word as a "replace all" word. this._setWordText( ti, wi, newspell, this.replAllFlag ); // loop through all the words after this word for( var i = ti; i < this.wordWin.textInputs.length; i++ ) { for( var j = 0; j < this.wordWin.totalWords( i ); j++ ) { if(( i == ti && j > wi ) || i > ti ) { // future word: set word text to s_word_to_repl if // 1) do not already have a flag and // 2) have the same value as s_word_to_repl if(( this.wordWin.getTextVal( i, j ) == s_word_to_repl ) && ( !this.wordFlags[i][j] )) { this._setWordText( i, j, newspell, this.fromReplAll ); } } } } // finally, move on this.currentWordIndex++; this._spellcheck(); return true; } function terminateSpell() { // called when we have reached the end of the spell checking. var msg = ""; // by FredCK var numrepl = this._getTotalReplaced(); if( numrepl == 0 ) { // see if there were no misspellings to begin with if( !this.wordWin ) { msg = ""; } else { if( this.wordWin.totalMisspellings() ) { // msg += "No words changed."; // by FredCK msg += FCKLang.DlgSpellNoChanges ; // by FredCK } else { // msg += "No misspellings found."; // by FredCK msg += FCKLang.DlgSpellNoMispell ; // by FredCK } } } else if( numrepl == 1 ) { // msg += "One word changed."; // by FredCK msg += FCKLang.DlgSpellOneChange ; // by FredCK } else { // msg += numrepl + " words changed."; // by FredCK msg += FCKLang.DlgSpellManyChanges.replace( /%1/g, numrepl ) ; } if( msg ) { // msg += "\n"; // by FredCK alert( msg ); } if( numrepl > 0 ) { // update the text field(s) on the opener window for( var i = 0; i < this.textInputs.length; i++ ) { // this.textArea.value = this.wordWin.text; if( this.wordWin ) { if( this.wordWin.textInputs[i] ) { this.textInputs[i].value = this.wordWin.textInputs[i]; } } } } // return back to the calling window // this.spellCheckerWin.close(); // by FredCK if ( typeof( this.OnFinished ) == 'function' ) // by FredCK this.OnFinished(numrepl) ; // by FredCK return true; } function undo() { // skip if this is the first word! var ti = this.currentTextIndex; var wi = this.currentWordIndex; if( this.wordWin.totalPreviousWords( ti, wi ) > 0 ) { this.wordWin.removeFocus( ti, wi ); // go back to the last word index that was acted upon do { // if the current word index is zero then reset the seed if( this.currentWordIndex == 0 && this.currentTextIndex > 0 ) { this.currentTextIndex--; this.currentWordIndex = this.wordWin.totalWords( this.currentTextIndex )-1; if( this.currentWordIndex < 0 ) this.currentWordIndex = 0; } else { if( this.currentWordIndex > 0 ) { this.currentWordIndex--; } } } while ( this.wordWin.totalWords( this.currentTextIndex ) == 0 || this.wordFlags[this.currentTextIndex][this.currentWordIndex] == this.fromIgnrAll || this.wordFlags[this.currentTextIndex][this.currentWordIndex] == this.fromReplAll ); var text_idx = this.currentTextIndex; var idx = this.currentWordIndex; var preReplSpell = this.wordWin.originalSpellings[text_idx][idx]; // if we got back to the first word then set the Undo button back to disabled if( this.wordWin.totalPreviousWords( text_idx, idx ) == 0 ) { this.controlWin.disableUndo(); } var i, j, origSpell ; // examine what happened to this current word. switch( this.wordFlags[text_idx][idx] ) { // replace all: go through this and all the future occurances of the word // and revert them all to the original spelling and clear their flags case this.replAllFlag : for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) { for( j = 0; j < this.wordWin.totalWords( i ); j++ ) { if(( i == text_idx && j >= idx ) || i > text_idx ) { origSpell = this.wordWin.originalSpellings[i][j]; if( origSpell == preReplSpell ) { this._setWordText ( i, j, origSpell, undefined ); } } } } break; // ignore all: go through all the future occurances of the word // and clear their flags case this.ignrAllFlag : for( i = text_idx; i < this.wordWin.textInputs.length; i++ ) { for( j = 0; j < this.wordWin.totalWords( i ); j++ ) { if(( i == text_idx && j >= idx ) || i > text_idx ) { origSpell = this.wordWin.originalSpellings[i][j]; if( origSpell == preReplSpell ) { this.wordFlags[i][j] = undefined; } } } } break; // replace: revert the word to its original spelling case this.replWordFlag : this._setWordText ( text_idx, idx, preReplSpell, undefined ); break; } // For all four cases, clear the wordFlag of this word. re-start the process this.wordFlags[text_idx][idx] = undefined; this._spellcheck(); } } function _spellcheck() { var ww = this.wordWin; // check if this is the last word in the current text element if( this.currentWordIndex == ww.totalWords( this.currentTextIndex) ) { this.currentTextIndex++; this.currentWordIndex = 0; // keep going if we're not yet past the last text element if( this.currentTextIndex < this.wordWin.textInputs.length ) { this._spellcheck(); return; } else { this.terminateSpell(); return; } } // if this is after the first one make sure the Undo button is enabled if( this.currentWordIndex > 0 ) { this.controlWin.enableUndo(); } // skip the current word if it has already been worked on if( this.wordFlags[this.currentTextIndex][this.currentWordIndex] ) { // increment the global current word index and move on. this.currentWordIndex++; this._spellcheck(); } else { var evalText = ww.getTextVal( this.currentTextIndex, this.currentWordIndex ); if( evalText ) { this.controlWin.evaluatedText.value = evalText; ww.setFocus( this.currentTextIndex, this.currentWordIndex ); this._getSuggestions( this.currentTextIndex, this.currentWordIndex ); } } } function _getSuggestions( text_num, word_num ) { this.controlWin.clearSuggestions(); // add suggestion in list for each suggested word. // get the array of suggested words out of the // three-dimensional array containing all suggestions. var a_suggests = this.wordWin.suggestions[text_num][word_num]; if( a_suggests ) { // got an array of suggestions. for( var ii = 0; ii < a_suggests.length; ii++ ) { this.controlWin.addSuggestion( a_suggests[ii] ); } } this.controlWin.selectDefaultSuggestion(); } function _setAsIgnored( text_num, word_num, flag ) { // set the UI this.wordWin.removeFocus( text_num, word_num ); // do the bookkeeping this.wordFlags[text_num][word_num] = flag; return true; } function _getTotalReplaced() { var i_replaced = 0; for( var i = 0; i < this.wordFlags.length; i++ ) { for( var j = 0; j < this.wordFlags[i].length; j++ ) { if(( this.wordFlags[i][j] == this.replWordFlag ) || ( this.wordFlags[i][j] == this.replAllFlag ) || ( this.wordFlags[i][j] == this.fromReplAll )) { i_replaced++; } } } return i_replaced; } function _setWordText( text_num, word_num, newText, flag ) { // set the UI and form inputs this.wordWin.setText( text_num, word_num, newText ); // keep track of what happened to this word: this.wordFlags[text_num][word_num] = flag; return true; } function _getFormInputs( inputPattern ) { var inputs = new Array(); for( var i = 0; i < document.forms.length; i++ ) { for( var j = 0; j < document.forms[i].elements.length; j++ ) { if( document.forms[i].elements[j].type.match( inputPattern )) { inputs[inputs.length] = document.forms[i].elements[j]; } } } return inputs; } FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html0000644000102600010270000001005211234071264025124 0ustar imarkimark
Not in dictionary:
Change to:
  
  
  
  
FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html0000644000102600010270000000437411234071266025741 0ustar imarkimark Speller Pages FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html0000644000102600010270000000000011234071263024337 0ustar imarkimarkFCKeditor/editor/dialog/fck_colorselector.html0000644000102600010270000001215511234071201020761 0ustar imarkimark
Highlight
 
Selected

FCKeditor/editor/dialog/fck_button.html0000644000102600010270000000613111234071177017426 0ustar imarkimark Button Properties
Name
Text (Value)
Type
FCKeditor/editor/dialog/fck_select/0000755000102600010270000000000011240261352016474 5ustar imarkimarkFCKeditor/editor/dialog/fck_select/fck_select.js0000644000102600010270000001124311234071260021135 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Scripts for the fck_select.html page. */ function Select( combo ) { var iIndex = combo.selectedIndex ; oListText.selectedIndex = iIndex ; oListValue.selectedIndex = iIndex ; var oTxtText = document.getElementById( "txtText" ) ; var oTxtValue = document.getElementById( "txtValue" ) ; oTxtText.value = oListText.value ; oTxtValue.value = oListValue.value ; } function Add() { var oTxtText = document.getElementById( "txtText" ) ; var oTxtValue = document.getElementById( "txtValue" ) ; AddComboOption( oListText, oTxtText.value, oTxtText.value ) ; AddComboOption( oListValue, oTxtValue.value, oTxtValue.value ) ; oListText.selectedIndex = oListText.options.length - 1 ; oListValue.selectedIndex = oListValue.options.length - 1 ; oTxtText.value = '' ; oTxtValue.value = '' ; oTxtText.focus() ; } function Modify() { var iIndex = oListText.selectedIndex ; if ( iIndex < 0 ) return ; var oTxtText = document.getElementById( "txtText" ) ; var oTxtValue = document.getElementById( "txtValue" ) ; oListText.options[ iIndex ].innerHTML = HTMLEncode( oTxtText.value ) ; oListText.options[ iIndex ].value = oTxtText.value ; oListValue.options[ iIndex ].innerHTML = HTMLEncode( oTxtValue.value ) ; oListValue.options[ iIndex ].value = oTxtValue.value ; oTxtText.value = '' ; oTxtValue.value = '' ; oTxtText.focus() ; } function Move( steps ) { ChangeOptionPosition( oListText, steps ) ; ChangeOptionPosition( oListValue, steps ) ; } function Delete() { RemoveSelectedOptions( oListText ) ; RemoveSelectedOptions( oListValue ) ; } function SetSelectedValue() { var iIndex = oListValue.selectedIndex ; if ( iIndex < 0 ) return ; var oTxtValue = document.getElementById( "txtSelValue" ) ; oTxtValue.value = oListValue.options[ iIndex ].value ; } // Moves the selected option by a number of steps (also negative) function ChangeOptionPosition( combo, steps ) { var iActualIndex = combo.selectedIndex ; if ( iActualIndex < 0 ) return ; var iFinalIndex = iActualIndex + steps ; if ( iFinalIndex < 0 ) iFinalIndex = 0 ; if ( iFinalIndex > ( combo.options.length - 1 ) ) iFinalIndex = combo.options.length - 1 ; if ( iActualIndex == iFinalIndex ) return ; var oOption = combo.options[ iActualIndex ] ; var sText = HTMLDecode( oOption.innerHTML ) ; var sValue = oOption.value ; combo.remove( iActualIndex ) ; oOption = AddComboOption( combo, sText, sValue, null, iFinalIndex ) ; oOption.selected = true ; } // Remove all selected options from a SELECT object function RemoveSelectedOptions(combo) { // Save the selected index var iSelectedIndex = combo.selectedIndex ; var oOptions = combo.options ; // Remove all selected options for ( var i = oOptions.length - 1 ; i >= 0 ; i-- ) { if (oOptions[i].selected) combo.remove(i) ; } // Reset the selection based on the original selected index if ( combo.options.length > 0 ) { if ( iSelectedIndex >= combo.options.length ) iSelectedIndex = combo.options.length - 1 ; combo.selectedIndex = iSelectedIndex ; } } // Add a new option to a SELECT object (combo or list) function AddComboOption( combo, optionText, optionValue, documentObject, index ) { var oOption ; if ( documentObject ) oOption = documentObject.createElement("OPTION") ; else oOption = document.createElement("OPTION") ; if ( index != null ) combo.options.add( oOption, index ) ; else combo.options.add( oOption ) ; oOption.innerHTML = optionText.length > 0 ? HTMLEncode( optionText ) : ' ' ; oOption.value = optionValue ; return oOption ; } function HTMLEncode( text ) { if ( !text ) return '' ; text = text.replace( /&/g, '&' ) ; text = text.replace( //g, '>' ) ; return text ; } function HTMLDecode( text ) { if ( !text ) return '' ; text = text.replace( />/g, '>' ) ; text = text.replace( /</g, '<' ) ; text = text.replace( /&/g, '&' ) ; return text ; }FCKeditor/editor/dialog/fck_spellerpages.html0000644000102600010270000000410211234071217020570 0ustar imarkimark Spell Check FCKeditor/editor/dialog/fck_radiobutton.html0000644000102600010270000000615611234071212020442 0ustar imarkimark Radio Button Properties
Name
Value
FCKeditor/editor/dialog/fck_about/0000755000102600010270000000000011240261352016327 5ustar imarkimarkFCKeditor/editor/dialog/fck_about/logo_fckeditor.gif0000644000102600010270000000377411234071240022021 0ustar imarkimarkGIF89a)0M? oXF@@@࿿W<'K.cJ6te000򹈫ùk{fUppp| ```ʥ/tPPP >\zӴ–s!0,)pH,Kr!LtJ ̬vzxL./]z6qK); `]u|.fe 0 I cwhY{.JwyJ*LIde00fcZYIwLhsIY KYJ\YJJ0`몈`JݴK]`c’e >c !,K(` ((H(4X 4xDA̪R+mP/t-Ni g2D2eDIR -Ơ-6Gk@5|ה  *բ% +V`e0. ]C|Χd5-}jйFu ]PA-5O6Ss4 vI.r@I(Z1*gW0-Oҹ sU9~q *€G1,J'9%A\WL\d'GBz*^5Si3P>R#uPX`)p ErMp5݉bL4K7=PTM7tHDfAeZif ΁B]PjXN(!CU)5. $Bڥ@8 8PAmhQ&, @h7fk.8wtgr)G hhT3xDMmP  .&QM(Ы-;IځYiyjs\Xl֤]r. <\(E[s F(0$l(sq?} M ťl8rpD`4k )`(q$eD{ 9$1[do0_$ZsD['e睳 qgs'Lw0 bA !l6]kF(B͇+ʹ ,N& 0`#E`;%qi-C/l#Dv-d"l-ðG'a4Du#0GdE1-sK$- 0 %l_5uukpvFuK*|Av&&HAY cئĖFpk8@ ćBXʷE aJh@pov, A.I벀? [kZ85qw|Aq_aÐ)PA6X3!Þ@n` s\lTB(?@H%rl7Ӣ!jDxB pK)GISiN'_Xvxd%`-! \Rq%2C/2g|&A[28\Hzn\B NpLB(E[$T08K4fL-^&B6k r"Tgr3q.Hw,|086@қLԭ]"ěION=%bri"$O$G.ĪԄAs PO4P0Uc?۝@/+WIĺ*!#!Y֔5 `ga@ poȨUnзIO pQ7Qb= ְԺ8cA:P5]  ,@Mr:Ѝnt=[I@ͮv]wVwxK^F㻁oyZ-zKB;FCKeditor/editor/dialog/fck_about/logo_fredck.gif0000644000102600010270000000163011234071241021273 0ustar imarkimarkGIF89aW$0Mzɤix̩Ե}#q+EO׼а_cʥkFӴ=/{^Ϋ4Wsŝ!0,W$@pH,Ȥ(0EVzʉXh łH:x/}DsSx} f` i~v Hug mK0",,/U-TT{^.#-/,TTT`$-/.|€5xڹ+L0 l FE?,PͻC&$Pۅm,(s `gfMhnmhAjXKIM |Z .$:,T+[*,zgmծTܦ}1_tW+lFő..@@PM.p>avJ7k Flash Properties
URL
Width
  Height
Preview
FCKeditor/editor/dialog/fck_replace.html0000644000102600010270000001063211234071213017516 0ustar imarkimark
 
 
FCKeditor/editor/dialog/fck_specialchar.html0000644000102600010270000001067411234071217020373 0ustar imarkimark
    
 
FCKeditor/editor/dialog/fck_select.html0000644000102600010270000001414311234071214017364 0ustar imarkimark Select Properties
Name 
Value 
Size   lines


 Available Options 
Text
Value

  
FCKeditor/editor/dialog/fck_link/0000755000102600010270000000000011240261352016152 5ustar imarkimarkFCKeditor/editor/dialog/fck_link/fck_link.js0000644000102600010270000004662011234071255020304 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Scripts related to the Link dialog window (see fck_link.html). */ var oEditor = window.parent.InnerDialogLoaded() ; var FCK = oEditor.FCK ; var FCKLang = oEditor.FCKLang ; var FCKConfig = oEditor.FCKConfig ; var FCKRegexLib = oEditor.FCKRegexLib ; //#### Dialog Tabs // Set the dialog tabs. window.parent.AddTab( 'Info', FCKLang.DlgLnkInfoTab ) ; if ( !FCKConfig.LinkDlgHideTarget ) window.parent.AddTab( 'Target', FCKLang.DlgLnkTargetTab, true ) ; if ( FCKConfig.LinkUpload ) window.parent.AddTab( 'Upload', FCKLang.DlgLnkUpload, true ) ; if ( !FCKConfig.LinkDlgHideAdvanced ) window.parent.AddTab( 'Advanced', FCKLang.DlgAdvancedTag ) ; // Function called when a dialog tag is selected. function OnDialogTabChange( tabCode ) { ShowE('divInfo' , ( tabCode == 'Info' ) ) ; ShowE('divTarget' , ( tabCode == 'Target' ) ) ; ShowE('divUpload' , ( tabCode == 'Upload' ) ) ; ShowE('divAttribs' , ( tabCode == 'Advanced' ) ) ; window.parent.SetAutoSize( true ) ; } //#### Regular Expressions library. var oRegex = new Object() ; oRegex.UriProtocol = /^(((http|https|ftp|news):\/\/)|mailto:)/gi ; oRegex.UrlOnChangeProtocol = /^(http|https|ftp|news):\/\/(?=.)/gi ; oRegex.UrlOnChangeTestOther = /^((javascript:)|[#\/\.])/gi ; oRegex.ReserveTarget = /^_(blank|self|top|parent)$/i ; oRegex.PopupUri = /^javascript:void\(\s*window.open\(\s*'([^']+)'\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*\)\s*$/ ; // Accessible popups oRegex.OnClickPopup = /^\s*on[cC]lick="\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*"$/ ; oRegex.PopupFeatures = /(?:^|,)([^=]+)=(\d+|yes|no)/gi ; //#### Parser Functions var oParser = new Object() ; oParser.ParseEMailUrl = function( emailUrl ) { // Initializes the EMailInfo object. var oEMailInfo = new Object() ; oEMailInfo.Address = '' ; oEMailInfo.Subject = '' ; oEMailInfo.Body = '' ; var oParts = emailUrl.match( /^([^\?]+)\??(.+)?/ ) ; if ( oParts ) { // Set the e-mail address. oEMailInfo.Address = oParts[1] ; // Look for the optional e-mail parameters. if ( oParts[2] ) { var oMatch = oParts[2].match( /(^|&)subject=([^&]+)/i ) ; if ( oMatch ) oEMailInfo.Subject = decodeURIComponent( oMatch[2] ) ; oMatch = oParts[2].match( /(^|&)body=([^&]+)/i ) ; if ( oMatch ) oEMailInfo.Body = decodeURIComponent( oMatch[2] ) ; } } return oEMailInfo ; } oParser.CreateEMailUri = function( address, subject, body ) { var sBaseUri = 'mailto:' + address ; var sParams = '' ; if ( subject.length > 0 ) sParams = '?subject=' + encodeURIComponent( subject ) ; if ( body.length > 0 ) { sParams += ( sParams.length == 0 ? '?' : '&' ) ; sParams += 'body=' + encodeURIComponent( body ) ; } return sBaseUri + sParams ; } //#### Initialization Code // oLink: The actual selected link in the editor. var oLink = FCK.Selection.MoveToAncestorNode( 'A' ) ; if ( oLink ) FCK.Selection.SelectNode( oLink ) ; window.onload = function() { // Translate the dialog box texts. oEditor.FCKLanguageManager.TranslatePage(document) ; // Fill the Anchor Names and Ids combos. LoadAnchorNamesAndIds() ; // Load the selected link information (if any). LoadSelection() ; // Update the dialog box. SetLinkType( GetE('cmbLinkType').value ) ; // Show/Hide the "Browse Server" button. GetE('divBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none' ; // Show the initial dialog content. GetE('divInfo').style.display = '' ; // Set the actual uploader URL. if ( FCKConfig.LinkUpload ) GetE('frmUpload').action = FCKConfig.LinkUploadURL ; // Set the default target (from configuration). SetDefaultTarget() ; // Activate the "OK" button. window.parent.SetOkButton( true ) ; } var bHasAnchors ; function LoadAnchorNamesAndIds() { // Since version 2.0, the anchors are replaced in the DOM by IMGs so the user see the icon // to edit them. So, we must look for that images now. var aAnchors = new Array() ; var i ; var oImages = oEditor.FCK.EditorDocument.getElementsByTagName( 'IMG' ) ; for( i = 0 ; i < oImages.length ; i++ ) { if ( oImages[i].getAttribute('_fckanchor') ) aAnchors[ aAnchors.length ] = oEditor.FCK.GetRealElement( oImages[i] ) ; } // Add also real anchors var oLinks = oEditor.FCK.EditorDocument.getElementsByTagName( 'A' ) ; for( i = 0 ; i < oLinks.length ; i++ ) { if ( oLinks[i].name && ( oLinks[i].name.length > 0 ) ) aAnchors[ aAnchors.length ] = oLinks[i] ; } var aIds = oEditor.FCKTools.GetAllChildrenIds( oEditor.FCK.EditorDocument.body ) ; bHasAnchors = ( aAnchors.length > 0 || aIds.length > 0 ) ; for ( i = 0 ; i < aAnchors.length ; i++ ) { var sName = aAnchors[i].name ; if ( sName && sName.length > 0 ) oEditor.FCKTools.AddSelectOption( GetE('cmbAnchorName'), sName, sName ) ; } for ( i = 0 ; i < aIds.length ; i++ ) { oEditor.FCKTools.AddSelectOption( GetE('cmbAnchorId'), aIds[i], aIds[i] ) ; } ShowE( 'divSelAnchor' , bHasAnchors ) ; ShowE( 'divNoAnchor' , !bHasAnchors ) ; } function LoadSelection() { if ( !oLink ) return ; var sType = 'url' ; // Get the actual Link href. var sHRef = oLink.getAttribute( '_fcksavedurl' ) ; if ( sHRef == null ) sHRef = oLink.getAttribute( 'href' , 2 ) || '' ; // Look for a popup javascript link. var oPopupMatch = oRegex.PopupUri.exec( sHRef ) ; if( oPopupMatch ) { GetE('cmbTarget').value = 'popup' ; sHRef = oPopupMatch[1] ; FillPopupFields( oPopupMatch[2], oPopupMatch[3] ) ; SetTarget( 'popup' ) ; } // Accesible popups, the popup data is in the onclick attribute if ( !oPopupMatch ) { var onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ; oPopupMatch = oRegex.OnClickPopup.exec( onclick ) ; if( oPopupMatch ) { GetE( 'cmbTarget' ).value = 'popup' ; FillPopupFields( oPopupMatch[1], oPopupMatch[2] ) ; SetTarget( 'popup' ) ; } } // Search for the protocol. var sProtocol = oRegex.UriProtocol.exec( sHRef ) ; if ( sProtocol ) { sProtocol = sProtocol[0].toLowerCase() ; GetE('cmbLinkProtocol').value = sProtocol ; // Remove the protocol and get the remainig URL. var sUrl = sHRef.replace( oRegex.UriProtocol, '' ) ; if ( sProtocol == 'mailto:' ) // It is an e-mail link. { sType = 'email' ; var oEMailInfo = oParser.ParseEMailUrl( sUrl ) ; GetE('txtEMailAddress').value = oEMailInfo.Address ; GetE('txtEMailSubject').value = oEMailInfo.Subject ; GetE('txtEMailBody').value = oEMailInfo.Body ; } else // It is a normal link. { sType = 'url' ; GetE('txtUrl').value = sUrl ; } } else if ( sHRef.substr(0,1) == '#' && sHRef.length > 1 ) // It is an anchor link. { sType = 'anchor' ; GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ; } else // It is another type of link. { sType = 'url' ; GetE('cmbLinkProtocol').value = '' ; GetE('txtUrl').value = sHRef ; } if ( !oPopupMatch ) { // Get the target. var sTarget = oLink.target ; if ( sTarget && sTarget.length > 0 ) { if ( oRegex.ReserveTarget.test( sTarget ) ) { sTarget = sTarget.toLowerCase() ; GetE('cmbTarget').value = sTarget ; } else GetE('cmbTarget').value = 'frame' ; GetE('txtTargetFrame').value = sTarget ; } } // Get Advances Attributes GetE('txtAttId').value = oLink.id ; GetE('txtAttName').value = oLink.name ; GetE('cmbAttLangDir').value = oLink.dir ; GetE('txtAttLangCode').value = oLink.lang ; GetE('txtAttAccessKey').value = oLink.accessKey ; GetE('txtAttTabIndex').value = oLink.tabIndex <= 0 ? '' : oLink.tabIndex ; GetE('txtAttTitle').value = oLink.title ; GetE('txtAttContentType').value = oLink.type ; GetE('txtAttCharSet').value = oLink.charset ; var sClass ; if ( oEditor.FCKBrowserInfo.IsIE ) { sClass = oLink.getAttribute('className',2) || '' ; // Clean up temporary classes for internal use: sClass = sClass.replace( FCKRegexLib.FCK_Class, '' ) ; GetE('txtAttStyle').value = oLink.style.cssText ; } else { sClass = oLink.getAttribute('class',2) || '' ; GetE('txtAttStyle').value = oLink.getAttribute('style',2) || '' ; } GetE('txtAttClasses').value = sClass ; // Update the Link type combo. GetE('cmbLinkType').value = sType ; } //#### Link type selection. function SetLinkType( linkType ) { ShowE('divLinkTypeUrl' , (linkType == 'url') ) ; ShowE('divLinkTypeAnchor' , (linkType == 'anchor') ) ; ShowE('divLinkTypeEMail' , (linkType == 'email') ) ; if ( !FCKConfig.LinkDlgHideTarget ) window.parent.SetTabVisibility( 'Target' , (linkType == 'url') ) ; if ( FCKConfig.LinkUpload ) window.parent.SetTabVisibility( 'Upload' , (linkType == 'url') ) ; if ( !FCKConfig.LinkDlgHideAdvanced ) window.parent.SetTabVisibility( 'Advanced' , (linkType != 'anchor' || bHasAnchors) ) ; if ( linkType == 'email' ) window.parent.SetAutoSize( true ) ; } //#### Target type selection. function SetTarget( targetType ) { GetE('tdTargetFrame').style.display = ( targetType == 'popup' ? 'none' : '' ) ; GetE('tdPopupName').style.display = GetE('tablePopupFeatures').style.display = ( targetType == 'popup' ? '' : 'none' ) ; switch ( targetType ) { case "_blank" : case "_self" : case "_parent" : case "_top" : GetE('txtTargetFrame').value = targetType ; break ; case "" : GetE('txtTargetFrame').value = '' ; break ; } if ( targetType == 'popup' ) window.parent.SetAutoSize( true ) ; } //#### Called while the user types the URL. function OnUrlChange() { var sUrl = GetE('txtUrl').value ; var sProtocol = oRegex.UrlOnChangeProtocol.exec( sUrl ) ; if ( sProtocol ) { sUrl = sUrl.substr( sProtocol[0].length ) ; GetE('txtUrl').value = sUrl ; GetE('cmbLinkProtocol').value = sProtocol[0].toLowerCase() ; } else if ( oRegex.UrlOnChangeTestOther.test( sUrl ) ) { GetE('cmbLinkProtocol').value = '' ; } } //#### Called while the user types the target name. function OnTargetNameChange() { var sFrame = GetE('txtTargetFrame').value ; if ( sFrame.length == 0 ) GetE('cmbTarget').value = '' ; else if ( oRegex.ReserveTarget.test( sFrame ) ) GetE('cmbTarget').value = sFrame.toLowerCase() ; else GetE('cmbTarget').value = 'frame' ; } // Accesible popups function BuildOnClickPopup() { var sWindowName = "'" + GetE('txtPopupName').value.replace(/\W/gi, "") + "'" ; var sFeatures = '' ; var aChkFeatures = document.getElementsByName( 'chkFeature' ) ; for ( var i = 0 ; i < aChkFeatures.length ; i++ ) { if ( i > 0 ) sFeatures += ',' ; sFeatures += aChkFeatures[i].value + '=' + ( aChkFeatures[i].checked ? 'yes' : 'no' ) ; } if ( GetE('txtPopupWidth').value.length > 0 ) sFeatures += ',width=' + GetE('txtPopupWidth').value ; if ( GetE('txtPopupHeight').value.length > 0 ) sFeatures += ',height=' + GetE('txtPopupHeight').value ; if ( GetE('txtPopupLeft').value.length > 0 ) sFeatures += ',left=' + GetE('txtPopupLeft').value ; if ( GetE('txtPopupTop').value.length > 0 ) sFeatures += ',top=' + GetE('txtPopupTop').value ; if ( sFeatures != '' ) sFeatures = sFeatures + ",status" ; return ( "window.open(this.href," + sWindowName + ",'" + sFeatures + "'); return false" ) ; } //#### Fills all Popup related fields. function FillPopupFields( windowName, features ) { if ( windowName ) GetE('txtPopupName').value = windowName ; var oFeatures = new Object() ; var oFeaturesMatch ; while( ( oFeaturesMatch = oRegex.PopupFeatures.exec( features ) ) != null ) { var sValue = oFeaturesMatch[2] ; if ( sValue == ( 'yes' || '1' ) ) oFeatures[ oFeaturesMatch[1] ] = true ; else if ( ! isNaN( sValue ) && sValue != 0 ) oFeatures[ oFeaturesMatch[1] ] = sValue ; } // Update all features check boxes. var aChkFeatures = document.getElementsByName('chkFeature') ; for ( var i = 0 ; i < aChkFeatures.length ; i++ ) { if ( oFeatures[ aChkFeatures[i].value ] ) aChkFeatures[i].checked = true ; } // Update position and size text boxes. if ( oFeatures['width'] ) GetE('txtPopupWidth').value = oFeatures['width'] ; if ( oFeatures['height'] ) GetE('txtPopupHeight').value = oFeatures['height'] ; if ( oFeatures['left'] ) GetE('txtPopupLeft').value = oFeatures['left'] ; if ( oFeatures['top'] ) GetE('txtPopupTop').value = oFeatures['top'] ; } //#### The OK button was hit. function Ok() { var sUri, sInnerHtml ; switch ( GetE('cmbLinkType').value ) { case 'url' : sUri = GetE('txtUrl').value ; if ( sUri.length == 0 ) { alert( FCKLang.DlnLnkMsgNoUrl ) ; return false ; } sUri = GetE('cmbLinkProtocol').value + sUri ; break ; case 'email' : sUri = GetE('txtEMailAddress').value ; if ( sUri.length == 0 ) { alert( FCKLang.DlnLnkMsgNoEMail ) ; return false ; } sUri = oParser.CreateEMailUri( sUri, GetE('txtEMailSubject').value, GetE('txtEMailBody').value ) ; break ; case 'anchor' : var sAnchor = GetE('cmbAnchorName').value ; if ( sAnchor.length == 0 ) sAnchor = GetE('cmbAnchorId').value ; if ( sAnchor.length == 0 ) { alert( FCKLang.DlnLnkMsgNoAnchor ) ; return false ; } sUri = '#' + sAnchor ; break ; } // If no link is selected, create a new one (it may result in more than one link creation - #220). var aLinks = oLink ? [ oLink ] : oEditor.FCK.CreateLink( sUri ) ; // If no selection, no links are created, so use the uri as the link text (by dom, 2006-05-26) var aHasSelection = ( aLinks.length > 0 ) ; if ( !aHasSelection ) { sInnerHtml = sUri; // Built a better text for empty links. switch ( GetE('cmbLinkType').value ) { // anchor: use old behavior --> return true case 'anchor': sInnerHtml = sInnerHtml.replace( /^#/, '' ) ; break ; // url: try to get path case 'url': var oLinkPathRegEx = new RegExp("//?([^?\"']+)([?].*)?$") ; var asLinkPath = oLinkPathRegEx.exec( sUri ) ; if (asLinkPath != null) sInnerHtml = asLinkPath[1]; // use matched path break ; // mailto: try to get email address case 'email': sInnerHtml = GetE('txtEMailAddress').value ; break ; } // Create a new (empty) anchor. aLinks = [ oEditor.FCK.CreateElement( 'a' ) ] ; } oEditor.FCKUndo.SaveUndoStep() ; for ( var i = 0 ; i < aLinks.length ; i++ ) { oLink = aLinks[i] ; if ( aHasSelection ) sInnerHtml = oLink.innerHTML ; // Save the innerHTML (IE changes it if it is like an URL). oLink.href = sUri ; SetAttribute( oLink, '_fcksavedurl', sUri ) ; // Accesible popups if( GetE('cmbTarget').value == 'popup' ) { SetAttribute( oLink, 'onclick_fckprotectedatt', " onclick=\"" + BuildOnClickPopup() + "\"") ; } else { // Check if the previous onclick was for a popup: // In that case remove the onclick handler. var onclick = oLink.getAttribute( 'onclick_fckprotectedatt' ) ; if( oRegex.OnClickPopup.test( onclick ) ) SetAttribute( oLink, 'onclick_fckprotectedatt', '' ) ; } oLink.innerHTML = sInnerHtml ; // Set (or restore) the innerHTML // Target if( GetE('cmbTarget').value != 'popup' ) SetAttribute( oLink, 'target', GetE('txtTargetFrame').value ) ; else SetAttribute( oLink, 'target', null ) ; // Let's set the "id" only for the first link to avoid duplication. if ( i == 0 ) SetAttribute( oLink, 'id', GetE('txtAttId').value ) ; // Advances Attributes SetAttribute( oLink, 'name' , GetE('txtAttName').value ) ; SetAttribute( oLink, 'dir' , GetE('cmbAttLangDir').value ) ; SetAttribute( oLink, 'lang' , GetE('txtAttLangCode').value ) ; SetAttribute( oLink, 'accesskey', GetE('txtAttAccessKey').value ) ; SetAttribute( oLink, 'tabindex' , ( GetE('txtAttTabIndex').value > 0 ? GetE('txtAttTabIndex').value : null ) ) ; SetAttribute( oLink, 'title' , GetE('txtAttTitle').value ) ; SetAttribute( oLink, 'type' , GetE('txtAttContentType').value ) ; SetAttribute( oLink, 'charset' , GetE('txtAttCharSet').value ) ; if ( oEditor.FCKBrowserInfo.IsIE ) { var sClass = GetE('txtAttClasses').value ; // If it's also an anchor add an internal class if ( GetE('txtAttName').value.length != 0 ) sClass += ' FCK__AnchorC' ; SetAttribute( oLink, 'className', sClass ) ; oLink.style.cssText = GetE('txtAttStyle').value ; } else { SetAttribute( oLink, 'class', GetE('txtAttClasses').value ) ; SetAttribute( oLink, 'style', GetE('txtAttStyle').value ) ; } } // Select the (first) link. oEditor.FCKSelection.SelectNode( aLinks[0] ); return true ; } function BrowseServer() { OpenFileBrowser( FCKConfig.LinkBrowserURL, FCKConfig.LinkBrowserWindowWidth, FCKConfig.LinkBrowserWindowHeight ) ; } function SetUrl( url ) { document.getElementById('txtUrl').value = url ; OnUrlChange() ; window.parent.SetSelectedTab( 'Info' ) ; } function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg ) { switch ( errorNumber ) { case 0 : // No errors alert( 'Your file has been successfully uploaded' ) ; break ; case 1 : // Custom error alert( customMsg ) ; return ; case 101 : // Custom warning alert( customMsg ) ; break ; case 201 : alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ; break ; case 202 : alert( 'Invalid file type' ) ; return ; case 203 : alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ; return ; default : alert( 'Error on file upload. Error number: ' + errorNumber ) ; return ; } SetUrl( fileUrl ) ; GetE('frmUpload').reset() ; } var oUploadAllowedExtRegex = new RegExp( FCKConfig.LinkUploadAllowedExtensions, 'i' ) ; var oUploadDeniedExtRegex = new RegExp( FCKConfig.LinkUploadDeniedExtensions, 'i' ) ; function CheckUpload() { var sFile = GetE('txtUploadFile').value ; if ( sFile.length == 0 ) { alert( 'Please select a file to upload' ) ; return false ; } if ( ( FCKConfig.LinkUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) || ( FCKConfig.LinkUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) ) { OnUploadCompleted( 202 ) ; return false ; } return true ; } function SetDefaultTarget() { var target = FCKConfig.DefaultLinkTarget + '' ; if ( oLink || target.length == 0 ) return ; switch ( target ) { case '_blank' : case '_self' : case '_parent' : case '_top' : GetE('cmbTarget').value = target ; break ; default : GetE('cmbTarget').value = 'frame' ; break ; } GetE('txtTargetFrame').value = target ; } FCKeditor/editor/dialog/fck_template.html0000644000102600010270000001434611234071222017724 0ustar imarkimark
Please select the template to open in the editor
(the actual contents will be lost):
FCKeditor/editor/dialog/fck_form.html0000644000102600010270000000547511234071205017060 0ustar imarkimark
Name
Action
Method
FCKeditor/editor/dialog/fck_image/0000755000102600010270000000000011240261352016277 5ustar imarkimarkFCKeditor/editor/dialog/fck_image/fck_image.js0000644000102600010270000003053411234071252020550 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Scripts related to the Image dialog window (see fck_image.html). */ var oEditor = window.parent.InnerDialogLoaded() ; var FCK = oEditor.FCK ; var FCKLang = oEditor.FCKLang ; var FCKConfig = oEditor.FCKConfig ; var FCKDebug = oEditor.FCKDebug ; var bImageButton = ( document.location.search.length > 0 && document.location.search.substr(1) == 'ImageButton' ) ; //#### Dialog Tabs // Set the dialog tabs. window.parent.AddTab( 'Info', FCKLang.DlgImgInfoTab ) ; if ( !bImageButton && !FCKConfig.ImageDlgHideLink ) window.parent.AddTab( 'Link', FCKLang.DlgImgLinkTab ) ; if ( FCKConfig.ImageUpload ) window.parent.AddTab( 'Upload', FCKLang.DlgLnkUpload ) ; if ( !FCKConfig.ImageDlgHideAdvanced ) window.parent.AddTab( 'Advanced', FCKLang.DlgAdvancedTag ) ; // Function called when a dialog tag is selected. function OnDialogTabChange( tabCode ) { ShowE('divInfo' , ( tabCode == 'Info' ) ) ; ShowE('divLink' , ( tabCode == 'Link' ) ) ; ShowE('divUpload' , ( tabCode == 'Upload' ) ) ; ShowE('divAdvanced' , ( tabCode == 'Advanced' ) ) ; } // Get the selected image (if available). var oImage = FCK.Selection.GetSelectedElement() ; if ( oImage && oImage.tagName != 'IMG' && !( oImage.tagName == 'INPUT' && oImage.type == 'image' ) ) oImage = null ; // Get the active link. var oLink = FCK.Selection.MoveToAncestorNode( 'A' ) ; var oImageOriginal ; function UpdateOriginal( resetSize ) { if ( !eImgPreview ) return ; if ( GetE('txtUrl').value.length == 0 ) { oImageOriginal = null ; return ; } oImageOriginal = document.createElement( 'IMG' ) ; // new Image() ; if ( resetSize ) { oImageOriginal.onload = function() { this.onload = null ; ResetSizes() ; } } oImageOriginal.src = eImgPreview.src ; } var bPreviewInitialized ; window.onload = function() { // Translate the dialog box texts. oEditor.FCKLanguageManager.TranslatePage(document) ; GetE('btnLockSizes').title = FCKLang.DlgImgLockRatio ; GetE('btnResetSize').title = FCKLang.DlgBtnResetSize ; // Load the selected element information (if any). LoadSelection() ; // Show/Hide the "Browse Server" button. GetE('tdBrowse').style.display = FCKConfig.ImageBrowser ? '' : 'none' ; GetE('divLnkBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none' ; UpdateOriginal() ; // Set the actual uploader URL. if ( FCKConfig.ImageUpload ) GetE('frmUpload').action = FCKConfig.ImageUploadURL ; window.parent.SetAutoSize( true ) ; // Activate the "OK" button. window.parent.SetOkButton( true ) ; } function LoadSelection() { if ( ! oImage ) return ; var sUrl = oImage.getAttribute( '_fcksavedurl' ) ; if ( sUrl == null ) sUrl = GetAttribute( oImage, 'src', '' ) ; GetE('txtUrl').value = sUrl ; GetE('txtAlt').value = GetAttribute( oImage, 'alt', '' ) ; GetE('txtVSpace').value = GetAttribute( oImage, 'vspace', '' ) ; GetE('txtHSpace').value = GetAttribute( oImage, 'hspace', '' ) ; GetE('txtBorder').value = GetAttribute( oImage, 'border', '' ) ; GetE('cmbAlign').value = GetAttribute( oImage, 'align', '' ) ; var iWidth, iHeight ; var regexSize = /^\s*(\d+)px\s*$/i ; if ( oImage.style.width ) { var aMatchW = oImage.style.width.match( regexSize ) ; if ( aMatchW ) { iWidth = aMatchW[1] ; oImage.style.width = '' ; SetAttribute( oImage, 'width' , iWidth ) ; } } if ( oImage.style.height ) { var aMatchH = oImage.style.height.match( regexSize ) ; if ( aMatchH ) { iHeight = aMatchH[1] ; oImage.style.height = '' ; SetAttribute( oImage, 'height', iHeight ) ; } } GetE('txtWidth').value = iWidth ? iWidth : GetAttribute( oImage, "width", '' ) ; GetE('txtHeight').value = iHeight ? iHeight : GetAttribute( oImage, "height", '' ) ; // Get Advances Attributes GetE('txtAttId').value = oImage.id ; GetE('cmbAttLangDir').value = oImage.dir ; GetE('txtAttLangCode').value = oImage.lang ; GetE('txtAttTitle').value = oImage.title ; GetE('txtLongDesc').value = oImage.longDesc ; if ( oEditor.FCKBrowserInfo.IsIE ) { GetE('txtAttClasses').value = oImage.className || '' ; GetE('txtAttStyle').value = oImage.style.cssText ; } else { GetE('txtAttClasses').value = oImage.getAttribute('class',2) || '' ; GetE('txtAttStyle').value = oImage.getAttribute('style',2) ; } if ( oLink ) { var sLinkUrl = oLink.getAttribute( '_fcksavedurl' ) ; if ( sLinkUrl == null ) sLinkUrl = oLink.getAttribute('href',2) ; GetE('txtLnkUrl').value = sLinkUrl ; GetE('cmbLnkTarget').value = oLink.target ; } UpdatePreview() ; } //#### The OK button was hit. function Ok() { if ( GetE('txtUrl').value.length == 0 ) { window.parent.SetSelectedTab( 'Info' ) ; GetE('txtUrl').focus() ; alert( FCKLang.DlgImgAlertUrl ) ; return false ; } var bHasImage = ( oImage != null ) ; if ( bHasImage && bImageButton && oImage.tagName == 'IMG' ) { if ( confirm( 'Do you want to transform the selected image on a image button?' ) ) oImage = null ; } else if ( bHasImage && !bImageButton && oImage.tagName == 'INPUT' ) { if ( confirm( 'Do you want to transform the selected image button on a simple image?' ) ) oImage = null ; } if ( !bHasImage ) { if ( bImageButton ) { oImage = FCK.EditorDocument.createElement( 'INPUT' ) ; oImage.type = 'image' ; oImage = FCK.InsertElementAndGetIt( oImage ) ; } else oImage = FCK.CreateElement( 'IMG' ) ; } else oEditor.FCKUndo.SaveUndoStep() ; UpdateImage( oImage ) ; var sLnkUrl = GetE('txtLnkUrl').value.Trim() ; if ( sLnkUrl.length == 0 ) { if ( oLink ) FCK.ExecuteNamedCommand( 'Unlink' ) ; } else { if ( oLink ) // Modifying an existent link. oLink.href = sLnkUrl ; else // Creating a new link. { if ( !bHasImage ) oEditor.FCKSelection.SelectNode( oImage ) ; oLink = oEditor.FCK.CreateLink( sLnkUrl )[0] ; if ( !bHasImage ) { oEditor.FCKSelection.SelectNode( oLink ) ; oEditor.FCKSelection.Collapse( false ) ; } } SetAttribute( oLink, '_fcksavedurl', sLnkUrl ) ; SetAttribute( oLink, 'target', GetE('cmbLnkTarget').value ) ; } return true ; } function UpdateImage( e, skipId ) { e.src = GetE('txtUrl').value ; SetAttribute( e, "_fcksavedurl", GetE('txtUrl').value ) ; SetAttribute( e, "alt" , GetE('txtAlt').value ) ; SetAttribute( e, "width" , GetE('txtWidth').value ) ; SetAttribute( e, "height", GetE('txtHeight').value ) ; SetAttribute( e, "vspace", GetE('txtVSpace').value ) ; SetAttribute( e, "hspace", GetE('txtHSpace').value ) ; SetAttribute( e, "border", GetE('txtBorder').value ) ; SetAttribute( e, "align" , GetE('cmbAlign').value ) ; // Advances Attributes if ( ! skipId ) SetAttribute( e, 'id', GetE('txtAttId').value ) ; SetAttribute( e, 'dir' , GetE('cmbAttLangDir').value ) ; SetAttribute( e, 'lang' , GetE('txtAttLangCode').value ) ; SetAttribute( e, 'title' , GetE('txtAttTitle').value ) ; SetAttribute( e, 'longDesc' , GetE('txtLongDesc').value ) ; if ( oEditor.FCKBrowserInfo.IsIE ) { e.className = GetE('txtAttClasses').value ; e.style.cssText = GetE('txtAttStyle').value ; } else { SetAttribute( e, 'class' , GetE('txtAttClasses').value ) ; SetAttribute( e, 'style', GetE('txtAttStyle').value ) ; } } var eImgPreview ; var eImgPreviewLink ; function SetPreviewElements( imageElement, linkElement ) { eImgPreview = imageElement ; eImgPreviewLink = linkElement ; UpdatePreview() ; UpdateOriginal() ; bPreviewInitialized = true ; } function UpdatePreview() { if ( !eImgPreview || !eImgPreviewLink ) return ; if ( GetE('txtUrl').value.length == 0 ) eImgPreviewLink.style.display = 'none' ; else { UpdateImage( eImgPreview, true ) ; if ( GetE('txtLnkUrl').value.Trim().length > 0 ) eImgPreviewLink.href = 'javascript:void(null);' ; else SetAttribute( eImgPreviewLink, 'href', '' ) ; eImgPreviewLink.style.display = '' ; } } var bLockRatio = true ; function SwitchLock( lockButton ) { bLockRatio = !bLockRatio ; lockButton.className = bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ; lockButton.title = bLockRatio ? 'Lock sizes' : 'Unlock sizes' ; if ( bLockRatio ) { if ( GetE('txtWidth').value.length > 0 ) OnSizeChanged( 'Width', GetE('txtWidth').value ) ; else OnSizeChanged( 'Height', GetE('txtHeight').value ) ; } } // Fired when the width or height input texts change function OnSizeChanged( dimension, value ) { // Verifies if the aspect ration has to be mantained if ( oImageOriginal && bLockRatio ) { var e = dimension == 'Width' ? GetE('txtHeight') : GetE('txtWidth') ; if ( value.length == 0 || isNaN( value ) ) { e.value = '' ; return ; } if ( dimension == 'Width' ) value = value == 0 ? 0 : Math.round( oImageOriginal.height * ( value / oImageOriginal.width ) ) ; else value = value == 0 ? 0 : Math.round( oImageOriginal.width * ( value / oImageOriginal.height ) ) ; if ( !isNaN( value ) ) e.value = value ; } UpdatePreview() ; } // Fired when the Reset Size button is clicked function ResetSizes() { if ( ! oImageOriginal ) return ; GetE('txtWidth').value = oImageOriginal.width ; GetE('txtHeight').value = oImageOriginal.height ; UpdatePreview() ; } function BrowseServer() { OpenServerBrowser( 'Image', FCKConfig.ImageBrowserURL, FCKConfig.ImageBrowserWindowWidth, FCKConfig.ImageBrowserWindowHeight ) ; } function LnkBrowseServer() { OpenServerBrowser( 'Link', FCKConfig.LinkBrowserURL, FCKConfig.LinkBrowserWindowWidth, FCKConfig.LinkBrowserWindowHeight ) ; } function OpenServerBrowser( type, url, width, height ) { sActualBrowser = type ; OpenFileBrowser( url, width, height ) ; } var sActualBrowser ; function SetUrl( url, width, height, alt ) { if ( sActualBrowser == 'Link' ) { GetE('txtLnkUrl').value = url ; UpdatePreview() ; } else { GetE('txtUrl').value = url ; GetE('txtWidth').value = width ? width : '' ; GetE('txtHeight').value = height ? height : '' ; if ( alt ) GetE('txtAlt').value = alt; UpdatePreview() ; UpdateOriginal( true ) ; } window.parent.SetSelectedTab( 'Info' ) ; } function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg ) { switch ( errorNumber ) { case 0 : // No errors alert( 'Your file has been successfully uploaded' ) ; break ; case 1 : // Custom error alert( customMsg ) ; return ; case 101 : // Custom warning alert( customMsg ) ; break ; case 201 : alert( 'A file with the same name is already available. The uploaded file has been renamed to "' + fileName + '"' ) ; break ; case 202 : alert( 'Invalid file type' ) ; return ; case 203 : alert( "Security error. You probably don't have enough permissions to upload. Please check your server." ) ; return ; default : alert( 'Error on file upload. Error number: ' + errorNumber ) ; return ; } sActualBrowser = '' ; SetUrl( fileUrl ) ; GetE('frmUpload').reset() ; } var oUploadAllowedExtRegex = new RegExp( FCKConfig.ImageUploadAllowedExtensions, 'i' ) ; var oUploadDeniedExtRegex = new RegExp( FCKConfig.ImageUploadDeniedExtensions, 'i' ) ; function CheckUpload() { var sFile = GetE('txtUploadFile').value ; if ( sFile.length == 0 ) { alert( 'Please select a file to upload' ) ; return false ; } if ( ( FCKConfig.ImageUploadAllowedExtensions.length > 0 && !oUploadAllowedExtRegex.test( sFile ) ) || ( FCKConfig.ImageUploadDeniedExtensions.length > 0 && oUploadDeniedExtRegex.test( sFile ) ) ) { OnUploadCompleted( 202 ) ; return false ; } return true ; }FCKeditor/editor/dialog/fck_image/fck_image_preview.html0000644000102600010270000000550111234071252022635 0ustar imarkimark Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris. FCKeditor/editor/dialog/fck_checkbox.html0000644000102600010270000000613611234071200017671 0ustar imarkimark Checkbox Properties
Name
Value
FCKeditor/editor/dialog/fck_textfield.html0000644000102600010270000000762211234071224020102 0ustar imarkimark
Name
Value
Character Width
Maximum Characters
Type
 
FCKeditor/editor/dialog/fck_template/0000755000102600010270000000000011240261352017030 5ustar imarkimarkFCKeditor/editor/dialog/fck_template/images/0000755000102600010270000000000011240261352020275 5ustar imarkimarkFCKeditor/editor/dialog/fck_template/images/template1.gif0000644000102600010270000000056711234071301022664 0ustar imarkimarkGIF89adF!,dF ޼Hbʪh r-Γz j~" (̦4ʁj&)ɮR?d\ ի4nwS8285PGhS(xaA&JөAgꃚ*f{k*;k,ڊ멻;J<-] *Jf݌ 3, r̨}-~I/9RowLgmmcP „E2 a}+ZL'Q!H@"r㌐"񸳈ƒ7A$2MbʝVI̛B-jRA:t(TZ5;FCKeditor/editor/dialog/fck_template/images/template2.gif0000644000102600010270000000051511234071302022657 0ustar imarkimarkGIF89adF!,dF ޼Hbʪh r-Γz j~"hLƐ JJALW{ ܃=c#9gHhpY'vՖH7 3JzTx:gJ JgJz+[d ;j%;l$l+}]R ]J4Nr}Α>4 /ގI_nn?]N 2 NÈ j C7#HڕTw\JrZ| 3̙ ;FCKeditor/editor/dialog/fck_template/images/template3.gif0000644000102600010270000000064611234071303022666 0ustar imarkimarkGIF89adF!,dF ޼Hbʪh r-Γz j~"hLƐ JԪ0ܮ> l׸ gtm 2Th08rxrפ!xy99#Gg aJ"j9z*)BKk :++{zXL4]M-mL>N ^-MmNQzm^ܞM] FCKeditor
FCKeditor/editor/lang/0000755000102600010270000000000011240261352014054 5ustar imarkimarkFCKeditor/editor/lang/en-au.js0000644000102600010270000004105111234071573015427 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * English (Australia) language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Collapse Toolbar", ToolbarExpand : "Expand Toolbar", // Toolbar Items and Context Menu Save : "Save", NewPage : "New Page", Preview : "Preview", Cut : "Cut", Copy : "Copy", Paste : "Paste", PasteText : "Paste as plain text", PasteWord : "Paste from Word", Print : "Print", SelectAll : "Select All", RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", InsertLine : "Insert Horizontal Line", InsertSpecialCharLbl: "Special Character", InsertSpecialChar : "Insert Special Character", InsertSmileyLbl : "Smiley", InsertSmiley : "Insert Smiley", About : "About FCKeditor", Bold : "Bold", Italic : "Italic", Underline : "Underline", StrikeThrough : "Strike Through", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Left Justify", CenterJustify : "Centre Justify", RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", NumberedList : "Insert/Remove Numbered List", BulletedListLbl : "Bulleted List", BulletedList : "Insert/Remove Bulleted List", ShowTableBorders : "Show Table Borders", ShowDetails : "Show Details", Style : "Style", FontFormat : "Format", Font : "Font", FontSize : "Size", TextColor : "Text Colour", BGColor : "Background Colour", Source : "Source", Find : "Find", Replace : "Replace", SpellCheck : "Check Spelling", UniversalKeyboard : "Universal Keyboard", PageBreakLbl : "Page Break", PageBreak : "Insert Page Break", Form : "Form", Checkbox : "Checkbox", RadioButton : "Radio Button", TextField : "Text Field", Textarea : "Textarea", HiddenField : "Hidden Field", Button : "Button", SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", InsertRow : "Insert Row", DeleteRows : "Delete Rows", InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", FlashProperties : "Flash Properties", 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;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", Done : "Done", PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", UnknownToolbarItem : "Unknown toolbar item \"%1\"", UnknownCommand : "Unknown command name \"%1\"", NotImplemented : "Command not implemented", UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancel", DlgBtnClose : "Close", DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Language Direction", DlgGenLangDirLtr : "Left to Right (LTR)", DlgGenLangDirRtl : "Right to Left (RTL)", DlgGenLangCode : "Language Code", DlgGenAccessKey : "Access Key", DlgGenName : "Name", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Long Description URL", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Image Properties", DlgImgInfoTab : "Image Info", DlgImgBtnUpload : "Send it to the Server", DlgImgURL : "URL", DlgImgUpload : "Upload", DlgImgAlt : "Alternative Text", DlgImgWidth : "Width", DlgImgHeight : "Height", DlgImgLockRatio : "Lock Ratio", DlgBtnResetSize : "Reset Size", DlgImgBorder : "Border", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Align", DlgImgAlignLeft : "Left", DlgImgAlignAbsBottom: "Abs Bottom", DlgImgAlignAbsMiddle: "Abs Middle", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Bottom", DlgImgAlignMiddle : "Middle", DlgImgAlignRight : "Right", DlgImgAlignTextTop : "Text Top", DlgImgAlignTop : "Top", DlgImgPreview : "Preview", 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", DlgLnkTargetTab : "Target", DlgLnkType : "Link Type", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Link to anchor in the text", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Send it to the Server", DlgLnkTarget : "Target", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "New Window (_blank)", DlgLnkTargetParent : "Parent Window (_parent)", DlgLnkTargetSelf : "Same Window (_self)", DlgLnkTargetTop : "Topmost Window (_top)", DlgLnkTargetFrameName : "Target Frame Name", DlgLnkPopWinName : "Popup Window Name", DlgLnkPopWinFeat : "Popup Window Features", DlgLnkPopResize : "Resizable", DlgLnkPopLocation : "Location Bar", DlgLnkPopMenu : "Menu Bar", DlgLnkPopScroll : "Scroll Bars", DlgLnkPopStatus : "Status Bar", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Full Screen (IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "Width", DlgLnkPopHeight : "Height", DlgLnkPopLeft : "Left Position", DlgLnkPopTop : "Top Position", DlnLnkMsgNoUrl : "Please type the link URL", DlnLnkMsgNoEMail : "Please type the e-mail address", DlnLnkMsgNoAnchor : "Please select an anchor", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", // Color Dialog DlgColorTitle : "Select Colour", DlgColorBtnClear : "Clear", DlgColorHighlight : "Highlight", DlgColorSelected : "Selected", // Smiley Dialog DlgSmileyTitle : "Insert a Smiley", // Special Character Dialog DlgSpecialCharTitle : "Select Special Character", // Table Dialog DlgTableTitle : "Table Properties", DlgTableRows : "Rows", DlgTableColumns : "Columns", DlgTableBorder : "Border size", DlgTableAlign : "Alignment", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Left", DlgTableAlignCenter : "Centre", DlgTableAlignRight : "Right", DlgTableWidth : "Width", DlgTableWidthPx : "pixels", DlgTableWidthPc : "percent", DlgTableHeight : "Height", DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", // Table Cell Dialog DlgCellTitle : "Cell Properties", DlgCellWidth : "Width", DlgCellWidthPx : "pixels", DlgCellWidthPc : "percent", DlgCellHeight : "Height", DlgCellWordWrap : "Word Wrap", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Yes", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Horizontal Alignment", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Left", DlgCellHorAlignCenter : "Centre", DlgCellHorAlignRight: "Right", DlgCellVerAlign : "Vertical Alignment", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Colour", DlgCellBorderColor : "Border Colour", DlgCellBtnSelect : "Select...", // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", DlgFindNotFoundMsg : "The specified text was not found.", // Replace Dialog DlgReplaceTitle : "Replace", DlgReplaceFindLbl : "Find what:", DlgReplaceReplaceLbl : "Replace with:", DlgReplaceCaseChk : "Match case", DlgReplaceReplaceBtn : "Replace", DlgReplaceReplAllBtn : "Replace All", DlgReplaceWordChk : "Match whole word", // Paste Operations / Dialog PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "More Colours...", // Document Properties DocProps : "Document Properties", // Anchor Dialog DlgAnchorTitle : "Anchor Properties", DlgAnchorName : "Anchor Name", DlgAnchorErrorName : "Please type the anchor name", // Speller Pages Dialog 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?", // Button Dialog DlgButtonText : "Text (Value)", DlgButtonType : "Type", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", DlgCheckboxValue : "Value", DlgCheckboxSelected : "Selected", // Form Dialog DlgFormName : "Name", DlgFormAction : "Action", DlgFormMethod : "Method", // Select Field Dialog 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", DlgTextareaCols : "Columns", DlgTextareaRows : "Rows", // Text Field Dialog DlgTextName : "Name", DlgTextValue : "Value", DlgTextCharWidth : "Character Width", DlgTextMaxChars : "Maximum Characters", DlgTextType : "Type", DlgTextTypeText : "Text", DlgTextTypePass : "Password", // Hidden Field Dialog DlgHiddenName : "Name", DlgHiddenValue : "Value", // Bulleted List Dialog BulletedListProp : "Bulleted List Properties", NumberedListProp : "Numbered List Properties", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Circle", DlgLstTypeDisc : "Disc", 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", DlgDocBackTab : "Background", DlgDocColorsTab : "Colours and Margins", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Page Title", DlgDocLangDir : "Language Direction", DlgDocLangDirLTR : "Left to Right (LTR)", DlgDocLangDirRTL : "Right to Left (RTL)", DlgDocLangCode : "Language Code", DlgDocCharSet : "Character Set Encoding", DlgDocCharSetCE : "Central European", DlgDocCharSetCT : "Chinese Traditional (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Greek", DlgDocCharSetJP : "Japanese", DlgDocCharSetKR : "Korean", DlgDocCharSetTR : "Turkish", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "Other Character Set Encoding", DlgDocDocType : "Document Type Heading", DlgDocDocTypeOther : "Other Document Type Heading", DlgDocIncXHTML : "Include XHTML Declarations", DlgDocBgColor : "Background Colour", 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", 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)", DlgTemplatesReplace : "Replace actual contents", // About Dialog DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", DlgAboutInfo : "For further information go to" };FCKeditor/editor/lang/en-ca.js0000644000102600010270000004105011234071574015405 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * English (Canadian) language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Collapse Toolbar", ToolbarExpand : "Expand Toolbar", // Toolbar Items and Context Menu Save : "Save", NewPage : "New Page", Preview : "Preview", Cut : "Cut", Copy : "Copy", Paste : "Paste", PasteText : "Paste as plain text", PasteWord : "Paste from Word", Print : "Print", SelectAll : "Select All", RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", InsertLine : "Insert Horizontal Line", InsertSpecialCharLbl: "Special Character", InsertSpecialChar : "Insert Special Character", InsertSmileyLbl : "Smiley", InsertSmiley : "Insert Smiley", About : "About FCKeditor", Bold : "Bold", Italic : "Italic", Underline : "Underline", StrikeThrough : "Strike Through", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Left Justify", CenterJustify : "Centre Justify", RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", NumberedList : "Insert/Remove Numbered List", BulletedListLbl : "Bulleted List", BulletedList : "Insert/Remove Bulleted List", ShowTableBorders : "Show Table Borders", ShowDetails : "Show Details", Style : "Style", FontFormat : "Format", Font : "Font", FontSize : "Size", TextColor : "Text Colour", BGColor : "Background Colour", Source : "Source", Find : "Find", Replace : "Replace", SpellCheck : "Check Spelling", UniversalKeyboard : "Universal Keyboard", PageBreakLbl : "Page Break", PageBreak : "Insert Page Break", Form : "Form", Checkbox : "Checkbox", RadioButton : "Radio Button", TextField : "Text Field", Textarea : "Textarea", HiddenField : "Hidden Field", Button : "Button", SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", InsertRow : "Insert Row", DeleteRows : "Delete Rows", InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", FlashProperties : "Flash Properties", 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;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", Done : "Done", PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", UnknownToolbarItem : "Unknown toolbar item \"%1\"", UnknownCommand : "Unknown command name \"%1\"", NotImplemented : "Command not implemented", UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancel", DlgBtnClose : "Close", DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Language Direction", DlgGenLangDirLtr : "Left to Right (LTR)", DlgGenLangDirRtl : "Right to Left (RTL)", DlgGenLangCode : "Language Code", DlgGenAccessKey : "Access Key", DlgGenName : "Name", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Long Description URL", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Image Properties", DlgImgInfoTab : "Image Info", DlgImgBtnUpload : "Send it to the Server", DlgImgURL : "URL", DlgImgUpload : "Upload", DlgImgAlt : "Alternative Text", DlgImgWidth : "Width", DlgImgHeight : "Height", DlgImgLockRatio : "Lock Ratio", DlgBtnResetSize : "Reset Size", DlgImgBorder : "Border", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Align", DlgImgAlignLeft : "Left", DlgImgAlignAbsBottom: "Abs Bottom", DlgImgAlignAbsMiddle: "Abs Middle", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Bottom", DlgImgAlignMiddle : "Middle", DlgImgAlignRight : "Right", DlgImgAlignTextTop : "Text Top", DlgImgAlignTop : "Top", DlgImgPreview : "Preview", 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", DlgLnkTargetTab : "Target", DlgLnkType : "Link Type", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Link to anchor in the text", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Send it to the Server", DlgLnkTarget : "Target", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "New Window (_blank)", DlgLnkTargetParent : "Parent Window (_parent)", DlgLnkTargetSelf : "Same Window (_self)", DlgLnkTargetTop : "Topmost Window (_top)", DlgLnkTargetFrameName : "Target Frame Name", DlgLnkPopWinName : "Popup Window Name", DlgLnkPopWinFeat : "Popup Window Features", DlgLnkPopResize : "Resizable", DlgLnkPopLocation : "Location Bar", DlgLnkPopMenu : "Menu Bar", DlgLnkPopScroll : "Scroll Bars", DlgLnkPopStatus : "Status Bar", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Full Screen (IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "Width", DlgLnkPopHeight : "Height", DlgLnkPopLeft : "Left Position", DlgLnkPopTop : "Top Position", DlnLnkMsgNoUrl : "Please type the link URL", DlnLnkMsgNoEMail : "Please type the e-mail address", DlnLnkMsgNoAnchor : "Please select an anchor", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", // Color Dialog DlgColorTitle : "Select Colour", DlgColorBtnClear : "Clear", DlgColorHighlight : "Highlight", DlgColorSelected : "Selected", // Smiley Dialog DlgSmileyTitle : "Insert a Smiley", // Special Character Dialog DlgSpecialCharTitle : "Select Special Character", // Table Dialog DlgTableTitle : "Table Properties", DlgTableRows : "Rows", DlgTableColumns : "Columns", DlgTableBorder : "Border size", DlgTableAlign : "Alignment", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Left", DlgTableAlignCenter : "Centre", DlgTableAlignRight : "Right", DlgTableWidth : "Width", DlgTableWidthPx : "pixels", DlgTableWidthPc : "percent", DlgTableHeight : "Height", DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", // Table Cell Dialog DlgCellTitle : "Cell Properties", DlgCellWidth : "Width", DlgCellWidthPx : "pixels", DlgCellWidthPc : "percent", DlgCellHeight : "Height", DlgCellWordWrap : "Word Wrap", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Yes", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Horizontal Alignment", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Left", DlgCellHorAlignCenter : "Centre", DlgCellHorAlignRight: "Right", DlgCellVerAlign : "Vertical Alignment", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Colour", DlgCellBorderColor : "Border Colour", DlgCellBtnSelect : "Select...", // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", DlgFindNotFoundMsg : "The specified text was not found.", // Replace Dialog DlgReplaceTitle : "Replace", DlgReplaceFindLbl : "Find what:", DlgReplaceReplaceLbl : "Replace with:", DlgReplaceCaseChk : "Match case", DlgReplaceReplaceBtn : "Replace", DlgReplaceReplAllBtn : "Replace All", DlgReplaceWordChk : "Match whole word", // Paste Operations / Dialog PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "More Colours...", // Document Properties DocProps : "Document Properties", // Anchor Dialog DlgAnchorTitle : "Anchor Properties", DlgAnchorName : "Anchor Name", DlgAnchorErrorName : "Please type the anchor name", // Speller Pages Dialog 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?", // Button Dialog DlgButtonText : "Text (Value)", DlgButtonType : "Type", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", DlgCheckboxValue : "Value", DlgCheckboxSelected : "Selected", // Form Dialog DlgFormName : "Name", DlgFormAction : "Action", DlgFormMethod : "Method", // Select Field Dialog 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", DlgTextareaCols : "Columns", DlgTextareaRows : "Rows", // Text Field Dialog DlgTextName : "Name", DlgTextValue : "Value", DlgTextCharWidth : "Character Width", DlgTextMaxChars : "Maximum Characters", DlgTextType : "Type", DlgTextTypeText : "Text", DlgTextTypePass : "Password", // Hidden Field Dialog DlgHiddenName : "Name", DlgHiddenValue : "Value", // Bulleted List Dialog BulletedListProp : "Bulleted List Properties", NumberedListProp : "Numbered List Properties", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Circle", DlgLstTypeDisc : "Disc", 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", DlgDocBackTab : "Background", DlgDocColorsTab : "Colours and Margins", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Page Title", DlgDocLangDir : "Language Direction", DlgDocLangDirLTR : "Left to Right (LTR)", DlgDocLangDirRTL : "Right to Left (RTL)", DlgDocLangCode : "Language Code", DlgDocCharSet : "Character Set Encoding", DlgDocCharSetCE : "Central European", DlgDocCharSetCT : "Chinese Traditional (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Greek", DlgDocCharSetJP : "Japanese", DlgDocCharSetKR : "Korean", DlgDocCharSetTR : "Turkish", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "Other Character Set Encoding", DlgDocDocType : "Document Type Heading", DlgDocDocTypeOther : "Other Document Type Heading", DlgDocIncXHTML : "Include XHTML Declarations", DlgDocBgColor : "Background Colour", 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", 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)", DlgTemplatesReplace : "Replace actual contents", // About Dialog DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", DlgAboutInfo : "For further information go to" };FCKeditor/editor/lang/_getfontformat.html0000644000102600010270000000516311234071654017774 0ustar imarkimark

FontFormats Localization

IE has some limits when handling the "Font Format". It actually uses localized strings to retrieve the current format value. This makes it very difficult to make a system that works on every single computer in the world.

With FCKeditor, this problem impacts in the "Format" toolbar command that doesn't reflects the format of the current cursor position.

There is only one way to make it work. We must localize FCKeditor using the strings used by IE. In this way, we will have the expected behavior at least when using FCKeditor in the same language as the browser. So, when localizing FCKeditor, go to a computer with IE in the target language, open this page and use the following string to the "FontFormats" value:

FontFormats : "",

 

 
 

 

 

 

 

 
 
FCKeditor/editor/lang/af.js0000644000102600010270000004212711234071557015017 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Afrikaans language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Vou Gereedskaps balk toe", ToolbarExpand : "Vou Gereedskaps balk oop", // Toolbar Items and Context Menu Save : "Bewaar", NewPage : "Nuwe Bladsy", Preview : "Voorskou", Cut : "Uitsny ", Copy : "Kopieer", Paste : "Byvoeg", PasteText : "Slegs inhoud byvoeg", PasteWord : "Van Word af byvoeg", Print : "Druk", SelectAll : "Selekteer alles", RemoveFormat : "Formaat verweider", InsertLinkLbl : "Skakel", InsertLink : "Skakel byvoeg/verander", RemoveLink : "Skakel verweider", Anchor : "Plekhouer byvoeg/verander", InsertImageLbl : "Beeld", InsertImage : "Beeld byvoeg/verander", InsertFlashLbl : "Flash", InsertFlash : "Flash byvoeg/verander", InsertTableLbl : "Tabel", InsertTable : "Tabel byvoeg/verander", InsertLineLbl : "Lyn", InsertLine : "Horisontale lyn byvoeg", InsertSpecialCharLbl: "Spesiaale karakter", InsertSpecialChar : "Spesiaale Karakter byvoeg", InsertSmileyLbl : "Smiley", InsertSmiley : "Smiley byvoeg", About : "Meer oor FCKeditor", Bold : "Vet", Italic : "Skuins", Underline : "Onderstreep", StrikeThrough : "Gestreik", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Links rig", CenterJustify : "Rig Middel", RightJustify : "Regs rig", BlockJustify : "Blok paradeer", DecreaseIndent : "Paradeering verkort", IncreaseIndent : "Paradeering verleng", Undo : "Ont-skep", Redo : "Her-skep", NumberedListLbl : "Genommerde lys", NumberedList : "Genommerde lys byvoeg/verweider", BulletedListLbl : "Gepunkte lys", BulletedList : "Gepunkte lys byvoeg/verweider", ShowTableBorders : "Wys tabel kante", ShowDetails : "Wys informasie", Style : "Styl", FontFormat : "Karakter formaat", Font : "Karakters", FontSize : "Karakter grote", TextColor : "Karakter kleur", BGColor : "Agtergrond kleur", Source : "Source", Find : "Vind", Replace : "Vervang", SpellCheck : "Spelling nagaan", UniversalKeyboard : "Universeele Sleutelbord", PageBreakLbl : "Bladsy breek", PageBreak : "Bladsy breek byvoeg", Form : "Form", Checkbox : "HakBox", RadioButton : "PuntBox", TextField : "Byvoegbare karakter strook", Textarea : "Byvoegbare karakter area", HiddenField : "Blinde strook", Button : "Knop", SelectionField : "Opklapbare keuse strook", ImageButton : "Beeld knop", FitWindow : "Maksimaliseer venster grote", // Context Menu EditLink : "Verander skakel", CellCM : "Cell", RowCM : "Ry", ColumnCM : "Kolom", InsertRow : "Ry byvoeg", DeleteRows : "Ry verweider", InsertColumn : "Kolom byvoeg", DeleteColumns : "Kolom verweider", InsertCell : "Cell byvoeg", DeleteCells : "Cell verweider", MergeCells : "Cell verenig", SplitCell : "Cell verdeel", TableDelete : "Tabel verweider", CellProperties : "Cell eienskappe", TableProperties : "Tabel eienskappe", ImageProperties : "Beeld eienskappe", FlashProperties : "Flash eienskappe", AnchorProp : "Plekhouer eienskappe", ButtonProp : "Knop eienskappe", CheckboxProp : "HakBox eienskappe", HiddenFieldProp : "Blinde strook eienskappe", RadioButtonProp : "PuntBox eienskappe", ImageButtonProp : "Beeld knop eienskappe", TextFieldProp : "Karakter strook eienskappe", SelectionFieldProp : "Opklapbare keuse strook eienskappe", TextareaProp : "Karakter area eienskappe", FormProp : "Form eienskappe", FontFormats : "Normaal;Geformateerd;Adres;Opskrif 1;Opskrif 2;Opskrif 3;Opskrif 4;Opskrif 5;Opskrif 6;Normaal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML word verarbeit. U geduld asseblief...", Done : "Kompleet", PasteWordConfirm : "Die informasie wat U probeer byvoeg is warskynlik van Word. Wil U dit reinig voor die byvoeging?", NotCompatiblePaste : "Die instruksie is beskikbaar vir Internet Explorer weergawe 5.5 of hor. Wil U dir byvoeg sonder reiniging?", UnknownToolbarItem : "Unbekende gereedskaps balk item \"%1\"", UnknownCommand : "Unbekende instruksie naam \"%1\"", NotImplemented : "Instruksie is nie geimplementeer nie.", UnknownToolbarSet : "Gereedskaps balk \"%1\" bestaan nie", NoActiveX : "U browser sekuriteit instellings kan die funksies van die editor behinder. U moet die opsie \"Run ActiveX controls and plug-ins\" aktiveer. U ondervinding mag problematies geskiet of sekere funksionaliteit mag verhinder word.", BrowseServerBlocked : "Die vorraad venster word geblok! Verseker asseblief dat U die \"popup blocker\" instelling verander.", DialogBlocked : "Die dialoog venster vir verdere informasie word geblok. De-aktiveer asseblief die \"popup blocker\" instellings wat dit behinder.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Kanseleer", DlgBtnClose : "Sluit", DlgBtnBrowseServer : "Server deurblaai", DlgAdvancedTag : "Ingewikkeld", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Voeg asseblief die URL in", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Taal rigting", DlgGenLangDirLtr : "Links na regs (LTR)", DlgGenLangDirRtl : "Regs na links (RTL)", DlgGenLangCode : "Taal kode", DlgGenAccessKey : "Toegang sleutel", DlgGenName : "Naam", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Lang beskreiwing URL", DlgGenClass : "Skakel Tiepe", DlgGenTitle : "Voorbeveelings Titel", DlgGenContType : "Voorbeveelings inhoud soort", DlgGenLinkCharset : "Geskakelde voorbeeld karakterstel", DlgGenStyle : "Styl", // Image Dialog DlgImgTitle : "Beeld eienskappe", DlgImgInfoTab : "Beeld informasie", DlgImgBtnUpload : "Stuur dit na die Server", DlgImgURL : "URL", DlgImgUpload : "Uplaai", DlgImgAlt : "Alternatiewe beskrywing", DlgImgWidth : "Weidte", DlgImgHeight : "Hoogde", DlgImgLockRatio : "Behou preporsie", DlgBtnResetSize : "Herstel groote", DlgImgBorder : "Kant", DlgImgHSpace : "HSpasie", DlgImgVSpace : "VSpasie", DlgImgAlign : "Paradeer", DlgImgAlignLeft : "Links", DlgImgAlignAbsBottom: "Abs Onder", DlgImgAlignAbsMiddle: "Abs Middel", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Onder", DlgImgAlignMiddle : "Middel", DlgImgAlignRight : "Regs", DlgImgAlignTextTop : "Text Bo", DlgImgAlignTop : "Bo", DlgImgPreview : "Voorskou", DlgImgAlertUrl : "Voeg asseblief Beeld URL in.", DlgImgLinkTab : "Skakel", // Flash Dialog DlgFlashTitle : "Flash eienskappe", DlgFlashChkPlay : "Automaties Speel", DlgFlashChkLoop : "Herhaling", DlgFlashChkMenu : "Laat Flash Menu toe", DlgFlashScale : "Scale", DlgFlashScaleAll : "Wys alles", DlgFlashScaleNoBorder : "Geen kante", DlgFlashScaleFit : "Presiese pas", // Link Dialog DlgLnkWindowTitle : "Skakel", DlgLnkInfoTab : "Skakel informasie", DlgLnkTargetTab : "Mikpunt", DlgLnkType : "Skakel soort", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Skakel na plekhouers in text", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Kies 'n plekhouer", DlgLnkAnchorByName : "Volgens plekhouer naam", DlgLnkAnchorById : "Volgens element Id", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Adres", DlgLnkEMailSubject : "Boodskap Opskrif", DlgLnkEMailBody : "Boodskap Inhoud", DlgLnkUpload : "Oplaai", DlgLnkBtnUpload : "Stuur na Server", DlgLnkTarget : "Mikpunt", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nuwe Venster (_blank)", DlgLnkTargetParent : "Vorige Venster (_parent)", DlgLnkTargetSelf : "Selfde Venster (_self)", DlgLnkTargetTop : "Boonste Venster (_top)", DlgLnkTargetFrameName : "Mikpunt Venster Naam", DlgLnkPopWinName : "Popup Venster Naam", DlgLnkPopWinFeat : "Popup Venster Geaartheid", DlgLnkPopResize : "Verstelbare Groote", DlgLnkPopLocation : "Adres Balk", DlgLnkPopMenu : "Menu Balk", DlgLnkPopScroll : "Gleibalkstuk", DlgLnkPopStatus : "Status Balk", DlgLnkPopToolbar : "Gereedskap Balk", DlgLnkPopFullScrn : "Voll Skerm (IE)", DlgLnkPopDependent : "Afhanklik (Netscape)", DlgLnkPopWidth : "Weite", DlgLnkPopHeight : "Hoogde", DlgLnkPopLeft : "Links Posisie", DlgLnkPopTop : "Bo Posisie", DlnLnkMsgNoUrl : "Voeg asseblief die URL in", DlnLnkMsgNoEMail : "Voeg asseblief die e-mail adres in", DlnLnkMsgNoAnchor : "Kies asseblief 'n plekhouer", DlnLnkMsgInvPopName : "Die popup naam moet begin met alphabetiese karakters sonder spasies.", // Color Dialog DlgColorTitle : "Kies Kleur", DlgColorBtnClear : "Maak skoon", DlgColorHighlight : "Highlight", DlgColorSelected : "Geselekteer", // Smiley Dialog DlgSmileyTitle : "Voeg Smiley by", // Special Character Dialog DlgSpecialCharTitle : "Kies spesiale karakter", // Table Dialog DlgTableTitle : "Tabel eienskappe", DlgTableRows : "Reie", DlgTableColumns : "Kolome", DlgTableBorder : "Kant groote", DlgTableAlign : "Parideering", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Links", DlgTableAlignCenter : "Middel", DlgTableAlignRight : "Regs", DlgTableWidth : "Weite", DlgTableWidthPx : "pixels", DlgTableWidthPc : "percent", DlgTableHeight : "Hoogde", DlgTableCellSpace : "Cell spasieering", DlgTableCellPad : "Cell buffer", DlgTableCaption : "Beskreiwing", DlgTableSummary : "Opsomming", // Table Cell Dialog DlgCellTitle : "Cell eienskappe", DlgCellWidth : "Weite", DlgCellWidthPx : "pixels", DlgCellWidthPc : "percent", DlgCellHeight : "Hoogde", DlgCellWordWrap : "Woord Wrap", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nee", DlgCellHorAlign : "Horisontale rigting", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Links", DlgCellHorAlignCenter : "Middel", DlgCellHorAlignRight: "Regs", DlgCellVerAlign : "Vertikale rigting", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Bo", DlgCellVerAlignMiddle : "Middel", DlgCellVerAlignBottom : "Onder", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rei strekking", DlgCellCollSpan : "Kolom strekking", DlgCellBackColor : "Agtergrond Kleur", DlgCellBorderColor : "Kant Kleur", DlgCellBtnSelect : "Keuse...", // Find Dialog DlgFindTitle : "Vind", DlgFindFindBtn : "Vind", DlgFindNotFoundMsg : "Die gespesifiseerde karakters word nie gevind nie.", // Replace Dialog DlgReplaceTitle : "Vervang", DlgReplaceFindLbl : "Soek wat:", DlgReplaceReplaceLbl : "Vervang met:", DlgReplaceCaseChk : "Vergelyk karakter skryfweise", DlgReplaceReplaceBtn : "Vervang", DlgReplaceReplAllBtn : "Vervang alles", DlgReplaceWordChk : "Vergelyk komplete woord", // Paste Operations / Dialog PasteErrorCut : "U browser se sekuriteit instelling behinder die uitsny aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+X).", PasteErrorCopy : "U browser se sekuriteit instelling behinder die kopieerings aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+C).", PasteAsText : "Voeg slegs karakters by", PasteFromWord : "Byvoeging uit Word", DlgPasteMsg2 : "Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(Ctrl+V) en druk OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoreer karakter soort defenisies", DlgPasteRemoveStyles : "Verweider Styl defenisies", DlgPasteCleanBox : "Maak Box Skoon", // Color Picker ColorAutomatic : "Automaties", ColorMoreColors : "Meer Kleure...", // Document Properties DocProps : "Dokument Eienskappe", // Anchor Dialog DlgAnchorTitle : "Plekhouer Eienskappe", DlgAnchorName : "Plekhouer Naam", DlgAnchorErrorName : "Voltooi die plekhouer naam asseblief", // Speller Pages Dialog DlgSpellNotInDic : "Nie in woordeboek nie", DlgSpellChangeTo : "Verander na", DlgSpellBtnIgnore : "Ignoreer", DlgSpellBtnIgnoreAll : "Ignoreer na-volgende", DlgSpellBtnReplace : "Vervang", DlgSpellBtnReplaceAll : "vervang na-volgende", DlgSpellBtnUndo : "Ont-skep", DlgSpellNoSuggestions : "- Geen voorstel -", DlgSpellProgress : "Spelling word beproef...", DlgSpellNoMispell : "Spellproef kompleet: Geen foute", DlgSpellNoChanges : "Spellproef kompleet: Geen woord veranderings", DlgSpellOneChange : "Spellproef kompleet: Een woord verander", DlgSpellManyChanges : "Spellproef kompleet: %1 woorde verander", IeSpellDownload : "Geen Spellproefer geinstaleer nie. Wil U dit aflaai?", // Button Dialog DlgButtonText : "Karakters (Waarde)", DlgButtonType : "Soort", DlgButtonTypeBtn : "Knop", DlgButtonTypeSbm : "Indien", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Naam", DlgCheckboxValue : "Waarde", DlgCheckboxSelected : "Uitgekies", // Form Dialog DlgFormName : "Naam", DlgFormAction : "Aksie", DlgFormMethod : "Metode", // Select Field Dialog DlgSelectName : "Naam", DlgSelectValue : "Waarde", DlgSelectSize : "Grote", DlgSelectLines : "lyne", DlgSelectChkMulti : "Laat meerere keuses toe", DlgSelectOpAvail : "Beskikbare Opsies", DlgSelectOpText : "Karakters", DlgSelectOpValue : "Waarde", DlgSelectBtnAdd : "Byvoeg", DlgSelectBtnModify : "Verander", DlgSelectBtnUp : "Op", DlgSelectBtnDown : "Af", DlgSelectBtnSetValue : "Stel as uitgekiesde waarde", DlgSelectBtnDelete : "Verweider", // Textarea Dialog DlgTextareaName : "Naam", DlgTextareaCols : "Kolom", DlgTextareaRows : "Reie", // Text Field Dialog DlgTextName : "Naam", DlgTextValue : "Waarde", DlgTextCharWidth : "Karakter weite", DlgTextMaxChars : "Maximale karakters", DlgTextType : "Soort", DlgTextTypeText : "Karakters", DlgTextTypePass : "Wagwoord", // Hidden Field Dialog DlgHiddenName : "Naam", DlgHiddenValue : "Waarde", // Bulleted List Dialog BulletedListProp : "Gepunkte lys eienskappe", NumberedListProp : "Genommerde lys eienskappe", DlgLstStart : "Begin", DlgLstType : "Soort", DlgLstTypeCircle : "Sirkel", DlgLstTypeDisc : "Skyf", DlgLstTypeSquare : "Vierkant", DlgLstTypeNumbers : "Nommer (1, 2, 3)", DlgLstTypeLCase : "Klein Letters (a, b, c)", DlgLstTypeUCase : "Hoof Letters (A, B, C)", DlgLstTypeSRoman : "Klein Romeinse nommers (i, ii, iii)", DlgLstTypeLRoman : "Groot Romeinse nommers (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Algemeen", DlgDocBackTab : "Agtergrond", DlgDocColorsTab : "Kleure en Rante", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Bladsy Opskrif", DlgDocLangDir : "Taal rigting", DlgDocLangDirLTR : "Link na Regs (LTR)", DlgDocLangDirRTL : "Regs na Links (RTL)", DlgDocLangCode : "Taal Kode", DlgDocCharSet : "Karakterstel Kodeering", DlgDocCharSetCE : "Sentraal Europa", DlgDocCharSetCT : "Chinees Traditioneel (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Grieks", DlgDocCharSetJP : "Japanees", DlgDocCharSetKR : "Koreans", DlgDocCharSetTR : "Turks", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "Ander Karakterstel Kodeering", DlgDocDocType : "Dokument Opskrif Soort", DlgDocDocTypeOther : "Ander Dokument Opskrif Soort", DlgDocIncXHTML : "Voeg XHTML verklaring by", DlgDocBgColor : "Agtergrond kleur", DlgDocBgImage : "Agtergrond Beeld URL", DlgDocBgNoScroll : "Vasgeklemde Agtergrond", DlgDocCText : "Karakters", DlgDocCLink : "Skakel", DlgDocCVisited : "Besoekte Skakel", DlgDocCActive : "Aktiewe Skakel", DlgDocMargins : "Bladsy Rante", DlgDocMaTop : "Bo", DlgDocMaLeft : "Links", DlgDocMaRight : "Regs", DlgDocMaBottom : "Onder", DlgDocMeIndex : "Dokument Index Sleutelwoorde(comma verdeelt)", DlgDocMeDescr : "Dokument Beskrywing", DlgDocMeAuthor : "Skrywer", DlgDocMeCopy : "Kopiereg", DlgDocPreview : "Voorskou", // Templates Dialog Templates : "Templates", DlgTemplatesTitle : "Inhoud Templates", DlgTemplatesSelMsg : "Kies die template om te gebruik in die editor
(Inhoud word vervang!):", DlgTemplatesLoading : "Templates word gelaai. U geduld asseblief...", DlgTemplatesNoTpl : "(Geen templates gedefinieerd)", DlgTemplatesReplace : "Vervang bestaande inhoud", // About Dialog DlgAboutAboutTab : "Meer oor", DlgAboutBrowserInfoTab : "Blaai Informasie deur", DlgAboutLicenseTab : "Lesensie", DlgAboutVersion : "weergawe", DlgAboutInfo : "Vir meer informasie gaan na " };FCKeditor/editor/lang/vi.js0000644000102600010270000004615311234071651015045 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Vietnamese language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Thu gọn Thanh công cụ", ToolbarExpand : "Mở rộng Thanh công cụ", // Toolbar Items and Context Menu Save : "Lưu", NewPage : "Trang mới", Preview : "Xem trước", Cut : "Cắt", Copy : "Sao chép", Paste : "Dán", PasteText : "Dán theo dạng văn bản thuần", PasteWord : "Dán với định dạng Word", Print : "In", SelectAll : "Chọn Tất cả", RemoveFormat : "Xoá Định dạng", InsertLinkLbl : "Liên kết", InsertLink : "Chèn/Sửa Liên kết", RemoveLink : "Xoá Liên kết", Anchor : "Chèn/Sửa Neo", InsertImageLbl : "Hình ảnh", InsertImage : "Chèn/Sửa Hình ảnh", InsertFlashLbl : "Flash", InsertFlash : "Chèn/Sửa Flash", InsertTableLbl : "Bảng", InsertTable : "Chèn/Sửa Bảng", InsertLineLbl : "Đường phân cách ngang", InsertLine : "Chèn Đường phân cách ngang", InsertSpecialCharLbl: "Ký tự đặc biệt", InsertSpecialChar : "Chèn Ký tự đặc biệt", InsertSmileyLbl : "Hình biểu lộ cảm xúc (mặt cười)", InsertSmiley : "Chèn Hình biểu lộ cảm xúc (mặt cười)", About : "Giới thiệu về FCKeditor", Bold : "Đậm", Italic : "Nghiêng", Underline : "Gạch chân", StrikeThrough : "Gạch xuyên ngang", Subscript : "Chỉ số dưới", Superscript : "Chỉ số trên", LeftJustify : "Canh trái", CenterJustify : "Canh giữa", RightJustify : "Canh phải", BlockJustify : "Canh đều", DecreaseIndent : "Dịch ra ngoài", IncreaseIndent : "Dịch vào trong", Undo : "Khôi phục thao tác", Redo : "Làm lại thao tác", NumberedListLbl : "Danh sách có thứ tự", NumberedList : "Chèn/Xoá Danh sách có thứ tự", BulletedListLbl : "Danh sách không thứ tự", BulletedList : "Chèn/Xoá Danh sách không thứ tự", ShowTableBorders : "Hiển thị Đường viền bảng", ShowDetails : "Hiển thị Chi tiết", Style : "Mẫu", FontFormat : "Định dạng", Font : "Phông", FontSize : "Cỡ chữ", TextColor : "Màu chữ", BGColor : "Màu nền", Source : "Mã HTML", Find : "Tìm kiếm", Replace : "Thay thế", SpellCheck : "Kiểm tra Chính tả", UniversalKeyboard : "Bàn phím Quốc tế", PageBreakLbl : "Ngắt trang", PageBreak : "Chèn Ngắt trang", Form : "Biểu mẫu", Checkbox : "Nút kiểm", RadioButton : "Nút chọn", TextField : "Trường văn bản", Textarea : "Vùng văn bản", HiddenField : "Trường ẩn", Button : "Nút", SelectionField : "Ô chọn", ImageButton : "Nút hình ảnh", FitWindow : "Mở rộng tối đa kích thước trình biên tập", // Context Menu EditLink : "Sửa Liên kết", CellCM : "Ô", RowCM : "Hàng", ColumnCM : "Cột", InsertRow : "Chèn Hàng", DeleteRows : "Xoá Hàng", InsertColumn : "Chèn Cột", DeleteColumns : "Xoá Cột", InsertCell : "Chèn Ô", DeleteCells : "Xoá Ô", MergeCells : "Trộn Ô", SplitCell : "Chia Ô", TableDelete : "Xóa Bảng", CellProperties : "Thuộc tính Ô", TableProperties : "Thuộc tính Bảng", ImageProperties : "Thuộc tính Hình ảnh", FlashProperties : "Thuộc tính Flash", AnchorProp : "Thuộc tính Neo", ButtonProp : "Thuộc tính Nút", CheckboxProp : "Thuộc tính Nút kiểm", HiddenFieldProp : "Thuộc tính Trường ẩn", RadioButtonProp : "Thuộc tính Nút chọn", ImageButtonProp : "Thuộc tính Nút hình ảnh", TextFieldProp : "Thuộc tính Trường văn bản", SelectionFieldProp : "Thuộc tính Ô chọn", TextareaProp : "Thuộc tính Vùng văn bản", FormProp : "Thuộc tính Biểu mẫu", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Đang xử lý XHTML. Vui lòng đợi trong giây lát...", Done : "Đã hoàn thành", PasteWordConfirm : "Văn bản bạn muốn dán có kèm định dạng của Word. Bạn có muốn loại bỏ định dạng Word trước khi dán?", NotCompatiblePaste : "Lệnh này chỉ được hỗ trợ từ trình duyệt Internet Explorer phiên bản 5.5 hoặc mới hơn. Bạn có muốn dán nguyên mẫu?", UnknownToolbarItem : "Không rõ mục trên thanh công cụ \"%1\"", UnknownCommand : "Không rõ lệnh \"%1\"", NotImplemented : "Lệnh không được thực hiện", UnknownToolbarSet : "Thanh công cụ \"%1\" không tồn tại", NoActiveX : "Các thiết lập bảo mật của trình duyệt có thể giới hạn một số chức năng của trình biên tập. Bạn phải bật tùy chọn \"Run ActiveX controls and plug-ins\". Bạn có thể gặp một số lỗi và thấy thiếu đi một số chức năng.", BrowseServerBlocked : "Không thể mở được bộ duyệt tài nguyên. Hãy đảm bảo chức năng chặn popup đã bị vô hiệu hóa.", DialogBlocked : "Không thể mở được cửa sổ hộp thoại. Hãy đảm bảo chức năng chặn popup đã bị vô hiệu hóa.", // Dialogs DlgBtnOK : "Đồng ý", DlgBtnCancel : "Bỏ qua", DlgBtnClose : "Đóng", DlgBtnBrowseServer : "Duyệt trên máy chủ", DlgAdvancedTag : "Mở rộng", DlgOpOther : "", DlgInfoTab : "Thông tin", DlgAlertUrl : "Hãy nhập vào một URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Định danh", DlgGenLangDir : "Đường dẫn Ngôn ngữ", DlgGenLangDirLtr : "Trái sang Phải (LTR)", DlgGenLangDirRtl : "Phải sang Trái (RTL)", DlgGenLangCode : "Mã Ngôn ngữ", DlgGenAccessKey : "Phím Hỗ trợ truy cập", DlgGenName : "Tên", DlgGenTabIndex : "Chỉ số của Tab", DlgGenLongDescr : "Mô tả URL", DlgGenClass : "Lớp Stylesheet", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Bảng mã của tài nguyên được liên kết đến", DlgGenStyle : "Mẫu", // Image Dialog DlgImgTitle : "Thuộc tính Hình ảnh", DlgImgInfoTab : "Thông tin Hình ảnh", DlgImgBtnUpload : "Tải lên Máy chủ", DlgImgURL : "URL", DlgImgUpload : "Tải lên", DlgImgAlt : "Chú thích Hình ảnh", DlgImgWidth : "Rộng", DlgImgHeight : "Cao", DlgImgLockRatio : "Giữ tỷ lệ", DlgBtnResetSize : "Kích thước gốc", DlgImgBorder : "Đường viền", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Vị trí", DlgImgAlignLeft : "Trái", DlgImgAlignAbsBottom: "Dưới tuyệt đối", DlgImgAlignAbsMiddle: "Giữa tuyệt đối", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Dưới", DlgImgAlignMiddle : "Giữa", DlgImgAlignRight : "Phải", DlgImgAlignTextTop : "Phía trên chữ", DlgImgAlignTop : "Trên", DlgImgPreview : "Xem trước", DlgImgAlertUrl : "Hãy đưa vào URL của hình ảnh", DlgImgLinkTab : "Liên kết", // Flash Dialog DlgFlashTitle : "Thuộc tính Flash", DlgFlashChkPlay : "Tự động chạy", DlgFlashChkLoop : "Lặp", DlgFlashChkMenu : "Cho phép bật Menu của Flash", DlgFlashScale : "Tỷ lệ", DlgFlashScaleAll : "Hiển thị tất cả", DlgFlashScaleNoBorder : "Không đường viền", DlgFlashScaleFit : "Vừa vặn", // Link Dialog DlgLnkWindowTitle : "Liên kết", DlgLnkInfoTab : "Thông tin Liên kết", DlgLnkTargetTab : "Đích", DlgLnkType : "Kiểu Liên kết", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Neo trong trang này", DlgLnkTypeEMail : "Thư điện tử", DlgLnkProto : "Giao thức", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Chọn một Neo", DlgLnkAnchorByName : "Theo Tên Neo", DlgLnkAnchorById : "Theo Định danh Element", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Thư điện tử", DlgLnkEMailSubject : "Tiêu đề Thông điệp", DlgLnkEMailBody : "Nội dung Thông điệp", DlgLnkUpload : "Tải lên", DlgLnkBtnUpload : "Tải lên Máy chủ", DlgLnkTarget : "Đích", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Cửa sổ mới (_blank)", DlgLnkTargetParent : "Cửa sổ cha (_parent)", DlgLnkTargetSelf : "Cùng cửa sổ (_self)", DlgLnkTargetTop : "Cửa sổ trên cùng(_top)", DlgLnkTargetFrameName : "Tên Khung đích", DlgLnkPopWinName : "Tên Cửa sổ Popup", DlgLnkPopWinFeat : "Đặc điểm của Cửa sổ Popup", DlgLnkPopResize : "Kích thước thay đổi", DlgLnkPopLocation : "Thanh vị trí", DlgLnkPopMenu : "Thanh Menu", DlgLnkPopScroll : "Thanh cuộn", DlgLnkPopStatus : "Thanh trạng thái", DlgLnkPopToolbar : "Thanh công cụ", DlgLnkPopFullScrn : "Toàn màn hình (IE)", DlgLnkPopDependent : "Phụ thuộc (Netscape)", DlgLnkPopWidth : "Rộng", DlgLnkPopHeight : "Cao", DlgLnkPopLeft : "Vị trí Trái", DlgLnkPopTop : "Vị trí Trên", DlnLnkMsgNoUrl : "Hãy đưa vào Liên kết URL", DlnLnkMsgNoEMail : "Hãy đưa vào địa chỉ thư điện tử", DlnLnkMsgNoAnchor : "Hãy chọn một Neo", DlnLnkMsgInvPopName : "Tên của cửa sổ Popup phải bắt đầu bằng một ký tự và không được chứa khoảng trắng", // Color Dialog DlgColorTitle : "Chọn màu", DlgColorBtnClear : "Xoá", DlgColorHighlight : "Tô sáng", DlgColorSelected : "Đã chọn", // Smiley Dialog DlgSmileyTitle : "Chèn Hình biểu lộ cảm xúc (mặt cười)", // Special Character Dialog DlgSpecialCharTitle : "Hãy chọn Ký tự đặc biệt", // Table Dialog DlgTableTitle : "Thuộc tính bảng", DlgTableRows : "Hàng", DlgTableColumns : "Cột", DlgTableBorder : "Cỡ Đường viền", DlgTableAlign : "Canh lề", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Trái", DlgTableAlignCenter : "Giữa", DlgTableAlignRight : "Phải", DlgTableWidth : "Rộng", DlgTableWidthPx : "điểm (px)", DlgTableWidthPc : "%", DlgTableHeight : "Cao", DlgTableCellSpace : "Khoảng cách Ô", DlgTableCellPad : "Đệm Ô", DlgTableCaption : "Đầu đề", DlgTableSummary : "Tóm lược", // Table Cell Dialog DlgCellTitle : "Thuộc tính Ô", DlgCellWidth : "Rộng", DlgCellWidthPx : "điểm (px)", DlgCellWidthPc : "%", DlgCellHeight : "Cao", DlgCellWordWrap : "Bọc từ", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Đồng ý", DlgCellWordWrapNo : "Không", DlgCellHorAlign : "Canh theo Chiều ngang", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Trái", DlgCellHorAlignCenter : "Giữa", DlgCellHorAlignRight: "Phải", DlgCellVerAlign : "Canh theo Chiều dọc", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Trên", DlgCellVerAlignMiddle : "Giữa", DlgCellVerAlignBottom : "Dưới", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Nối Hàng", DlgCellCollSpan : "Nối Cột", DlgCellBackColor : "Màu nền", DlgCellBorderColor : "Màu viền", DlgCellBtnSelect : "Chọn...", // Find Dialog DlgFindTitle : "Tìm kiếm", DlgFindFindBtn : "Tìm kiếm", DlgFindNotFoundMsg : "Không tìm thấy chuỗi cần tìm.", // Replace Dialog DlgReplaceTitle : "Thay thế", DlgReplaceFindLbl : "Tìm chuỗi:", DlgReplaceReplaceLbl : "Thay bằng:", DlgReplaceCaseChk : "Phân biệt chữ hoa/thường", DlgReplaceReplaceBtn : "Thay thế", DlgReplaceReplAllBtn : "Thay thế Tất cả", DlgReplaceWordChk : "Đúng toàn bộ từ", // Paste Operations / Dialog PasteErrorCut : "Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh cắt. Hãy sử dụng bàn phím cho lệnh này (Ctrl+X).", PasteErrorCopy : "Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh sao chép. Hãy sử dụng bàn phím cho lệnh này (Ctrl+C).", PasteAsText : "Dán theo định dạng văn bản thuần", PasteFromWord : "Dán với định dạng Word", DlgPasteMsg2 : "Hãy dán nội dung vào trong khung bên dưới, sử dụng tổ hợp phím (Ctrl+V) và nhấn vào nút Đồng ý.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Chấp nhận các định dạng phông", DlgPasteRemoveStyles : "Gỡ bỏ các định dạng Styles", DlgPasteCleanBox : "Xóa nội dung", // Color Picker ColorAutomatic : "Tự động", ColorMoreColors : "Màu khác...", // Document Properties DocProps : "Thuộc tính Tài liệu", // Anchor Dialog DlgAnchorTitle : "Thuộc tính Neo", DlgAnchorName : "Tên của Neo", DlgAnchorErrorName : "Hãy đưa vào tên của Neo", // Speller Pages Dialog DlgSpellNotInDic : "Không có trong từ điển", DlgSpellChangeTo : "Chuyển thành", DlgSpellBtnIgnore : "Bỏ qua", DlgSpellBtnIgnoreAll : "Bỏ qua Tất cả", DlgSpellBtnReplace : "Thay thế", DlgSpellBtnReplaceAll : "Thay thế Tất cả", DlgSpellBtnUndo : "Phục hồi lại", DlgSpellNoSuggestions : "- Không đưa ra gợi ý về từ -", DlgSpellProgress : "Đang tiến hành kiểm tra chính tả...", DlgSpellNoMispell : "Hoàn tất kiểm tra chính tả: Không có lỗi chính tả", DlgSpellNoChanges : "Hoàn tất kiểm tra chính tả: Không có từ nào được thay đổi", DlgSpellOneChange : "Hoàn tất kiểm tra chính tả: Một từ đã được thay đổi", DlgSpellManyChanges : "Hoàn tất kiểm tra chính tả: %1 từ đã được thay đổi", IeSpellDownload : "Chức năng kiểm tra chính tả chưa được cài đặt. Bạn có muốn tải về ngay bây giờ?", // Button Dialog DlgButtonText : "Chuỗi hiển thị (Giá trị)", DlgButtonType : "Kiểu", DlgButtonTypeBtn : "Nút Bấm", DlgButtonTypeSbm : "Nút Gửi", DlgButtonTypeRst : "Nút Nhập lại", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Tên", DlgCheckboxValue : "Giá trị", DlgCheckboxSelected : "Được chọn", // Form Dialog DlgFormName : "Tên", DlgFormAction : "Hành động", DlgFormMethod : "Phương thức", // Select Field Dialog DlgSelectName : "Tên", DlgSelectValue : "Giá trị", DlgSelectSize : "Kích cỡ", DlgSelectLines : "dòng", DlgSelectChkMulti : "Cho phép chọn nhiều", DlgSelectOpAvail : "Các tùy chọn có thể sử dụng", DlgSelectOpText : "Văn bản", DlgSelectOpValue : "Giá trị", DlgSelectBtnAdd : "Thêm", DlgSelectBtnModify : "Thay đổi", DlgSelectBtnUp : "Lên", DlgSelectBtnDown : "Xuống", DlgSelectBtnSetValue : "Giá trị được chọn", DlgSelectBtnDelete : "Xoá", // Textarea Dialog DlgTextareaName : "Tên", DlgTextareaCols : "Cột", DlgTextareaRows : "Hàng", // Text Field Dialog DlgTextName : "Tên", DlgTextValue : "Giá trị", DlgTextCharWidth : "Rộng", DlgTextMaxChars : "Số Ký tự tối đa", DlgTextType : "Kiểu", DlgTextTypeText : "Ký tự", DlgTextTypePass : "Mật khẩu", // Hidden Field Dialog DlgHiddenName : "Tên", DlgHiddenValue : "Giá trị", // Bulleted List Dialog BulletedListProp : "Thuộc tính Danh sách không thứ tự", NumberedListProp : "Thuộc tính Danh sách có thứ tự", DlgLstStart : "Bắt đầu", DlgLstType : "Kiểu", DlgLstTypeCircle : "Hình tròn", DlgLstTypeDisc : "Hình đĩa", DlgLstTypeSquare : "Hình vuông", DlgLstTypeNumbers : "Số thứ tự (1, 2, 3)", DlgLstTypeLCase : "Chữ cái thường (a, b, c)", DlgLstTypeUCase : "Chữ cái hoa (A, B, C)", DlgLstTypeSRoman : "Số La Mã thường (i, ii, iii)", DlgLstTypeLRoman : "Số La Mã hoa (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Toàn thể", DlgDocBackTab : "Nền", DlgDocColorsTab : "Màu sắc và Đường biên", DlgDocMetaTab : "Siêu dữ liệu", DlgDocPageTitle : "Tiêu đề Trang", DlgDocLangDir : "Đường dẫn Ngôn ngữ", DlgDocLangDirLTR : "Trái sang Phải (LTR)", DlgDocLangDirRTL : "Phải sang Trái (RTL)", DlgDocLangCode : "Mã Ngôn ngữ", DlgDocCharSet : "Bảng mã ký tự", DlgDocCharSetCE : "Trung Âu", DlgDocCharSetCT : "Tiếng Trung Quốc (Big5)", DlgDocCharSetCR : "Tiếng Kirin", DlgDocCharSetGR : "Tiếng Hy Lạp", DlgDocCharSetJP : "Tiếng Nhật", DlgDocCharSetKR : "Tiếng Hàn", DlgDocCharSetTR : "Tiếng Thổ Nhĩ Kỳ", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Tây Âu", DlgDocCharSetOther : "Bảng mã ký tự khác", DlgDocDocType : "Kiểu Đề mục Tài liệu", DlgDocDocTypeOther : "Kiểu Đề mục Tài liệu khác", DlgDocIncXHTML : "Bao gồm cả định nghĩa XHTML", DlgDocBgColor : "Màu nền", DlgDocBgImage : "URL của Hình ảnh nền", DlgDocBgNoScroll : "Không cuộn nền", DlgDocCText : "Văn bản", DlgDocCLink : "Liên kết", DlgDocCVisited : "Liên kết Đã ghé thăm", DlgDocCActive : "Liên kết Hiện hành", DlgDocMargins : "Đường biên của Trang", DlgDocMaTop : "Trên", DlgDocMaLeft : "Trái", DlgDocMaRight : "Phải", DlgDocMaBottom : "Dưới", DlgDocMeIndex : "Các từ khóa chỉ mục tài liệu (phân cách bởi dấu phẩy)", DlgDocMeDescr : "Mô tả tài liệu", DlgDocMeAuthor : "Tác giả", DlgDocMeCopy : "Bản quyền", DlgDocPreview : "Xem trước", // Templates Dialog Templates : "Mẫu dựng sẵn", DlgTemplatesTitle : "Nội dung Mẫu dựng sẵn", DlgTemplatesSelMsg : "Hãy chọn Mẫu dựng sẵn để mở trong trình biên tập
(nội dung hiện tại sẽ bị mất):", DlgTemplatesLoading : "Đang nạp Danh sách Mẫu dựng sẵn. Vui lòng đợi trong giây lát...", DlgTemplatesNoTpl : "(Không có Mẫu dựng sẵn nào được định nghĩa)", DlgTemplatesReplace : "Thay thế nội dung hiện tại", // About Dialog DlgAboutAboutTab : "Giới thiệu", DlgAboutBrowserInfoTab : "Thông tin trình duyệt", DlgAboutLicenseTab : "Giấy phép", DlgAboutVersion : "phiên bản", DlgAboutInfo : "Để biết thêm thông tin, hãy truy cập" };FCKeditor/editor/lang/eo.js0000644000102600010270000004305711234071577015041 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Esperanto language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Kaŝi Ilobreton", ToolbarExpand : "Vidigi Ilojn", // Toolbar Items and Context Menu Save : "Sekurigi", NewPage : "Nova Paĝo", Preview : "Vidigi Aspekton", Cut : "Eltondi", Copy : "Kopii", Paste : "Interglui", PasteText : "Interglui kiel Tekston", PasteWord : "Interglui el Word", Print : "Presi", SelectAll : "Elekti ĉion", RemoveFormat : "Forigi Formaton", InsertLinkLbl : "Ligilo", InsertLink : "Enmeti/Ŝanĝi Ligilon", RemoveLink : "Forigi Ligilon", 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", InsertLine : "Enmeti Horizonta Linio", InsertSpecialCharLbl: "Speciala Signo", InsertSpecialChar : "Enmeti Specialan Signon", InsertSmileyLbl : "Mienvinjeto", InsertSmiley : "Enmeti Mienvinjeton", About : "Pri FCKeditor", Bold : "Grasa", Italic : "Kursiva", Underline : "Substreko", StrikeThrough : "Trastreko", Subscript : "Subskribo", Superscript : "Superskribo", LeftJustify : "Maldekstrigi", CenterJustify : "Centrigi", RightJustify : "Dekstrigi", BlockJustify : "Ĝisrandigi Ambaŭflanke", DecreaseIndent : "Malpligrandigi Krommarĝenon", IncreaseIndent : "Pligrandigi Krommarĝenon", Undo : "Malfari", Redo : "Refari", NumberedListLbl : "Numera Listo", NumberedList : "Enmeti/Forigi Numeran Liston", BulletedListLbl : "Bula Listo", BulletedList : "Enmeti/Forigi Bulan Liston", ShowTableBorders : "Vidigi Borderojn de Tabelo", ShowDetails : "Vidigi Detalojn", Style : "Stilo", FontFormat : "Formato", Font : "Tiparo", FontSize : "Grando", TextColor : "Teksta Koloro", BGColor : "Fona Koloro", Source : "Fonto", Find : "Serĉi", Replace : "Anstataŭigi", SpellCheck : "Literumada Kontrolilo", UniversalKeyboard : "Universala Klavaro", PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //MISSING Form : "Formularo", Checkbox : "Markobutono", RadioButton : "Radiobutono", TextField : "Teksta kampo", Textarea : "Teksta Areo", HiddenField : "Kaŝita Kampo", Button : "Butono", SelectionField : "Elekta Kampo", ImageButton : "Bildbutono", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Modifier Ligilon", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Enmeti Linion", DeleteRows : "Forigi Liniojn", InsertColumn : "Enmeti Kolumnon", DeleteColumns : "Forigi Kolumnojn", InsertCell : "Enmeti Ĉelon", DeleteCells : "Forigi Ĉelojn", MergeCells : "Kunfandi Ĉelojn", SplitCell : "Dividi Ĉelojn", TableDelete : "Delete Table", //MISSING CellProperties : "Atributoj de Ĉelo", TableProperties : "Atributoj de Tabelo", ImageProperties : "Atributoj de Bildo", FlashProperties : "Flash Properties", //MISSING AnchorProp : "Ankraj Atributoj", ButtonProp : "Butonaj Atributoj", CheckboxProp : "Markobutonaj Atributoj", HiddenFieldProp : "Atributoj de Kaŝita Kampo", RadioButtonProp : "Radiobutonaj Atributoj", ImageButtonProp : "Bildbutonaj Atributoj", TextFieldProp : "Atributoj de Teksta Kampo", SelectionFieldProp : "Atributoj de Elekta Kampo", TextareaProp : "Atributoj de Teksta Areo", FormProp : "Formularaj Atributoj", FontFormats : "Normala;Formatita;Adreso;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Traktado de XHTML. Bonvolu pacienci...", Done : "Finita", PasteWordConfirm : "La algluota teksto ŝajnas esti Word-devena. Ĉu vi volas purigi ĝin antaŭ ol interglui?", NotCompatiblePaste : "Tiu ĉi komando bezonas almenaŭ Internet Explorer 5.5. Ĉu vi volas daŭrigi sen purigado?", UnknownToolbarItem : "Ilobretero nekonata \"%1\"", UnknownCommand : "Komandonomo nekonata \"%1\"", NotImplemented : "Komando ne ankoraŭ realigita", UnknownToolbarSet : "La ilobreto \"%1\" ne ekzistas", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "Akcepti", DlgBtnCancel : "Rezigni", DlgBtnClose : "Fermi", DlgBtnBrowseServer : "Foliumi en la Servilo", DlgAdvancedTag : "Speciala", DlgOpOther : "", DlgInfoTab : "Info", //MISSING DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Skribdirekto", DlgGenLangDirLtr : "De maldekstro dekstren (LTR)", DlgGenLangDirRtl : "De dekstro maldekstren (RTL)", DlgGenLangCode : "Lingva Kodo", DlgGenAccessKey : "Fulmoklavo", DlgGenName : "Nomo", DlgGenTabIndex : "Taba Ordo", DlgGenLongDescr : "URL de Longa Priskribo", DlgGenClass : "Klasoj de Stilfolioj", DlgGenTitle : "Indika Titolo", DlgGenContType : "Indika Enhavotipo", DlgGenLinkCharset : "Signaro de la Ligita Rimedo", DlgGenStyle : "Stilo", // Image Dialog DlgImgTitle : "Atributoj de Bildo", DlgImgInfoTab : "Informoj pri Bildo", DlgImgBtnUpload : "Sendu al Servilo", DlgImgURL : "URL", DlgImgUpload : "Alŝuti", DlgImgAlt : "Anstataŭiga Teksto", DlgImgWidth : "Larĝo", DlgImgHeight : "Alto", DlgImgLockRatio : "Konservi Proporcion", DlgBtnResetSize : "Origina Grando", DlgImgBorder : "Bordero", DlgImgHSpace : "HSpaco", DlgImgVSpace : "VSpaco", DlgImgAlign : "Ĝisrandigo", DlgImgAlignLeft : "Maldekstre", DlgImgAlignAbsBottom: "Abs Malsupre", DlgImgAlignAbsMiddle: "Abs Centre", DlgImgAlignBaseline : "Je Malsupro de Teksto", DlgImgAlignBottom : "Malsupre", DlgImgAlignMiddle : "Centre", DlgImgAlignRight : "Dekstre", DlgImgAlignTextTop : "Je Supro de Teksto", DlgImgAlignTop : "Supre", DlgImgPreview : "Vidigi Aspekton", 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", DlgLnkTargetTab : "Celo", DlgLnkType : "Tipo de Ligilo", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Ankri en tiu ĉi paĝo", DlgLnkTypeEMail : "Retpoŝto", DlgLnkProto : "Protokolo", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Elekti Ankron", DlgLnkAnchorByName : "Per Ankronomo", DlgLnkAnchorById : "Per Elementidentigilo", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Retadreso", DlgLnkEMailSubject : "Temlinio", DlgLnkEMailBody : "Mesaĝa korpo", DlgLnkUpload : "Alŝuti", DlgLnkBtnUpload : "Sendi al Servilo", DlgLnkTarget : "Celo", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "<ŝprucfenestro>", DlgLnkTargetBlank : "Nova Fenestro (_blank)", DlgLnkTargetParent : "Gepatra Fenestro (_parent)", DlgLnkTargetSelf : "Sama Fenestro (_self)", DlgLnkTargetTop : "Plej Supra Fenestro (_top)", DlgLnkTargetFrameName : "Nomo de Kadro", DlgLnkPopWinName : "Nomo de Ŝprucfenestro", DlgLnkPopWinFeat : "Atributoj de la Ŝprucfenestro", DlgLnkPopResize : "Grando Ŝanĝebla", DlgLnkPopLocation : "Adresobreto", DlgLnkPopMenu : "Menubreto", DlgLnkPopScroll : "Rulumlisteloj", DlgLnkPopStatus : "Statobreto", DlgLnkPopToolbar : "Ilobreto", DlgLnkPopFullScrn : "Tutekrane (IE)", DlgLnkPopDependent : "Dependa (Netscape)", DlgLnkPopWidth : "Larĝo", DlgLnkPopHeight : "Alto", DlgLnkPopLeft : "Pozicio de Maldekstro", DlgLnkPopTop : "Pozicio de Supro", DlnLnkMsgNoUrl : "Bonvolu entajpi la URL-on", DlnLnkMsgNoEMail : "Bonvolu entajpi la retadreson", DlnLnkMsgNoAnchor : "Bonvolu elekti ankron", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Elekti", DlgColorBtnClear : "Forigi", DlgColorHighlight : "Emfazi", DlgColorSelected : "Elektita", // Smiley Dialog DlgSmileyTitle : "Enmeti Mienvinjeton", // Special Character Dialog DlgSpecialCharTitle : "Enmeti Specialan Signon", // Table Dialog DlgTableTitle : "Atributoj de Tabelo", DlgTableRows : "Linioj", DlgTableColumns : "Kolumnoj", DlgTableBorder : "Bordero", DlgTableAlign : "Ĝisrandigo", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Maldekstre", DlgTableAlignCenter : "Centre", DlgTableAlignRight : "Dekstre", DlgTableWidth : "Larĝo", DlgTableWidthPx : "Bitbilderoj", DlgTableWidthPc : "elcentoj", DlgTableHeight : "Alto", DlgTableCellSpace : "Interspacigo de Ĉeloj", DlgTableCellPad : "Ĉirkaŭenhava Plenigado", DlgTableCaption : "Titolo", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Atributoj de Celo", DlgCellWidth : "Larĝo", DlgCellWidthPx : "bitbilderoj", DlgCellWidthPc : "elcentoj", DlgCellHeight : "Alto", DlgCellWordWrap : "Linifaldo", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Jes", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Horizonta Ĝisrandigo", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Maldekstre", DlgCellHorAlignCenter : "Centre", DlgCellHorAlignRight: "Dekstre", DlgCellVerAlign : "Vertikala Ĝisrandigo", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Supre", DlgCellVerAlignMiddle : "Centre", DlgCellVerAlignBottom : "Malsupre", DlgCellVerAlignBaseline : "Je Malsupro de Teksto", DlgCellRowSpan : "Linioj Kunfanditaj", DlgCellCollSpan : "Kolumnoj Kunfanditaj", DlgCellBackColor : "Fono", DlgCellBorderColor : "Bordero", DlgCellBtnSelect : "Elekti...", // Find Dialog DlgFindTitle : "Serĉi", DlgFindFindBtn : "Serĉi", DlgFindNotFoundMsg : "La celteksto ne estas trovita.", // Replace Dialog DlgReplaceTitle : "Anstataŭigi", DlgReplaceFindLbl : "Serĉi:", DlgReplaceReplaceLbl : "Anstataŭigi per:", DlgReplaceCaseChk : "Kongruigi Usklecon", DlgReplaceReplaceBtn : "Anstataŭigi", DlgReplaceReplAllBtn : "Anstataŭigi Ĉiun", DlgReplaceWordChk : "Tuta Vorto", // Paste Operations / Dialog PasteErrorCut : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-X).", PasteErrorCopy : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-C).", PasteAsText : "Interglui kiel Tekston", PasteFromWord : "Interglui el Word", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING 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...", // Document Properties DocProps : "Dokumentaj Atributoj", // Anchor Dialog DlgAnchorTitle : "Ankraj Atributoj", DlgAnchorName : "Ankra Nomo", DlgAnchorErrorName : "Bv tajpi la ankran nomon", // Speller Pages Dialog DlgSpellNotInDic : "Ne trovita en la vortaro", DlgSpellChangeTo : "Ŝanĝi al", DlgSpellBtnIgnore : "Malatenti", DlgSpellBtnIgnoreAll : "Malatenti Ĉiun", DlgSpellBtnReplace : "Anstataŭigi", DlgSpellBtnReplaceAll : "Anstataŭigi Ĉiun", DlgSpellBtnUndo : "Malfari", DlgSpellNoSuggestions : "- Neniu propono -", DlgSpellProgress : "Literumkontrolado daŭras...", DlgSpellNoMispell : "Literumkontrolado finita: neniu fuŝo trovita", DlgSpellNoChanges : "Literumkontrolado finita: neniu vorto ŝanĝita", DlgSpellOneChange : "Literumkontrolado finita: unu vorto ŝanĝita", DlgSpellManyChanges : "Literumkontrolado finita: %1 vortoj ŝanĝitaj", IeSpellDownload : "Literumada Kontrolilo ne instalita. Ĉu vi volas elŝuti ĝin nun?", // Button Dialog DlgButtonText : "Teksto (Valoro)", DlgButtonType : "Tipo", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nomo", DlgCheckboxValue : "Valoro", DlgCheckboxSelected : "Elektita", // Form Dialog DlgFormName : "Nomo", DlgFormAction : "Ago", DlgFormMethod : "Metodo", // Select Field Dialog DlgSelectName : "Nomo", DlgSelectValue : "Valoro", DlgSelectSize : "Grando", DlgSelectLines : "Linioj", DlgSelectChkMulti : "Permesi Plurajn Elektojn", DlgSelectOpAvail : "Elektoj Disponeblaj", DlgSelectOpText : "Teksto", DlgSelectOpValue : "Valoro", DlgSelectBtnAdd : "Aldoni", DlgSelectBtnModify : "Modifi", DlgSelectBtnUp : "Supren", DlgSelectBtnDown : "Malsupren", DlgSelectBtnSetValue : "Agordi kiel Elektitan Valoron", DlgSelectBtnDelete : "Forigi", // Textarea Dialog DlgTextareaName : "Nomo", DlgTextareaCols : "Kolumnoj", DlgTextareaRows : "Vicoj", // Text Field Dialog DlgTextName : "Nomo", DlgTextValue : "Valoro", DlgTextCharWidth : "Signolarĝo", DlgTextMaxChars : "Maksimuma Nombro da Signoj", DlgTextType : "Tipo", DlgTextTypeText : "Teksto", DlgTextTypePass : "Pasvorto", // Hidden Field Dialog DlgHiddenName : "Nomo", DlgHiddenValue : "Valoro", // Bulleted List Dialog BulletedListProp : "Atributoj de Bula Listo", NumberedListProp : "Atributoj de Numera Listo", DlgLstStart : "Start", //MISSING DlgLstType : "Tipo", DlgLstTypeCircle : "Cirklo", DlgLstTypeDisc : "Disc", //MISSING DlgLstTypeSquare : "Kvadrato", DlgLstTypeNumbers : "Ciferoj (1, 2, 3)", DlgLstTypeLCase : "Minusklaj Literoj (a, b, c)", DlgLstTypeUCase : "Majusklaj Literoj (A, B, C)", DlgLstTypeSRoman : "Malgrandaj Romanaj Ciferoj (i, ii, iii)", DlgLstTypeLRoman : "Grandaj Romanaj Ciferoj (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Ĝeneralaĵoj", DlgDocBackTab : "Fono", DlgDocColorsTab : "Koloroj kaj Marĝenoj", DlgDocMetaTab : "Metadatumoj", DlgDocPageTitle : "Paĝotitolo", DlgDocLangDir : "Skribdirekto de la Lingvo", DlgDocLangDirLTR : "De maldekstro dekstren (LTR)", DlgDocLangDirRTL : "De dekstro maldekstren (LTR)", DlgDocLangCode : "Lingvokodo", DlgDocCharSet : "Signara Kodo", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Alia Signara Kodo", DlgDocDocType : "Dokumenta Tipo", DlgDocDocTypeOther : "Alia Dokumenta Tipo", DlgDocIncXHTML : "Inkluzivi XHTML Deklaroj", DlgDocBgColor : "Fona Koloro", DlgDocBgImage : "URL de Fona Bildo", DlgDocBgNoScroll : "Neruluma Fono", DlgDocCText : "Teksto", DlgDocCLink : "Ligilo", DlgDocCVisited : "Vizitita Ligilo", DlgDocCActive : "Aktiva Ligilo", DlgDocMargins : "Paĝaj Marĝenoj", DlgDocMaTop : "Supra", DlgDocMaLeft : "Maldekstra", DlgDocMaRight : "Dekstra", DlgDocMaBottom : "Malsupra", DlgDocMeIndex : "Ŝlosilvortoj de la Dokumento (apartigita de komoj)", DlgDocMeDescr : "Dokumenta Priskribo", DlgDocMeAuthor : "Verkinto", DlgDocMeCopy : "Kopirajto", DlgDocPreview : "Aspekto", // 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 DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Pri", DlgAboutBrowserInfoTab : "Informoj pri TTT-legilo", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "versio", DlgAboutInfo : "Por pli da informoj, vizitu" };FCKeditor/editor/lang/ar.js0000644000102600010270000005144411234071560015027 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Arabic language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "rtl", ToolbarCollapse : "ضم شريط الأدوات", ToolbarExpand : "تمدد شريط الأدوات", // Toolbar Items and Context Menu Save : "حفظ", NewPage : "صفحة جديدة", Preview : "معاينة الصفحة", Cut : "قص", Copy : "نسخ", Paste : "لصق", PasteText : "لصق كنص بسيط", PasteWord : "لصق من وورد", Print : "طباعة", SelectAll : "تحديد الكل", RemoveFormat : "إزالة التنسيقات", InsertLinkLbl : "رابط", InsertLink : "إدراج/تحرير رابط", RemoveLink : "إزالة رابط", Anchor : "إدراج/تحرير إشارة مرجعية", InsertImageLbl : "صورة", InsertImage : "إدراج/تحرير صورة", InsertFlashLbl : "فلاش", InsertFlash : "إدراج/تحرير فيلم فلاش", InsertTableLbl : "جدول", InsertTable : "إدراج/تحرير جدول", InsertLineLbl : "خط فاصل", InsertLine : "إدراج خط فاصل", InsertSpecialCharLbl: "رموز", InsertSpecialChar : "إدراج رموز..ِ", InsertSmileyLbl : "ابتسامات", InsertSmiley : "إدراج ابتسامات", About : "حول FCKeditor", Bold : "غامق", Italic : "مائل", Underline : "تسطير", StrikeThrough : "يتوسطه خط", Subscript : "منخفض", Superscript : "مرتفع", LeftJustify : "محاذاة إلى اليسار", CenterJustify : "توسيط", RightJustify : "محاذاة إلى اليمين", BlockJustify : "ضبط", DecreaseIndent : "إنقاص المسافة البادئة", IncreaseIndent : "زيادة المسافة البادئة", Undo : "تراجع", Redo : "إعادة", NumberedListLbl : "تعداد رقمي", NumberedList : "إدراج/إلغاء تعداد رقمي", BulletedListLbl : "تعداد نقطي", BulletedList : "إدراج/إلغاء تعداد نقطي", ShowTableBorders : "معاينة حدود الجداول", ShowDetails : "معاينة التفاصيل", Style : "نمط", FontFormat : "تنسيق", Font : "خط", FontSize : "حجم الخط", TextColor : "لون النص", BGColor : "لون الخلفية", Source : "شفرة المصدر", Find : "بحث", Replace : "إستبدال", SpellCheck : "تدقيق إملائي", UniversalKeyboard : "لوحة المفاتيح العالمية", PageBreakLbl : "فصل الصفحة", PageBreak : "إدخال صفحة جديدة", Form : "نموذج", Checkbox : "خانة إختيار", RadioButton : "زر خيار", TextField : "مربع نص", Textarea : "ناحية نص", HiddenField : "إدراج حقل خفي", Button : "زر ضغط", SelectionField : "قائمة منسدلة", ImageButton : "زر صورة", FitWindow : "تكبير حجم المحرر", // Context Menu EditLink : "تحرير رابط", CellCM : "خلية", RowCM : "صف", ColumnCM : "عمود", InsertRow : "إدراج صف", DeleteRows : "حذف صفوف", InsertColumn : "إدراج عمود", DeleteColumns : "حذف أعمدة", InsertCell : "إدراج خلية", DeleteCells : "حذف خلايا", MergeCells : "دمج خلايا", SplitCell : "تقسيم خلية", TableDelete : "حذف الجدول", CellProperties : "خصائص الخلية", TableProperties : "خصائص الجدول", ImageProperties : "خصائص الصورة", FlashProperties : "خصائص فيلم الفلاش", AnchorProp : "خصائص الإشارة المرجعية", ButtonProp : "خصائص زر الضغط", CheckboxProp : "خصائص خانة الإختيار", HiddenFieldProp : "خصائص الحقل الخفي", RadioButtonProp : "خصائص زر الخيار", ImageButtonProp : "خصائص زر الصورة", TextFieldProp : "خصائص مربع النص", SelectionFieldProp : "خصائص القائمة المنسدلة", TextareaProp : "خصائص ناحية النص", FormProp : "خصائص النموذج", FontFormats : "عادي;منسّق;دوس;العنوان 1;العنوان 2;العنوان 3;العنوان 4;العنوان 5;العنوان 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "إنتظر قليلاً ريثما تتم معالَجة‏ XHTML. لن يستغرق طويلاً...", Done : "تم", PasteWordConfirm : "يبدو أن النص المراد لصقه منسوخ من برنامج وورد. هل تود تنظيفه قبل الشروع في عملية اللصق؟", NotCompatiblePaste : "هذه الميزة تحتاج لمتصفح من النوعInternet Explorer إصدار 5.5 فما فوق. هل تود اللصق دون تنظيف الكود؟", UnknownToolbarItem : "عنصر شريط أدوات غير معروف \"%1\"", UnknownCommand : "أمر غير معروف \"%1\"", NotImplemented : "لم يتم دعم هذا الأمر", UnknownToolbarSet : "لم أتمكن من العثور على طقم الأدوات \"%1\" ", NoActiveX : "لتأمين متصفحك يجب أن تحدد بعض مميزات المحرر. يتوجب عليك تمكين الخيار \"Run ActiveX controls and plug-ins\". قد تواجة أخطاء وتلاحظ مميزات مفقودة", BrowseServerBlocked : "لايمكن فتح مصدر المتصفح. فضلا يجب التأكد بأن جميع موانع النوافذ المنبثقة معطلة", DialogBlocked : "لايمكن فتح نافذة الحوار . فضلا تأكد من أن مانع النوافذ المنبثة معطل .", // Dialogs DlgBtnOK : "موافق", DlgBtnCancel : "إلغاء الأمر", DlgBtnClose : "إغلاق", DlgBtnBrowseServer : "تصفح الخادم", DlgAdvancedTag : "متقدم", DlgOpOther : "<أخرى>", DlgInfoTab : "معلومات", DlgAlertUrl : "الرجاء كتابة عنوان الإنترنت", // General Dialogs Labels DlgGenNotSet : "<بدون تحديد>", DlgGenId : "الرقم", DlgGenLangDir : "إتجاه النص", DlgGenLangDirLtr : "اليسار لليمين (LTR)", DlgGenLangDirRtl : "اليمين لليسار (RTL)", DlgGenLangCode : "رمز اللغة", DlgGenAccessKey : "مفاتيح الإختصار", DlgGenName : "الاسم", DlgGenTabIndex : "الترتيب", DlgGenLongDescr : "عنوان الوصف المفصّل", DlgGenClass : "فئات التنسيق", DlgGenTitle : "تلميح الشاشة", DlgGenContType : "نوع التلميح", DlgGenLinkCharset : "ترميز المادة المطلوبة", DlgGenStyle : "نمط", // Image Dialog DlgImgTitle : "خصائص الصورة", DlgImgInfoTab : "معلومات الصورة", DlgImgBtnUpload : "أرسلها للخادم", DlgImgURL : "موقع الصورة", DlgImgUpload : "رفع", DlgImgAlt : "الوصف", DlgImgWidth : "العرض", DlgImgHeight : "الإرتفاع", DlgImgLockRatio : "تناسق الحجم", DlgBtnResetSize : "إستعادة الحجم الأصلي", DlgImgBorder : "سمك الحدود", DlgImgHSpace : "تباعد أفقي", DlgImgVSpace : "تباعد عمودي", DlgImgAlign : "محاذاة", DlgImgAlignLeft : "يسار", DlgImgAlignAbsBottom: "أسفل النص", DlgImgAlignAbsMiddle: "وسط السطر", DlgImgAlignBaseline : "على السطر", DlgImgAlignBottom : "أسفل", DlgImgAlignMiddle : "وسط", DlgImgAlignRight : "يمين", DlgImgAlignTextTop : "أعلى النص", DlgImgAlignTop : "أعلى", DlgImgPreview : "معاينة", DlgImgAlertUrl : "فضلاً أكتب الموقع الذي توجد عليه هذه الصورة.", DlgImgLinkTab : "الرابط", // Flash Dialog DlgFlashTitle : "خصائص فيلم الفلاش", DlgFlashChkPlay : "تشغيل تلقائي", DlgFlashChkLoop : "تكرار", DlgFlashChkMenu : "تمكين قائمة فيلم الفلاش", DlgFlashScale : "الحجم", DlgFlashScaleAll : "إظهار الكل", DlgFlashScaleNoBorder : "بلا حدود", DlgFlashScaleFit : "ضبط تام", // Link Dialog DlgLnkWindowTitle : "إرتباط تشعبي", DlgLnkInfoTab : "معلومات الرابط", DlgLnkTargetTab : "الهدف", DlgLnkType : "نوع الربط", DlgLnkTypeURL : "العنوان", DlgLnkTypeAnchor : "مكان في هذا المستند", DlgLnkTypeEMail : "بريد إلكتروني", DlgLnkProto : "البروتوكول", DlgLnkProtoOther : "<أخرى>", DlgLnkURL : "الموقع", DlgLnkAnchorSel : "اختر علامة مرجعية", DlgLnkAnchorByName : "حسب اسم العلامة", DlgLnkAnchorById : "حسب تعريف العنصر", DlgLnkNoAnchors : "<لا يوجد علامات مرجعية في هذا المستند>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "عنوان بريد إلكتروني", DlgLnkEMailSubject : "موضوع الرسالة", DlgLnkEMailBody : "محتوى الرسالة", DlgLnkUpload : "رفع", DlgLnkBtnUpload : "أرسلها للخادم", DlgLnkTarget : "الهدف", DlgLnkTargetFrame : "<إطار>", DlgLnkTargetPopup : "<نافذة منبثقة>", DlgLnkTargetBlank : "إطار جديد (_blank)", DlgLnkTargetParent : "الإطار الأصل (_parent)", DlgLnkTargetSelf : "نفس الإطار (_self)", DlgLnkTargetTop : "صفحة كاملة (_top)", DlgLnkTargetFrameName : "اسم الإطار الهدف", DlgLnkPopWinName : "تسمية النافذة المنبثقة", DlgLnkPopWinFeat : "خصائص النافذة المنبثقة", DlgLnkPopResize : "قابلة للتحجيم", DlgLnkPopLocation : "شريط العنوان", DlgLnkPopMenu : "القوائم الرئيسية", DlgLnkPopScroll : "أشرطة التمرير", DlgLnkPopStatus : "شريط الحالة السفلي", DlgLnkPopToolbar : "شريط الأدوات", DlgLnkPopFullScrn : "ملئ الشاشة (IE)", DlgLnkPopDependent : "تابع (Netscape)", DlgLnkPopWidth : "العرض", DlgLnkPopHeight : "الإرتفاع", DlgLnkPopLeft : "التمركز لليسار", DlgLnkPopTop : "التمركز للأعلى", DlnLnkMsgNoUrl : "فضلاً أدخل عنوان الموقع الذي يشير إليه الرابط", DlnLnkMsgNoEMail : "فضلاً أدخل عنوان البريد الإلكتروني", DlnLnkMsgNoAnchor : "فضلاً حدد العلامة المرجعية المرغوبة", DlnLnkMsgInvPopName : "اسم النافذة المنبثقة يجب أن يبدأ بحرف أبجدي دون مسافات", // Color Dialog DlgColorTitle : "اختر لوناً", DlgColorBtnClear : "مسح", DlgColorHighlight : "تحديد", DlgColorSelected : "إختيار", // Smiley Dialog DlgSmileyTitle : "إدراج إبتسامات ", // Special Character Dialog DlgSpecialCharTitle : "إدراج رمز", // Table Dialog DlgTableTitle : "إدراج جدول", DlgTableRows : "صفوف", DlgTableColumns : "أعمدة", DlgTableBorder : "سمك الحدود", DlgTableAlign : "المحاذاة", DlgTableAlignNotSet : "<بدون تحديد>", DlgTableAlignLeft : "يسار", DlgTableAlignCenter : "وسط", DlgTableAlignRight : "يمين", DlgTableWidth : "العرض", DlgTableWidthPx : "بكسل", DlgTableWidthPc : "بالمئة", DlgTableHeight : "الإرتفاع", DlgTableCellSpace : "تباعد الخلايا", DlgTableCellPad : "المسافة البادئة", DlgTableCaption : "الوصف", DlgTableSummary : "الخلاصة", // Table Cell Dialog DlgCellTitle : "خصائص الخلية", DlgCellWidth : "العرض", DlgCellWidthPx : "بكسل", DlgCellWidthPc : "بالمئة", DlgCellHeight : "الإرتفاع", DlgCellWordWrap : "التفاف النص", DlgCellWordWrapNotSet : "<بدون تحديد>", DlgCellWordWrapYes : "نعم", DlgCellWordWrapNo : "لا", DlgCellHorAlign : "المحاذاة الأفقية", DlgCellHorAlignNotSet : "<بدون تحديد>", DlgCellHorAlignLeft : "يسار", DlgCellHorAlignCenter : "وسط", DlgCellHorAlignRight: "يمين", DlgCellVerAlign : "المحاذاة العمودية", DlgCellVerAlignNotSet : "<بدون تحديد>", DlgCellVerAlignTop : "أعلى", DlgCellVerAlignMiddle : "وسط", DlgCellVerAlignBottom : "أسفل", DlgCellVerAlignBaseline : "على السطر", DlgCellRowSpan : "إمتداد الصفوف", DlgCellCollSpan : "إمتداد الأعمدة", DlgCellBackColor : "لون الخلفية", DlgCellBorderColor : "لون الحدود", DlgCellBtnSelect : "حدّد...", // Find Dialog DlgFindTitle : "بحث", DlgFindFindBtn : "ابحث", DlgFindNotFoundMsg : "لم يتم العثور على النص المحدد.", // Replace Dialog DlgReplaceTitle : "إستبدال", DlgReplaceFindLbl : "البحث عن:", DlgReplaceReplaceLbl : "إستبدال بـ:", DlgReplaceCaseChk : "مطابقة حالة الأحرف", DlgReplaceReplaceBtn : "إستبدال", DlgReplaceReplAllBtn : "إستبدال الكل", DlgReplaceWordChk : "الكلمة بالكامل فقط", // Paste Operations / Dialog PasteErrorCut : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع القص التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+X).", PasteErrorCopy : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع النسخ التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+C).", PasteAsText : "لصق كنص بسيط", PasteFromWord : "لصق من وورد", DlgPasteMsg2 : "الصق داخل الصندوق بإستخدام زرّي (Ctrl+V) في لوحة المفاتيح، ثم اضغط زر موافق.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "تجاهل تعريفات أسماء الخطوط", DlgPasteRemoveStyles : "إزالة تعريفات الأنماط", DlgPasteCleanBox : "نظّف محتوى الصندوق", // Color Picker ColorAutomatic : "تلقائي", ColorMoreColors : "ألوان إضافية...", // Document Properties DocProps : "خصائص الصفحة", // Anchor Dialog DlgAnchorTitle : "خصائص إشارة مرجعية", DlgAnchorName : "اسم الإشارة المرجعية", DlgAnchorErrorName : "الرجاء كتابة اسم الإشارة المرجعية", // Speller Pages Dialog DlgSpellNotInDic : "ليست في القاموس", DlgSpellChangeTo : "التغيير إلى", DlgSpellBtnIgnore : "تجاهل", DlgSpellBtnIgnoreAll : "تجاهل الكل", DlgSpellBtnReplace : "تغيير", DlgSpellBtnReplaceAll : "تغيير الكل", DlgSpellBtnUndo : "تراجع", DlgSpellNoSuggestions : "- لا توجد إقتراحات -", DlgSpellProgress : "جاري التدقيق إملائياً", DlgSpellNoMispell : "تم إكمال التدقيق الإملائي: لم يتم العثور على أي أخطاء إملائية", DlgSpellNoChanges : "تم إكمال التدقيق الإملائي: لم يتم تغيير أي كلمة", DlgSpellOneChange : "تم إكمال التدقيق الإملائي: تم تغيير كلمة واحدة فقط", DlgSpellManyChanges : "تم إكمال التدقيق الإملائي: تم تغيير %1 كلمات\كلمة", IeSpellDownload : "المدقق الإملائي (الإنجليزي) غير مثبّت. هل تود تحميله الآن؟", // Button Dialog DlgButtonText : "القيمة/التسمية", DlgButtonType : "نوع الزر", DlgButtonTypeBtn : "زر", DlgButtonTypeSbm : "إرسال", DlgButtonTypeRst : "إعادة تعيين", // Checkbox and Radio Button Dialogs DlgCheckboxName : "الاسم", DlgCheckboxValue : "القيمة", DlgCheckboxSelected : "محدد", // Form Dialog DlgFormName : "الاسم", DlgFormAction : "اسم الملف", DlgFormMethod : "الأسلوب", // Select Field Dialog DlgSelectName : "الاسم", DlgSelectValue : "القيمة", DlgSelectSize : "الحجم", DlgSelectLines : "الأسطر", DlgSelectChkMulti : "السماح بتحديدات متعددة", DlgSelectOpAvail : "الخيارات المتاحة", DlgSelectOpText : "النص", DlgSelectOpValue : "القيمة", DlgSelectBtnAdd : "إضافة", DlgSelectBtnModify : "تعديل", DlgSelectBtnUp : "تحريك لأعلى", DlgSelectBtnDown : "تحريك لأسفل", DlgSelectBtnSetValue : "إجعلها محددة", DlgSelectBtnDelete : "إزالة", // Textarea Dialog DlgTextareaName : "الاسم", DlgTextareaCols : "الأعمدة", DlgTextareaRows : "الصفوف", // Text Field Dialog DlgTextName : "الاسم", DlgTextValue : "القيمة", DlgTextCharWidth : "العرض بالأحرف", DlgTextMaxChars : "عدد الحروف الأقصى", DlgTextType : "نوع المحتوى", DlgTextTypeText : "نص", DlgTextTypePass : "كلمة مرور", // Hidden Field Dialog DlgHiddenName : "الاسم", DlgHiddenValue : "القيمة", // Bulleted List Dialog BulletedListProp : "خصائص التعداد النقطي", NumberedListProp : "خصائص التعداد الرقمي", DlgLstStart : "البدء عند", DlgLstType : "النوع", DlgLstTypeCircle : "دائرة", DlgLstTypeDisc : "قرص", 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 : "عام", DlgDocBackTab : "الخلفية", DlgDocColorsTab : "الألوان والهوامش", DlgDocMetaTab : "المعرّفات الرأسية", DlgDocPageTitle : "عنوان الصفحة", DlgDocLangDir : "إتجاه اللغة", DlgDocLangDirLTR : "اليسار لليمين (LTR)", DlgDocLangDirRTL : "اليمين لليسار (RTL)", DlgDocLangCode : "رمز اللغة", DlgDocCharSet : "ترميز الحروف", DlgDocCharSetCE : "أوروبا الوسطى", DlgDocCharSetCT : "الصينية التقليدية (Big5)", DlgDocCharSetCR : "السيريلية", DlgDocCharSetGR : "اليونانية", DlgDocCharSetJP : "اليابانية", DlgDocCharSetKR : "الكورية", DlgDocCharSetTR : "التركية", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "أوروبا الغربية", DlgDocCharSetOther : "ترميز آخر", DlgDocDocType : "ترويسة نوع الصفحة", DlgDocDocTypeOther : "ترويسة نوع صفحة أخرى", DlgDocIncXHTML : "تضمين إعلانات‏ لغة XHTMLَ", DlgDocBgColor : "لون الخلفية", DlgDocBgImage : "رابط الصورة الخلفية", DlgDocBgNoScroll : "جعلها علامة مائية", DlgDocCText : "النص", DlgDocCLink : "الروابط", DlgDocCVisited : "المزارة", DlgDocCActive : "النشطة", DlgDocMargins : "هوامش الصفحة", DlgDocMaTop : "علوي", DlgDocMaLeft : "أيسر", DlgDocMaRight : "أيمن", DlgDocMaBottom : "سفلي", DlgDocMeIndex : "الكلمات الأساسية (مفصولة بفواصل)َ", DlgDocMeDescr : "وصف الصفحة", DlgDocMeAuthor : "الكاتب", DlgDocMeCopy : "المالك", DlgDocPreview : "معاينة", // Templates Dialog Templates : "القوالب", DlgTemplatesTitle : "قوالب المحتوى", DlgTemplatesSelMsg : "اختر القالب الذي تود وضعه في المحرر
(سيتم فقدان المحتوى الحالي):", DlgTemplatesLoading : "جاري تحميل قائمة القوالب، الرجاء الإنتظار...", DlgTemplatesNoTpl : "(لم يتم تعريف أي قالب)", DlgTemplatesReplace : "استبدال المحتوى", // About Dialog DlgAboutAboutTab : "نبذة", DlgAboutBrowserInfoTab : "معلومات متصفحك", DlgAboutLicenseTab : "الترخيص", DlgAboutVersion : "الإصدار", DlgAboutInfo : "لمزيد من المعلومات تفضل بزيارة" };FCKeditor/editor/lang/fo.js0000644000102600010270000004316611234071606015034 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Faroese language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Fjal amboðsbjálkan", ToolbarExpand : "Vís amboðsbjálkan", // Toolbar Items and Context Menu Save : "Goym", NewPage : "Nýggj síða", Preview : "Frumsýning", Cut : "Kvett", Copy : "Avrita", Paste : "Innrita", PasteText : "Innrita reinan tekst", PasteWord : "Innrita frá Word", Print : "Prenta", SelectAll : "Markera alt", RemoveFormat : "Strika sniðgeving", InsertLinkLbl : "Tilknýti", InsertLink : "Ger/broyt tilknýti", RemoveLink : "Strika tilknýti", Anchor : "Ger/broyt marknastein", InsertImageLbl : "Myndir", InsertImage : "Set inn/broyt mynd", InsertFlashLbl : "Flash", InsertFlash : "Set inn/broyt Flash", InsertTableLbl : "Tabell", InsertTable : "Set inn/broyt tabell", InsertLineLbl : "Linja", InsertLine : "Ger vatnrætta linju", InsertSpecialCharLbl: "Sertekn", InsertSpecialChar : "Set inn sertekn", InsertSmileyLbl : "Smiley", InsertSmiley : "Set inn Smiley", About : "Um FCKeditor", Bold : "Feit skrift", Italic : "Skráskrift", Underline : "Undirstrikað", StrikeThrough : "Yvirstrikað", Subscript : "Lækkað skrift", Superscript : "Hækkað skrift", LeftJustify : "Vinstrasett", CenterJustify : "Miðsett", RightJustify : "Høgrasett", BlockJustify : "Javnir tekstkantar", DecreaseIndent : "Minka reglubrotarinntriv", IncreaseIndent : "Økja reglubrotarinntriv", Undo : "Angra", Redo : "Vend aftur", NumberedListLbl : "Talmerktur listi", NumberedList : "Ger/strika talmerktan lista", BulletedListLbl : "Punktmerktur listi", BulletedList : "Ger/strika punktmerktan lista", ShowTableBorders : "Vís tabellbordar", ShowDetails : "Vís í smálutum", Style : "Typografi", FontFormat : "Skriftsnið", Font : "Skrift", FontSize : "Skriftstødd", TextColor : "Tekstlitur", BGColor : "Bakgrundslitur", Source : "Kelda", Find : "Leita", Replace : "Yvirskriva", SpellCheck : "Kanna stavseting", UniversalKeyboard : "Knappaborð", PageBreakLbl : "Síðuskift", PageBreak : "Ger síðuskift", Form : "Formur", Checkbox : "Flugubein", RadioButton : "Radioknøttur", TextField : "Tekstteigur", Textarea : "Tekstumráði", HiddenField : "Fjaldur teigur", Button : "Knøttur", SelectionField : "Valskrá", ImageButton : "Myndaknøttur", FitWindow : "Set tekstviðgera til fulla stødd", // Context Menu EditLink : "Broyt tilknýti", CellCM : "Meski", RowCM : "Rað", ColumnCM : "Kolonna", InsertRow : "Nýtt rað", DeleteRows : "Strika røðir", InsertColumn : "Nýggj kolonna", DeleteColumns : "Strika kolonnur", InsertCell : "Nýggjur meski", DeleteCells : "Strika meskar", MergeCells : "Flætta meskar", SplitCell : "Být sundur meskar", TableDelete : "Strika tabell", CellProperties : "Meskueginleikar", TableProperties : "Tabelleginleikar", ImageProperties : "Myndaeginleikar", FlashProperties : "Flash eginleikar", AnchorProp : "Eginleikar fyri marknastein", ButtonProp : "Eginleikar fyri knøtt", CheckboxProp : "Eginleikar fyri flugubein", HiddenFieldProp : "Eginleikar fyri fjaldan teig", RadioButtonProp : "Eginleikar fyri radioknøtt", ImageButtonProp : "Eginleikar fyri myndaknøtt", TextFieldProp : "Eginleikar fyri tekstteig", SelectionFieldProp : "Eginleikar fyri valskrá", TextareaProp : "Eginleikar fyri tekstumráði", FormProp : "Eginleikar fyri Form", FontFormats : "Vanligt;Sniðgivið;Adressa;Yvirskrift 1;Yvirskrift 2;Yvirskrift 3;Yvirskrift 4;Yvirskrift 5;Yvirskrift 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML verður viðgjørt. Bíða við...", Done : "Liðugt", PasteWordConfirm : "Teksturin, royndur verður at seta inn, tykist at stava frá Word. Vilt tú reinsa tekstin, áðrenn hann verður settur inn?", NotCompatiblePaste : "Hetta er bert tøkt í Internet Explorer 5.5 og nýggjari. Vilt tú seta tekstin inn kortini - óreinsaðan?", UnknownToolbarItem : "Ókendur lutur í amboðsbjálkanum \"%1\"", UnknownCommand : "Ókend kommando \"%1\"", NotImplemented : "Hetta er ikki tøkt í hesi útgávuni", UnknownToolbarSet : "Amboðsbjálkin \"%1\" finst ikki", NoActiveX : "Trygdaruppsetingin í alnótskaganum kann sum er avmarka onkrar hentleikar í tekstviðgeranum. Tú mást loyva møguleikanum \"Run/Kør ActiveX controls and plug-ins\". Tú kanst uppliva feilir og ávaringar um tvørrandi hentleikar.", BrowseServerBlocked : "Ambætarakagin kundi ikki opnast. Tryggja tær, at allar pop-up forðingar eru óvirknar.", DialogBlocked : "Tað eyðnaðist ikki at opna samskiftisrútin. Tryggja tær, at allar pop-up forðingar eru óvirknar.", // Dialogs DlgBtnOK : "Góðkent", DlgBtnCancel : "Avlýst", DlgBtnClose : "Lat aftur", DlgBtnBrowseServer : "Ambætarakagi", DlgAdvancedTag : "Fjølbroytt", DlgOpOther : "", DlgInfoTab : "Upplýsingar", DlgAlertUrl : "Vinarliga veit ein URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Tekstkós", DlgGenLangDirLtr : "Frá vinstru til høgru (LTR)", DlgGenLangDirRtl : "Frá høgru til vinstru (RTL)", DlgGenLangCode : "Málkoda", DlgGenAccessKey : "Snarvegisknappur", DlgGenName : "Navn", DlgGenTabIndex : "Inntriv indeks", DlgGenLongDescr : "Víðkað URL frágreiðing", DlgGenClass : "Typografi klassar", DlgGenTitle : "Vegleiðandi heiti", DlgGenContType : "Vegleiðandi innihaldsslag", DlgGenLinkCharset : "Atknýtt teknsett", DlgGenStyle : "Typografi", // Image Dialog DlgImgTitle : "Myndaeginleikar", DlgImgInfoTab : "Myndaupplýsingar", DlgImgBtnUpload : "Send til ambætaran", DlgImgURL : "URL", DlgImgUpload : "Send", DlgImgAlt : "Alternativur tekstur", DlgImgWidth : "Breidd", DlgImgHeight : "Hædd", DlgImgLockRatio : "Læs lutfallið", DlgBtnResetSize : "Upprunastødd", DlgImgBorder : "Bordi", DlgImgHSpace : "Høgri breddi", DlgImgVSpace : "Vinstri breddi", DlgImgAlign : "Justering", DlgImgAlignLeft : "Vinstra", DlgImgAlignAbsBottom: "Abs botnur", DlgImgAlignAbsMiddle: "Abs miðja", DlgImgAlignBaseline : "Basislinja", DlgImgAlignBottom : "Botnur", DlgImgAlignMiddle : "Miðja", DlgImgAlignRight : "Høgra", DlgImgAlignTextTop : "Tekst toppur", DlgImgAlignTop : "Ovast", DlgImgPreview : "Frumsýning", DlgImgAlertUrl : "Rita slóðina til myndina", DlgImgLinkTab : "Tilknýti", // Flash Dialog DlgFlashTitle : "Flash eginleikar", DlgFlashChkPlay : "Avspælingin byrjar sjálv", DlgFlashChkLoop : "Endurspæl", DlgFlashChkMenu : "Ger Flash skrá virkna", DlgFlashScale : "Skalering", DlgFlashScaleAll : "Vís alt", DlgFlashScaleNoBorder : "Eingin bordi", DlgFlashScaleFit : "Neyv skalering", // Link Dialog DlgLnkWindowTitle : "Tilknýti", DlgLnkInfoTab : "Tilknýtis upplýsingar", DlgLnkTargetTab : "Mál", DlgLnkType : "Tilknýtisslag", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Tilknýti til marknastein í tekstinum", DlgLnkTypeEMail : "Teldupostur", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Vel ein marknastein", DlgLnkAnchorByName : "Eftir navni á marknasteini", DlgLnkAnchorById : "Eftir element Id", DlgLnkNoAnchors : "(Eingir marknasteinar eru í hesum dokumentið)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Teldupost-adressa", DlgLnkEMailSubject : "Evni", DlgLnkEMailBody : "Breyðtekstur", DlgLnkUpload : "Send til ambætaran", DlgLnkBtnUpload : "Send til ambætaran", DlgLnkTarget : "Mál", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nýtt vindeyga (_blank)", DlgLnkTargetParent : "Upphavliga vindeygað (_parent)", DlgLnkTargetSelf : "Sama vindeygað (_self)", DlgLnkTargetTop : "Alt vindeygað (_top)", DlgLnkTargetFrameName : "Vís navn vindeygans", DlgLnkPopWinName : "Popup vindeygans navn", DlgLnkPopWinFeat : "Popup vindeygans víðkaðu eginleikar", DlgLnkPopResize : "Kann broyta stødd", DlgLnkPopLocation : "Adressulinja", DlgLnkPopMenu : "Skrábjálki", DlgLnkPopScroll : "Rullibjálki", DlgLnkPopStatus : "Støðufrágreiðingarbjálki", DlgLnkPopToolbar : "Amboðsbjálki", DlgLnkPopFullScrn : "Fullur skermur (IE)", DlgLnkPopDependent : "Bundið (Netscape)", DlgLnkPopWidth : "Breidd", DlgLnkPopHeight : "Hædd", DlgLnkPopLeft : "Frástøða frá vinstru", DlgLnkPopTop : "Frástøða frá íerva", DlnLnkMsgNoUrl : "Vinarliga skriva tilknýti (URL)", DlnLnkMsgNoEMail : "Vinarliga skriva teldupost-adressu", DlnLnkMsgNoAnchor : "Vinarliga vel marknastein", DlnLnkMsgInvPopName : "Popup navnið má byrja við bókstavi og má ikki hava millumrúm", // Color Dialog DlgColorTitle : "Vel lit", DlgColorBtnClear : "Strika alt", DlgColorHighlight : "Framhevja", DlgColorSelected : "Valt", // Smiley Dialog DlgSmileyTitle : "Vel Smiley", // Special Character Dialog DlgSpecialCharTitle : "Vel sertekn", // Table Dialog DlgTableTitle : "Eginleikar fyri tabell", DlgTableRows : "Røðir", DlgTableColumns : "Kolonnur", DlgTableBorder : "Bordabreidd", DlgTableAlign : "Justering", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Vinstrasett", DlgTableAlignCenter : "Miðsett", DlgTableAlignRight : "Høgrasett", DlgTableWidth : "Breidd", DlgTableWidthPx : "pixels", DlgTableWidthPc : "prosent", DlgTableHeight : "Hædd", DlgTableCellSpace : "Fjarstøða millum meskar", DlgTableCellPad : "Meskubreddi", DlgTableCaption : "Tabellfrágreiðing", DlgTableSummary : "Samandráttur", // Table Cell Dialog DlgCellTitle : "Mesku eginleikar", DlgCellWidth : "Breidd", DlgCellWidthPx : "pixels", DlgCellWidthPc : "prosent", DlgCellHeight : "Hædd", DlgCellWordWrap : "Orðkloyving", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nei", DlgCellHorAlign : "Vatnrøtt justering", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Vinstrasett", DlgCellHorAlignCenter : "Miðsett", DlgCellHorAlignRight: "Høgrasett", DlgCellVerAlign : "Lodrøtt justering", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Ovast", DlgCellVerAlignMiddle : "Miðjan", DlgCellVerAlignBottom : "Niðast", DlgCellVerAlignBaseline : "Basislinja", DlgCellRowSpan : "Røðir, meskin fevnir um", DlgCellCollSpan : "Kolonnur, meskin fevnir um", DlgCellBackColor : "Bakgrundslitur", DlgCellBorderColor : "Litur á borda", DlgCellBtnSelect : "Vel...", // Find Dialog DlgFindTitle : "Finn", DlgFindFindBtn : "Finn", DlgFindNotFoundMsg : "Leititeksturin varð ikki funnin", // Replace Dialog DlgReplaceTitle : "Yvirskriva", DlgReplaceFindLbl : "Finn:", DlgReplaceReplaceLbl : "Yvirskriva við:", DlgReplaceCaseChk : "Munur á stórum og smáðum bókstavum", DlgReplaceReplaceBtn : "Yvirskriva", DlgReplaceReplAllBtn : "Yvirskriva alt", DlgReplaceWordChk : "Bert heil orð", // Paste Operations / Dialog PasteErrorCut : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. vinarliga nýt knappaborðið til at kvetta tekstin (CTRL+X).", PasteErrorCopy : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at avrita tekstin. Vinarliga nýt knappaborðið til at avrita tekstin (CTRL+C).", PasteAsText : "Innrita som reinan tekst", PasteFromWord : "Innrita fra Word", DlgPasteMsg2 : "Vinarliga koyr tekstin í hendan rútin við knappaborðinum (CTRL+V) og klikk á Góðtak.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Forfjóna Font definitiónirnar", DlgPasteRemoveStyles : "Strika Styles definitiónir", DlgPasteCleanBox : "Reinskanarkassi", // Color Picker ColorAutomatic : "Av sær sjálvum", ColorMoreColors : "Fleiri litir...", // Document Properties DocProps : "Eginleikar fyri dokument", // Anchor Dialog DlgAnchorTitle : "Eginleikar fyri marknastein", DlgAnchorName : "Heiti marknasteinsins", DlgAnchorErrorName : "Vinarliga rita marknasteinsins heiti", // Speller Pages Dialog DlgSpellNotInDic : "Finst ikki í orðabókini", DlgSpellChangeTo : "Broyt til", DlgSpellBtnIgnore : "Forfjóna", DlgSpellBtnIgnoreAll : "Forfjóna alt", DlgSpellBtnReplace : "Yvirskriva", DlgSpellBtnReplaceAll : "Yvirskriva alt", DlgSpellBtnUndo : "Angra", DlgSpellNoSuggestions : "- Einki uppskot -", DlgSpellProgress : "Rættstavarin arbeiðir...", DlgSpellNoMispell : "Rættstavarain liðugur: Eingin feilur funnin", DlgSpellNoChanges : "Rættstavarain liðugur: Einki orð varð broytt", DlgSpellOneChange : "Rættstavarain liðugur: Eitt orð er broytt", DlgSpellManyChanges : "Rættstavarain liðugur: %1 orð broytt", IeSpellDownload : "Rættstavarin er ikki tøkur í tekstviðgeranum. Vilt tú heinta hann nú?", // Button Dialog DlgButtonText : "Tekstur", DlgButtonType : "Slag", DlgButtonTypeBtn : "Knøttur", DlgButtonTypeSbm : "Send", DlgButtonTypeRst : "Nullstilla", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Navn", DlgCheckboxValue : "Virði", DlgCheckboxSelected : "Valt", // Form Dialog DlgFormName : "Navn", DlgFormAction : "Hending", DlgFormMethod : "Háttur", // Select Field Dialog DlgSelectName : "Navn", DlgSelectValue : "Virði", DlgSelectSize : "Stødd", DlgSelectLines : "Linjur", DlgSelectChkMulti : "Loyv fleiri valmøguleikum samstundis", DlgSelectOpAvail : "Tøkir møguleikar", DlgSelectOpText : "Tekstur", DlgSelectOpValue : "Virði", DlgSelectBtnAdd : "Legg afturat", DlgSelectBtnModify : "Broyt", DlgSelectBtnUp : "Upp", DlgSelectBtnDown : "Niður", DlgSelectBtnSetValue : "Set sum valt virði", DlgSelectBtnDelete : "Strika", // Textarea Dialog DlgTextareaName : "Navn", DlgTextareaCols : "kolonnur", DlgTextareaRows : "røðir", // Text Field Dialog DlgTextName : "Navn", DlgTextValue : "Virði", DlgTextCharWidth : "Breidd (sjónlig tekn)", DlgTextMaxChars : "Mest loyvdu tekn", DlgTextType : "Slag", DlgTextTypeText : "Tekstur", DlgTextTypePass : "Loyniorð", // Hidden Field Dialog DlgHiddenName : "Navn", DlgHiddenValue : "Virði", // Bulleted List Dialog BulletedListProp : "Eginleikar fyri punktmerktan lista", NumberedListProp : "Eginleikar fyri talmerktan lista", DlgLstStart : "Byrjan", DlgLstType : "Slag", DlgLstTypeCircle : "Sirkul", DlgLstTypeDisc : "Fyltur sirkul", DlgLstTypeSquare : "Fjórhyrningur", DlgLstTypeNumbers : "Talmerkt (1, 2, 3)", DlgLstTypeLCase : "Smáir bókstavir (a, b, c)", DlgLstTypeUCase : "Stórir bókstavir (A, B, C)", DlgLstTypeSRoman : "Smá rómaratøl (i, ii, iii)", DlgLstTypeLRoman : "Stór rómaratøl (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Generelt", DlgDocBackTab : "Bakgrund", DlgDocColorsTab : "Litir og breddar", DlgDocMetaTab : "META-upplýsingar", DlgDocPageTitle : "Síðuheiti", DlgDocLangDir : "Tekstkós", DlgDocLangDirLTR : "Frá vinstru móti høgru (LTR)", DlgDocLangDirRTL : "Frá høgru móti vinstru (RTL)", DlgDocLangCode : "Málkoda", DlgDocCharSet : "Teknsett koda", DlgDocCharSetCE : "Miðeuropa", DlgDocCharSetCT : "Kinesiskt traditionelt (Big5)", DlgDocCharSetCR : "Cyrilliskt", DlgDocCharSetGR : "Grikst", DlgDocCharSetJP : "Japanskt", DlgDocCharSetKR : "Koreanskt", DlgDocCharSetTR : "Turkiskt", DlgDocCharSetUN : "UNICODE (UTF-8)", DlgDocCharSetWE : "Vestureuropa", DlgDocCharSetOther : "Onnur teknsett koda", DlgDocDocType : "Dokumentslag yvirskrift", DlgDocDocTypeOther : "Annað dokumentslag yvirskrift", DlgDocIncXHTML : "Viðfest XHTML deklaratiónir", DlgDocBgColor : "Bakgrundslitur", DlgDocBgImage : "Leið til bakgrundsmynd (URL)", DlgDocBgNoScroll : "Læst bakgrund (rullar ikki)", DlgDocCText : "Tekstur", DlgDocCLink : "Tilknýti", DlgDocCVisited : "Vitjaði tilknýti", DlgDocCActive : "Virkin tilknýti", DlgDocMargins : "Síðubreddar", DlgDocMaTop : "Ovast", DlgDocMaLeft : "Vinstra", DlgDocMaRight : "Høgra", DlgDocMaBottom : "Niðast", DlgDocMeIndex : "Dokument index lyklaorð (sundurbýtt við komma)", DlgDocMeDescr : "Dokumentlýsing", DlgDocMeAuthor : "Høvundur", DlgDocMeCopy : "Upphavsrættindi", DlgDocPreview : "Frumsýning", // Templates Dialog Templates : "Skabelónir", DlgTemplatesTitle : "Innihaldsskabelónir", DlgTemplatesSelMsg : "Vinarliga vel ta skabelón, ið skal opnast í tekstviðgeranum
(Hetta yvirskrivar núverandi innihald):", DlgTemplatesLoading : "Heinti yvirlit yvir skabelónir. Vinarliga bíða við...", DlgTemplatesNoTpl : "(Ongar skabelónir tøkar)", DlgTemplatesReplace : "Yvirskriva núverandi innihald", // About Dialog DlgAboutAboutTab : "Um", DlgAboutBrowserInfoTab : "Upplýsingar um alnótskagan", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", DlgAboutInfo : "Fyri fleiri upplýsingar, far til" };FCKeditor/editor/lang/de.js0000644000102600010270000004313311234071570015012 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * German language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Symbolleiste einklappen", ToolbarExpand : "Symbolleiste ausklappen", // Toolbar Items and Context Menu Save : "Speichern", NewPage : "Neue Seite", Preview : "Vorschau", Cut : "Ausschneiden", Copy : "Kopieren", Paste : "Einfügen", PasteText : "aus Textdatei einfügen", PasteWord : "aus MS-Word einfügen", Print : "Drucken", SelectAll : "Alles auswählen", RemoveFormat : "Formatierungen entfernen", InsertLinkLbl : "Link", InsertLink : "Link einfügen/editieren", RemoveLink : "Link entfernen", 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", InsertLine : "Horizontale Linie einfügen", InsertSpecialCharLbl: "Sonderzeichen", InsertSpecialChar : "Sonderzeichen einfügen/editieren", InsertSmileyLbl : "Smiley", InsertSmiley : "Smiley einfügen", About : "Über FCKeditor", Bold : "Fett", Italic : "Kursiv", Underline : "Unterstrichen", StrikeThrough : "Durchgestrichen", Subscript : "Tiefgestellt", Superscript : "Hochgestellt", LeftJustify : "Linksbündig", CenterJustify : "Zentriert", RightJustify : "Rechtsbündig", BlockJustify : "Blocksatz", DecreaseIndent : "Einzug verringern", IncreaseIndent : "Einzug erhöhen", Undo : "Rückgängig", Redo : "Wiederherstellen", NumberedListLbl : "Nummerierte Liste", NumberedList : "Nummerierte Liste einfügen/entfernen", BulletedListLbl : "Liste", BulletedList : "Liste einfügen/entfernen", ShowTableBorders : "Zeige Tabellenrahmen", ShowDetails : "Zeige Details", Style : "Stil", FontFormat : "Format", Font : "Schriftart", FontSize : "Größe", TextColor : "Textfarbe", BGColor : "Hintergrundfarbe", Source : "Quellcode", Find : "Finden", Replace : "Ersetzen", SpellCheck : "Rechtschreibprüfung", UniversalKeyboard : "Universal-Tastatur", PageBreakLbl : "Seitenumbruch", PageBreak : "Seitenumbruch einfügen", Form : "Formular", Checkbox : "Checkbox", RadioButton : "Radiobutton", TextField : "Textfeld einzeilig", Textarea : "Textfeld mehrzeilig", HiddenField : "verstecktes Feld", Button : "Klickbutton", SelectionField : "Auswahlfeld", ImageButton : "Bildbutton", FitWindow : "Editor maximieren", // Context Menu EditLink : "Link editieren", CellCM : "Zelle", RowCM : "Zeile", ColumnCM : "Spalte", InsertRow : "Zeile einfügen", DeleteRows : "Zeile entfernen", InsertColumn : "Spalte einfügen", DeleteColumns : "Spalte löschen", InsertCell : "Zelle einfügen", DeleteCells : "Zelle löschen", MergeCells : "Zellen vereinen", SplitCell : "Zelle teilen", TableDelete : "Tabelle löschen", 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", RadioButtonProp : "Optionsfeld Eigenschaften", ImageButtonProp : "Bildbutton Eigenschaften", TextFieldProp : "Textfeld (einzeilig) Eigenschaften", SelectionFieldProp : "Auswahlfeld Eigenschaften", TextareaProp : "Textfeld (mehrzeilig) Eigenschaften", FormProp : "Formular Eigenschaften", FontFormats : "Normal;Formatiert;Addresse;Überschrift 1;Überschrift 2;Überschrift 3;Überschrift 4;Überschrift 5;Überschrift 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Bearbeite XHTML. Bitte warten...", Done : "Fertig", PasteWordConfirm : "Der Text, den Sie einfügen möchten, scheint aus MS-Word kopiert zu sein. Möchten Sie ihn zuvor bereinigen lassen?", NotCompatiblePaste : "Diese Funktion steht nur im Internet Explorer ab Version 5.5 zur Verfügung. Möchten Sie den Text unbereinigt einfügen?", UnknownToolbarItem : "Unbekanntes Menüleisten-Objekt \"%1\"", UnknownCommand : "Unbekannter Befehl \"%1\"", NotImplemented : "Befehl nicht implementiert", UnknownToolbarSet : "Menüleiste \"%1\" existiert nicht", NoActiveX : "Die Sicherheitseinstellungen Ihres Browsers beschränken evtl. einige Funktionen des Editors. Aktivieren Sie die Option \"ActiveX-Steuerelemente und Plugins ausführen\" in den Sicherheitseinstellungen, um diese Funktionen nutzen zu können", BrowseServerBlocked : "Ein Auswahlfenster konnte nicht geöffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.", DialogBlocked : "Das Dialog-Fenster konnte nicht geöffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Abbrechen", DlgBtnClose : "Schließen", DlgBtnBrowseServer : "Server durchsuchen", DlgAdvancedTag : "Erweitert", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Bitte tragen Sie die URL ein", // General Dialogs Labels DlgGenNotSet : "< nichts >", DlgGenId : "ID", DlgGenLangDir : "Schreibrichtung", DlgGenLangDirLtr : "Links nach Rechts (LTR)", DlgGenLangDirRtl : "Rechts nach Links (RTL)", DlgGenLangCode : "Sprachenkürzel", DlgGenAccessKey : "Schlüssel", DlgGenName : "Name", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Langform URL", DlgGenClass : "Stylesheet Klasse", DlgGenTitle : "Titel Beschreibung", DlgGenContType : "Content Beschreibung", DlgGenLinkCharset : "Ziel-Zeichensatz", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Bild Eigenschaften", DlgImgInfoTab : "Bild-Info", DlgImgBtnUpload : "Zum Server senden", DlgImgURL : "Bildauswahl", DlgImgUpload : "Upload", DlgImgAlt : "Alternativer Text", DlgImgWidth : "Breite", DlgImgHeight : "Höhe", DlgImgLockRatio : "Größenverhältniss beibehalten", DlgBtnResetSize : "Größe zurücksetzen", DlgImgBorder : "Rahmen", DlgImgHSpace : "H-Abstand", DlgImgVSpace : "V-Abstand", DlgImgAlign : "Ausrichtung", DlgImgAlignLeft : "Links", DlgImgAlignAbsBottom: "Abs Unten", DlgImgAlignAbsMiddle: "Abs Mitte", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Unten", DlgImgAlignMiddle : "Mitte", DlgImgAlignRight : "Rechts", DlgImgAlignTextTop : "Text Oben", DlgImgAlignTop : "Oben", DlgImgPreview : "Vorschau", DlgImgAlertUrl : "Bitte geben Sie die Bild-URL an", DlgImgLinkTab : "Link", // Flash Dialog DlgFlashTitle : "Flash Eigenschaften", DlgFlashChkPlay : "autom. Abspielen", DlgFlashChkLoop : "Endlosschleife", DlgFlashChkMenu : "Flash-Menü aktivieren", DlgFlashScale : "Skalierung", DlgFlashScaleAll : "Alles anzeigen", DlgFlashScaleNoBorder : "ohne Rand", DlgFlashScaleFit : "Passgenau", // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", DlgLnkTargetTab : "Zielseite", DlgLnkType : "Link-Typ", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Anker in dieser Seite", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Anker auswählen", DlgLnkAnchorByName : "nach Anker Name", DlgLnkAnchorById : "nach Element Id", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Addresse", DlgLnkEMailSubject : "Betreffzeile", DlgLnkEMailBody : "Nachrichtentext", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Zum Server senden", DlgLnkTarget : "Zielseite", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Neues Fenster (_blank)", DlgLnkTargetParent : "Oberes Fenster (_parent)", DlgLnkTargetSelf : "Gleiches Fenster (_self)", DlgLnkTargetTop : "Oberstes Fenster (_top)", DlgLnkTargetFrameName : "Ziel-Fenster Name", DlgLnkPopWinName : "Pop-up Fenster Name", DlgLnkPopWinFeat : "Pop-up Fenster Eigenschaften", DlgLnkPopResize : "Vergrößerbar", DlgLnkPopLocation : "Adress-Leiste", DlgLnkPopMenu : "Menü-Leiste", DlgLnkPopScroll : "Rollbalken", DlgLnkPopStatus : "Statusleiste", DlgLnkPopToolbar : "Werkzeugleiste", DlgLnkPopFullScrn : "Vollbild (IE)", DlgLnkPopDependent : "Abhängig (Netscape)", DlgLnkPopWidth : "Breite", DlgLnkPopHeight : "Höhe", DlgLnkPopLeft : "Linke Position", DlgLnkPopTop : "Obere Position", DlnLnkMsgNoUrl : "Bitte geben Sie die Link-URL an", DlnLnkMsgNoEMail : "Bitte geben Sie e-Mail Adresse an", DlnLnkMsgNoAnchor : "Bitte wählen Sie einen Anker aus", DlnLnkMsgInvPopName : "Der Name des Popups muss mit einem Buchstaben beginnen und darf keine Leerzeichen enthalten", // Color Dialog DlgColorTitle : "Farbauswahl", DlgColorBtnClear : "Keine Farbe", DlgColorHighlight : "Vorschau", DlgColorSelected : "Ausgewählt", // Smiley Dialog DlgSmileyTitle : "Smiley auswählen", // Special Character Dialog DlgSpecialCharTitle : "Sonderzeichen auswählen", // Table Dialog DlgTableTitle : "Tabellen Eigenschaften", DlgTableRows : "Zeile", DlgTableColumns : "Spalte", DlgTableBorder : "Rahmen", DlgTableAlign : "Ausrichtung", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Links", DlgTableAlignCenter : "Zentriert", DlgTableAlignRight : "Rechts", DlgTableWidth : "Breite", DlgTableWidthPx : "Pixel", DlgTableWidthPc : "%", DlgTableHeight : "Höhe", DlgTableCellSpace : "Zellenabstand außen", DlgTableCellPad : "Zellenabstand innen", DlgTableCaption : "Überschrift", DlgTableSummary : "Inhaltsübersicht", // Table Cell Dialog DlgCellTitle : "Zellen-Eigenschaften", DlgCellWidth : "Breite", DlgCellWidthPx : "Pixel", DlgCellWidthPc : "%", DlgCellHeight : "Höhe", DlgCellWordWrap : "Umbruch", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nein", DlgCellHorAlign : "Horizontale Ausrichtung", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Links", DlgCellHorAlignCenter : "Zentriert", DlgCellHorAlignRight: "Rechts", DlgCellVerAlign : "Vertikale Ausrichtung", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Oben", DlgCellVerAlignMiddle : "Mitte", DlgCellVerAlignBottom : "Unten", DlgCellVerAlignBaseline : "Grundlinie", DlgCellRowSpan : "Zeilen zusammenfassen", DlgCellCollSpan : "Spalten zusammenfassen", DlgCellBackColor : "Hintergrundfarbe", DlgCellBorderColor : "Rahmenfarbe", DlgCellBtnSelect : "Auswahl...", // Find Dialog DlgFindTitle : "Finden", DlgFindFindBtn : "Finden", DlgFindNotFoundMsg : "Der gesuchte Text wurde nicht gefunden.", // Replace Dialog DlgReplaceTitle : "Ersetzen", DlgReplaceFindLbl : "Suche nach:", DlgReplaceReplaceLbl : "Ersetze mit:", DlgReplaceCaseChk : "Groß-Kleinschreibung beachten", DlgReplaceReplaceBtn : "Ersetzen", DlgReplaceReplAllBtn : "Alle Ersetzen", DlgReplaceWordChk : "Nur ganze Worte suchen", // Paste Operations / Dialog PasteErrorCut : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).", PasteErrorCopy : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).", PasteAsText : "Als Text einfügen", PasteFromWord : "Aus Word 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.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoriere Schriftart-Definitionen", DlgPasteRemoveStyles : "Entferne Style-Definitionen", DlgPasteCleanBox : "Inhalt aufräumen", // Color Picker ColorAutomatic : "Automatisch", ColorMoreColors : "Weitere Farben...", // Document Properties DocProps : "Dokument Eigenschaften", // Anchor Dialog DlgAnchorTitle : "Anker Eigenschaften", DlgAnchorName : "Anker Name", DlgAnchorErrorName : "Bitte geben Sie den Namen des Ankers ein", // Speller Pages Dialog DlgSpellNotInDic : "Nicht im Wörterbuch", DlgSpellChangeTo : "Ändern in", DlgSpellBtnIgnore : "Ignorieren", DlgSpellBtnIgnoreAll : "Alle Ignorieren", DlgSpellBtnReplace : "Ersetzen", DlgSpellBtnReplaceAll : "Alle Ersetzen", DlgSpellBtnUndo : "Rückgängig", DlgSpellNoSuggestions : " - keine Vorschläge - ", DlgSpellProgress : "Rechtschreibprüfung läuft...", DlgSpellNoMispell : "Rechtschreibprüfung abgeschlossen - keine Fehler gefunden", DlgSpellNoChanges : "Rechtschreibprüfung abgeschlossen - keine Worte geändert", DlgSpellOneChange : "Rechtschreibprüfung abgeschlossen - ein Wort geändert", DlgSpellManyChanges : "Rechtschreibprüfung abgeschlossen - %1 Wörter geändert", IeSpellDownload : "Rechtschreibprüfung nicht installiert. Möchten Sie sie jetzt herunterladen?", // Button Dialog DlgButtonText : "Text (Wert)", DlgButtonType : "Typ", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Absenden", DlgButtonTypeRst : "Zurücksetzen", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", DlgCheckboxValue : "Wert", DlgCheckboxSelected : "ausgewählt", // Form Dialog DlgFormName : "Name", DlgFormAction : "Action", DlgFormMethod : "Method", // Select Field Dialog DlgSelectName : "Name", DlgSelectValue : "Wert", DlgSelectSize : "Größe", DlgSelectLines : "Linien", DlgSelectChkMulti : "Erlaube Mehrfachauswahl", DlgSelectOpAvail : "Mögliche Optionen", DlgSelectOpText : "Text", DlgSelectOpValue : "Wert", DlgSelectBtnAdd : "Hinzufügen", DlgSelectBtnModify : "Ändern", DlgSelectBtnUp : "Hoch", DlgSelectBtnDown : "Runter", DlgSelectBtnSetValue : "Setze als Standardwert", DlgSelectBtnDelete : "Entfernen", // Textarea Dialog DlgTextareaName : "Name", DlgTextareaCols : "Spalten", DlgTextareaRows : "Reihen", // Text Field Dialog DlgTextName : "Name", DlgTextValue : "Wert", DlgTextCharWidth : "Zeichenbreite", DlgTextMaxChars : "Max. Zeichen", DlgTextType : "Typ", DlgTextTypeText : "Text", DlgTextTypePass : "Passwort", // Hidden Field Dialog DlgHiddenName : "Name", DlgHiddenValue : "Wert", // Bulleted List Dialog BulletedListProp : "Listen-Eigenschaften", NumberedListProp : "Nummerierte Listen-Eigenschaften", DlgLstStart : "Start", DlgLstType : "Typ", DlgLstTypeCircle : "Ring", DlgLstTypeDisc : "Kreis", DlgLstTypeSquare : "Quadrat", DlgLstTypeNumbers : "Nummern (1, 2, 3)", DlgLstTypeLCase : "Kleinbuchstaben (a, b, c)", DlgLstTypeUCase : "Großbuchstaben (A, B, C)", DlgLstTypeSRoman : "Kleine römische Zahlen (i, ii, iii)", DlgLstTypeLRoman : "Große römische Zahlen (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Allgemein", DlgDocBackTab : "Hintergrund", DlgDocColorsTab : "Farben und Abstände", DlgDocMetaTab : "Metadaten", DlgDocPageTitle : "Seitentitel", DlgDocLangDir : "Schriftrichtung", DlgDocLangDirLTR : "Links nach Rechts", DlgDocLangDirRTL : "Rechts nach Links", DlgDocLangCode : "Sprachkürzel", DlgDocCharSet : "Zeichenkodierung", DlgDocCharSetCE : "Zentraleuropäisch", DlgDocCharSetCT : "traditionell Chinesisch (Big5)", DlgDocCharSetCR : "Kyrillisch", DlgDocCharSetGR : "Griechisch", DlgDocCharSetJP : "Japanisch", DlgDocCharSetKR : "Koreanisch", DlgDocCharSetTR : "Türkisch", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Westeuropäisch", DlgDocCharSetOther : "Andere Zeichenkodierung", DlgDocDocType : "Dokumententyp", DlgDocDocTypeOther : "Anderer Dokumententyp", DlgDocIncXHTML : "Beziehe XHTML Deklarationen ein", DlgDocBgColor : "Hintergrundfarbe", DlgDocBgImage : "Hintergrundbild URL", DlgDocBgNoScroll : "feststehender Hintergrund", DlgDocCText : "Text", DlgDocCLink : "Link", DlgDocCVisited : "Besuchter Link", DlgDocCActive : "Aktiver Link", DlgDocMargins : "Seitenränder", DlgDocMaTop : "Oben", DlgDocMaLeft : "Links", DlgDocMaRight : "Rechts", DlgDocMaBottom : "Unten", DlgDocMeIndex : "Schlüsselwörter (durch Komma getrennt)", DlgDocMeDescr : "Dokument-Beschreibung", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Copyright", DlgDocPreview : "Vorschau", // Templates Dialog Templates : "Vorlagen", DlgTemplatesTitle : "Vorlagen", DlgTemplatesSelMsg : "Klicken Sie auf eine Vorlage, um sie im Editor zu öffnen (der aktuelle Inhalt wird dabei gelöscht!):", DlgTemplatesLoading : "Liste der Vorlagen wird geladen. Bitte warten...", DlgTemplatesNoTpl : "(keine Vorlagen definiert)", DlgTemplatesReplace : "Aktuellen Inhalt ersetzen", // About Dialog DlgAboutAboutTab : "Über", DlgAboutBrowserInfoTab : "Browser-Info", DlgAboutLicenseTab : "Lizenz", DlgAboutVersion : "Version", DlgAboutInfo : "Für weitere Informationen siehe" };FCKeditor/editor/lang/sk.js0000644000102600010270000004361611234071640015043 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Slovak language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Skryť panel nástrojov", ToolbarExpand : "Zobraziť panel nástrojov", // Toolbar Items and Context Menu Save : "Uložit", NewPage : "Nová stránka", Preview : "Náhľad", Cut : "Vystrihnúť", Copy : "Kopírovať", Paste : "Vložiť", PasteText : "Vložiť ako čistý text", PasteWord : "Vložiť z Wordu", Print : "Tlač", SelectAll : "Vybrať všetko", RemoveFormat : "Odstrániť formátovanie", InsertLinkLbl : "Odkaz", InsertLink : "Vložiť/zmeniť odkaz", RemoveLink : "Odstrániť odkaz", Anchor : "Vložiť/zmeniť kotvu", InsertImageLbl : "Obrázok", InsertImage : "Vložiť/zmeniť obrázok", InsertFlashLbl : "Flash", InsertFlash : "Vložiť/zmeniť Flash", InsertTableLbl : "Tabuľka", InsertTable : "Vložiť/zmeniť tabuľku", InsertLineLbl : "Čiara", InsertLine : "Vložiť vodorovnú čiaru", InsertSpecialCharLbl: "Špeciálne znaky", InsertSpecialChar : "Vložiť špeciálne znaky", InsertSmileyLbl : "Smajlíky", InsertSmiley : "Vložiť smajlíka", About : "O aplikáci FCKeditor", Bold : "Tučné", Italic : "Kurzíva", Underline : "Podčiarknuté", StrikeThrough : "Prečiarknuté", Subscript : "Dolný index", Superscript : "Horný index", LeftJustify : "Zarovnať vľavo", CenterJustify : "Zarovnať na stred", RightJustify : "Zarovnať vpravo", BlockJustify : "Zarovnať do bloku", DecreaseIndent : "Zmenš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ť/odstraniť odrážky", ShowTableBorders : "Zobraziť okraje tabuliek", ShowDetails : "Zobraziť podrobnosti", Style : "Štýl", FontFormat : "Formát", Font : "Písmo", FontSize : "Veľkosť", TextColor : "Farba textu", BGColor : "Farba pozadia", Source : "Zdroj", Find : "Hľadať", Replace : "Nahradiť", SpellCheck : "Kontrola pravopisu", UniversalKeyboard : "Univerzálna klávesnica", PageBreakLbl : "Oddeľovač stránky", PageBreak : "Vložiť oddeľovač stránky", Form : "Formulár", Checkbox : "Zaškrtávacie políčko", RadioButton : "Prepínač", TextField : "Textové pole", Textarea : "Textová oblasť", HiddenField : "Skryté pole", Button : "Tlačíidlo", SelectionField : "Rozbaľovací zoznam", ImageButton : "Obrázkové tlačidlo", FitWindow : "Maximalizovať veľkosť okna editora", // Context Menu EditLink : "Zmeniť odkaz", CellCM : "Bunka", RowCM : "Riadok", ColumnCM : "Stĺpec", InsertRow : "Vložiť riadok", DeleteRows : "Vymazať riadok", InsertColumn : "Vložiť stĺpec", DeleteColumns : "Zmazať stĺpec", InsertCell : "Vložiť bunku", DeleteCells : "Vymazať bunky", MergeCells : "Zlúčiť bunky", SplitCell : "Rozdeliť bunku", TableDelete : "Vymazať tabuľku", CellProperties : "Vlastnosti bunky", TableProperties : "Vlastnosti tabuľky", ImageProperties : "Vlastnosti obrázku", FlashProperties : "Vlastnosti Flashu", AnchorProp : "Vlastnosti kotvy", ButtonProp : "Vlastnosti tlačidla", CheckboxProp : "Vlastnosti zaškrtávacieho políčka", HiddenFieldProp : "Vlastnosti skrytého poľa", RadioButtonProp : "Vlastnosti prepínača", ImageButtonProp : "Vlastnosti obrázkového tlačidla", TextFieldProp : "Vlastnosti textového poľa", SelectionFieldProp : "Vlastnosti rozbaľovacieho zoznamu", TextareaProp : "Vlastnosti textovej oblasti", FormProp : "Vlastnosti formulára", FontFormats : "Normálny;Formátovaný;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6;Odsek (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Prebieha spracovanie XHTML. Čakajte prosím...", Done : "Dokončené.", PasteWordConfirm : "Vyzerá to tak, že vkladaný text je kopírovaný z Wordu. Chcete ho pred vložením vyčistiť?", NotCompatiblePaste : "Tento príkaz je dostupný len v prehliadači Internet Explorer verzie 5.5 alebo vyššej. Chcete vložiť text bez vyčistenia?", UnknownToolbarItem : "Neznáma položka panela nástrojov \"%1\"", UnknownCommand : "Neznámy príkaz \"%1\"", NotImplemented : "Príkaz nie je implementovaný", UnknownToolbarSet : "Panel nástrojov \"%1\" neexistuje", NoActiveX : "Bezpečnostné nastavenia vášho prehliadača môžu obmedzovať niektoré funkcie editora. Pre ich plnú funkčnosť musíte zapnúť voľbu \"Spúšťať ActiveX moduly a zásuvné moduly\", inak sa môžete stretnúť s chybami a nefunkčnosťou niektorých funkcií.", BrowseServerBlocked : "Prehliadač zdrojových prvkov nebolo možné otvoriť. Uistite sa, že máte vypnuté všetky blokovače vyskakujúcich okien.", DialogBlocked : "Dialógové okno nebolo možné otvoriť. Uistite sa, že máte vypnuté všetky blokovače vyskakujúcich okien.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Zrušiť", DlgBtnClose : "Zavrieť", DlgBtnBrowseServer : "Prechádzať server", DlgAdvancedTag : "Rozšírené", DlgOpOther : "<Ďalšie>", DlgInfoTab : "Info", DlgAlertUrl : "Prosím vložte URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Orientácia jazyka", DlgGenLangDirLtr : "Zľava doprava (LTR)", DlgGenLangDirRtl : "Sprava doľava (RTL)", DlgGenLangCode : "Kód jazyka", DlgGenAccessKey : "Prístupový kľúč", DlgGenName : "Meno", DlgGenTabIndex : "Poradie prvku", DlgGenLongDescr : "Dlhý popis URL", DlgGenClass : "Trieda štýlu", DlgGenTitle : "Pomocný titulok", DlgGenContType : "Pomocný typ obsahu", DlgGenLinkCharset : "Priradená znaková sada", DlgGenStyle : "Štýl", // Image Dialog DlgImgTitle : "Vlastnosti obrázku", DlgImgInfoTab : "Informácie o obrázku", DlgImgBtnUpload : "Odoslať na server", DlgImgURL : "URL", DlgImgUpload : "Odoslať", DlgImgAlt : "Alternatívny text", DlgImgWidth : "Šírka", DlgImgHeight : "Výška", DlgImgLockRatio : "Zámok", DlgBtnResetSize : "Pôvodná veľkosť", DlgImgBorder : "Okraje", DlgImgHSpace : "H-medzera", DlgImgVSpace : "V-medzera", DlgImgAlign : "Zarovnanie", DlgImgAlignLeft : "Vľavo", DlgImgAlignAbsBottom: "Úplne dole", DlgImgAlignAbsMiddle: "Do stredu", DlgImgAlignBaseline : "Na základňu", DlgImgAlignBottom : "Dole", DlgImgAlignMiddle : "Na stred", DlgImgAlignRight : "Vpravo", DlgImgAlignTextTop : "Na horný okraj textu", DlgImgAlignTop : "Nahor", DlgImgPreview : "Náhľad", DlgImgAlertUrl : "Zadajte prosím URL obrázku", 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", DlgLnkTargetTab : "Cieľ", DlgLnkType : "Typ odkazu", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Kotva v tejto stránke", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Vybrať kotvu", DlgLnkAnchorByName : "Podľa mena kotvy", DlgLnkAnchorById : "Podľa Id objektu", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mailová adresa", DlgLnkEMailSubject : "Predmet správy", DlgLnkEMailBody : "Telo správy", DlgLnkUpload : "Odoslať", DlgLnkBtnUpload : "Odoslať na server", DlgLnkTarget : "Cieľ", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nové okno (_blank)", DlgLnkTargetParent : "Rodičovské okno (_parent)", DlgLnkTargetSelf : "Rovnaké okno (_self)", DlgLnkTargetTop : "Hlavné okno (_top)", DlgLnkTargetFrameName : "Meno rámu cieľa", DlgLnkPopWinName : "Názov vyskakovacieho okna", DlgLnkPopWinFeat : "Vlastnosti vyskakovacieho okna", DlgLnkPopResize : "Meniteľná veľkosť", DlgLnkPopLocation : "Panel umiestnenia", DlgLnkPopMenu : "Panel ponuky", DlgLnkPopScroll : "Posuvníky", DlgLnkPopStatus : "Stavový riadok", DlgLnkPopToolbar : "Panel nástrojov", DlgLnkPopFullScrn : "Celá obrazovka (IE)", DlgLnkPopDependent : "Závislosť (Netscape)", DlgLnkPopWidth : "Šírka", DlgLnkPopHeight : "Výška", DlgLnkPopLeft : "Ľavý okraj", DlgLnkPopTop : "Horný okraj", DlnLnkMsgNoUrl : "Zadajte prosím URL odkazu", DlnLnkMsgNoEMail : "Zadajte prosím e-mailovú adresu", DlnLnkMsgNoAnchor : "Vyberte prosím kotvu", DlnLnkMsgInvPopName : "Názov vyskakovacieho okna sa musá začínať písmenom a nemôže obsahovať medzery", // Color Dialog DlgColorTitle : "Výber farby", DlgColorBtnClear : "Vymazať", DlgColorHighlight : "Zvýraznená", DlgColorSelected : "Vybraná", // Smiley Dialog DlgSmileyTitle : "Vkladanie smajlíkov", // Special Character Dialog DlgSpecialCharTitle : "Výber špeciálneho znaku", // Table Dialog DlgTableTitle : "Vlastnosti tabuľky", DlgTableRows : "Riadky", DlgTableColumns : "Stĺpce", DlgTableBorder : "Ohraničenie", DlgTableAlign : "Zarovnanie", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Vľavo", DlgTableAlignCenter : "Na stred", DlgTableAlignRight : "Vpravo", DlgTableWidth : "Šírka", DlgTableWidthPx : "pixelov", DlgTableWidthPc : "percent", DlgTableHeight : "Výška", DlgTableCellSpace : "Vzdialenosť buniek", DlgTableCellPad : "Odsadenie obsahu", DlgTableCaption : "Popis", DlgTableSummary : "Prehľad", // Table Cell Dialog DlgCellTitle : "Vlastnosti bunky", DlgCellWidth : "Šírka", DlgCellWidthPx : "bodov", DlgCellWidthPc : "percent", DlgCellHeight : "Výška", DlgCellWordWrap : "Zalamovannie", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Áno", DlgCellWordWrapNo : "Nie", DlgCellHorAlign : "Vodorovné zarovnanie", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Vľavo", DlgCellHorAlignCenter : "Na stred", DlgCellHorAlignRight: "Vpravo", DlgCellVerAlign : "Zvislé zarovnanie", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Nahor", DlgCellVerAlignMiddle : "Doprostred", DlgCellVerAlignBottom : "Dole", DlgCellVerAlignBaseline : "Na základňu", DlgCellRowSpan : "Zlúčené riadky", DlgCellCollSpan : "Zlúčené stĺpce", DlgCellBackColor : "Farba pozadia", DlgCellBorderColor : "Farba ohraničenia", DlgCellBtnSelect : "Výber...", // Find Dialog DlgFindTitle : "Hľadať", DlgFindFindBtn : "Hľadať", DlgFindNotFoundMsg : "Hľadaný text nebol nájdený.", // Replace Dialog DlgReplaceTitle : "Nahradiť", DlgReplaceFindLbl : "Čo hľadať:", DlgReplaceReplaceLbl : "Čím nahradiť:", DlgReplaceCaseChk : "Rozlišovať malé/veľké písmená", DlgReplaceReplaceBtn : "Nahradiť", DlgReplaceReplAllBtn : "Nahradiť všetko", DlgReplaceWordChk : "Len celé slová", // Paste Operations / Dialog PasteErrorCut : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vystrihnutie zvoleného textu do schránky. Prosím vystrihnite zvolený text do schránky pomocou klávesnice (Ctrl+X).", PasteErrorCopy : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre kopírovanie zvoleného textu do schránky. Prosím skopírujte zvolený text do schránky pomocou klávesnice (Ctrl+C).", PasteAsText : "Vložiť ako čistý text", PasteFromWord : "Vložiť text z Wordu", DlgPasteMsg2 : "Prosím vložte nasledovný rámček použitím klávesnice (Ctrl+V) a stlačte OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorovať nastavenia typu písma", DlgPasteRemoveStyles : "Odstrániť formátovanie", DlgPasteCleanBox : "Vyčistiť schránku", // Color Picker ColorAutomatic : "Automaticky", ColorMoreColors : "Viac farieb...", // Document Properties DocProps : "Vlastnosti dokumentu", // Anchor Dialog DlgAnchorTitle : "Vlastnosti kotvy", DlgAnchorName : "Meno kotvy", DlgAnchorErrorName : "Zadajte prosím meno kotvy", // Speller Pages Dialog DlgSpellNotInDic : "Nie je v slovníku", DlgSpellChangeTo : "Zmeniť na", DlgSpellBtnIgnore : "Ignorovať", DlgSpellBtnIgnoreAll : "Ignorovať všetko", DlgSpellBtnReplace : "Prepísat", DlgSpellBtnReplaceAll : "Prepísat všetko", DlgSpellBtnUndo : "Späť", DlgSpellNoSuggestions : "- Žiadny návrh -", DlgSpellProgress : "Prebieha kontrola pravopisu...", DlgSpellNoMispell : "Kontrola pravopisu dokončená: bez chýb", DlgSpellNoChanges : "Kontrola pravopisu dokončená: žiadne slová nezmenené", DlgSpellOneChange : "Kontrola pravopisu dokončená: zmenené jedno slovo", DlgSpellManyChanges : "Kontrola pravopisu dokončená: zmenených %1 slov", IeSpellDownload : "Kontrola pravopisu nie je naištalovaná. Chcete ju hneď stiahnuť?", // Button Dialog DlgButtonText : "Text", DlgButtonType : "Typ", DlgButtonTypeBtn : "Tlačidlo", DlgButtonTypeSbm : "Odoslať", DlgButtonTypeRst : "Vymazať", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Názov", DlgCheckboxValue : "Hodnota", DlgCheckboxSelected : "Vybrané", // Form Dialog DlgFormName : "Názov", DlgFormAction : "Akcie", DlgFormMethod : "Metóda", // Select Field Dialog DlgSelectName : "Názov", DlgSelectValue : "Hodnota", DlgSelectSize : "Veľkosť", DlgSelectLines : "riadkov", DlgSelectChkMulti : "Povoliť viacnásobný výber", DlgSelectOpAvail : "Dostupné možnosti", DlgSelectOpText : "Text", DlgSelectOpValue : "Hodnota", DlgSelectBtnAdd : "Pridať", DlgSelectBtnModify : "Zmeniť", DlgSelectBtnUp : "Hore", DlgSelectBtnDown : "Dole", DlgSelectBtnSetValue : "Nastaviť ako vybranú hodnotu", DlgSelectBtnDelete : "Zmazať", // Textarea Dialog DlgTextareaName : "Názov", DlgTextareaCols : "Stĺpce", DlgTextareaRows : "Riadky", // Text Field Dialog DlgTextName : "Názov", DlgTextValue : "Hodnota", DlgTextCharWidth : "Šírka pola (znakov)", DlgTextMaxChars : "Maximálny počet znakov", DlgTextType : "Typ", DlgTextTypeText : "Text", DlgTextTypePass : "Heslo", // Hidden Field Dialog DlgHiddenName : "Názov", DlgHiddenValue : "Hodnota", // Bulleted List Dialog BulletedListProp : "Vlastnosti odrážok", NumberedListProp : "Vlastnosti číslovania", DlgLstStart : "Štart", DlgLstType : "Typ", DlgLstTypeCircle : "Krúžok", DlgLstTypeDisc : "Disk", DlgLstTypeSquare : "Štvorec", DlgLstTypeNumbers : "Číslovanie (1, 2, 3)", DlgLstTypeLCase : "Malé písmená (a, b, c)", DlgLstTypeUCase : "Veľké písmená (A, B, C)", DlgLstTypeSRoman : "Malé rímske číslice (i, ii, iii)", DlgLstTypeLRoman : "Veľké rímske číslice (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Všeobecné", DlgDocBackTab : "Pozadie", DlgDocColorsTab : "Farby a okraje", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Titulok", DlgDocLangDir : "Orientácie jazyka", DlgDocLangDirLTR : "Zľava doprava (LTR)", DlgDocLangDirRTL : "Sprava doľava (RTL)", DlgDocLangCode : "Kód jazyka", DlgDocCharSet : "Kódová stránka", DlgDocCharSetCE : "Stredoeurópske", DlgDocCharSetCT : "Čínština tradičná (Big5)", DlgDocCharSetCR : "Cyrillika", DlgDocCharSetGR : "Gréčtina", DlgDocCharSetJP : "Japončina", DlgDocCharSetKR : "Korejčina", DlgDocCharSetTR : "Turečtina", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Západná európa", DlgDocCharSetOther : "Iná kódová stránka", DlgDocDocType : "Typ záhlavia dokumentu", DlgDocDocTypeOther : "Iný typ záhlavia dokumentu", DlgDocIncXHTML : "Obsahuje deklarácie XHTML", DlgDocBgColor : "Farba pozadia", DlgDocBgImage : "URL adresa obrázku na pozadí", DlgDocBgNoScroll : "Fixné pozadie", DlgDocCText : "Text", DlgDocCLink : "Odkaz", DlgDocCVisited : "Navštívený odkaz", DlgDocCActive : "Aktívny odkaz", DlgDocMargins : "Okraje stránky", DlgDocMaTop : "Horný", DlgDocMaLeft : "Ľavý", DlgDocMaRight : "Pravý", DlgDocMaBottom : "Dolný", DlgDocMeIndex : "Kľúčové slová pre indexovanie (oddelené čiarkou)", DlgDocMeDescr : "Popis stránky", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Autorské práva", DlgDocPreview : "Náhľad", // Templates Dialog Templates : "Šablóny", DlgTemplatesTitle : "Šablóny obsahu", DlgTemplatesSelMsg : "Prosím vyberte šablóny na otvorenie v editore
(súšasný obsah bude stratený):", DlgTemplatesLoading : "Nahrávam zoznam šablón. Čakajte prosím...", DlgTemplatesNoTpl : "(žiadne šablóny nenájdené)", DlgTemplatesReplace : "Nahradiť aktuálny obsah", // About Dialog DlgAboutAboutTab : "O aplikáci", DlgAboutBrowserInfoTab : "Informácie o prehliadači", DlgAboutLicenseTab : "Licencia", DlgAboutVersion : "verzia", DlgAboutInfo : "Viac informácií získate na" };FCKeditor/editor/lang/ja.js0000644000102600010270000004704011234071617015017 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Japanese language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "ツールバーを隠す", ToolbarExpand : "ツールバーを表示", // Toolbar Items and Context Menu Save : "保存", NewPage : "新しいページ", Preview : "プレビュー", Cut : "切り取り", Copy : "コピー", Paste : "貼り付け", PasteText : "プレーンテキスト貼り付け", PasteWord : "ワード文章から貼り付け", Print : "印刷", SelectAll : "すべて選択", RemoveFormat : "フォーマット削除", InsertLinkLbl : "リンク", InsertLink : "リンク挿入/編集", RemoveLink : "リンク削除", Anchor : "アンカー挿入/編集", InsertImageLbl : "イメージ", InsertImage : "イメージ挿入/編集", InsertFlashLbl : "Flash", InsertFlash : "Flash挿入/編集", InsertTableLbl : "テーブル", InsertTable : "テーブル挿入/編集", InsertLineLbl : "ライン", InsertLine : "横罫線", InsertSpecialCharLbl: "特殊文字", InsertSpecialChar : "特殊文字挿入", InsertSmileyLbl : "絵文字", InsertSmiley : "絵文字挿入", About : "FCKeditorヘルプ", Bold : "太字", Italic : "斜体", Underline : "下線", StrikeThrough : "打ち消し線", Subscript : "添え字", Superscript : "上付き文字", LeftJustify : "左揃え", CenterJustify : "中央揃え", RightJustify : "右揃え", BlockJustify : "両端揃え", DecreaseIndent : "インデント解除", IncreaseIndent : "インデント", Undo : "元に戻す", Redo : "やり直し", NumberedListLbl : "段落番号", NumberedList : "段落番号の追加/削除", BulletedListLbl : "箇条書き", BulletedList : "箇条書きの追加/削除", ShowTableBorders : "テーブルボーダー表示", ShowDetails : "詳細表示", Style : "スタイル", FontFormat : "フォーマット", Font : "フォント", FontSize : "サイズ", TextColor : "テキスト色", BGColor : "背景色", Source : "ソース", Find : "検索", Replace : "置き換え", SpellCheck : "スペルチェック", UniversalKeyboard : "ユニバーサル・キーボード", PageBreakLbl : "改ページ", PageBreak : "改ページ挿入", Form : "フォーム", Checkbox : "チェックボックス", RadioButton : "ラジオボタン", TextField : "1行テキスト", Textarea : "テキストエリア", HiddenField : "不可視フィールド", Button : "ボタン", SelectionField : "選択フィールド", ImageButton : "画像ボタン", FitWindow : "エディタサイズを最大にします", // Context Menu EditLink : "リンク編集", CellCM : "セル", RowCM : "行", ColumnCM : "カラム", InsertRow : "行挿入", DeleteRows : "行削除", InsertColumn : "列挿入", DeleteColumns : "列削除", InsertCell : "セル挿入", DeleteCells : "セル削除", MergeCells : "セル結合", SplitCell : "セル分割", TableDelete : "テーブル削除", CellProperties : "セル プロパティ", TableProperties : "テーブル プロパティ", ImageProperties : "イメージ プロパティ", FlashProperties : "Flash プロパティ", AnchorProp : "アンカー プロパティ", ButtonProp : "ボタン プロパティ", CheckboxProp : "チェックボックス プロパティ", HiddenFieldProp : "不可視フィールド プロパティ", RadioButtonProp : "ラジオボタン プロパティ", ImageButtonProp : "画像ボタン プロパティ", TextFieldProp : "1行テキスト プロパティ", SelectionFieldProp : "選択フィールド プロパティ", TextareaProp : "テキストエリア プロパティ", FormProp : "フォーム プロパティ", FontFormats : "標準;書式付き;アドレス;見出し 1;見出し 2;見出し 3;見出し 4;見出し 5;見出し 6;標準 (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML処理中. しばらくお待ちください...", Done : "完了", PasteWordConfirm : "貼り付けを行うテキストは、ワード文章からコピーされようとしています。貼り付ける前にクリーニングを行いますか?", NotCompatiblePaste : "このコマンドはインターネット・エクスプローラーバージョン5.5以上で利用可能です。クリーニングしないで貼り付けを行いますか?", UnknownToolbarItem : "未知のツールバー項目 \"%1\"", UnknownCommand : "未知のコマンド名 \"%1\"", NotImplemented : "コマンドはインプリメントされませんでした。", UnknownToolbarSet : "ツールバー設定 \"%1\" 存在しません。", NoActiveX : "エラー、警告メッセージなどが発生した場合、ブラウザーのセキュリティ設定によりエディタのいくつかの機能が制限されている可能性があります。セキュリティ設定のオプションで\"ActiveXコントロールとプラグインの実行\"を有効にするにしてください。", BrowseServerBlocked : "サーバーブラウザーを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", DialogBlocked : "ダイアログウィンドウを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "キャンセル", DlgBtnClose : "閉じる", DlgBtnBrowseServer : "サーバーブラウザー", DlgAdvancedTag : "高度な設定", DlgOpOther : "<その他>", DlgInfoTab : "情報", DlgAlertUrl : "URLを挿入してください", // General Dialogs Labels DlgGenNotSet : "<なし>", DlgGenId : "Id", DlgGenLangDir : "文字表記の方向", DlgGenLangDirLtr : "左から右 (LTR)", DlgGenLangDirRtl : "右から左 (RTL)", DlgGenLangCode : "言語コード", DlgGenAccessKey : "アクセスキー", DlgGenName : "Name属性", DlgGenTabIndex : "タブインデックス", DlgGenLongDescr : "longdesc属性(長文説明)", DlgGenClass : "スタイルシートクラス", DlgGenTitle : "Title属性", DlgGenContType : "Content Type属性", DlgGenLinkCharset : "リンクcharset属性", DlgGenStyle : "スタイルシート", // Image Dialog DlgImgTitle : "イメージ プロパティ", DlgImgInfoTab : "イメージ 情報", DlgImgBtnUpload : "サーバーに送信", DlgImgURL : "URL", DlgImgUpload : "アップロード", DlgImgAlt : "代替テキスト", DlgImgWidth : "幅", DlgImgHeight : "高さ", DlgImgLockRatio : "ロック比率", DlgBtnResetSize : "サイズリセット", DlgImgBorder : "ボーダー", DlgImgHSpace : "横間隔", DlgImgVSpace : "縦間隔", DlgImgAlign : "行揃え", DlgImgAlignLeft : "左", DlgImgAlignAbsBottom: "下部(絶対的)", DlgImgAlignAbsMiddle: "中央(絶対的)", DlgImgAlignBaseline : "ベースライン", DlgImgAlignBottom : "下", DlgImgAlignMiddle : "中央", DlgImgAlignRight : "右", DlgImgAlignTextTop : "テキスト上部", DlgImgAlignTop : "上", DlgImgPreview : "プレビュー", DlgImgAlertUrl : "イメージのURLを入力してください。", DlgImgLinkTab : "リンク", // Flash Dialog DlgFlashTitle : "Flash プロパティ", DlgFlashChkPlay : "再生", DlgFlashChkLoop : "ループ再生", DlgFlashChkMenu : "Flashメニュー可能", DlgFlashScale : "拡大縮小設定", DlgFlashScaleAll : "すべて表示", DlgFlashScaleNoBorder : "外が見えない様に拡大", DlgFlashScaleFit : "上下左右にフィット", // Link Dialog DlgLnkWindowTitle : "ハイパーリンク", DlgLnkInfoTab : "ハイパーリンク 情報", DlgLnkTargetTab : "ターゲット", DlgLnkType : "リンクタイプ", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "このページのアンカー", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "プロトコル", DlgLnkProtoOther : "<その他>", DlgLnkURL : "URL", DlgLnkAnchorSel : "アンカーを選択", DlgLnkAnchorByName : "アンカー名", DlgLnkAnchorById : "エレメントID", DlgLnkNoAnchors : "<ドキュメントにおいて利用可能なアンカーはありません。>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail アドレス", DlgLnkEMailSubject : "件名", DlgLnkEMailBody : "本文", DlgLnkUpload : "アップロード", DlgLnkBtnUpload : "サーバーに送信", DlgLnkTarget : "ターゲット", DlgLnkTargetFrame : "<フレーム>", DlgLnkTargetPopup : "<ポップアップウィンドウ>", DlgLnkTargetBlank : "新しいウィンドウ (_blank)", DlgLnkTargetParent : "親ウィンドウ (_parent)", DlgLnkTargetSelf : "同じウィンドウ (_self)", DlgLnkTargetTop : "最上位ウィンドウ (_top)", DlgLnkTargetFrameName : "目的のフレーム名", DlgLnkPopWinName : "ポップアップウィンドウ名", DlgLnkPopWinFeat : "ポップアップウィンドウ特徴", DlgLnkPopResize : "リサイズ可能", DlgLnkPopLocation : "ロケーションバー", DlgLnkPopMenu : "メニューバー", DlgLnkPopScroll : "スクロールバー", DlgLnkPopStatus : "ステータスバー", DlgLnkPopToolbar : "ツールバー", DlgLnkPopFullScrn : "全画面モード(IE)", DlgLnkPopDependent : "開いたウィンドウに連動して閉じる (Netscape)", DlgLnkPopWidth : "幅", DlgLnkPopHeight : "高さ", DlgLnkPopLeft : "左端からの座標で指定", DlgLnkPopTop : "上端からの座標で指定", DlnLnkMsgNoUrl : "リンクURLを入力してください。", DlnLnkMsgNoEMail : "メールアドレスを入力してください。", DlnLnkMsgNoAnchor : "アンカーを選択してください。", DlnLnkMsgInvPopName : "ポップ・アップ名は英字で始まる文字で指定してくだい。ポップ・アップ名にスペースは含めません", // Color Dialog DlgColorTitle : "色選択", DlgColorBtnClear : "クリア", DlgColorHighlight : "ハイライト", DlgColorSelected : "選択色", // Smiley Dialog DlgSmileyTitle : "顔文字挿入", // Special Character Dialog DlgSpecialCharTitle : "特殊文字選択", // Table Dialog DlgTableTitle : "テーブル プロパティ", DlgTableRows : "行", DlgTableColumns : "列", DlgTableBorder : "ボーダーサイズ", DlgTableAlign : "キャプションの整列", DlgTableAlignNotSet : "<なし>", DlgTableAlignLeft : "左", DlgTableAlignCenter : "中央", DlgTableAlignRight : "右", DlgTableWidth : "テーブル幅", DlgTableWidthPx : "ピクセル", DlgTableWidthPc : "パーセント", DlgTableHeight : "テーブル高さ", DlgTableCellSpace : "セル内余白", DlgTableCellPad : "セル内間隔", DlgTableCaption : "キャプション", DlgTableSummary : "テーブル目的/構造", // Table Cell Dialog DlgCellTitle : "セル プロパティ", DlgCellWidth : "幅", DlgCellWidthPx : "ピクセル", DlgCellWidthPc : "パーセント", DlgCellHeight : "高さ", DlgCellWordWrap : "折り返し", DlgCellWordWrapNotSet : "<なし>", DlgCellWordWrapYes : "Yes", DlgCellWordWrapNo : "No", DlgCellHorAlign : "セル横の整列", DlgCellHorAlignNotSet : "<なし>", DlgCellHorAlignLeft : "左", DlgCellHorAlignCenter : "中央", DlgCellHorAlignRight: "右", DlgCellVerAlign : "セル縦の整列", DlgCellVerAlignNotSet : "<なし>", DlgCellVerAlignTop : "上", DlgCellVerAlignMiddle : "中央", DlgCellVerAlignBottom : "下", DlgCellVerAlignBaseline : "ベースライン", DlgCellRowSpan : "縦幅(行数)", DlgCellCollSpan : "横幅(列数)", DlgCellBackColor : "背景色", DlgCellBorderColor : "ボーダーカラー", DlgCellBtnSelect : "選択...", // Find Dialog DlgFindTitle : "検索", DlgFindFindBtn : "検索", DlgFindNotFoundMsg : "指定された文字列は見つかりませんでした。", // Replace Dialog DlgReplaceTitle : "置き換え", DlgReplaceFindLbl : "検索する文字列:", DlgReplaceReplaceLbl : "置換えする文字列:", DlgReplaceCaseChk : "部分一致", DlgReplaceReplaceBtn : "置換え", DlgReplaceReplAllBtn : "すべて置換え", DlgReplaceWordChk : "単語単位で一致", // Paste Operations / Dialog PasteErrorCut : "ブラウザーのセキュリティ設定によりエディタの切り取り操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+X)を使用してください。", PasteErrorCopy : "ブラウザーのセキュリティ設定によりエディタのコピー操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+C)を使用してください。", PasteAsText : "プレーンテキスト貼り付け", PasteFromWord : "ワード文章から貼り付け", DlgPasteMsg2 : "キーボード(Ctrl+V)を使用して、次の入力エリア内で貼って、OKを押してください。", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "FontタグのFace属性を無視します。", DlgPasteRemoveStyles : "スタイル定義を削除します。", DlgPasteCleanBox : "入力エリアクリア", // Color Picker ColorAutomatic : "自動", ColorMoreColors : "その他の色...", // Document Properties DocProps : "文書 プロパティ", // Anchor Dialog DlgAnchorTitle : "アンカー プロパティ", DlgAnchorName : "アンカー名", DlgAnchorErrorName : "アンカー名を必ず入力してください。", // Speller Pages Dialog DlgSpellNotInDic : "辞書にありません", DlgSpellChangeTo : "変更", DlgSpellBtnIgnore : "無視", DlgSpellBtnIgnoreAll : "すべて無視", DlgSpellBtnReplace : "置換", DlgSpellBtnReplaceAll : "すべて置換", DlgSpellBtnUndo : "やり直し", DlgSpellNoSuggestions : "- 該当なし -", DlgSpellProgress : "スペルチェック処理中...", DlgSpellNoMispell : "スペルチェック完了: スペルの誤りはありませんでした", DlgSpellNoChanges : "スペルチェック完了: 語句は変更されませんでした", DlgSpellOneChange : "スペルチェック完了: 1語句変更されました", DlgSpellManyChanges : "スペルチェック完了: %1 語句変更されました", IeSpellDownload : "スペルチェッカーがインストールされていません。今すぐダウンロードしますか?", // Button Dialog DlgButtonText : "テキスト (値)", DlgButtonType : "タイプ", DlgButtonTypeBtn : "ボタン", DlgButtonTypeSbm : "送信", DlgButtonTypeRst : "リセット", // Checkbox and Radio Button Dialogs DlgCheckboxName : "名前", DlgCheckboxValue : "値", DlgCheckboxSelected : "選択済み", // Form Dialog DlgFormName : "フォーム名", DlgFormAction : "アクション", DlgFormMethod : "メソッド", // Select Field Dialog DlgSelectName : "名前", DlgSelectValue : "値", DlgSelectSize : "サイズ", DlgSelectLines : "行", DlgSelectChkMulti : "複数項目選択を許可", DlgSelectOpAvail : "利用可能なオプション", DlgSelectOpText : "選択項目名", DlgSelectOpValue : "選択項目値", DlgSelectBtnAdd : "追加", DlgSelectBtnModify : "編集", DlgSelectBtnUp : "上へ", DlgSelectBtnDown : "下へ", DlgSelectBtnSetValue : "選択した値を設定", DlgSelectBtnDelete : "削除", // Textarea Dialog DlgTextareaName : "名前", DlgTextareaCols : "列", DlgTextareaRows : "行", // Text Field Dialog DlgTextName : "名前", DlgTextValue : "値", DlgTextCharWidth : "サイズ", DlgTextMaxChars : "最大長", DlgTextType : "タイプ", DlgTextTypeText : "テキスト", DlgTextTypePass : "パスワード入力", // Hidden Field Dialog DlgHiddenName : "名前", DlgHiddenValue : "値", // Bulleted List Dialog BulletedListProp : "箇条書き プロパティ", NumberedListProp : "段落番号 プロパティ", DlgLstStart : "開始文字", DlgLstType : "タイプ", DlgLstTypeCircle : "白丸", DlgLstTypeDisc : "黒丸", 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 : "全般", DlgDocBackTab : "背景", DlgDocColorsTab : "色とマージン", DlgDocMetaTab : "メタデータ", DlgDocPageTitle : "ページタイトル", DlgDocLangDir : "言語文字表記の方向", DlgDocLangDirLTR : "左から右に表記(LTR)", DlgDocLangDirRTL : "右から左に表記(RTL)", DlgDocLangCode : "言語コード", DlgDocCharSet : "文字セット符号化", DlgDocCharSetCE : "Central European", DlgDocCharSetCT : "Chinese Traditional (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Greek", DlgDocCharSetJP : "Japanese", DlgDocCharSetKR : "Korean", DlgDocCharSetTR : "Turkish", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "他の文字セット符号化", DlgDocDocType : "文書タイプヘッダー", DlgDocDocTypeOther : "その他文書タイプヘッダー", DlgDocIncXHTML : "XHTML宣言をインクルード", DlgDocBgColor : "背景色", DlgDocBgImage : "背景画像 URL", DlgDocBgNoScroll : "スクロールしない背景", DlgDocCText : "テキスト", DlgDocCLink : "リンク", DlgDocCVisited : "アクセス済みリンク", DlgDocCActive : "アクセス中リンク", DlgDocMargins : "ページ・マージン", DlgDocMaTop : "上部", DlgDocMaLeft : "左", DlgDocMaRight : "右", DlgDocMaBottom : "下部", DlgDocMeIndex : "文書のキーワード(カンマ区切り)", DlgDocMeDescr : "文書の概要", DlgDocMeAuthor : "文書の作者", DlgDocMeCopy : "文書の著作権", DlgDocPreview : "プレビュー", // Templates Dialog Templates : "テンプレート(雛形)", DlgTemplatesTitle : "テンプレート内容", DlgTemplatesSelMsg : "エディターで使用するテンプレートを選択してください。
(現在のエディタの内容は失われます):", DlgTemplatesLoading : "テンプレート一覧読み込み中. しばらくお待ちください...", DlgTemplatesNoTpl : "(テンプレートが定義されていません)", DlgTemplatesReplace : "現在のエディタの内容と置換えをします", // About Dialog DlgAboutAboutTab : "バージョン情報", DlgAboutBrowserInfoTab : "ブラウザ情報", DlgAboutLicenseTab : "ライセンス", DlgAboutVersion : "バージョン", DlgAboutInfo : "より詳しい情報はこちらで" };FCKeditor/editor/lang/pt-br.js0000644000102600010270000004414211234071634015450 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Brazilian Portuguese language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Ocultar Barra de Ferramentas", ToolbarExpand : "Exibir Barra de Ferramentas", // Toolbar Items and Context Menu Save : "Salvar", NewPage : "Novo", Preview : "Visualizar", Cut : "Recortar", Copy : "Copiar", Paste : "Colar", PasteText : "Colar como Texto sem Formatação", PasteWord : "Colar do Word", Print : "Imprimir", SelectAll : "Selecionar Tudo", RemoveFormat : "Remover Formatação", InsertLinkLbl : "Hiperlink", InsertLink : "Inserir/Editar Hiperlink", RemoveLink : "Remover Hiperlink", Anchor : "Inserir/Editar Âncora", InsertImageLbl : "Figura", InsertImage : "Inserir/Editar Figura", InsertFlashLbl : "Flash", InsertFlash : "Insere/Edita Flash", InsertTableLbl : "Tabela", InsertTable : "Inserir/Editar Tabela", InsertLineLbl : "Linha", InsertLine : "Inserir Linha Horizontal", InsertSpecialCharLbl: "Caracteres Especiais", InsertSpecialChar : "Inserir Caractere Especial", InsertSmileyLbl : "Emoticon", InsertSmiley : "Inserir Emoticon", About : "Sobre FCKeditor", Bold : "Negrito", Italic : "Itálico", Underline : "Sublinhado", StrikeThrough : "Tachado", Subscript : "Subscrito", Superscript : "Sobrescrito", LeftJustify : "Alinhar Esquerda", CenterJustify : "Centralizar", RightJustify : "Alinhar Direita", BlockJustify : "Justificado", DecreaseIndent : "Diminuir Recuo", IncreaseIndent : "Aumentar Recuo", Undo : "Desfazer", Redo : "Refazer", NumberedListLbl : "Numeração", NumberedList : "Inserir/Remover Numeração", BulletedListLbl : "Marcadores", BulletedList : "Inserir/Remover Marcadores", ShowTableBorders : "Exibir Bordas da Tabela", ShowDetails : "Exibir Detalhes", Style : "Estilo", FontFormat : "Formatação", Font : "Fonte", FontSize : "Tamanho", TextColor : "Cor do Texto", BGColor : "Cor do Plano de Fundo", Source : "Código-Fonte", Find : "Localizar", Replace : "Substituir", SpellCheck : "Verificar Ortografia", UniversalKeyboard : "Teclado Universal", PageBreakLbl : "Quebra de Página", PageBreak : "Inserir Quebra de Página", Form : "Formulário", Checkbox : "Caixa de Seleção", RadioButton : "Botão de Opção", TextField : "Caixa de Texto", Textarea : "Área de Texto", HiddenField : "Campo Oculto", Button : "Botão", SelectionField : "Caixa de Listagem", ImageButton : "Botão de Imagem", FitWindow : "Maximizar o tamanho do editor", // Context Menu EditLink : "Editar Hiperlink", CellCM : "Célula", RowCM : "Linha", ColumnCM : "Coluna", InsertRow : "Inserir Linha", DeleteRows : "Remover Linhas", InsertColumn : "Inserir Coluna", DeleteColumns : "Remover Colunas", InsertCell : "Inserir Células", DeleteCells : "Remover Células", MergeCells : "Mesclar Células", SplitCell : "Dividir Célular", TableDelete : "Apagar Tabela", CellProperties : "Formatar Célula", TableProperties : "Formatar Tabela", ImageProperties : "Formatar Figura", FlashProperties : "Propriedades Flash", AnchorProp : "Formatar Âncora", ButtonProp : "Formatar Botão", CheckboxProp : "Formatar Caixa de Seleção", HiddenFieldProp : "Formatar Campo Oculto", RadioButtonProp : "Formatar Botão de Opção", ImageButtonProp : "Formatar Botão de Imagem", TextFieldProp : "Formatar Caixa de Texto", SelectionFieldProp : "Formatar Caixa de Listagem", TextareaProp : "Formatar Área de Texto", FormProp : "Formatar Formulário", FontFormats : "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processando XHTML. Por favor, aguarde...", Done : "Pronto", PasteWordConfirm : "O texto que você deseja colar parece ter sido copiado do Word. Você gostaria de remover a formatação antes de colar?", NotCompatiblePaste : "Este comando está disponível para o navegador Internet Explorer 5.5 ou superior. Você gostaria de colar sem remover a formatação?", UnknownToolbarItem : "O item da barra de ferramentas \"%1\" não é reconhecido", UnknownCommand : "O comando \"%1\" não é reconhecido", NotImplemented : "O comando não foi implementado", UnknownToolbarSet : "A barra de ferramentas \"%1\" não existe", NoActiveX : "As configurações de segurança do seu browser podem limitar algumas características do editor. Você precisa habilitar a opção \"Executar controles e plug-ins ActiveX\". Você pode experimentar erros e alertas de características faltantes.", BrowseServerBlocked : "Os recursos do browser não puderam ser abertos. Tenha certeza que todos os bloqueadores de popup estão desabilitados.", DialogBlocked : "Não foi possível abrir a janela de diálogo. Tenha certeza que todos os bloqueadores de popup estão desabilitados.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancelar", DlgBtnClose : "Fechar", DlgBtnBrowseServer : "Localizar no Servidor", DlgAdvancedTag : "Avançado", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Inserir a URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Direção do idioma", DlgGenLangDirLtr : "Esquerda para Direita (LTR)", DlgGenLangDirRtl : "Direita para Esquerda (RTL)", DlgGenLangCode : "Idioma", DlgGenAccessKey : "Chave de Acesso", DlgGenName : "Nome", DlgGenTabIndex : "Índice de Tabulação", DlgGenLongDescr : "Descrição da URL", DlgGenClass : "Classe de Folhas de Estilo", DlgGenTitle : "Título", DlgGenContType : "Tipo de Conteúdo", DlgGenLinkCharset : "Conjunto de Caracteres do Hiperlink", DlgGenStyle : "Estilos", // Image Dialog DlgImgTitle : "Formatar Figura", DlgImgInfoTab : "Informações da Figura", DlgImgBtnUpload : "Enviar para o Servidor", DlgImgURL : "URL", DlgImgUpload : "Submeter", DlgImgAlt : "Texto Alternativo", DlgImgWidth : "Largura", DlgImgHeight : "Altura", DlgImgLockRatio : "Manter proporções", DlgBtnResetSize : "Redefinir para o Tamanho Original", DlgImgBorder : "Borda", DlgImgHSpace : "Horizontal", DlgImgVSpace : "Vertical", DlgImgAlign : "Alinhamento", DlgImgAlignLeft : "Esquerda", DlgImgAlignAbsBottom: "Inferior Absoluto", DlgImgAlignAbsMiddle: "Centralizado Absoluto", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Inferior", DlgImgAlignMiddle : "Centralizado", DlgImgAlignRight : "Direita", DlgImgAlignTextTop : "Superior Absoluto", DlgImgAlignTop : "Superior", DlgImgPreview : "Visualização", DlgImgAlertUrl : "Por favor, digite o URL da figura.", DlgImgLinkTab : "Hiperlink", // Flash Dialog DlgFlashTitle : "Propriedades Flash", DlgFlashChkPlay : "Tocar Automaticamente", DlgFlashChkLoop : "Loop", DlgFlashChkMenu : "Habilita Menu Flash", DlgFlashScale : "Escala", DlgFlashScaleAll : "Mostrar tudo", DlgFlashScaleNoBorder : "Sem Borda", DlgFlashScaleFit : "Escala Exata", // Link Dialog DlgLnkWindowTitle : "Hiperlink", DlgLnkInfoTab : "Informações", DlgLnkTargetTab : "Destino", DlgLnkType : "Tipo de hiperlink", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Âncora nesta página", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocolo", DlgLnkProtoOther : "", DlgLnkURL : "URL do hiperlink", DlgLnkAnchorSel : "Selecione uma âncora", DlgLnkAnchorByName : "Pelo Nome da âncora", DlgLnkAnchorById : "Pelo Id do Elemento", DlgLnkNoAnchors : "(Não há âncoras disponíveis neste documento)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Endereço E-Mail", DlgLnkEMailSubject : "Assunto da Mensagem", DlgLnkEMailBody : "Corpo da Mensagem", DlgLnkUpload : "Enviar ao Servidor", DlgLnkBtnUpload : "Enviar ao Servidor", DlgLnkTarget : "Destino", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nova Janela (_blank)", DlgLnkTargetParent : "Janela Pai (_parent)", DlgLnkTargetSelf : "Mesma Janela (_self)", DlgLnkTargetTop : "Janela Superior (_top)", DlgLnkTargetFrameName : "Nome do Frame de Destino", DlgLnkPopWinName : "Nome da Janela Pop-up", DlgLnkPopWinFeat : "Atributos da Janela Pop-up", DlgLnkPopResize : "Redimensionável", DlgLnkPopLocation : "Barra de Endereços", DlgLnkPopMenu : "Barra de Menus", DlgLnkPopScroll : "Barras de Rolagem", DlgLnkPopStatus : "Barra de Status", DlgLnkPopToolbar : "Barra de Ferramentas", DlgLnkPopFullScrn : "Modo Tela Cheia (IE)", DlgLnkPopDependent : "Dependente (Netscape)", DlgLnkPopWidth : "Largura", DlgLnkPopHeight : "Altura", DlgLnkPopLeft : "Esquerda", DlgLnkPopTop : "Superior", DlnLnkMsgNoUrl : "Por favor, digite o endereço do Hiperlink", DlnLnkMsgNoEMail : "Por favor, digite o endereço de e-mail", DlnLnkMsgNoAnchor : "Por favor, selecione uma âncora", DlnLnkMsgInvPopName : "O nome da janela popup deve começar com uma letra ou sublinhado (_) e não pode conter espaços", // Color Dialog DlgColorTitle : "Selecione uma Cor", DlgColorBtnClear : "Limpar", DlgColorHighlight : "Visualização", DlgColorSelected : "Selecionada", // Smiley Dialog DlgSmileyTitle : "Inserir Emoticon", // Special Character Dialog DlgSpecialCharTitle : "Selecione um Caractere Especial", // Table Dialog DlgTableTitle : "Formatar Tabela", DlgTableRows : "Linhas", DlgTableColumns : "Colunas", DlgTableBorder : "Borda", DlgTableAlign : "Alinhamento", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Esquerda", DlgTableAlignCenter : "Centralizado", DlgTableAlignRight : "Direita", DlgTableWidth : "Largura", DlgTableWidthPx : "pixels", DlgTableWidthPc : "%", DlgTableHeight : "Altura", DlgTableCellSpace : "Espaçamento", DlgTableCellPad : "Enchimento", DlgTableCaption : "Legenda", DlgTableSummary : "Resumo", // Table Cell Dialog DlgCellTitle : "Formatar célula", DlgCellWidth : "Largura", DlgCellWidthPx : "pixels", DlgCellWidthPc : "%", DlgCellHeight : "Altura", DlgCellWordWrap : "Quebra de Linha", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Sim", DlgCellWordWrapNo : "Não", DlgCellHorAlign : "Alinhamento Horizontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Esquerda", DlgCellHorAlignCenter : "Centralizado", DlgCellHorAlignRight: "Direita", DlgCellVerAlign : "Alinhamento Vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Superior", DlgCellVerAlignMiddle : "Centralizado", DlgCellVerAlignBottom : "Inferior", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Transpor Linhas", DlgCellCollSpan : "Transpor Colunas", DlgCellBackColor : "Cor do Plano de Fundo", DlgCellBorderColor : "Cor da Borda", DlgCellBtnSelect : "Selecionar...", // Find Dialog DlgFindTitle : "Localizar...", DlgFindFindBtn : "Localizar", DlgFindNotFoundMsg : "O texto especificado não foi encontrado.", // Replace Dialog DlgReplaceTitle : "Substituir", DlgReplaceFindLbl : "Procurar por:", DlgReplaceReplaceLbl : "Substituir por:", DlgReplaceCaseChk : "Coincidir Maiúsculas/Minúsculas", DlgReplaceReplaceBtn : "Substituir", DlgReplaceReplAllBtn : "Substituir Tudo", DlgReplaceWordChk : "Coincidir a palavra inteira", // Paste Operations / Dialog PasteErrorCut : "As configurações de segurança do seu navegador não permitem que o editor execute operações de recortar automaticamente. Por favor, utilize o teclado para recortar (Ctrl+X).", PasteErrorCopy : "As configurações de segurança do seu navegador não permitem que o editor execute operações de copiar automaticamente. Por favor, utilize o teclado para copiar (Ctrl+C).", PasteAsText : "Colar como Texto sem Formatação", PasteFromWord : "Colar do Word", DlgPasteMsg2 : "Transfira o link usado no box usando o teclado com (Ctrl+V) e OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorar definições de fonte", DlgPasteRemoveStyles : "Remove definições de estilo", DlgPasteCleanBox : "Limpar Box", // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Mais Cores...", // Document Properties DocProps : "Propriedades Documento", // Anchor Dialog DlgAnchorTitle : "Formatar Âncora", DlgAnchorName : "Nome da Âncora", DlgAnchorErrorName : "Por favor, digite o nome da âncora", // Speller Pages Dialog DlgSpellNotInDic : "Não encontrada", DlgSpellChangeTo : "Alterar para", DlgSpellBtnIgnore : "Ignorar uma vez", DlgSpellBtnIgnoreAll : "Ignorar Todas", DlgSpellBtnReplace : "Alterar", DlgSpellBtnReplaceAll : "Alterar Todas", DlgSpellBtnUndo : "Desfazer", DlgSpellNoSuggestions : "-sem sugestões de ortografia-", DlgSpellProgress : "Verificação ortográfica em andamento...", DlgSpellNoMispell : "Verificação encerrada: Não foram encontrados erros de ortografia", DlgSpellNoChanges : "Verificação ortográfica encerrada: Não houve alterações", DlgSpellOneChange : "Verificação ortográfica encerrada: Uma palavra foi alterada", DlgSpellManyChanges : "Verificação ortográfica encerrada: %1 foram alteradas", IeSpellDownload : "A verificação ortográfica não foi instalada. Você gostaria de realizar o download agora?", // Button Dialog DlgButtonText : "Texto (Valor)", DlgButtonType : "Tipo", DlgButtonTypeBtn : "Botão", DlgButtonTypeSbm : "Enviar", DlgButtonTypeRst : "Limpar", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nome", DlgCheckboxValue : "Valor", DlgCheckboxSelected : "Selecionado", // Form Dialog DlgFormName : "Nome", DlgFormAction : "Action", DlgFormMethod : "Método", // Select Field Dialog DlgSelectName : "Nome", DlgSelectValue : "Valor", DlgSelectSize : "Tamanho", DlgSelectLines : "linhas", DlgSelectChkMulti : "Permitir múltiplas seleções", DlgSelectOpAvail : "Opções disponíveis", DlgSelectOpText : "Texto", DlgSelectOpValue : "Valor", DlgSelectBtnAdd : "Adicionar", DlgSelectBtnModify : "Modificar", DlgSelectBtnUp : "Para cima", DlgSelectBtnDown : "Para baixo", DlgSelectBtnSetValue : "Definir como selecionado", DlgSelectBtnDelete : "Remover", // Textarea Dialog DlgTextareaName : "Nome", DlgTextareaCols : "Colunas", DlgTextareaRows : "Linhas", // Text Field Dialog DlgTextName : "Nome", DlgTextValue : "Valor", DlgTextCharWidth : "Comprimento (em caracteres)", DlgTextMaxChars : "Número Máximo de Caracteres", DlgTextType : "Tipo", DlgTextTypeText : "Texto", DlgTextTypePass : "Senha", // Hidden Field Dialog DlgHiddenName : "Nome", DlgHiddenValue : "Valor", // Bulleted List Dialog BulletedListProp : "Formatar Marcadores", NumberedListProp : "Formatar Numeração", DlgLstStart : "Iniciar", DlgLstType : "Tipo", DlgLstTypeCircle : "Círculo", DlgLstTypeDisc : "Disco", DlgLstTypeSquare : "Quadrado", DlgLstTypeNumbers : "Números (1, 2, 3)", DlgLstTypeLCase : "Letras Minúsculas (a, b, c)", DlgLstTypeUCase : "Letras Maiúsculas (A, B, C)", DlgLstTypeSRoman : "Números Romanos Minúsculos (i, ii, iii)", DlgLstTypeLRoman : "Números Romanos Maiúsculos (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Geral", DlgDocBackTab : "Plano de Fundo", DlgDocColorsTab : "Cores e Margens", DlgDocMetaTab : "Meta Dados", DlgDocPageTitle : "Título da Página", DlgDocLangDir : "Direção do Idioma", DlgDocLangDirLTR : "Esquerda para Direita (LTR)", DlgDocLangDirRTL : "Direita para Esquerda (RTL)", DlgDocLangCode : "Código do Idioma", DlgDocCharSet : "Codificação de Caracteres", DlgDocCharSetCE : "Europa Central", DlgDocCharSetCT : "Chinês Tradicional (Big5)", DlgDocCharSetCR : "Cirílico", DlgDocCharSetGR : "Grego", DlgDocCharSetJP : "Japonês", DlgDocCharSetKR : "Coreano", DlgDocCharSetTR : "Turco", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Europa Ocidental", DlgDocCharSetOther : "Outra Codificação de Caracteres", DlgDocDocType : "Cabeçalho Tipo de Documento", DlgDocDocTypeOther : "Other Document Type Heading", DlgDocIncXHTML : "Incluir Declarações XHTML", DlgDocBgColor : "Cor do Plano de Fundo", DlgDocBgImage : "URL da Imagem de Plano de Fundo", DlgDocBgNoScroll : "Plano de Fundo Fixo", DlgDocCText : "Texto", DlgDocCLink : "Hiperlink", DlgDocCVisited : "Hiperlink Visitado", DlgDocCActive : "Hiperlink Ativo", DlgDocMargins : "Margens da Página", DlgDocMaTop : "Superior", DlgDocMaLeft : "Inferior", DlgDocMaRight : "Direita", DlgDocMaBottom : "Inferior", DlgDocMeIndex : "Palavras-chave de Indexação do Documento (separadas por vírgula)", DlgDocMeDescr : "Descrição do Documento", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Direitos Autorais", DlgDocPreview : "Visualizar", // Templates Dialog Templates : "Modelos de layout", DlgTemplatesTitle : "Modelo de layout do conteúdo", DlgTemplatesSelMsg : "Selecione um modelo de layout para ser aberto no editor
(o conteúdo atual será perdido):", DlgTemplatesLoading : "Carregando a lista de modelos de layout. Aguarde...", DlgTemplatesNoTpl : "(Não foram definidos modelos de layout)", DlgTemplatesReplace : "Substituir o conteúdo atual", // About Dialog DlgAboutAboutTab : "Sobre", DlgAboutBrowserInfoTab : "Informações do Navegador", DlgAboutLicenseTab : "Licença", DlgAboutVersion : "versão", DlgAboutInfo : "Para maiores informações visite" };FCKeditor/editor/lang/fi.js0000644000102600010270000004205111234071605015015 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Finnish language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Piilota työkalurivi", ToolbarExpand : "Näytä työkalurivi", // Toolbar Items and Context Menu Save : "Tallenna", NewPage : "Tyhjennä", Preview : "Esikatsele", Cut : "Leikkaa", Copy : "Kopioi", Paste : "Liitä", PasteText : "Liitä tekstinä", PasteWord : "Liitä Wordista", Print : "Tulosta", SelectAll : "Valitse kaikki", RemoveFormat : "Poista muotoilu", InsertLinkLbl : "Linkki", InsertLink : "Lisää linkki/muokkaa linkkiä", RemoveLink : "Poista linkki", 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", InsertLine : "Lisää murtoviiva", InsertSpecialCharLbl: "Erikoismerkki", InsertSpecialChar : "Lisää erikoismerkki", InsertSmileyLbl : "Hymiö", InsertSmiley : "Lisää hymiö", About : "FCKeditorista", Bold : "Lihavoitu", Italic : "Kursivoitu", Underline : "Alleviivattu", StrikeThrough : "Yliviivattu", Subscript : "Alaindeksi", Superscript : "Yläindeksi", LeftJustify : "Tasaa vasemmat reunat", CenterJustify : "Keskitä", RightJustify : "Tasaa oikeat reunat", BlockJustify : "Tasaa molemmat reunat", DecreaseIndent : "Pienennä sisennystä", IncreaseIndent : "Suurenna sisennystä", Undo : "Kumoa", Redo : "Toista", NumberedListLbl : "Numerointi", NumberedList : "Lisää/poista numerointi", BulletedListLbl : "Luottelomerkit", BulletedList : "Lisää/poista luottelomerkit", ShowTableBorders : "Näytä taulun rajat", ShowDetails : "Näytä muotoilu", Style : "Tyyli", FontFormat : "Muotoilu", Font : "Fontti", FontSize : "Koko", TextColor : "Tekstiväri", BGColor : "Taustaväri", Source : "Koodi", Find : "Etsi", Replace : "Korvaa", SpellCheck : "Tarkista oikeinkirjoitus", UniversalKeyboard : "Universaali näppäimistö", PageBreakLbl : "Sivun vaihto", PageBreak : "Lisää sivun vaihto", Form : "Lomake", Checkbox : "Valintaruutu", RadioButton : "Radiopainike", TextField : "Tekstikenttä", Textarea : "Tekstilaatikko", HiddenField : "Piilokenttä", Button : "Painike", SelectionField : "Valintakenttä", ImageButton : "Kuvapainike", FitWindow : "Suurenna editori koko ikkunaan", // Context Menu EditLink : "Muokkaa linkkiä", CellCM : "Solu", RowCM : "Rivi", ColumnCM : "Sarake", InsertRow : "Lisää rivi", DeleteRows : "Poista rivit", InsertColumn : "Lisää sarake", DeleteColumns : "Poista sarakkeet", InsertCell : "Lisää solu", DeleteCells : "Poista solut", MergeCells : "Yhdistä solut", SplitCell : "Jaa solu", TableDelete : "Poista taulu", CellProperties : "Solun ominaisuudet", TableProperties : "Taulun ominaisuudet", ImageProperties : "Kuvan ominaisuudet", FlashProperties : "Flash ominaisuudet", AnchorProp : "Ankkurin ominaisuudet", ButtonProp : "Painikkeen ominaisuudet", CheckboxProp : "Valintaruudun ominaisuudet", HiddenFieldProp : "Piilokentän ominaisuudet", RadioButtonProp : "Radiopainikkeen ominaisuudet", ImageButtonProp : "Kuvapainikkeen ominaisuudet", TextFieldProp : "Tekstikentän ominaisuudet", SelectionFieldProp : "Valintakentän ominaisuudet", TextareaProp : "Tekstilaatikon ominaisuudet", FormProp : "Lomakkeen ominaisuudet", FontFormats : "Normaali;Muotoiltu;Osoite;Otsikko 1;Otsikko 2;Otsikko 3;Otsikko 4;Otsikko 5;Otsikko 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Prosessoidaan XHTML:ää. Odota hetki...", Done : "Valmis", PasteWordConfirm : "Teksti, jonka haluat liittää, näyttää olevan kopioitu Wordista. Haluatko puhdistaa sen ennen liittämistä?", NotCompatiblePaste : "Tämä komento toimii vain Internet Explorer 5.5:ssa tai uudemmassa. Haluatko liittää ilman puhdistusta?", UnknownToolbarItem : "Tuntemanton työkalu \"%1\"", UnknownCommand : "Tuntematon komento \"%1\"", NotImplemented : "Komentoa ei ole liitetty sovellukseen", UnknownToolbarSet : "Työkalukokonaisuus \"%1\" ei ole olemassa", NoActiveX : "Selaimesi turvallisuusasetukset voivat rajoittaa joitain editorin ominaisuuksia. Sinun pitää ottaa käyttöön asetuksista \"Suorita ActiveX komponentit ja -plugin-laajennukset\". Saatat kohdata virheitä ja huomata puuttuvia ominaisuuksia.", BrowseServerBlocked : "Resurssiselainta ei voitu avata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.", DialogBlocked : "Apuikkunaa ei voitu avaata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Peruuta", DlgBtnClose : "Sulje", DlgBtnBrowseServer : "Selaa palvelinta", DlgAdvancedTag : "Lisäominaisuudet", DlgOpOther : "Muut", DlgInfoTab : "Info", DlgAlertUrl : "Lisää URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Tunniste", DlgGenLangDir : "Kielen suunta", DlgGenLangDirLtr : "Vasemmalta oikealle (LTR)", DlgGenLangDirRtl : "Oikealta vasemmalle (RTL)", DlgGenLangCode : "Kielikoodi", DlgGenAccessKey : "Pikanäppäin", DlgGenName : "Nimi", DlgGenTabIndex : "Tabulaattori indeksi", DlgGenLongDescr : "Pitkän kuvauksen URL", DlgGenClass : "Tyyliluokat", DlgGenTitle : "Avustava otsikko", DlgGenContType : "Avustava sisällön tyyppi", DlgGenLinkCharset : "Linkitetty kirjaimisto", DlgGenStyle : "Tyyli", // Image Dialog DlgImgTitle : "Kuvan ominaisuudet", DlgImgInfoTab : "Kuvan tiedot", DlgImgBtnUpload : "Lähetä palvelimelle", DlgImgURL : "Osoite", DlgImgUpload : "Lisää kuva", DlgImgAlt : "Vaihtoehtoinen teksti", DlgImgWidth : "Leveys", DlgImgHeight : "Korkeus", DlgImgLockRatio : "Lukitse suhteet", DlgBtnResetSize : "Alkuperäinen koko", DlgImgBorder : "Raja", DlgImgHSpace : "Vaakatila", DlgImgVSpace : "Pystytila", DlgImgAlign : "Kohdistus", DlgImgAlignLeft : "Vasemmalle", DlgImgAlignAbsBottom: "Aivan alas", DlgImgAlignAbsMiddle: "Aivan keskelle", DlgImgAlignBaseline : "Alas (teksti)", DlgImgAlignBottom : "Alas", DlgImgAlignMiddle : "Keskelle", DlgImgAlignRight : "Oikealle", DlgImgAlignTextTop : "Ylös (teksti)", DlgImgAlignTop : "Ylös", DlgImgPreview : "Esikatselu", 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", DlgLnkTargetTab : "Kohde", DlgLnkType : "Linkkityyppi", DlgLnkTypeURL : "Osoite", DlgLnkTypeAnchor : "Ankkuri tässä sivussa", DlgLnkTypeEMail : "Sähköposti", DlgLnkProto : "Protokolla", DlgLnkProtoOther : "", DlgLnkURL : "Osoite", DlgLnkAnchorSel : "Valitse ankkuri", DlgLnkAnchorByName : "Ankkurin nimen mukaan", DlgLnkAnchorById : "Ankkurin ID:n mukaan", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Sähköpostiosoite", DlgLnkEMailSubject : "Aihe", DlgLnkEMailBody : "Viesti", DlgLnkUpload : "Lisää tiedosto", DlgLnkBtnUpload : "Lähetä palvelimelle", DlgLnkTarget : "Kohde", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Uusi ikkuna (_blank)", DlgLnkTargetParent : "Emoikkuna (_parent)", DlgLnkTargetSelf : "Sama ikkuna (_self)", DlgLnkTargetTop : "Päällimmäisin ikkuna (_top)", DlgLnkTargetFrameName : "Kohdekehyksen nimi", DlgLnkPopWinName : "Popup ikkunan nimi", DlgLnkPopWinFeat : "Popup ikkunan ominaisuudet", DlgLnkPopResize : "Venytettävä", DlgLnkPopLocation : "Osoiterivi", DlgLnkPopMenu : "Valikkorivi", DlgLnkPopScroll : "Vierityspalkit", DlgLnkPopStatus : "Tilarivi", DlgLnkPopToolbar : "Vakiopainikkeet", DlgLnkPopFullScrn : "Täysi ikkuna (IE)", DlgLnkPopDependent : "Riippuva (Netscape)", DlgLnkPopWidth : "Leveys", DlgLnkPopHeight : "Korkeus", DlgLnkPopLeft : "Vasemmalta (px)", DlgLnkPopTop : "Ylhäältä (px)", DlnLnkMsgNoUrl : "Linkille on kirjoitettava URL", DlnLnkMsgNoEMail : "Kirjoita sähköpostiosoite", DlnLnkMsgNoAnchor : "Valitse ankkuri", DlnLnkMsgInvPopName : "Popup-ikkunan nimi pitää alkaa aakkosella ja ei saa sisältää välejä", // Color Dialog DlgColorTitle : "Valitse väri", DlgColorBtnClear : "Tyhjennä", DlgColorHighlight : "Kohdalla", DlgColorSelected : "Valittu", // Smiley Dialog DlgSmileyTitle : "Lisää hymiö", // Special Character Dialog DlgSpecialCharTitle : "Valitse erikoismerkki", // Table Dialog DlgTableTitle : "Taulun ominaisuudet", DlgTableRows : "Rivit", DlgTableColumns : "Sarakkeet", DlgTableBorder : "Rajan paksuus", DlgTableAlign : "Kohdistus", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Vasemmalle", DlgTableAlignCenter : "Keskelle", DlgTableAlignRight : "Oikealle", DlgTableWidth : "Leveys", DlgTableWidthPx : "pikseliä", DlgTableWidthPc : "prosenttia", DlgTableHeight : "Korkeus", DlgTableCellSpace : "Solujen väli", DlgTableCellPad : "Solujen sisennys", DlgTableCaption : "Otsikko", DlgTableSummary : "Yhteenveto", // Table Cell Dialog DlgCellTitle : "Solun ominaisuudet", DlgCellWidth : "Leveys", DlgCellWidthPx : "pikseliä", DlgCellWidthPc : "prosenttia", DlgCellHeight : "Korkeus", DlgCellWordWrap : "Tekstikierrätys", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Kyllä", DlgCellWordWrapNo : "Ei", DlgCellHorAlign : "Vaakakohdistus", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Vasemmalle", DlgCellHorAlignCenter : "Keskelle", DlgCellHorAlignRight: "Oikealle", DlgCellVerAlign : "Pystykohdistus", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Ylös", DlgCellVerAlignMiddle : "Keskelle", DlgCellVerAlignBottom : "Alas", DlgCellVerAlignBaseline : "Tekstin alas", DlgCellRowSpan : "Rivin jatkuvuus", DlgCellCollSpan : "Sarakkeen jatkuvuus", DlgCellBackColor : "Taustaväri", DlgCellBorderColor : "Rajan väri", DlgCellBtnSelect : "Valitse...", // Find Dialog DlgFindTitle : "Etsi", DlgFindFindBtn : "Etsi", DlgFindNotFoundMsg : "Etsittyä tekstiä ei löytynyt.", // Replace Dialog DlgReplaceTitle : "Korvaa", DlgReplaceFindLbl : "Etsi mitä:", DlgReplaceReplaceLbl : "Korvaa tällä:", DlgReplaceCaseChk : "Sama kirjainkoko", DlgReplaceReplaceBtn : "Korvaa", DlgReplaceReplAllBtn : "Korvaa kaikki", DlgReplaceWordChk : "Koko sana", // Paste Operations / Dialog PasteErrorCut : "Selaimesi turva-asetukset eivät salli editorin toteuttaa leikkaamista. Käytä näppäimistöä leikkaamiseen (Ctrl+X).", PasteErrorCopy : "Selaimesi turva-asetukset eivät salli editorin toteuttaa kopioimista. Käytä näppäimistöä kopioimiseen (Ctrl+C).", PasteAsText : "Liitä tekstinä", PasteFromWord : "Liitä Wordista", DlgPasteMsg2 : "Liitä painamalla (Ctrl+V) ja painamalla OK.", DlgPasteSec : "Selaimesi turva-asetukset eivät salli editorin käyttää leikepöytää suoraan. Sinun pitää suorittaa liittäminen tässä ikkunassa.", DlgPasteIgnoreFont : "Jätä huomioimatta fonttimääritykset", DlgPasteRemoveStyles : "Poista tyylimääritykset", DlgPasteCleanBox : "Tyhjennä", // Color Picker ColorAutomatic : "Automaattinen", ColorMoreColors : "Lisää värejä...", // Document Properties DocProps : "Dokumentin ominaisuudet", // Anchor Dialog DlgAnchorTitle : "Ankkurin ominaisuudet", DlgAnchorName : "Nimi", DlgAnchorErrorName : "Ankkurille on kirjoitettava nimi", // Speller Pages Dialog DlgSpellNotInDic : "Ei sanakirjassa", DlgSpellChangeTo : "Vaihda", DlgSpellBtnIgnore : "Jätä huomioimatta", DlgSpellBtnIgnoreAll : "Jätä kaikki huomioimatta", DlgSpellBtnReplace : "Korvaa", DlgSpellBtnReplaceAll : "Korvaa kaikki", DlgSpellBtnUndo : "Kumoa", DlgSpellNoSuggestions : "Ei ehdotuksia", DlgSpellProgress : "Tarkistus käynnissä...", DlgSpellNoMispell : "Tarkistus valmis: Ei virheitä", DlgSpellNoChanges : "Tarkistus valmis: Yhtään sanaa ei muutettu", DlgSpellOneChange : "Tarkistus valmis: Yksi sana muutettiin", DlgSpellManyChanges : "Tarkistus valmis: %1 sanaa muutettiin", IeSpellDownload : "Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?", // Button Dialog DlgButtonText : "Teksti (arvo)", DlgButtonType : "Tyyppi", DlgButtonTypeBtn : "Painike", DlgButtonTypeSbm : "Lähetä", DlgButtonTypeRst : "Tyhjennä", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nimi", DlgCheckboxValue : "Arvo", DlgCheckboxSelected : "Valittu", // Form Dialog DlgFormName : "Nimi", DlgFormAction : "Toiminto", DlgFormMethod : "Tapa", // Select Field Dialog DlgSelectName : "Nimi", DlgSelectValue : "Arvo", DlgSelectSize : "Koko", DlgSelectLines : "Rivit", DlgSelectChkMulti : "Salli usea valinta", DlgSelectOpAvail : "Ominaisuudet", DlgSelectOpText : "Teksti", DlgSelectOpValue : "Arvo", DlgSelectBtnAdd : "Lisää", DlgSelectBtnModify : "Muuta", DlgSelectBtnUp : "Ylös", DlgSelectBtnDown : "Alas", DlgSelectBtnSetValue : "Aseta valituksi", DlgSelectBtnDelete : "Poista", // Textarea Dialog DlgTextareaName : "Nimi", DlgTextareaCols : "Sarakkeita", DlgTextareaRows : "Rivejä", // Text Field Dialog DlgTextName : "Nimi", DlgTextValue : "Arvo", DlgTextCharWidth : "Leveys", DlgTextMaxChars : "Maksimi merkkimäärä", DlgTextType : "Tyyppi", DlgTextTypeText : "Teksti", DlgTextTypePass : "Salasana", // Hidden Field Dialog DlgHiddenName : "Nimi", DlgHiddenValue : "Arvo", // Bulleted List Dialog BulletedListProp : "Luettelon ominaisuudet", NumberedListProp : "Numeroinnin ominaisuudet", DlgLstStart : "Alku", DlgLstType : "Tyyppi", DlgLstTypeCircle : "Kehä", DlgLstTypeDisc : "Ympyrä", DlgLstTypeSquare : "Neliö", DlgLstTypeNumbers : "Numerot (1, 2, 3)", DlgLstTypeLCase : "Pienet kirjaimet (a, b, c)", DlgLstTypeUCase : "Isot kirjaimet (A, B, C)", DlgLstTypeSRoman : "Pienet roomalaiset numerot (i, ii, iii)", DlgLstTypeLRoman : "Isot roomalaiset numerot (Ii, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Yleiset", DlgDocBackTab : "Tausta", DlgDocColorsTab : "Värit ja marginaalit", DlgDocMetaTab : "Meta-tieto", DlgDocPageTitle : "Sivun nimi", DlgDocLangDir : "Kielen suunta", DlgDocLangDirLTR : "Vasemmalta oikealle (LTR)", DlgDocLangDirRTL : "Oikealta vasemmalle (RTL)", DlgDocLangCode : "Kielikoodi", DlgDocCharSet : "Merkistökoodaus", DlgDocCharSetCE : "Keskieurooppalainen", DlgDocCharSetCT : "Kiina, perinteinen (Big5)", DlgDocCharSetCR : "Kyrillinen", DlgDocCharSetGR : "Kreikka", DlgDocCharSetJP : "Japani", DlgDocCharSetKR : "Korealainen", DlgDocCharSetTR : "Turkkilainen", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Länsieurooppalainen", DlgDocCharSetOther : "Muu merkistökoodaus", DlgDocDocType : "Dokumentin tyyppi", DlgDocDocTypeOther : "Muu dokumentin tyyppi", DlgDocIncXHTML : "Lisää XHTML julistukset", DlgDocBgColor : "Taustaväri", DlgDocBgImage : "Taustakuva", DlgDocBgNoScroll : "Paikallaanpysyvä tausta", DlgDocCText : "Teksti", DlgDocCLink : "Linkki", DlgDocCVisited : "Vierailtu linkki", DlgDocCActive : "Aktiivinen linkki", DlgDocMargins : "Sivun marginaalit", DlgDocMaTop : "Ylä", DlgDocMaLeft : "Vasen", DlgDocMaRight : "Oikea", DlgDocMaBottom : "Ala", DlgDocMeIndex : "Hakusanat (pilkulla erotettuna)", DlgDocMeDescr : "Kuvaus", DlgDocMeAuthor : "Tekijä", DlgDocMeCopy : "Tekijänoikeudet", DlgDocPreview : "Esikatselu", // Templates Dialog Templates : "Pohjat", DlgTemplatesTitle : "Sisältöpohjat", DlgTemplatesSelMsg : "Valitse pohja editoriin
(aiempi sisältö menetetään):", DlgTemplatesLoading : "Ladataan listaa pohjista. Hetkinen...", DlgTemplatesNoTpl : "(Ei määriteltyjä pohjia)", DlgTemplatesReplace : "Korvaa editorin koko sisältö", // About Dialog DlgAboutAboutTab : "Editorista", DlgAboutBrowserInfoTab : "Selaimen tiedot", DlgAboutLicenseTab : "Lisenssi", DlgAboutVersion : "versio", DlgAboutInfo : "Lisää tietoa osoitteesta" };FCKeditor/editor/lang/fa.js0000644000102600010270000005317711234071604015017 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Persian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "rtl", ToolbarCollapse : "برچیدن نوارابزار", ToolbarExpand : "گستردن نوارابزار", // Toolbar Items and Context Menu Save : "ذخیره", NewPage : "برگهٴ تازه", Preview : "پیش‌نمایش", Cut : "برش", Copy : "کپی", Paste : "چسباندن", PasteText : "چسباندن به عنوان متن ِساده", PasteWord : "چسباندن از Word", Print : "چاپ", SelectAll : "گزینش همه", RemoveFormat : "برداشتن فرمت", InsertLinkLbl : "پیوند", InsertLink : "گنجاندن/ویرایش ِپیوند", RemoveLink : "برداشتن پیوند", Anchor : "گنجاندن/ویرایش ِلنگر", InsertImageLbl : "تصویر", InsertImage : "گنجاندن/ویرایش ِتصویر", InsertFlashLbl : "Flash", InsertFlash : "گنجاندن/ویرایش ِFlash", InsertTableLbl : "جدول", InsertTable : "گنجاندن/ویرایش ِجدول", InsertLineLbl : "خط", InsertLine : "گنجاندن خط ِافقی", InsertSpecialCharLbl: "نویسهٴ ویژه", InsertSpecialChar : "گنجاندن نویسهٴ ویژه", InsertSmileyLbl : "خندانک", InsertSmiley : "گنجاندن خندانک", About : "دربارهٴ FCKeditor", Bold : "درشت", Italic : "خمیده", Underline : "خط‌زیردار", StrikeThrough : "میان‌خط", Subscript : "زیرنویس", Superscript : "بالانویس", LeftJustify : "چپ‌چین", CenterJustify : "میان‌چین", RightJustify : "راست‌چین", BlockJustify : "بلوک‌چین", DecreaseIndent : "کاهش تورفتگی", IncreaseIndent : "افزایش تورفتگی", Undo : "واچیدن", Redo : "بازچیدن", NumberedListLbl : "فهرست شماره‌دار", NumberedList : "گنجاندن/برداشتن فهرست شماره‌دار", BulletedListLbl : "فهرست نقطه‌ای", BulletedList : "گنجاندن/برداشتن فهرست نقطه‌ای", ShowTableBorders : "نمایش لبهٴ جدول", ShowDetails : "نمایش جزئیات", Style : "سبک", FontFormat : "فرمت", Font : "قلم", FontSize : "اندازه", TextColor : "رنگ متن", BGColor : "رنگ پس‌زمینه", Source : "منبع", Find : "جستجو", Replace : "جایگزینی", SpellCheck : "بررسی املا", UniversalKeyboard : "صفحه‌کلید جهانی", PageBreakLbl : "شکستگی ِپایان ِبرگه", PageBreak : "گنجاندن شکستگی ِپایان ِبرگه", Form : "فرم", Checkbox : "خانهٴ گزینه‌ای", RadioButton : "دکمهٴ رادیویی", TextField : "فیلد متنی", Textarea : "ناحیهٴ متنی", HiddenField : "فیلد پنهان", Button : "دکمه", SelectionField : "فیلد چندگزینه‌ای", ImageButton : "دکمهٴ تصویری", FitWindow : "بیشینه‌سازی ِاندازهٴ ویرایشگر", // Context Menu EditLink : "ویرایش پیوند", CellCM : "سلول", RowCM : "سطر", ColumnCM : "ستون", InsertRow : "گنجاندن سطر", DeleteRows : "حذف سطرها", InsertColumn : "گنجاندن ستون", DeleteColumns : "حذف ستونها", InsertCell : "گنجاندن سلول", DeleteCells : "حذف سلولها", MergeCells : "ادغام سلولها", SplitCell : "جداسازی سلول", TableDelete : "پاک‌کردن جدول", CellProperties : "ویژگیهای سلول", TableProperties : "ویژگیهای جدول", ImageProperties : "ویژگیهای تصویر", FlashProperties : "ویژگیهای Flash", AnchorProp : "ویژگیهای لنگر", ButtonProp : "ویژگیهای دکمه", CheckboxProp : "ویژگیهای خانهٴ گزینه‌ای", HiddenFieldProp : "ویژگیهای فیلد پنهان", RadioButtonProp : "ویژگیهای دکمهٴ رادیویی", ImageButtonProp : "ویژگیهای دکمهٴ تصویری", TextFieldProp : "ویژگیهای فیلد متنی", SelectionFieldProp : "ویژگیهای فیلد چندگزینه‌ای", TextareaProp : "ویژگیهای ناحیهٴ متنی", FormProp : "ویژگیهای فرم", FontFormats : "نرمال;فرمت‌شده;آدرس;سرنویس 1;سرنویس 2;سرنویس 3;سرنویس 4;سرنویس 5;سرنویس 6;بند;(DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "پردازش XHTML. لطفا صبر کنید...", Done : "انجام شد", PasteWordConfirm : "متنی که می‌خواهید بچسبانید به نظر می‌رسد از Word کپی شده است. آیا می‌خواهید قبل از چسباندن آن را پاک‌سازی کنید؟", NotCompatiblePaste : "این فرمان برای مرورگر Internet Explorer از نگارش 5.5 یا بالاتر در دسترس است. آیا می‌خواهید بدون پاک‌سازی، متن را بچسبانید؟", UnknownToolbarItem : "فقرهٴ نوارابزار ناشناخته \"%1\"", UnknownCommand : "نام دستور ناشناخته \"%1\"", NotImplemented : "دستور پیاده‌سازی‌نشده", UnknownToolbarSet : "مجموعهٴ نوارابزار \"%1\" وجود ندارد", NoActiveX : "تنظیمات امنیتی مرورگر شما ممکن است در بعضی از ویژگیهای مرورگر محدودیت ایجاد کند. شما باید گزینهٴ \"Run ActiveX controls and plug-ins\" را فعال کنید. ممکن است شما با خطاهایی روبرو باشید و متوجه کمبود ویژگیهایی شوید.", BrowseServerBlocked : "توانایی بازگشایی مرورگر منابع فراهم نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", DialogBlocked : "توانایی بازگشایی پنجرهٴ کوچک ِگفتگو فراهم نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", // Dialogs DlgBtnOK : "پذیرش", DlgBtnCancel : "انصراف", DlgBtnClose : "بستن", DlgBtnBrowseServer : "فهرست‌نمایی سرور", DlgAdvancedTag : "پیشرفته", DlgOpOther : "<غیره>", DlgInfoTab : "اطلاعات", DlgAlertUrl : "لطفاً URL را بنویسید", // General Dialogs Labels DlgGenNotSet : "<تعین‌نشده>", DlgGenId : "شناسه", DlgGenLangDir : "جهت‌نمای زبان", DlgGenLangDirLtr : "چپ به راست (LTR)", DlgGenLangDirRtl : "راست به چپ (RTL)", DlgGenLangCode : "کد زبان", DlgGenAccessKey : "کلید دستیابی", DlgGenName : "نام", DlgGenTabIndex : "نمایهٴ دسترسی با Tab", DlgGenLongDescr : "URL توصیف طولانی", DlgGenClass : "کلاسهای شیوه‌نامه(Stylesheet)", DlgGenTitle : "عنوان کمکی", DlgGenContType : "نوع محتوای کمکی", DlgGenLinkCharset : "نویسه‌گان منبع ِپیوندشده", DlgGenStyle : "شیوه(style)", // Image Dialog DlgImgTitle : "ویژگیهای تصویر", DlgImgInfoTab : "اطلاعات تصویر", DlgImgBtnUpload : "به سرور بفرست", DlgImgURL : "URL", DlgImgUpload : "انتقال به سرور", DlgImgAlt : "متن جایگزین", DlgImgWidth : "پهنا", DlgImgHeight : "درازا", DlgImgLockRatio : "قفل‌کردن ِنسبت", DlgBtnResetSize : "بازنشانی اندازه", DlgImgBorder : "لبه", DlgImgHSpace : "فاصلهٴ افقی", DlgImgVSpace : "فاصلهٴ عمودی", DlgImgAlign : "چینش", DlgImgAlignLeft : "چپ", DlgImgAlignAbsBottom: "پائین مطلق", DlgImgAlignAbsMiddle: "وسط مطلق", DlgImgAlignBaseline : "خط‌پایه", DlgImgAlignBottom : "پائین", DlgImgAlignMiddle : "وسط", DlgImgAlignRight : "راست", DlgImgAlignTextTop : "متن بالا", DlgImgAlignTop : "بالا", DlgImgPreview : "پیش‌نمایش", DlgImgAlertUrl : "لطفا URL تصویر را بنویسید", DlgImgLinkTab : "پیوند", // Flash Dialog DlgFlashTitle : "ویژگیهای Flash", DlgFlashChkPlay : "آغاز ِخودکار", DlgFlashChkLoop : "اجرای پیاپی", DlgFlashChkMenu : "دردسترس‌بودن منوی Flash", DlgFlashScale : "مقیاس", DlgFlashScaleAll : "نمایش همه", DlgFlashScaleNoBorder : "بدون کران", DlgFlashScaleFit : "جایگیری کامل", // Link Dialog DlgLnkWindowTitle : "پیوند", DlgLnkInfoTab : "اطلاعات پیوند", DlgLnkTargetTab : "مقصد", DlgLnkType : "نوع پیوند", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "لنگر در همین صفحه", DlgLnkTypeEMail : "پست الکترونیکی", DlgLnkProto : "پروتکل", DlgLnkProtoOther : "<دیگر>", DlgLnkURL : "URL", DlgLnkAnchorSel : "یک لنگر برگزینید", DlgLnkAnchorByName : "با نام لنگر", DlgLnkAnchorById : "با شناسهٴ المان", DlgLnkNoAnchors : "(در این سند لنگری دردسترس نیست)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "نشانی پست الکترونیکی", DlgLnkEMailSubject : "موضوع پیام", DlgLnkEMailBody : "متن پیام", DlgLnkUpload : "انتقال به سرور", DlgLnkBtnUpload : "به سرور بفرست", DlgLnkTarget : "مقصد", DlgLnkTargetFrame : "<فریم>", DlgLnkTargetPopup : "<پنجرهٴ پاپاپ>", DlgLnkTargetBlank : "پنجرهٴ دیگر (_blank)", DlgLnkTargetParent : "پنجرهٴ والد (_parent)", DlgLnkTargetSelf : "همان پنجره (_self)", DlgLnkTargetTop : "بالاترین پنجره (_top)", DlgLnkTargetFrameName : "نام فریم مقصد", DlgLnkPopWinName : "نام پنجرهٴ پاپاپ", DlgLnkPopWinFeat : "ویژگیهای پنجرهٴ پاپاپ", DlgLnkPopResize : "قابل تغییر اندازه", DlgLnkPopLocation : "نوار موقعیت", DlgLnkPopMenu : "نوار منو", DlgLnkPopScroll : "میله‌های پیمایش", DlgLnkPopStatus : "نوار وضعیت", DlgLnkPopToolbar : "نوارابزار", DlgLnkPopFullScrn : "تمام‌صفحه (IE)", DlgLnkPopDependent : "وابسته (Netscape)", DlgLnkPopWidth : "پهنا", DlgLnkPopHeight : "درازا", DlgLnkPopLeft : "موقعیت ِچپ", DlgLnkPopTop : "موقعیت ِبالا", DlnLnkMsgNoUrl : "لطفا URL پیوند را بنویسید", DlnLnkMsgNoEMail : "لطفا نشانی پست الکترونیکی را بنویسید", DlnLnkMsgNoAnchor : "لطفا لنگری را برگزینید", DlnLnkMsgInvPopName : "نام پنجرهٴ پاپاپ باید با یک نویسهٴ الفبایی آغاز گردد و نباید فاصله‌های خالی در آن باشند", // Color Dialog DlgColorTitle : "گزینش رنگ", DlgColorBtnClear : "پاک‌کردن", DlgColorHighlight : "نمونه", DlgColorSelected : "برگزیده", // Smiley Dialog DlgSmileyTitle : "گنجاندن خندانک", // Special Character Dialog DlgSpecialCharTitle : "گزینش نویسهٴ‌ویژه", // Table Dialog DlgTableTitle : "ویژگیهای جدول", DlgTableRows : "سطرها", DlgTableColumns : "ستونها", DlgTableBorder : "اندازهٴ لبه", DlgTableAlign : "چینش", DlgTableAlignNotSet : "<تعین‌نشده>", DlgTableAlignLeft : "چپ", DlgTableAlignCenter : "وسط", DlgTableAlignRight : "راست", DlgTableWidth : "پهنا", DlgTableWidthPx : "پیکسل", DlgTableWidthPc : "درصد", DlgTableHeight : "درازا", DlgTableCellSpace : "فاصلهٴ میان سلولها", DlgTableCellPad : "فاصلهٴ پرشده در سلول", DlgTableCaption : "عنوان", DlgTableSummary : "خلاصه", // Table Cell Dialog DlgCellTitle : "ویژگیهای سلول", DlgCellWidth : "پهنا", DlgCellWidthPx : "پیکسل", DlgCellWidthPc : "درصد", DlgCellHeight : "درازا", DlgCellWordWrap : "شکستن واژه‌ها", DlgCellWordWrapNotSet : "<تعین‌نشده>", DlgCellWordWrapYes : "بله", DlgCellWordWrapNo : "خیر", DlgCellHorAlign : "چینش ِافقی", DlgCellHorAlignNotSet : "<تعین‌نشده>", DlgCellHorAlignLeft : "چپ", DlgCellHorAlignCenter : "وسط", DlgCellHorAlignRight: "راست", DlgCellVerAlign : "چینش ِعمودی", DlgCellVerAlignNotSet : "<تعین‌نشده>", DlgCellVerAlignTop : "بالا", DlgCellVerAlignMiddle : "میان", DlgCellVerAlignBottom : "پائین", DlgCellVerAlignBaseline : "خط‌پایه", DlgCellRowSpan : "گستردگی سطرها", DlgCellCollSpan : "گستردگی ستونها", DlgCellBackColor : "رنگ پس‌زمینه", DlgCellBorderColor : "رنگ لبه", DlgCellBtnSelect : "برگزینید...", // Find Dialog DlgFindTitle : "یافتن", DlgFindFindBtn : "یافتن", DlgFindNotFoundMsg : "متن موردنظر یافت نشد.", // Replace Dialog DlgReplaceTitle : "جایگزینی", DlgReplaceFindLbl : "چه‌چیز را می‌یابید:", DlgReplaceReplaceLbl : "جایگزینی با:", DlgReplaceCaseChk : "همسانی در بزرگی و کوچکی نویسه‌ها", DlgReplaceReplaceBtn : "جایگزینی", DlgReplaceReplAllBtn : "جایگزینی همهٴ یافته‌ها", DlgReplaceWordChk : "همسانی با واژهٴ کامل", // Paste Operations / Dialog PasteErrorCut : "تنظیمات امنیتی مرورگر شما اجازه نمی‌دهد که ویرایشگر به طور خودکار عملکردهای برش را انجام دهد. لطفا با دکمه‌های صفحه‌کلید این کار را انجام دهید (Ctrl+X).", PasteErrorCopy : "تنظیمات امنیتی مرورگر شما اجازه نمی‌دهد که ویرایشگر به طور خودکار عملکردهای کپی‌کردن را انجام دهد. لطفا با دکمه‌های صفحه‌کلید این کار را انجام دهید (Ctrl+C).", PasteAsText : "چسباندن به عنوان متن ِساده", PasteFromWord : "چسباندن از Word", DlgPasteMsg2 : "لطفا متن را با کلیدهای (Ctrl+V) در این جعبهٴ متنی بچسبانید و پذیرش را بزنید.", DlgPasteSec : "به خاطر تنظیمات امنیتی مرورگر شما، ویرایشگر نمی‌تواند دسترسی مستقیم به داده‌های clipboard داشته باشد. شما باید دوباره آنرا در این پنجره بچسبانید.", DlgPasteIgnoreFont : "چشم‌پوشی از تعاریف نوع قلم", DlgPasteRemoveStyles : "چشم‌پوشی از تعاریف سبک (style)", DlgPasteCleanBox : "پاک‌کردن ناحیه", // Color Picker ColorAutomatic : "خودکار", ColorMoreColors : "رنگهای بیشتر...", // Document Properties DocProps : "ویژگیهای سند", // Anchor Dialog DlgAnchorTitle : "ویژگیهای لنگر", DlgAnchorName : "نام لنگر", DlgAnchorErrorName : "لطفا نام لنگر را بنویسید", // Speller Pages Dialog DlgSpellNotInDic : "در واژه‌نامه یافت نشد", DlgSpellChangeTo : "تغییر به", DlgSpellBtnIgnore : "چشم‌پوشی", DlgSpellBtnIgnoreAll : "چشم‌پوشی همه", DlgSpellBtnReplace : "جایگزینی", DlgSpellBtnReplaceAll : "جایگزینی همه", DlgSpellBtnUndo : "واچینش", DlgSpellNoSuggestions : "- پیشنهادی نیست -", DlgSpellProgress : "بررسی املا در حال انجام...", DlgSpellNoMispell : "بررسی املا انجام شد. هیچ غلط‌املائی یافت نشد", DlgSpellNoChanges : "بررسی املا انجام شد. هیچ واژه‌ای تغییر نیافت", DlgSpellOneChange : "بررسی املا انجام شد. یک واژه تغییر یافت", DlgSpellManyChanges : "بررسی املا انجام شد. %1 واژه تغییر یافت", IeSpellDownload : "بررسی‌کنندهٴ املا نصب نشده است. آیا می‌خواهید آن را هم‌اکنون دریافت کنید؟", // Button Dialog DlgButtonText : "متن (مقدار)", DlgButtonType : "نوع", DlgButtonTypeBtn : "دکمه", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "بازنشانی (Reset)", // Checkbox and Radio Button Dialogs DlgCheckboxName : "نام", DlgCheckboxValue : "مقدار", DlgCheckboxSelected : "برگزیده", // Form Dialog DlgFormName : "نام", DlgFormAction : "رویداد", DlgFormMethod : "متد", // Select Field Dialog DlgSelectName : "نام", DlgSelectValue : "مقدار", DlgSelectSize : "اندازه", DlgSelectLines : "خطوط", DlgSelectChkMulti : "گزینش چندگانه فراهم باشد", DlgSelectOpAvail : "گزینه‌های دردسترس", DlgSelectOpText : "متن", DlgSelectOpValue : "مقدار", DlgSelectBtnAdd : "افزودن", DlgSelectBtnModify : "ویرایش", DlgSelectBtnUp : "بالا", DlgSelectBtnDown : "پائین", DlgSelectBtnSetValue : "تنظیم به عنوان مقدار ِبرگزیده", DlgSelectBtnDelete : "پاک‌کردن", // Textarea Dialog DlgTextareaName : "نام", DlgTextareaCols : "ستونها", DlgTextareaRows : "سطرها", // Text Field Dialog DlgTextName : "نام", DlgTextValue : "مقدار", DlgTextCharWidth : "پهنای نویسه", DlgTextMaxChars : "بیشینهٴ نویسه‌ها", DlgTextType : "نوع", DlgTextTypeText : "متن", DlgTextTypePass : "گذرواژه", // Hidden Field Dialog DlgHiddenName : "نام", DlgHiddenValue : "مقدار", // Bulleted List Dialog BulletedListProp : "ویژگیهای فهرست نقطه‌ای", NumberedListProp : "ویژگیهای فهرست شماره‌دار", DlgLstStart : "آغاز", DlgLstType : "نوع", DlgLstTypeCircle : "دایره", DlgLstTypeDisc : "قرص", 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 : "عمومی", DlgDocBackTab : "پس‌زمینه", DlgDocColorsTab : "رنگها و حاشیه‌ها", DlgDocMetaTab : "فراداده", DlgDocPageTitle : "عنوان صفحه", DlgDocLangDir : "جهت زبان", DlgDocLangDirLTR : "چپ به راست (LTR(", DlgDocLangDirRTL : "راست به چپ (RTL(", DlgDocLangCode : "کد زبان", DlgDocCharSet : "رمزگذاری نویسه‌گان", DlgDocCharSetCE : "اروپای مرکزی", DlgDocCharSetCT : "چینی رسمی (Big5)", DlgDocCharSetCR : "سیریلیک", DlgDocCharSetGR : "یونانی", DlgDocCharSetJP : "ژاپنی", DlgDocCharSetKR : "کره‌ای", DlgDocCharSetTR : "ترکی", DlgDocCharSetUN : "یونیکُد (UTF-8)", DlgDocCharSetWE : "اروپای غربی", DlgDocCharSetOther : "رمزگذاری نویسه‌گان دیگر", DlgDocDocType : "عنوان نوع سند", DlgDocDocTypeOther : "عنوان نوع سند دیگر", DlgDocIncXHTML : "شامل تعاریف XHTML", DlgDocBgColor : "رنگ پس‌زمینه", DlgDocBgImage : "URL تصویر پس‌زمینه", DlgDocBgNoScroll : "پس‌زمینهٴ پیمایش‌ناپذیر", DlgDocCText : "متن", DlgDocCLink : "پیوند", DlgDocCVisited : "پیوند مشاهده‌شده", DlgDocCActive : "پیوند فعال", DlgDocMargins : "حاشیه‌های صفحه", DlgDocMaTop : "بالا", DlgDocMaLeft : "چپ", DlgDocMaRight : "راست", DlgDocMaBottom : "پایین", DlgDocMeIndex : "کلیدواژگان نمایه‌گذاری سند (با کاما جدا شوند)", DlgDocMeDescr : "توصیف سند", DlgDocMeAuthor : "نویسنده", DlgDocMeCopy : "کپی‌رایت", DlgDocPreview : "پیش‌نمایش", // Templates Dialog Templates : "الگوها", DlgTemplatesTitle : "الگوهای محتویات", DlgTemplatesSelMsg : "لطفا الگوی موردنظر را برای بازکردن در ویرایشگر برگزینید
(محتویات کنونی از دست خواهند رفت):", DlgTemplatesLoading : "بارگذاری فهرست الگوها. لطفا صبر کنید...", DlgTemplatesNoTpl : "(الگوئی تعریف نشده است)", DlgTemplatesReplace : "محتویات کنونی جایگزین شوند", // About Dialog DlgAboutAboutTab : "درباره", DlgAboutBrowserInfoTab : "اطلاعات مرورگر", DlgAboutLicenseTab : "گواهینامه", DlgAboutVersion : "نگارش", DlgAboutInfo : "برای آگاهی بیشتر به این نشانی بروید" };FCKeditor/editor/lang/it.js0000644000102600010270000004334511234071616015044 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Italian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Nascondi la barra degli strumenti", ToolbarExpand : "Mostra la barra degli strumenti", // Toolbar Items and Context Menu Save : "Salva", NewPage : "Nuova pagina vuota", Preview : "Anteprima", Cut : "Taglia", Copy : "Copia", Paste : "Incolla", PasteText : "Incolla come testo semplice", PasteWord : "Incolla da Word", Print : "Stampa", SelectAll : "Seleziona tutto", RemoveFormat : "Elimina formattazione", InsertLinkLbl : "Collegamento", InsertLink : "Inserisci/Modifica collegamento", RemoveLink : "Elimina collegamento", 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", InsertLine : "Inserisci riga orizzontale", InsertSpecialCharLbl: "Caratteri speciali", InsertSpecialChar : "Inserisci carattere speciale", InsertSmileyLbl : "Emoticon", InsertSmiley : "Inserisci emoticon", About : "Informazioni su FCKeditor", Bold : "Grassetto", Italic : "Corsivo", Underline : "Sottolineato", StrikeThrough : "Barrato", Subscript : "Pedice", Superscript : "Apice", LeftJustify : "Allinea a sinistra", CenterJustify : "Centra", RightJustify : "Allinea a destra", BlockJustify : "Giustifica", DecreaseIndent : "Riduci rientro", IncreaseIndent : "Aumenta rientro", Undo : "Annulla", Redo : "Ripristina", NumberedListLbl : "Elenco numerato", NumberedList : "Inserisci/Modifica elenco numerato", BulletedListLbl : "Elenco puntato", BulletedList : "Inserisci/Modifica elenco puntato", ShowTableBorders : "Mostra bordi tabelle", ShowDetails : "Mostra dettagli", Style : "Stile", FontFormat : "Formato", Font : "Font", FontSize : "Dimensione", TextColor : "Colore testo", BGColor : "Colore sfondo", Source : "Codice Sorgente", Find : "Trova", Replace : "Sostituisci", SpellCheck : "Correttore ortografico", UniversalKeyboard : "Tastiera universale", PageBreakLbl : "Interruzione di pagina", PageBreak : "Inserisci interruzione di pagina", Form : "Modulo", Checkbox : "Checkbox", RadioButton : "Radio Button", TextField : "Campo di testo", Textarea : "Area di testo", HiddenField : "Campo nascosto", Button : "Bottone", SelectionField : "Menu di selezione", ImageButton : "Bottone immagine", FitWindow : "Massimizza l'area dell'editor", // Context Menu EditLink : "Modifica collegamento", CellCM : "Cella", RowCM : "Riga", ColumnCM : "Colonna", InsertRow : "Inserisci riga", DeleteRows : "Elimina righe", InsertColumn : "Inserisci colonna", DeleteColumns : "Elimina colonne", InsertCell : "Inserisci cella", DeleteCells : "Elimina celle", MergeCells : "Unisce celle", SplitCell : "Dividi celle", TableDelete : "Cancella Tabella", 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", FontFormats : "Normale;Formattato;Indirizzo;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", //REVIEW : Check _getfontformat.html // 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?", UnknownToolbarItem : "Elemento della barra strumenti sconosciuto \"%1\"", UnknownCommand : "Comando sconosciuto \"%1\"", NotImplemented : "Comando non implementato", UnknownToolbarSet : "La barra di strumenti \"%1\" non esiste", NoActiveX : "Le impostazioni di sicurezza del tuo browser potrebbero limitare alcune funzionalità dell'editor. Devi abilitare l'opzione \"Esegui controlli e plug-in ActiveX\". Potresti avere errori e notare funzionalità mancanti.", BrowseServerBlocked : "Non è possibile aprire la finestra di espolorazione risorse. Verifica che tutti i blocca popup siano bloccati.", DialogBlocked : "Non è possibile aprire la finestra di dialogo. Verifica che tutti i blocca popup siano bloccati.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Annulla", DlgBtnClose : "Chiudi", DlgBtnBrowseServer : "Cerca sul server", DlgAdvancedTag : "Avanzate", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Devi inserire l'URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Direzione scrittura", DlgGenLangDirLtr : "Da Sinistra a Destra (LTR)", DlgGenLangDirRtl : "Da Destra a Sinistra (RTL)", DlgGenLangCode : "Codice Lingua", DlgGenAccessKey : "Scorciatoia
da tastiera", DlgGenName : "Nome", DlgGenTabIndex : "Ordine di tabulazione", DlgGenLongDescr : "URL descrizione estesa", DlgGenClass : "Nome classe CSS", DlgGenTitle : "Titolo", DlgGenContType : "Tipo della risorsa collegata", DlgGenLinkCharset : "Set di caretteri della risorsa collegata", DlgGenStyle : "Stile", // Image Dialog DlgImgTitle : "Proprietà immagine", DlgImgInfoTab : "Informazioni immagine", DlgImgBtnUpload : "Invia al server", DlgImgURL : "URL", DlgImgUpload : "Carica", DlgImgAlt : "Testo alternativo", DlgImgWidth : "Larghezza", DlgImgHeight : "Altezza", DlgImgLockRatio : "Blocca rapporto", DlgBtnResetSize : "Reimposta dimensione", DlgImgBorder : "Bordo", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Allineamento", DlgImgAlignLeft : "Sinistra", DlgImgAlignAbsBottom: "In basso assoluto", DlgImgAlignAbsMiddle: "Centrato assoluto", DlgImgAlignBaseline : "Linea base", DlgImgAlignBottom : "In Basso", DlgImgAlignMiddle : "Centrato", DlgImgAlignRight : "Destra", DlgImgAlignTextTop : "In alto al testo", DlgImgAlignTop : "In Alto", DlgImgPreview : "Anteprima", 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", DlgLnkTargetTab : "Destinazione", DlgLnkType : "Tipo di Collegamento", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Ancora nella pagina", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocollo", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Scegli Ancora", DlgLnkAnchorByName : "Per Nome", DlgLnkAnchorById : "Per id elemento", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Indirizzo E-Mail", DlgLnkEMailSubject : "Oggetto del messaggio", DlgLnkEMailBody : "Corpo del messaggio", DlgLnkUpload : "Carica", DlgLnkBtnUpload : "Invia al Server", DlgLnkTarget : "Destinazione", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nuova finestra (_blank)", DlgLnkTargetParent : "Finestra padre (_parent)", DlgLnkTargetSelf : "Stessa finestra (_self)", DlgLnkTargetTop : "Finestra superiore (_top)", DlgLnkTargetFrameName : "Nome del riquadro di destinazione", DlgLnkPopWinName : "Nome finestra popup", DlgLnkPopWinFeat : "Caratteristiche finestra popup", DlgLnkPopResize : "Ridimensionabile", DlgLnkPopLocation : "Barra degli indirizzi", DlgLnkPopMenu : "Barra del menu", DlgLnkPopScroll : "Barre di scorrimento", DlgLnkPopStatus : "Barra di stato", DlgLnkPopToolbar : "Barra degli strumenti", DlgLnkPopFullScrn : "A tutto schermo (IE)", DlgLnkPopDependent : "Dipendente (Netscape)", DlgLnkPopWidth : "Larghezza", DlgLnkPopHeight : "Altezza", DlgLnkPopLeft : "Posizione da sinistra", DlgLnkPopTop : "Posizione dall'alto", DlnLnkMsgNoUrl : "Devi inserire l'URL del collegamento", DlnLnkMsgNoEMail : "Devi inserire un'indirizzo e-mail", DlnLnkMsgNoAnchor : "Devi selezionare un'ancora", DlnLnkMsgInvPopName : "Il nome del popup deve iniziare con una lettera, e non può contenere spazi", // Color Dialog DlgColorTitle : "Seleziona colore", DlgColorBtnClear : "Vuota", DlgColorHighlight : "Evidenziato", DlgColorSelected : "Selezionato", // Smiley Dialog DlgSmileyTitle : "Inserisci emoticon", // Special Character Dialog DlgSpecialCharTitle : "Seleziona carattere speciale", // Table Dialog DlgTableTitle : "Proprietà tabella", DlgTableRows : "Righe", DlgTableColumns : "Colonne", DlgTableBorder : "Dimensione bordo", DlgTableAlign : "Allineamento", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Sinistra", DlgTableAlignCenter : "Centrato", DlgTableAlignRight : "Destra", DlgTableWidth : "Larghezza", DlgTableWidthPx : "pixel", DlgTableWidthPc : "percento", DlgTableHeight : "Altezza", DlgTableCellSpace : "Spaziatura celle", DlgTableCellPad : "Padding celle", DlgTableCaption : "Intestazione", DlgTableSummary : "Indice", // Table Cell Dialog DlgCellTitle : "Proprietà cella", DlgCellWidth : "Larghezza", DlgCellWidthPx : "pixel", DlgCellWidthPc : "percento", DlgCellHeight : "Altezza", DlgCellWordWrap : "A capo automatico", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Si", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Allineamento orizzontale", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Sinistra", DlgCellHorAlignCenter : "Centrato", DlgCellHorAlignRight: "Destra", DlgCellVerAlign : "Allineamento verticale", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "In Alto", DlgCellVerAlignMiddle : "Centrato", DlgCellVerAlignBottom : "In Basso", DlgCellVerAlignBaseline : "Linea base", DlgCellRowSpan : "Righe occupate", DlgCellCollSpan : "Colonne occupate", DlgCellBackColor : "Colore sfondo", DlgCellBorderColor : "Colore bordo", DlgCellBtnSelect : "Scegli...", // Find Dialog DlgFindTitle : "Trova", DlgFindFindBtn : "Trova", DlgFindNotFoundMsg : "L'elemento cercato non è stato trovato.", // Replace Dialog DlgReplaceTitle : "Sostituisci", DlgReplaceFindLbl : "Trova:", DlgReplaceReplaceLbl : "Sostituisci con:", DlgReplaceCaseChk : "Maiuscole/minuscole", DlgReplaceReplaceBtn : "Sostituisci", DlgReplaceReplAllBtn : "Sostituisci tutto", DlgReplaceWordChk : "Solo parole intere", // Paste Operations / Dialog PasteErrorCut : "Le impostazioni di sicurezza del browser non permettono di tagliare automaticamente il testo. Usa la tastiera (Ctrl+X).", PasteErrorCopy : "Le impostazioni di sicurezza del browser non permettono di copiare automaticamente il testo. Usa la tastiera (Ctrl+C).", PasteAsText : "Incolla come testo semplice", PasteFromWord : "Incolla da Word", DlgPasteMsg2 : "Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (Ctrl+V) e premi OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING 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", // Anchor Dialog DlgAnchorTitle : "Proprietà ancora", DlgAnchorName : "Nome ancora", DlgAnchorErrorName : "Inserici il nome dell'ancora", // Speller Pages Dialog DlgSpellNotInDic : "Non nel dizionario", DlgSpellChangeTo : "Cambia in", DlgSpellBtnIgnore : "Ignora", DlgSpellBtnIgnoreAll : "Ignora tutto", DlgSpellBtnReplace : "Cambia", DlgSpellBtnReplaceAll : "Cambia tutto", DlgSpellBtnUndo : "Annulla", DlgSpellNoSuggestions : "- Nessun suggerimento -", DlgSpellProgress : "Controllo ortografico in corso", DlgSpellNoMispell : "Controllo ortografico completato: nessun errore trovato", DlgSpellNoChanges : "Controllo ortografico completato: nessuna parola cambiata", DlgSpellOneChange : "Controllo ortografico completato: 1 parola cambiata", DlgSpellManyChanges : "Controllo ortografico completato: %1 parole cambiate", IeSpellDownload : "Contollo ortografico non installato. Lo vuoi scaricare ora?", // Button Dialog DlgButtonText : "Testo (Value)", DlgButtonType : "Tipo", DlgButtonTypeBtn : "Bottone", DlgButtonTypeSbm : "Invio", DlgButtonTypeRst : "Annulla", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nome", DlgCheckboxValue : "Valore", DlgCheckboxSelected : "Selezionato", // Form Dialog DlgFormName : "Nome", DlgFormAction : "Azione", DlgFormMethod : "Metodo", // Select Field Dialog DlgSelectName : "Nome", DlgSelectValue : "Valore", DlgSelectSize : "Dimensione", DlgSelectLines : "righe", DlgSelectChkMulti : "Permetti selezione multipla", DlgSelectOpAvail : "Opzioni disponibili", DlgSelectOpText : "Testo", DlgSelectOpValue : "Valore", DlgSelectBtnAdd : "Aggiungi", DlgSelectBtnModify : "Modifica", DlgSelectBtnUp : "Su", DlgSelectBtnDown : "Gi", DlgSelectBtnSetValue : "Imposta come predefinito", DlgSelectBtnDelete : "Rimuovi", // Textarea Dialog DlgTextareaName : "Nome", DlgTextareaCols : "Colonne", DlgTextareaRows : "Righe", // Text Field Dialog DlgTextName : "Nome", DlgTextValue : "Valore", DlgTextCharWidth : "Larghezza", DlgTextMaxChars : "Numero massimo di caratteri", DlgTextType : "Tipo", DlgTextTypeText : "Testo", DlgTextTypePass : "Password", // Hidden Field Dialog DlgHiddenName : "Nome", DlgHiddenValue : "Valore", // Bulleted List Dialog BulletedListProp : "Proprietà lista puntata", NumberedListProp : "Proprietà lista numerata", DlgLstStart : "Inizio", DlgLstType : "Tipo", DlgLstTypeCircle : "Tondo", DlgLstTypeDisc : "Disco", DlgLstTypeSquare : "Quadrato", DlgLstTypeNumbers : "Numeri (1, 2, 3)", DlgLstTypeLCase : "Caratteri minuscoli (a, b, c)", DlgLstTypeUCase : "Caratteri maiuscoli (A, B, C)", DlgLstTypeSRoman : "Numeri Romani minuscoli (i, ii, iii)", DlgLstTypeLRoman : "Numeri Romani maiuscoli (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Genarale", DlgDocBackTab : "Sfondo", DlgDocColorsTab : "Colori e margini", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Titolo pagina", DlgDocLangDir : "Direzione scrittura", DlgDocLangDirLTR : "Da Sinistra a Destra (LTR)", DlgDocLangDirRTL : "Da Destra a Sinistra (RTL)", DlgDocLangCode : "Codice Lingua", DlgDocCharSet : "Set di caretteri", DlgDocCharSetCE : "Europa Centrale", DlgDocCharSetCT : "Cinese Tradizionale (Big5)", DlgDocCharSetCR : "Cirillico", DlgDocCharSetGR : "Greco", DlgDocCharSetJP : "Giapponese", DlgDocCharSetKR : "Coreano", DlgDocCharSetTR : "Turco", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Europa Occidentale", DlgDocCharSetOther : "Altro set di caretteri", DlgDocDocType : "Intestazione DocType", DlgDocDocTypeOther : "Altra intestazione DocType", DlgDocIncXHTML : "Includi dichiarazione XHTML", DlgDocBgColor : "Colore di sfondo", DlgDocBgImage : "Immagine di sfondo", DlgDocBgNoScroll : "Sfondo fissato", DlgDocCText : "Testo", DlgDocCLink : "Collegamento", DlgDocCVisited : "Collegamento visitato", DlgDocCActive : "Collegamento attivo", DlgDocMargins : "Margini", DlgDocMaTop : "In Alto", DlgDocMaLeft : "A Sinistra", DlgDocMaRight : "A Destra", DlgDocMaBottom : "In Basso", DlgDocMeIndex : "Chiavi di indicizzazione documento (separate da virgola)", DlgDocMeDescr : "Descrizione documento", DlgDocMeAuthor : "Autore", DlgDocMeCopy : "Copyright", DlgDocPreview : "Anteprima", // Templates Dialog Templates : "Modelli", DlgTemplatesTitle : "Contenuto dei modelli", DlgTemplatesSelMsg : "Seleziona il modello da aprire nell'editor
(il contenuto attuale verrà eliminato):", DlgTemplatesLoading : "Caricamento modelli in corso. Attendere prego...", DlgTemplatesNoTpl : "(Nessun modello definito)", DlgTemplatesReplace : "Cancella il contenuto corrente", // About Dialog DlgAboutAboutTab : "Informazioni", DlgAboutBrowserInfoTab : "Informazioni Browser", DlgAboutLicenseTab : "Licenza", DlgAboutVersion : "versione", DlgAboutInfo : "Per maggiori informazioni visitare" };FCKeditor/editor/lang/sr-latn.js0000644000102600010270000004262211234071642016004 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Serbian (Latin) language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Smanji liniju sa alatkama", ToolbarExpand : "Proiri liniju sa alatkama", // Toolbar Items and Context Menu Save : "Sačuvaj", 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", RemoveFormat : "Ukloni formatiranje", InsertLinkLbl : "Link", InsertLink : "Unesi/izmeni link", RemoveLink : "Ukloni link", Anchor : "Unesi/izmeni sidro", InsertImageLbl : "Slika", InsertImage : "Unesi/izmeni sliku", InsertFlashLbl : "Fleš", InsertFlash : "Unesi/izmeni fleš", InsertTableLbl : "Tabela", InsertTable : "Unesi/izmeni tabelu", InsertLineLbl : "Linija", InsertLine : "Unesi horizontalnu liniju", InsertSpecialCharLbl: "Specijalni karakteri", InsertSpecialChar : "Unesi specijalni karakter", InsertSmileyLbl : "Smajli", InsertSmiley : "Unesi smajlija", About : "O FCKeditoru", Bold : "Podebljano", Italic : "Kurziv", Underline : "Podvučeno", StrikeThrough : "Precrtano", Subscript : "Indeks", Superscript : "Stepen", LeftJustify : "Levo ravnanje", CenterJustify : "Centriran tekst", RightJustify : "Desno ravnanje", BlockJustify : "Obostrano ravnanje", DecreaseIndent : "Smanji levu marginu", IncreaseIndent : "Uvećaj levu marginu", Undo : "Poni�ti 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", Style : "Stil", FontFormat : "Format", Font : "Font", FontSize : "Veličina fonta", TextColor : "Boja teksta", BGColor : "Boja pozadine", Source : "Kôd", Find : "Pretraga", Replace : "Zamena", SpellCheck : "Proveri spelovanje", UniversalKeyboard : "Univerzalna tastatura", PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //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", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Izmeni link", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Unesi red", DeleteRows : "Obriši redove", InsertColumn : "Unesi kolonu", DeleteColumns : "Obriši kolone", InsertCell : "Unesi ćelije", DeleteCells : "Obriši ćelije", MergeCells : "Spoj celije", SplitCell : "Razdvoji celije", TableDelete : "Delete Table", //MISSING CellProperties : "Osobine celije", TableProperties : "Osobine tabele", ImageProperties : "Osobine slike", FlashProperties : "Osobine fleša", 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;Naslov 1;Naslov 2;Naslov 3;Naslov 4;Naslov 5;Naslov 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Obradujem 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?", UnknownToolbarItem : "Nepoznata stavka toolbara \"%1\"", UnknownCommand : "Nepoznata naredba \"%1\"", NotImplemented : "Naredba nije implementirana", UnknownToolbarSet : "Toolbar \"%1\" ne postoji", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Otkaži", DlgBtnClose : "Zatvori", DlgBtnBrowseServer : "Pretraži server", DlgAdvancedTag : "Napredni tagovi", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Molimo Vas, unesite URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Smer jezika", DlgGenLangDirLtr : "S leva na desno (LTR)", DlgGenLangDirRtl : "S desna na levo (RTL)", DlgGenLangCode : "Kôd jezika", DlgGenAccessKey : "Pristupni taster", DlgGenName : "Naziv", DlgGenTabIndex : "Tab indeks", DlgGenLongDescr : "Pun opis URL", DlgGenClass : "Stylesheet klase", DlgGenTitle : "Advisory naslov", DlgGenContType : "Advisory vrsta sadržaja", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Osobine slika", DlgImgInfoTab : "Info slike", DlgImgBtnUpload : "Pošalji na server", DlgImgURL : "URL", DlgImgUpload : "Pošalji", DlgImgAlt : "Alternativni tekst", DlgImgWidth : "Širina", DlgImgHeight : "Visina", DlgImgLockRatio : "Zaključaj odnos", DlgBtnResetSize : "Resetuj veličinu", DlgImgBorder : "Okvir", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Ravnanje", DlgImgAlignLeft : "Levo", DlgImgAlignAbsBottom: "Abs dole", DlgImgAlignAbsMiddle: "Abs sredina", DlgImgAlignBaseline : "Bazno", DlgImgAlignBottom : "Dole", DlgImgAlignMiddle : "Sredina", DlgImgAlignRight : "Desno", DlgImgAlignTextTop : "Vrh teksta", DlgImgAlignTop : "Vrh", DlgImgPreview : "Izgled", DlgImgAlertUrl : "Unesite URL slike", DlgImgLinkTab : "Link", // Flash Dialog DlgFlashTitle : "Osobine fleša", DlgFlashChkPlay : "Automatski start", DlgFlashChkLoop : "Ponavljaj", DlgFlashChkMenu : "Uključi fleš meni", DlgFlashScale : "Skaliraj", DlgFlashScaleAll : "Prikaži sve", DlgFlashScaleNoBorder : "Bez ivice", DlgFlashScaleFit : "Popuni površinu", // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Link Info", DlgLnkTargetTab : "Meta", DlgLnkType : "Vrsta linka", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Sidro na ovoj stranici", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Odaberi sidro", DlgLnkAnchorByName : "Po nazivu sidra", DlgLnkAnchorById : "Po Id-ju elementa", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail adresa", DlgLnkEMailSubject : "Naslov", DlgLnkEMailBody : "Sadržaj poruke", DlgLnkUpload : "Pošalji", DlgLnkBtnUpload : "Pošalji na server", DlgLnkTarget : "Meta", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Novi prozor (_blank)", DlgLnkTargetParent : "Roditeljski prozor (_parent)", DlgLnkTargetSelf : "Isti prozor (_self)", DlgLnkTargetTop : "Prozor na vrhu (_top)", DlgLnkTargetFrameName : "Naziv odredišnog frejma", DlgLnkPopWinName : "Naziv popup prozora", DlgLnkPopWinFeat : "Mogućnosti 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", DlgLnkPopHeight : "Visina", DlgLnkPopLeft : "Od leve ivice ekrana (px)", DlgLnkPopTop : "Od vrha ekrana (px)", DlnLnkMsgNoUrl : "Unesite URL linka", DlnLnkMsgNoEMail : "Otkucajte adresu elektronske pote", DlnLnkMsgNoAnchor : "Odaberite sidro", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Odaberite boju", DlgColorBtnClear : "Obriši", DlgColorHighlight : "Posvetli", DlgColorSelected : "Odaberi", // Smiley Dialog DlgSmileyTitle : "Unesi smajlija", // Special Character Dialog DlgSpecialCharTitle : "Odaberite specijalni karakter", // Table Dialog DlgTableTitle : "Osobine tabele", DlgTableRows : "Redova", DlgTableColumns : "Kolona", DlgTableBorder : "Veličina okvira", DlgTableAlign : "Ravnanje", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Levo", DlgTableAlignCenter : "Sredina", DlgTableAlignRight : "Desno", DlgTableWidth : "Širina", DlgTableWidthPx : "piksela", DlgTableWidthPc : "procenata", DlgTableHeight : "Visina", DlgTableCellSpace : "Ćelijski prostor", DlgTableCellPad : "Razmak ćelija", DlgTableCaption : "Naslov tabele", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Osobine ćelije", DlgCellWidth : "Širina", DlgCellWidthPx : "piksela", DlgCellWidthPc : "procenata", DlgCellHeight : "Visina", DlgCellWordWrap : "Deljenje reči", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Da", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Vodoravno ravnanje", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Levo", DlgCellHorAlignCenter : "Sredina", DlgCellHorAlignRight: "Desno", DlgCellVerAlign : "Vertikalno ravnanje", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Gornje", DlgCellVerAlignMiddle : "Sredina", DlgCellVerAlignBottom : "Donje", DlgCellVerAlignBaseline : "Bazno", DlgCellRowSpan : "Spajanje redova", DlgCellCollSpan : "Spajanje kolona", DlgCellBackColor : "Boja pozadine", DlgCellBorderColor : "Boja okvira", DlgCellBtnSelect : "Odaberi...", // Find Dialog DlgFindTitle : "Pronađi", DlgFindFindBtn : "Pronađi", DlgFindNotFoundMsg : "Traženi tekst nije pronađen.", // Replace Dialog DlgReplaceTitle : "Zameni", DlgReplaceFindLbl : "Pronadi:", DlgReplaceReplaceLbl : "Zameni sa:", DlgReplaceCaseChk : "Razlikuj mala i velika slova", DlgReplaceReplaceBtn : "Zameni", DlgReplaceReplAllBtn : "Zameni sve", DlgReplaceWordChk : "Uporedi cele reci", // Paste Operations / Dialog 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).", PasteAsText : "Zalepi kao čist tekst", PasteFromWord : "Zalepi iz Worda", DlgPasteMsg2 : "Molimo Vas da zalepite unutar donje povrine koristeći tastaturnu prečicu (Ctrl+V) i da pritisnete OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoriši definicije fontova", DlgPasteRemoveStyles : "Ukloni definicije stilova", DlgPasteCleanBox : "Obriši sve", // Color Picker ColorAutomatic : "Automatski", ColorMoreColors : "Više boja...", // Document Properties DocProps : "Osobine dokumenta", // Anchor Dialog DlgAnchorTitle : "Osobine sidra", DlgAnchorName : "Ime sidra", DlgAnchorErrorName : "Unesite ime sidra", // Speller Pages Dialog DlgSpellNotInDic : "Nije u rečniku", DlgSpellChangeTo : "Izmeni", DlgSpellBtnIgnore : "Ignoriši", DlgSpellBtnIgnoreAll : "Ignoriši sve", DlgSpellBtnReplace : "Zameni", DlgSpellBtnReplaceAll : "Zameni sve", DlgSpellBtnUndo : "Vrati akciju", DlgSpellNoSuggestions : "- Bez sugestija -", DlgSpellProgress : "Provera spelovanja u toku...", DlgSpellNoMispell : "Provera spelovanja završena: greške nisu pronadene", DlgSpellNoChanges : "Provera spelovanja završena: Nije izmenjena nijedna rec", DlgSpellOneChange : "Provera spelovanja završena: Izmenjena je jedna reč", DlgSpellManyChanges : "Provera spelovanja završena: %1 reč(i) je izmenjeno", IeSpellDownload : "Provera spelovanja nije instalirana. Da li želite da je skinete sa Interneta?", // Button Dialog DlgButtonText : "Tekst (vrednost)", DlgButtonType : "Tip", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Naziv", DlgCheckboxValue : "Vrednost", DlgCheckboxSelected : "Označeno", // Form Dialog DlgFormName : "Naziv", DlgFormAction : "Akcija", DlgFormMethod : "Metoda", // Select Field Dialog DlgSelectName : "Naziv", DlgSelectValue : "Vrednost", DlgSelectSize : "Veličina", DlgSelectLines : "linija", DlgSelectChkMulti : "Dozvoli višestruku selekciju", DlgSelectOpAvail : "Dostupne opcije", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Vrednost", DlgSelectBtnAdd : "Dodaj", DlgSelectBtnModify : "Izmeni", DlgSelectBtnUp : "Gore", DlgSelectBtnDown : "Dole", DlgSelectBtnSetValue : "Podesi kao označenu vrednost", DlgSelectBtnDelete : "Obriši", // Textarea Dialog DlgTextareaName : "Naziv", DlgTextareaCols : "Broj kolona", DlgTextareaRows : "Broj redova", // Text Field Dialog DlgTextName : "Naziv", DlgTextValue : "Vrednost", DlgTextCharWidth : "Širina (karaktera)", DlgTextMaxChars : "Maksimalno karaktera", DlgTextType : "Tip", DlgTextTypeText : "Tekst", DlgTextTypePass : "Lozinka", // Hidden Field Dialog DlgHiddenName : "Naziv", DlgHiddenValue : "Vrednost", // Bulleted List Dialog BulletedListProp : "Osobine nenabrojive liste", NumberedListProp : "Osobine nabrojive liste", DlgLstStart : "Start", //MISSING DlgLstType : "Tip", DlgLstTypeCircle : "Krug", DlgLstTypeDisc : "Disc", //MISSING 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 : "Opšte osobine", DlgDocBackTab : "Pozadina", DlgDocColorsTab : "Boje i margine", DlgDocMetaTab : "Metapodaci", DlgDocPageTitle : "Naslov stranice", DlgDocLangDir : "Smer jezika", DlgDocLangDirLTR : "Sleva nadesno (LTR)", DlgDocLangDirRTL : "Zdesna nalevo (RTL)", DlgDocLangCode : "Šifra jezika", DlgDocCharSet : "Kodiranje skupa karaktera", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Ostala kodiranja skupa karaktera", 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 : "Posećeni link", DlgDocCActive : "Aktivni link", DlgDocMargins : "Margine stranice", DlgDocMaTop : "Gornja", DlgDocMaLeft : "Leva", DlgDocMaRight : "Desna", DlgDocMaBottom : "Donja", DlgDocMeIndex : "Ključne reci za indeksiranje dokumenta (razdvojene zarezima)", DlgDocMeDescr : "Opis dokumenta", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Autorska prava", DlgDocPreview : "Izgled stranice", // Templates Dialog Templates : "Obrasci", DlgTemplatesTitle : "Obrasci za sadržaj", DlgTemplatesSelMsg : "Molimo Vas da odaberete obrazac koji ce biti primenjen na stranicu (trenutni sadržaj ce biti obrisan):", DlgTemplatesLoading : "Učitavam listu obrazaca. Malo strpljenja...", DlgTemplatesNoTpl : "(Nema definisanih obrazaca)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "O editoru", DlgAboutBrowserInfoTab : "Informacije o pretraživacu", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "verzija", DlgAboutInfo : "Za više informacija posetite" };FCKeditor/editor/lang/uk.js0000644000102600010270000005742011234071650015044 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Ukrainian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Згорнути панель інструментів", ToolbarExpand : "Розгорнути панель інструментів", // Toolbar Items and Context Menu Save : "Зберегти", NewPage : "Нова сторінка", Preview : "Попередній перегляд", Cut : "Вирізати", Copy : "Копіювати", Paste : "Вставити", PasteText : "Вставити тільки текст", PasteWord : "Вставити з Word", Print : "Друк", SelectAll : "Виділити все", RemoveFormat : "Прибрати форматування", InsertLinkLbl : "Посилання", InsertLink : "Вставити/Редагувати посилання", RemoveLink : "Знищити посилання", Anchor : "Вставити/Редагувати якір", InsertImageLbl : "Зображення", InsertImage : "Вставити/Редагувати зображення", InsertFlashLbl : "Flash", InsertFlash : "Вставити/Редагувати Flash", InsertTableLbl : "Таблиця", InsertTable : "Вставити/Редагувати таблицю", InsertLineLbl : "Лінія", InsertLine : "Вставити горизонтальну лінію", InsertSpecialCharLbl: "Спеціальний символ", InsertSpecialChar : "Вставити спеціальний символ", InsertSmileyLbl : "Смайлик", InsertSmiley : "Вставити смайлик", About : "Про FCKeditor", Bold : "Жирний", Italic : "Курсив", Underline : "Підкреслений", StrikeThrough : "Закреслений", Subscript : "Підрядковий індекс", Superscript : "Надрядковий индекс", LeftJustify : "По лівому краю", CenterJustify : "По центру", RightJustify : "По правому краю", BlockJustify : "По ширині", DecreaseIndent : "Зменшити відступ", IncreaseIndent : "Збільшити відступ", Undo : "Повернути", Redo : "Повторити", NumberedListLbl : "Нумерований список", NumberedList : "Вставити/Видалити нумерований список", BulletedListLbl : "Маркований список", BulletedList : "Вставити/Видалити маркований список", ShowTableBorders : "Показати бордюри таблиці", ShowDetails : "Показати деталі", Style : "Стиль", FontFormat : "Форматування", Font : "Шрифт", FontSize : "Розмір", TextColor : "Колір тексту", BGColor : "Колір фону", Source : "Джерело", Find : "Пошук", Replace : "Заміна", SpellCheck : "Перевірити орфографію", UniversalKeyboard : "Універсальна клавіатура", PageBreakLbl : "Розривши сторінки", PageBreak : "Вставити розривши сторінки", Form : "Форма", Checkbox : "Флагова кнопка", RadioButton : "Кнопка вибору", TextField : "Текстове поле", Textarea : "Текстова область", HiddenField : "Приховане поле", Button : "Кнопка", SelectionField : "Список", ImageButton : "Кнопка із зображенням", FitWindow : "Розвернути вікно редактора", // Context Menu EditLink : "Вставити посилання", CellCM : "Осередок", RowCM : "Рядок", ColumnCM : "Колонка", InsertRow : "Вставити строку", DeleteRows : "Видалити строки", InsertColumn : "Вставити колонку", DeleteColumns : "Видалити колонки", InsertCell : "Вставити комірку", DeleteCells : "Видалити комірки", MergeCells : "Об'єднати комірки", SplitCell : "Роз'єднати комірку", TableDelete : "Видалити таблицю", CellProperties : "Властивості комірки", TableProperties : "Властивості таблиці", ImageProperties : "Властивості зображення", FlashProperties : "Властивості Flash", AnchorProp : "Властивості якоря", ButtonProp : "Властивості кнопки", CheckboxProp : "Властивості флагової кнопки", HiddenFieldProp : "Властивості прихованого поля", RadioButtonProp : "Властивості кнопки вибору", ImageButtonProp : "Властивості кнопки із зображенням", TextFieldProp : "Властивості текстового поля", SelectionFieldProp : "Властивості списку", TextareaProp : "Властивості текстової області", FormProp : "Властивості форми", FontFormats : "Нормальний;Форматований;Адреса;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальний (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обробка XHTML. Зачекайте, будь ласка...", Done : "Зроблено", PasteWordConfirm : "Текст, що ви хочете вставити, схожий на копійований з Word. Ви хочете очистити його перед вставкою?", NotCompatiblePaste : "Ця команда доступна для Internet Explorer версії 5.5 або вище. Ви хочете вставити без очищення?", UnknownToolbarItem : "Невідомий елемент панелі інструментів \"%1\"", UnknownCommand : "Невідоме ім'я команди \"%1\"", NotImplemented : "Команда не реалізована", UnknownToolbarSet : "Панель інструментів \"%1\" не існує", NoActiveX : "Настройки безпеки вашого браузера можуть обмежувати деякі властивості редактора. Ви повинні включити опцію \"Запускати елементи управління ACTIVEX і плугіни\". Ви можете бачити помилки і помічати відсутність можливостей.", BrowseServerBlocked : "Ресурси браузера не можуть бути відкриті. Перевірте що блокування спливаючих вікон вимкнені.", DialogBlocked : "Не можливо відкрити вікно діалогу. Перевірте що блокування спливаючих вікон вимкнені.", // Dialogs DlgBtnOK : "ОК", DlgBtnCancel : "Скасувати", DlgBtnClose : "Зачинити", DlgBtnBrowseServer : "Передивитися на сервері", DlgAdvancedTag : "Розширений", DlgOpOther : "<Інше>", DlgInfoTab : "Інфо", DlgAlertUrl : "Вставте, будь-ласка, URL", // General Dialogs Labels DlgGenNotSet : "<не визначено>", DlgGenId : "Ідентифікатор", DlgGenLangDir : "Напрямок мови", DlgGenLangDirLtr : "Зліва на право (LTR)", DlgGenLangDirRtl : "Зправа на ліво (RTL)", DlgGenLangCode : "Мова", DlgGenAccessKey : "Гаряча клавіша", DlgGenName : "Им'я", DlgGenTabIndex : "Послідовність переходу", DlgGenLongDescr : "Довгий опис URL", DlgGenClass : "Клас CSS", DlgGenTitle : "Заголовок", DlgGenContType : "Тип вмісту", DlgGenLinkCharset : "Кодировка", DlgGenStyle : "Стиль CSS", // Image Dialog DlgImgTitle : "Властивості зображення", DlgImgInfoTab : "Інформація про изображении", DlgImgBtnUpload : "Надіслати на сервер", DlgImgURL : "URL", DlgImgUpload : "Закачати", DlgImgAlt : "Альтернативний текст", DlgImgWidth : "Ширина", DlgImgHeight : "Висота", DlgImgLockRatio : "Зберегти пропорції", DlgBtnResetSize : "Скинути розмір", DlgImgBorder : "Бордюр", DlgImgHSpace : "Горизонтальний відступ", DlgImgVSpace : "Вертикальний відступ", DlgImgAlign : "Вирівнювання", DlgImgAlignLeft : "По лівому краю", DlgImgAlignAbsBottom: "Абс по низу", DlgImgAlignAbsMiddle: "Абс по середині", DlgImgAlignBaseline : "По базовій лінії", DlgImgAlignBottom : "По низу", DlgImgAlignMiddle : "По середині", DlgImgAlignRight : "По правому краю", DlgImgAlignTextTop : "Текст на верху", DlgImgAlignTop : "По верху", DlgImgPreview : "Попередній перегляд", DlgImgAlertUrl : "Будь ласка, введіть URL зображення", DlgImgLinkTab : "Посилання", // Flash Dialog DlgFlashTitle : "Властивості Flash", DlgFlashChkPlay : "Авто програвання", DlgFlashChkLoop : "Зациклити", DlgFlashChkMenu : "Дозволити меню Flash", DlgFlashScale : "Масштаб", DlgFlashScaleAll : "Показати всі", DlgFlashScaleNoBorder : "Без рамки", DlgFlashScaleFit : "Дійсний розмір", // Link Dialog DlgLnkWindowTitle : "Посилання", DlgLnkInfoTab : "Інформація посилання", DlgLnkTargetTab : "Ціль", DlgLnkType : "Тип посилання", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Якір на цю сторінку", DlgLnkTypeEMail : "Эл. пошта", DlgLnkProto : "Протокол", DlgLnkProtoOther : "<інше>", DlgLnkURL : "URL", DlgLnkAnchorSel : "Оберіть якір", DlgLnkAnchorByName : "За ім'ям якоря", DlgLnkAnchorById : "За ідентифікатором елемента", DlgLnkNoAnchors : "<Немає якорів доступних в цьому документі>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адреса ел. пошти", DlgLnkEMailSubject : "Тема листа", DlgLnkEMailBody : "Тіло повідомлення", DlgLnkUpload : "Закачати", DlgLnkBtnUpload : "Переслати на сервер", DlgLnkTarget : "Ціль", DlgLnkTargetFrame : "<фрейм>", DlgLnkTargetPopup : "<спливаюче вікно>", DlgLnkTargetBlank : "Нове вікно (_blank)", DlgLnkTargetParent : "Батьківське вікно (_parent)", DlgLnkTargetSelf : "Теж вікно (_self)", DlgLnkTargetTop : "Найвище вікно (_top)", DlgLnkTargetFrameName : "Ім'я целевого фрейма", DlgLnkPopWinName : "Ім'я спливаючого вікна", DlgLnkPopWinFeat : "Властивості спливаючого вікна", DlgLnkPopResize : "Змінюється в розмірах", DlgLnkPopLocation : "Панель локації", DlgLnkPopMenu : "Панель меню", DlgLnkPopScroll : "Полоси прокрутки", DlgLnkPopStatus : "Строка статусу", DlgLnkPopToolbar : "Панель інструментів", DlgLnkPopFullScrn : "Повний екран (IE)", DlgLnkPopDependent : "Залежний (Netscape)", DlgLnkPopWidth : "Ширина", DlgLnkPopHeight : "Висота", DlgLnkPopLeft : "Позиція зліва", DlgLnkPopTop : "Позиція зверху", DlnLnkMsgNoUrl : "Будь ласка, занесіть URL посилання", DlnLnkMsgNoEMail : "Будь ласка, занесіть адрес эл. почты", DlnLnkMsgNoAnchor : "Будь ласка, оберіть якір", DlnLnkMsgInvPopName : "Назва спливаючого вікна повинна починатися букви і не може містити пропусків", // Color Dialog DlgColorTitle : "Оберіть колір", DlgColorBtnClear : "Очистити", DlgColorHighlight : "Підсвічений", DlgColorSelected : "Обраний", // Smiley Dialog DlgSmileyTitle : "Вставити смайлик", // Special Character Dialog DlgSpecialCharTitle : "Оберіть спеціальний символ", // Table Dialog DlgTableTitle : "Властивості таблиці", DlgTableRows : "Строки", DlgTableColumns : "Колонки", DlgTableBorder : "Розмір бордюра", DlgTableAlign : "Вирівнювання", DlgTableAlignNotSet : "<Не вст.>", DlgTableAlignLeft : "Зліва", DlgTableAlignCenter : "По центру", DlgTableAlignRight : "Зправа", DlgTableWidth : "Ширина", DlgTableWidthPx : "пікселів", DlgTableWidthPc : "відсотків", DlgTableHeight : "Висота", DlgTableCellSpace : "Проміжок (spacing)", DlgTableCellPad : "Відступ (padding)", DlgTableCaption : "Заголовок", DlgTableSummary : "Резюме", // Table Cell Dialog DlgCellTitle : "Властивості комірки", DlgCellWidth : "Ширина", DlgCellWidthPx : "пікселів", DlgCellWidthPc : "відсотків", DlgCellHeight : "Висота", DlgCellWordWrap : "Згортання текста", DlgCellWordWrapNotSet : "<Не вст.>", DlgCellWordWrapYes : "Так", DlgCellWordWrapNo : "Ні", DlgCellHorAlign : "Горизонтальне вирівнювання", DlgCellHorAlignNotSet : "<Не вст.>", DlgCellHorAlignLeft : "Зліва", DlgCellHorAlignCenter : "По центру", DlgCellHorAlignRight: "Зправа", DlgCellVerAlign : "Вертикальное вирівнювання", DlgCellVerAlignNotSet : "<Не вст.>", DlgCellVerAlignTop : "Зверху", DlgCellVerAlignMiddle : "Посередині", DlgCellVerAlignBottom : "Знизу", DlgCellVerAlignBaseline : "По базовій лінії", DlgCellRowSpan : "Діапазон строк (span)", DlgCellCollSpan : "Діапазон колонок (span)", DlgCellBackColor : "Колір фона", DlgCellBorderColor : "Колір бордюра", DlgCellBtnSelect : "Оберіть...", // Find Dialog DlgFindTitle : "Пошук", DlgFindFindBtn : "Пошук", DlgFindNotFoundMsg : "Вказаний текст не знайдений.", // Replace Dialog DlgReplaceTitle : "Замінити", DlgReplaceFindLbl : "Шукати:", DlgReplaceReplaceLbl : "Замінити на:", DlgReplaceCaseChk : "Учитывать регистр", DlgReplaceReplaceBtn : "Замінити", DlgReplaceReplAllBtn : "Замінити все", DlgReplaceWordChk : "Збіг цілих слів", // Paste Operations / Dialog PasteErrorCut : "Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції вирізування. Будь ласка, використовуйте клавіатуру для цього (Ctrl+X).", PasteErrorCopy : "Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції копіювання. Будь ласка, використовуйте клавіатуру для цього (Ctrl+C).", PasteAsText : "Вставити тільки текст", PasteFromWord : "Вставити з Word", DlgPasteMsg2 : "Будь-ласка, вставте з буфера обміну в цю область, користуючись комбінацією клавіш (Ctrl+V) та натисніть OK.", DlgPasteSec : "Редактор не може отримати прямий доступ до буферу обміну у зв'язку з налаштуваннями вашого браузера. Вам потрібно вставити інформацію повторно в це вікно.", DlgPasteIgnoreFont : "Ігнорувати налаштування шрифтів", DlgPasteRemoveStyles : "Видалити налаштування стилів", DlgPasteCleanBox : "Очистити область", // Color Picker ColorAutomatic : "Автоматичний", ColorMoreColors : "Кольори...", // Document Properties DocProps : "Властивості документа", // Anchor Dialog DlgAnchorTitle : "Властивості якоря", DlgAnchorName : "Ім'я якоря", DlgAnchorErrorName : "Будь ласка, занесіть ім'я якоря", // Speller Pages Dialog DlgSpellNotInDic : "Не має в словнику", DlgSpellChangeTo : "Замінити на", DlgSpellBtnIgnore : "Ігнорувати", DlgSpellBtnIgnoreAll : "Ігнорувати все", DlgSpellBtnReplace : "Замінити", DlgSpellBtnReplaceAll : "Замінити все", DlgSpellBtnUndo : "Назад", DlgSpellNoSuggestions : "- Немає припущень -", DlgSpellProgress : "Виконується перевірка орфографії...", DlgSpellNoMispell : "Перевірку орфографії завершено: помилок не знайдено", DlgSpellNoChanges : "Перевірку орфографії завершено: жодне слово не змінено", DlgSpellOneChange : "Перевірку орфографії завершено: змінено одно слово", DlgSpellManyChanges : "Перевірку орфографії завершено: 1% слів змінено", IeSpellDownload : "Модуль перевірки орфографії не встановлено. Бажаєтн завантажити його зараз?", // Button Dialog DlgButtonText : "Текст (Значення)", DlgButtonType : "Тип", DlgButtonTypeBtn : "Кнопка", DlgButtonTypeSbm : "Відправити", DlgButtonTypeRst : "Скинути", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Ім'я", DlgCheckboxValue : "Значення", DlgCheckboxSelected : "Обрана", // Form Dialog DlgFormName : "Ім'я", DlgFormAction : "Дія", DlgFormMethod : "Метод", // Select Field Dialog DlgSelectName : "Ім'я", DlgSelectValue : "Значення", DlgSelectSize : "Розмір", DlgSelectLines : "лінії", DlgSelectChkMulti : "Дозволити обрання декількох позицій", DlgSelectOpAvail : "Доступні варіанти", DlgSelectOpText : "Текст", DlgSelectOpValue : "Значення", DlgSelectBtnAdd : "Добавити", DlgSelectBtnModify : "Змінити", DlgSelectBtnUp : "Вгору", DlgSelectBtnDown : "Вниз", DlgSelectBtnSetValue : "Встановити як вибране значення", DlgSelectBtnDelete : "Видалити", // Textarea Dialog DlgTextareaName : "Ім'я", DlgTextareaCols : "Колонки", DlgTextareaRows : "Строки", // Text Field Dialog DlgTextName : "Ім'я", DlgTextValue : "Значення", DlgTextCharWidth : "Ширина", DlgTextMaxChars : "Макс. кіл-ть символів", DlgTextType : "Тип", DlgTextTypeText : "Текст", DlgTextTypePass : "Пароль", // Hidden Field Dialog DlgHiddenName : "Ім'я", DlgHiddenValue : "Значення", // Bulleted List Dialog BulletedListProp : "Властивості маркованого списка", NumberedListProp : "Властивості нумерованного списка", DlgLstStart : "Початок", DlgLstType : "Тип", DlgLstTypeCircle : "Коло", DlgLstTypeDisc : "Диск", 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 : "Загальні", DlgDocBackTab : "Заднє тло", DlgDocColorsTab : "Кольори та відступи", DlgDocMetaTab : "Мета дані", DlgDocPageTitle : "Заголовок сторінки", DlgDocLangDir : "Напрямок тексту", DlgDocLangDirLTR : "Зліва на право (LTR)", DlgDocLangDirRTL : "Зправа на лево (RTL)", DlgDocLangCode : "Код мови", DlgDocCharSet : "Кодування набору символів", DlgDocCharSetCE : "Центрально-європейська", DlgDocCharSetCT : "Китайська традиційна (Big5)", DlgDocCharSetCR : "Кирилиця", DlgDocCharSetGR : "Грецька", DlgDocCharSetJP : "Японська", DlgDocCharSetKR : "Корейська", DlgDocCharSetTR : "Турецька", DlgDocCharSetUN : "Юнікод (UTF-8)", DlgDocCharSetWE : "Західно-европейская", DlgDocCharSetOther : "Інше кодування набору символів", DlgDocDocType : "Заголовок типу документу", DlgDocDocTypeOther : "Інший заголовок типу документу", DlgDocIncXHTML : "Ввімкнути XHTML оголошення", DlgDocBgColor : "Колір тла", DlgDocBgImage : "URL зображення тла", DlgDocBgNoScroll : "Тло без прокрутки", DlgDocCText : "Текст", DlgDocCLink : "Посилання", DlgDocCVisited : "Відвідане посилання", DlgDocCActive : "Активне посилання", DlgDocMargins : "Відступи сторінки", DlgDocMaTop : "Верхній", DlgDocMaLeft : "Лівий", DlgDocMaRight : "Правий", DlgDocMaBottom : "Нижній", DlgDocMeIndex : "Ключові слова документа (розділені комами)", DlgDocMeDescr : "Опис документа", DlgDocMeAuthor : "Автор", DlgDocMeCopy : "Авторські права", DlgDocPreview : "Попередній перегляд", // Templates Dialog Templates : "Шаблони", DlgTemplatesTitle : "Шаблони змісту", DlgTemplatesSelMsg : "Оберіть, будь ласка, шаблон для відкриття в редакторі
(поточний зміст буде втрачено):", DlgTemplatesLoading : "Завантаження списку шаблонів. Зачекайте, будь ласка...", DlgTemplatesNoTpl : "(Не визначено жодного шаблону)", DlgTemplatesReplace : "Замінити поточний вміст", // About Dialog DlgAboutAboutTab : "Про програму", DlgAboutBrowserInfoTab : "Інформація браузера", DlgAboutLicenseTab : "Ліцензія", DlgAboutVersion : "Версія", DlgAboutInfo : "Додаткову інформацію дивіться на " };FCKeditor/editor/lang/no.js0000644000102600010270000004111511234071631015032 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Norwegian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Skjul verktøylinje", ToolbarExpand : "Vis verktøylinje", // Toolbar Items and Context Menu Save : "Lagre", NewPage : "Ny Side", Preview : "Forhåndsvis", Cut : "Klipp ut", Copy : "Kopier", Paste : "Lim inn", PasteText : "Lim inn som ren tekst", PasteWord : "Lim inn fra Word", Print : "Skriv ut", SelectAll : "Merk alt", RemoveFormat : "Fjern format", InsertLinkLbl : "Lenke", InsertLink : "Sett inn/Rediger lenke", RemoveLink : "Fjern lenke", 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", InsertLine : "Sett inn horisontal linje", InsertSpecialCharLbl: "Spesielt tegn", InsertSpecialChar : "Sett inn spesielt tegn", InsertSmileyLbl : "Smil", InsertSmiley : "Sett inn smil", About : "Om FCKeditor", Bold : "Fet", Italic : "Kursiv", Underline : "Understrek", StrikeThrough : "Gjennomstrek", Subscript : "Senket skrift", Superscript : "Hevet skrift", LeftJustify : "Venstrejuster", CenterJustify : "Midtjuster", RightJustify : "Høyrejuster", BlockJustify : "Blokkjuster", DecreaseIndent : "Senk nivå", IncreaseIndent : "Øk nivå", Undo : "Angre", Redo : "Gjør om", NumberedListLbl : "Numrert liste", NumberedList : "Sett inn/Fjern numrert liste", BulletedListLbl : "Uordnet liste", BulletedList : "Sett inn/Fjern uordnet liste", ShowTableBorders : "Vis tabellrammer", ShowDetails : "Vis detaljer", Style : "Stil", FontFormat : "Format", Font : "Skrift", FontSize : "Størrelse", TextColor : "Tekstfarge", BGColor : "Bakgrunnsfarge", Source : "Kilde", Find : "Finn", Replace : "Erstatt", SpellCheck : "Stavekontroll", UniversalKeyboard : "Universelt tastatur", PageBreakLbl : "Sideskift", PageBreak : "Sett inn sideskift", Form : "Skjema", Checkbox : "Sjekkboks", RadioButton : "Radioknapp", TextField : "Tekstfelt", Textarea : "Tekstområde", HiddenField : "Skjult felt", Button : "Knapp", SelectionField : "Dropdown meny", ImageButton : "Bildeknapp", FitWindow : "Maksimer størrelsen på redigeringsverktøyet", // Context Menu EditLink : "Rediger lenke", CellCM : "Celle", RowCM : "Rader", ColumnCM : "Kolonne", InsertRow : "Sett inn rad", DeleteRows : "Slett rader", InsertColumn : "Sett inn kolonne", DeleteColumns : "Slett kolonner", InsertCell : "Sett inn celle", DeleteCells : "Slett celler", MergeCells : "Slå sammen celler", SplitCell : "Splitt celler", TableDelete : "Slett tabell", CellProperties : "Celleegenskaper", TableProperties : "Tabellegenskaper", ImageProperties : "Bildeegenskaper", FlashProperties : "Flash Egenskaper", AnchorProp : "Ankeregenskaper", ButtonProp : "Knappegenskaper", CheckboxProp : "Sjekkboksegenskaper", HiddenFieldProp : "Skjult felt egenskaper", RadioButtonProp : "Radioknappegenskaper", ImageButtonProp : "Bildeknappegenskaper", TextFieldProp : "Tekstfeltegenskaper", SelectionFieldProp : "Dropdown menyegenskaper", TextareaProp : "Tekstfeltegenskaper", FormProp : "Skjemaegenskaper", FontFormats : "Normal;Formatert;Adresse;Tittel 1;Tittel 2;Tittel 3;Tittel 4;Tittel 5;Tittel 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Lager XHTML. Vennligst vent...", Done : "Ferdig", PasteWordConfirm : "Teksten du prøver å lime inn ser ut som om den kommer fra word , du bør rense den før du limer inn , vil du gjøre dette?", NotCompatiblePaste : "Denne kommandoen er tilgjenglig kun for Internet Explorer version 5.5 eller bedre. Vil du fortsette uten å rense?(Du kan lime inn som ren tekst)", UnknownToolbarItem : "Ukjent menyvalg \"%1\"", UnknownCommand : "Ukjent kommando \"%1\"", NotImplemented : "Kommando ikke ennå implimentert", UnknownToolbarSet : "Verktøylinjesett \"%1\" finnes ikke", NoActiveX : "Din nettleser's sikkerhetsinstillinger kan begrense noen av funksjonene i redigeringsverktøyet. Du må aktivere \"Kjør ActiveXkontroller og plugins\". Du kan oppleve feil og advarsler om manglende funksjoner", BrowseServerBlocked : "Kunne ikke åpne dialogboksen for filarkiv. Pass på at du har slått av popupstoppere.", DialogBlocked : "Kunne ikke åpne dialogboksen. Pass på at du har slått av popupstoppere.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Avbryt", DlgBtnClose : "Lukk", DlgBtnBrowseServer : "Bla igjennom server", DlgAdvancedTag : "Avansert", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Vennligst skriv inn URL'en", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Språkretning", DlgGenLangDirLtr : "Venstre til høyre (VTH)", DlgGenLangDirRtl : "Høyre til venstre (HTV)", DlgGenLangCode : "Språk kode", DlgGenAccessKey : "Aksessknapp", DlgGenName : "Navn", DlgGenTabIndex : "Tab Indeks", DlgGenLongDescr : "Utvidet beskrivelse", DlgGenClass : "Stilarkklasser", DlgGenTitle : "Tittel", DlgGenContType : "Type", DlgGenLinkCharset : "Lenket språkkart", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Bildeegenskaper", DlgImgInfoTab : "Bildeinformasjon", DlgImgBtnUpload : "Send det til serveren", DlgImgURL : "URL", DlgImgUpload : "Last opp", DlgImgAlt : "Alternativ tekst", DlgImgWidth : "Bredde", DlgImgHeight : "Høyde", DlgImgLockRatio : "Lås forhold", DlgBtnResetSize : "Tilbakestill størrelse", DlgImgBorder : "Ramme", DlgImgHSpace : "HMarg", DlgImgVSpace : "VMarg", DlgImgAlign : "Juster", DlgImgAlignLeft : "Venstre", DlgImgAlignAbsBottom: "Abs bunn", DlgImgAlignAbsMiddle: "Abs midten", DlgImgAlignBaseline : "Bunnlinje", DlgImgAlignBottom : "Bunn", DlgImgAlignMiddle : "Midten", DlgImgAlignRight : "Høyre", DlgImgAlignTextTop : "Tekst topp", DlgImgAlignTop : "Topp", DlgImgPreview : "Forhåndsvis", 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", DlgLnkTargetTab : "Mål", DlgLnkType : "Lenketype", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Lenke til bokmerke i teksten", DlgLnkTypeEMail : "E-Post", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Velg ett anker", DlgLnkAnchorByName : "Anker etter navn", DlgLnkAnchorById : "Element etter ID", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Post Addresse", DlgLnkEMailSubject : "Meldingsemne", DlgLnkEMailBody : "Melding", DlgLnkUpload : "Last opp", DlgLnkBtnUpload : "Send til server", DlgLnkTarget : "Mål", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nytt vindu (_blank)", DlgLnkTargetParent : "Foreldre vindu (_parent)", DlgLnkTargetSelf : "Samme vindu (_self)", DlgLnkTargetTop : "Hele vindu (_top)", DlgLnkTargetFrameName : "Målramme", DlgLnkPopWinName : "Popup vindus navn", DlgLnkPopWinFeat : "Popup vindus egenskaper", DlgLnkPopResize : "Endre størrelse", DlgLnkPopLocation : "Adresselinje", DlgLnkPopMenu : "Menylinje", DlgLnkPopScroll : "Scrollbar", DlgLnkPopStatus : "Statuslinje", DlgLnkPopToolbar : "Verktøylinje", DlgLnkPopFullScrn : "Full skjerm (IE)", DlgLnkPopDependent : "Avhenging (Netscape)", DlgLnkPopWidth : "Bredde", DlgLnkPopHeight : "Høyde", DlgLnkPopLeft : "Venstre posisjon", DlgLnkPopTop : "Topp posisjon", DlnLnkMsgNoUrl : "Vennligst skriv inn lenkens url", DlnLnkMsgNoEMail : "Vennligst skriv inn e-postadressen", DlnLnkMsgNoAnchor : "Vennligst velg ett anker", DlnLnkMsgInvPopName : "Popup vinduets navn må begynne med en bokstav, og kan ikke inneholde mellomrom", // Color Dialog DlgColorTitle : "Velg farge", DlgColorBtnClear : "Tøm", DlgColorHighlight : "Marker", DlgColorSelected : "Velg", // Smiley Dialog DlgSmileyTitle : "Sett inn smil", // Special Character Dialog DlgSpecialCharTitle : "Velg spesielt tegn", // Table Dialog DlgTableTitle : "Tabellegenskaper", DlgTableRows : "Rader", DlgTableColumns : "Kolonner", DlgTableBorder : "Rammestørrelse", DlgTableAlign : "Justering", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Venstre", DlgTableAlignCenter : "Midtjuster", DlgTableAlignRight : "Høyre", DlgTableWidth : "Bredde", DlgTableWidthPx : "pixler", DlgTableWidthPc : "prosent", DlgTableHeight : "Høyde", DlgTableCellSpace : "Celle marg", DlgTableCellPad : "Celle polstring", DlgTableCaption : "Tittel", DlgTableSummary : "Sammendrag", // Table Cell Dialog DlgCellTitle : "Celle egenskaper", DlgCellWidth : "Bredde", DlgCellWidthPx : "pixeler", DlgCellWidthPc : "prosent", DlgCellHeight : "Høyde", DlgCellWordWrap : "Tekstbrytning", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nei", DlgCellHorAlign : "Horisontal justering", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Venstre", DlgCellHorAlignCenter : "Midtjuster", DlgCellHorAlignRight: "Høyre", DlgCellVerAlign : "Vertikal justering", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Topp", DlgCellVerAlignMiddle : "Midten", DlgCellVerAlignBottom : "Bunn", DlgCellVerAlignBaseline : "Bunnlinje", DlgCellRowSpan : "Radspenn", DlgCellCollSpan : "Kolonnespenn", DlgCellBackColor : "Bakgrunnsfarge", DlgCellBorderColor : "Rammefarge", DlgCellBtnSelect : "Velg...", // Find Dialog DlgFindTitle : "Finn", DlgFindFindBtn : "Finn", DlgFindNotFoundMsg : "Den spesifiserte teksten ble ikke funnet.", // Replace Dialog DlgReplaceTitle : "Erstatt", DlgReplaceFindLbl : "Finn hva:", DlgReplaceReplaceLbl : "Erstatt med:", DlgReplaceCaseChk : "Riktig case", DlgReplaceReplaceBtn : "Erstatt", DlgReplaceReplAllBtn : "Erstatt alle", DlgReplaceWordChk : "Finn hele ordet", // Paste Operations / Dialog PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst brukt snareveien (Ctrl+X).", PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst brukt snareveien (Ctrl+C).", PasteAsText : "Lim inn som ren tekst", PasteFromWord : "Lim inn fra word", DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (Ctrl+V) og trykk OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Fjern skrifttyper", DlgPasteRemoveStyles : "Fjern stildefinisjoner", DlgPasteCleanBox : "Tøm boksen", // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Flere farger...", // Document Properties DocProps : "Dokumentegenskaper", // Anchor Dialog DlgAnchorTitle : "Ankeregenskaper", DlgAnchorName : "Ankernavn", DlgAnchorErrorName : "Vennligst skriv inn ankernavnet", // Speller Pages Dialog DlgSpellNotInDic : "Ikke i ordboken", DlgSpellChangeTo : "Endre til", DlgSpellBtnIgnore : "Ignorer", DlgSpellBtnIgnoreAll : "Ignorer alle", DlgSpellBtnReplace : "Erstatt", DlgSpellBtnReplaceAll : "Erstatt alle", DlgSpellBtnUndo : "Angre", DlgSpellNoSuggestions : "- ingen forslag -", DlgSpellProgress : "Stavekontroll pågår...", DlgSpellNoMispell : "Stavekontroll fullført: ingen feilstavinger funnet", DlgSpellNoChanges : "Stavekontroll fullført: ingen ord endret", DlgSpellOneChange : "Stavekontroll fullført: Ett ord endret", DlgSpellManyChanges : "Stavekontroll fullført: %1 ord endret", IeSpellDownload : "Stavekontroll ikke installert, vil du laste den ned nå?", // Button Dialog DlgButtonText : "Tekst", DlgButtonType : "Type", DlgButtonTypeBtn : "Knapp", DlgButtonTypeSbm : "Send", DlgButtonTypeRst : "Nullstill", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Navn", DlgCheckboxValue : "Verdi", DlgCheckboxSelected : "Valgt", // Form Dialog DlgFormName : "Navn", DlgFormAction : "Handling", DlgFormMethod : "Metode", // Select Field Dialog DlgSelectName : "Navn", DlgSelectValue : "Verdi", DlgSelectSize : "Størrelse", DlgSelectLines : "Linjer", DlgSelectChkMulti : "Tillat flervalg", DlgSelectOpAvail : "Tilgjenglige alternativer", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Verdi", DlgSelectBtnAdd : "Legg til", DlgSelectBtnModify : "Endre", DlgSelectBtnUp : "Opp", DlgSelectBtnDown : "Ned", DlgSelectBtnSetValue : "Sett som valgt", DlgSelectBtnDelete : "Slett", // Textarea Dialog DlgTextareaName : "Navn", DlgTextareaCols : "Kolonner", DlgTextareaRows : "Rader", // Text Field Dialog DlgTextName : "Navn", DlgTextValue : "verdi", DlgTextCharWidth : "Tegnbredde", DlgTextMaxChars : "Maks antall tegn", DlgTextType : "Type", DlgTextTypeText : "Tekst", DlgTextTypePass : "Passord", // Hidden Field Dialog DlgHiddenName : "Navn", DlgHiddenValue : "Verdi", // Bulleted List Dialog BulletedListProp : "Uordnet listeegenskaper", NumberedListProp : "Ordnet listeegenskaper", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Sirkel", DlgLstTypeDisc : "Hel sirkel", DlgLstTypeSquare : "Firkant", DlgLstTypeNumbers : "Numre(1, 2, 3)", DlgLstTypeLCase : "Små bokstaver (a, b, c)", DlgLstTypeUCase : "Store bokstaver(A, B, C)", DlgLstTypeSRoman : "Små romerske tall(i, ii, iii)", DlgLstTypeLRoman : "Store romerske tall(I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Generalt", DlgDocBackTab : "Bakgrunn", DlgDocColorsTab : "Farger og marginer", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Sidetittel", DlgDocLangDir : "Språkretning", DlgDocLangDirLTR : "Venstre til høyre (LTR)", DlgDocLangDirRTL : "Høyre til venstre (RTL)", DlgDocLangCode : "Språkkode", DlgDocCharSet : "Tegnsett", DlgDocCharSetCE : "Sentraleuropeisk", DlgDocCharSetCT : "Tradisonell kinesisk(Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Gresk", DlgDocCharSetJP : "Japansk", DlgDocCharSetKR : "Koreansk", DlgDocCharSetTR : "Tyrkisk", DlgDocCharSetUN : "Unikode (UTF-8)", DlgDocCharSetWE : "Vesteuropeisk", DlgDocCharSetOther : "Annet tegnsett", DlgDocDocType : "Dokumenttype header", DlgDocDocTypeOther : "Annet dokumenttype header", DlgDocIncXHTML : "Inkulder XHTML deklarasjon", DlgDocBgColor : "Bakgrunnsfarge", DlgDocBgImage : "Bakgrunnsbilde url", DlgDocBgNoScroll : "Ikke scroll bakgrunnsbilde", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Besøkt lenke", DlgDocCActive : "Aktiv lenke", DlgDocMargins : "Sidemargin", DlgDocMaTop : "Topp", DlgDocMaLeft : "Venstre", DlgDocMaRight : "Høyre", DlgDocMaBottom : "Bunn", DlgDocMeIndex : "Dokument nøkkelord (kommaseparert)", DlgDocMeDescr : "Dokumentbeskrivelse", DlgDocMeAuthor : "Forfatter", DlgDocMeCopy : "Kopirett", DlgDocPreview : "Forhåndsvising", // Templates Dialog Templates : "Maler", DlgTemplatesTitle : "Innholdsmaler", DlgTemplatesSelMsg : "Velg malen du vil åpne
(innholdet du har skrevet blir tapt!):", DlgTemplatesLoading : "Laster malliste. Vennligst vent...", DlgTemplatesNoTpl : "(Ingen maler definert)", DlgTemplatesReplace : "Erstatt faktisk innold", // About Dialog DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Nettleserinfo", DlgAboutLicenseTab : "Lisens", DlgAboutVersion : "versjon", DlgAboutInfo : "For further information go to" //MISSING };FCKeditor/editor/lang/pl.js0000644000102600010270000004333111234071632015034 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Polish language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Zwiń pasek narzędzi", ToolbarExpand : "Rozwiń pasek narzędzi", // Toolbar Items and Context Menu Save : "Zapisz", NewPage : "Nowa strona", Preview : "Podgląd", Cut : "Wytnij", Copy : "Kopiuj", Paste : "Wklej", PasteText : "Wklej jako czysty tekst", PasteWord : "Wklej z Worda", Print : "Drukuj", SelectAll : "Zaznacz wszystko", RemoveFormat : "Usuń formatowanie", InsertLinkLbl : "Hiperłącze", InsertLink : "Wstaw/edytuj hiperłącze", RemoveLink : "Usuń hiperłącze", Anchor : "Wstaw/edytuj kotwicę", InsertImageLbl : "Obrazek", InsertImage : "Wstaw/edytuj obrazek", InsertFlashLbl : "Flash", InsertFlash : "Dodaj/Edytuj element Flash", InsertTableLbl : "Tabela", InsertTable : "Wstaw/edytuj tabelę", InsertLineLbl : "Linia pozioma", InsertLine : "Wstaw poziomą linię", InsertSpecialCharLbl: "Znak specjalny", InsertSpecialChar : "Wstaw znak specjalny", InsertSmileyLbl : "Emotikona", InsertSmiley : "Wstaw emotikonę", About : "O programie FCKeditor", Bold : "Pogrubienie", Italic : "Kursywa", Underline : "Podkreślenie", StrikeThrough : "Przekreślenie", Subscript : "Indeks dolny", Superscript : "Indeks górny", LeftJustify : "Wyrównaj do lewej", CenterJustify : "Wyrównaj do środka", RightJustify : "Wyrównaj do prawej", BlockJustify : "Wyrównaj do lewej i prawej", DecreaseIndent : "Zmniejsz wcięcie", IncreaseIndent : "Zwiększ wcięcie", Undo : "Cofnij", Redo : "Ponów", NumberedListLbl : "Lista numerowana", NumberedList : "Wstaw/usuń numerowanie listy", BulletedListLbl : "Lista wypunktowana", BulletedList : "Wstaw/usuń wypunktowanie listy", ShowTableBorders : "Pokazuj ramkę tabeli", ShowDetails : "Pokaż szczegóły", Style : "Styl", FontFormat : "Format", Font : "Czcionka", FontSize : "Rozmiar", TextColor : "Kolor tekstu", BGColor : "Kolor tła", Source : "Źródło dokumentu", Find : "Znajdź", Replace : "Zamień", SpellCheck : "Sprawdź pisownię", UniversalKeyboard : "Klawiatura Uniwersalna", PageBreakLbl : "Odstęp", PageBreak : "Wstaw odstęp", Form : "Formularz", Checkbox : "Checkbox", RadioButton : "Pole wyboru", TextField : "Pole tekstowe", Textarea : "Obszar tekstowy", HiddenField : "Pole ukryte", Button : "Przycisk", SelectionField : "Lista wyboru", ImageButton : "Przycisk obrazek", FitWindow : "Maksymalizuj rozmiar edytora", // Context Menu EditLink : "Edytuj hiperłącze", CellCM : "Komórka", RowCM : "Wiersz", ColumnCM : "Kolumna", InsertRow : "Wstaw wiersz", DeleteRows : "Usuń wiersze", InsertColumn : "Wstaw kolumnę", DeleteColumns : "Usuń kolumny", InsertCell : "Wstaw komórkę", DeleteCells : "Usuń komórki", MergeCells : "Połącz komórki", SplitCell : "Podziel komórkę", TableDelete : "Usuń tabelę", CellProperties : "Właściwości komórki", TableProperties : "Właściwości tabeli", ImageProperties : "Właściwości obrazka", FlashProperties : "Właściwości elementu Flash", AnchorProp : "Właściwości kotwicy", ButtonProp : "Właściwości przycisku", CheckboxProp : "Checkbox - właściwości", HiddenFieldProp : "Właściwości pola ukrytego", RadioButtonProp : "Właściwości pola wyboru", ImageButtonProp : "Właściwości przycisku obrazka", TextFieldProp : "Właściwości pola tekstowego", SelectionFieldProp : "Właściwości listy wyboru", TextareaProp : "Właściwości obszaru tekstowego", FormProp : "Właściwości formularza", FontFormats : "Normalny;Tekst sformatowany;Adres;Nagłówek 1;Nagłówek 2;Nagłówek 3;Nagłówek 4;Nagłówek 5;Nagłówek 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Przetwarzanie XHTML. Proszę czekać...", Done : "Gotowe", PasteWordConfirm : "Tekst, który chcesz wkleić, prawdopodobnie pochodzi z programu Word. Czy chcesz go wyczyścic przed wklejeniem?", NotCompatiblePaste : "Ta funkcja jest dostępna w programie Internet Explorer w wersji 5.5 lub wyższej. Czy chcesz wkleić tekst bez czyszczenia?", UnknownToolbarItem : "Nieznany element paska narzędzi \"%1\"", UnknownCommand : "Nieznana komenda \"%1\"", NotImplemented : "Komenda niezaimplementowana", UnknownToolbarSet : "Pasek narzędzi \"%1\" nie istnieje", NoActiveX : "Ustawienia zabezpieczeń twojej przeglądarki mogą ograniczyć niektóre funkcje edytora. Musisz włączyć opcję \"Uruchamianie formantów Activex i dodatków plugin\". W przeciwnym wypadku mogą pojawiać się błędy.", BrowseServerBlocked : "Okno menadżera plików nie może zostać otwarte. Upewnij się, że wszystkie blokady popup są wyłączone.", DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady popup są wyłączone.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Anuluj", DlgBtnClose : "Zamknij", DlgBtnBrowseServer : "Przeglądaj", DlgAdvancedTag : "Zaawansowane", DlgOpOther : "", DlgInfoTab : "Informacje", DlgAlertUrl : "Proszę podać URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Kierunek tekstu", DlgGenLangDirLtr : "Od lewej do prawej (LTR)", DlgGenLangDirRtl : "Od prawej do lewej (RTL)", DlgGenLangCode : "Kod języka", DlgGenAccessKey : "Klawisz dostępu", DlgGenName : "Nazwa", DlgGenTabIndex : "Indeks tabeli", DlgGenLongDescr : "Long Description URL", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Styl", // Image Dialog DlgImgTitle : "Właściwości obrazka", DlgImgInfoTab : "Informacje o obrazku", DlgImgBtnUpload : "Syślij", DlgImgURL : "Adres URL", DlgImgUpload : "Wyślij", DlgImgAlt : "Tekst zastępczy", DlgImgWidth : "Szerokość", DlgImgHeight : "Wysokość", DlgImgLockRatio : "Zablokuj proporcje", DlgBtnResetSize : "Przywróć rozmiar", DlgImgBorder : "Ramka", DlgImgHSpace : "Odstęp poziomy", DlgImgVSpace : "Odstęp pionowy", DlgImgAlign : "Wyrównaj", DlgImgAlignLeft : "Do lewej", DlgImgAlignAbsBottom: "Do dołu", DlgImgAlignAbsMiddle: "Do środka w pionie", DlgImgAlignBaseline : "Do linii bazowej", DlgImgAlignBottom : "Do dołu", DlgImgAlignMiddle : "Do środka", DlgImgAlignRight : "Do prawej", DlgImgAlignTextTop : "Do góry tekstu", DlgImgAlignTop : "Do góry", DlgImgPreview : "Podgląd", DlgImgAlertUrl : "Podaj adres obrazka.", DlgImgLinkTab : "Link", // Flash Dialog DlgFlashTitle : "Właściwości elementu Flash", DlgFlashChkPlay : "Auto Odtwarzanie", DlgFlashChkLoop : "Pętla", DlgFlashChkMenu : "Włącz menu", DlgFlashScale : "Skaluj", DlgFlashScaleAll : "Pokaż wszystko", DlgFlashScaleNoBorder : "Bez Ramki", DlgFlashScaleFit : "Dokładne dopasowanie", // Link Dialog DlgLnkWindowTitle : "Hiperłącze", DlgLnkInfoTab : "Informacje ", DlgLnkTargetTab : "Cel", DlgLnkType : "Typ hiperłącza", DlgLnkTypeURL : "Adres URL", DlgLnkTypeAnchor : "Odnośnik wewnątrz strony", DlgLnkTypeEMail : "Adres e-mail", DlgLnkProto : "Protokół", DlgLnkProtoOther : "", DlgLnkURL : "Adres URL", DlgLnkAnchorSel : "Wybierz etykietę", DlgLnkAnchorByName : "Wg etykiety", DlgLnkAnchorById : "Wg identyfikatora elementu", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adres e-mail", DlgLnkEMailSubject : "Temat", DlgLnkEMailBody : "Treść", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Wyślij", DlgLnkTarget : "Cel", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nowe okno (_blank)", DlgLnkTargetParent : "Okno nadrzędne (_parent)", DlgLnkTargetSelf : "To samo okno (_self)", DlgLnkTargetTop : "Okno najwyższe w hierarchii (_top)", DlgLnkTargetFrameName : "Nazwa Ramki Docelowej", DlgLnkPopWinName : "Nazwa wyskakującego okna", DlgLnkPopWinFeat : "Właściwości wyskakującego okna", DlgLnkPopResize : "Możliwa zmiana rozmiaru", DlgLnkPopLocation : "Pasek adresu", DlgLnkPopMenu : "Pasek menu", DlgLnkPopScroll : "Paski przewijania", DlgLnkPopStatus : "Pasek statusu", DlgLnkPopToolbar : "Pasek narzędzi", DlgLnkPopFullScrn : "Pełny ekran (IE)", DlgLnkPopDependent : "Okno zależne (Netscape)", DlgLnkPopWidth : "Szerokość", DlgLnkPopHeight : "Wysokość", DlgLnkPopLeft : "Pozycja w poziomie", DlgLnkPopTop : "Pozycja w pionie", DlnLnkMsgNoUrl : "Podaj adres URL", DlnLnkMsgNoEMail : "Podaj adres e-mail", DlnLnkMsgNoAnchor : "Wybierz etykietę", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Wybierz kolor", DlgColorBtnClear : "Wyczyść", DlgColorHighlight : "Podgląd", DlgColorSelected : "Wybrane", // Smiley Dialog DlgSmileyTitle : "Wstaw emotikonę", // Special Character Dialog DlgSpecialCharTitle : "Wybierz znak specjalny", // Table Dialog DlgTableTitle : "Właściwości tabeli", DlgTableRows : "Liczba wierszy", DlgTableColumns : "Liczba kolumn", DlgTableBorder : "Grubość ramki", DlgTableAlign : "Wyrównanie", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Do lewej", DlgTableAlignCenter : "Do środka", DlgTableAlignRight : "Do prawej", DlgTableWidth : "Szerokość", DlgTableWidthPx : "piksele", DlgTableWidthPc : "%", DlgTableHeight : "Wysokość", DlgTableCellSpace : "Odstęp pomiędzy komórkami", DlgTableCellPad : "Margines wewnętrzny komórek", DlgTableCaption : "Tytuł", DlgTableSummary : "Podsumowanie", // Table Cell Dialog DlgCellTitle : "Właściwości komórki", DlgCellWidth : "Szerokość", DlgCellWidthPx : "piksele", DlgCellWidthPc : "%", DlgCellHeight : "Wysokość", DlgCellWordWrap : "Zawijanie tekstu", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Tak", DlgCellWordWrapNo : "Nie", DlgCellHorAlign : "Wyrównanie poziome", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Do lewej", DlgCellHorAlignCenter : "Do środka", DlgCellHorAlignRight: "Do prawej", DlgCellVerAlign : "Wyrównanie pionowe", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Do góry", DlgCellVerAlignMiddle : "Do środka", DlgCellVerAlignBottom : "Do dołu", DlgCellVerAlignBaseline : "Do linii bazowej", DlgCellRowSpan : "Zajętość wierszy", DlgCellCollSpan : "Zajętość kolumn", DlgCellBackColor : "Kolor tła", DlgCellBorderColor : "Kolor ramki", DlgCellBtnSelect : "Wybierz...", // Find Dialog DlgFindTitle : "Znajdź", DlgFindFindBtn : "Znajdź", DlgFindNotFoundMsg : "Nie znaleziono szukanego hasła.", // Replace Dialog DlgReplaceTitle : "Zamień", DlgReplaceFindLbl : "Znajdź:", DlgReplaceReplaceLbl : "Zastąp przez:", DlgReplaceCaseChk : "Uwzględnij wielkość liter", DlgReplaceReplaceBtn : "Zastąp", DlgReplaceReplAllBtn : "Zastąp wszystko", DlgReplaceWordChk : "Całe słowa", // Paste Operations / Dialog PasteErrorCut : "Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne wycinanie tekstu. Użyj skrótu klawiszowego Ctrl+X.", PasteErrorCopy : "Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne kopiowanie tekstu. Użyj skrótu klawiszowego Ctrl+C.", PasteAsText : "Wklej jako czysty tekst", PasteFromWord : "Wklej z Worda", DlgPasteMsg2 : "Proszę wkleić w poniższym polu używając klawiaturowego skrótu (Ctrl+V) i kliknąć OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoruj definicje 'Font Face'", DlgPasteRemoveStyles : "Usuń definicje Stylów", DlgPasteCleanBox : "Wyczyść", // Color Picker ColorAutomatic : "Automatycznie", ColorMoreColors : "Więcej kolorów...", // Document Properties DocProps : "Właściwości dokumentu", // Anchor Dialog DlgAnchorTitle : "Właściwości kotwicy", DlgAnchorName : "Nazwa kotwicy", DlgAnchorErrorName : "Wpisz nazwę kotwicy", // Speller Pages Dialog DlgSpellNotInDic : "Słowa nie ma w słowniku", DlgSpellChangeTo : "Zmień na", DlgSpellBtnIgnore : "Ignoruj", DlgSpellBtnIgnoreAll : "Ignoruj wszystkie", DlgSpellBtnReplace : "Zmień", DlgSpellBtnReplaceAll : "Zmień wszystkie", DlgSpellBtnUndo : "Undo", DlgSpellNoSuggestions : "- Brak sugestii -", DlgSpellProgress : "Trwa sprawdzanie ...", DlgSpellNoMispell : "Sprawdzanie zakończone: nie znaleziono błędów", DlgSpellNoChanges : "Sprawdzanie zakończone: nie zmieniono żadnego słowa", DlgSpellOneChange : "Sprawdzanie zakończone: zmieniono jedno słowo", DlgSpellManyChanges : "Sprawdzanie zakończone: zmieniono %l słów", IeSpellDownload : "Słownik nie jest zainstalowany. Chcesz go ściągnąć?", // Button Dialog DlgButtonText : "Tekst (Wartość)", DlgButtonType : "Typ", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nazwa", DlgCheckboxValue : "Wartość", DlgCheckboxSelected : "Zaznaczony", // Form Dialog DlgFormName : "Nazwa", DlgFormAction : "Akcja", DlgFormMethod : "Metoda", // Select Field Dialog DlgSelectName : "Nazwa", DlgSelectValue : "Wartość", DlgSelectSize : "Rozmiar", DlgSelectLines : "linii", DlgSelectChkMulti : "Wielokrotny wybór", DlgSelectOpAvail : "Dostępne opcje", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Wartość", DlgSelectBtnAdd : "Dodaj", DlgSelectBtnModify : "Zmień", DlgSelectBtnUp : "Do góry", DlgSelectBtnDown : "Do dołu", DlgSelectBtnSetValue : "Ustaw wartość zaznaczoną", DlgSelectBtnDelete : "Usuń", // Textarea Dialog DlgTextareaName : "Nazwa", DlgTextareaCols : "Kolumnu", DlgTextareaRows : "Wiersze", // Text Field Dialog DlgTextName : "Nazwa", DlgTextValue : "Wartość", DlgTextCharWidth : "Szerokość w znakach", DlgTextMaxChars : "Max. szerokość", DlgTextType : "Typ", DlgTextTypeText : "Tekst", DlgTextTypePass : "Hasło", // Hidden Field Dialog DlgHiddenName : "Nazwa", DlgHiddenValue : "Wartość", // Bulleted List Dialog BulletedListProp : "Właściwości listy punktowanej", NumberedListProp : "Właściwości listy numerowanej", DlgLstStart : "Start", //MISSING DlgLstType : "Typ", DlgLstTypeCircle : "Koło", DlgLstTypeDisc : "Dysk", DlgLstTypeSquare : "Kwadrat", DlgLstTypeNumbers : "Cyfry (1, 2, 3)", DlgLstTypeLCase : "Małe litery (a, b, c)", DlgLstTypeUCase : "Duże litery (A, B, C)", DlgLstTypeSRoman : "Numeracja rzymska (i, ii, iii)", DlgLstTypeLRoman : "Numeracja rzymska (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Ogólne", DlgDocBackTab : "Tło", DlgDocColorsTab : "Kolory i marginesy", DlgDocMetaTab : "Meta Dane", DlgDocPageTitle : "Tytuł strony", DlgDocLangDir : "Kierunek pisania", DlgDocLangDirLTR : "Od lewej do prawej (LTR)", DlgDocLangDirRTL : "Od prawej do lewej (RTL)", DlgDocLangCode : "Kod języka", DlgDocCharSet : "Kodowanie znaków", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Inne kodowanie znaków", DlgDocDocType : "Nagłowek typu dokumentu", DlgDocDocTypeOther : "Inny typ dokumentu", DlgDocIncXHTML : "Dołącz deklarację XHTML", DlgDocBgColor : "Kolor tła", DlgDocBgImage : "Obrazek tła", DlgDocBgNoScroll : "Tło nieruchome", DlgDocCText : "Tekst", DlgDocCLink : "Hiperłącze", DlgDocCVisited : "Odwiedzane hiperłącze", DlgDocCActive : "Aktywne hiperłącze", DlgDocMargins : "Marginesy strony", DlgDocMaTop : "Górny", DlgDocMaLeft : "Lewy", DlgDocMaRight : "Prawy", DlgDocMaBottom : "Dolny", DlgDocMeIndex : "Słowa kluczowe (oddzielone przecinkami)", DlgDocMeDescr : "Opis dokumentu", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Copyright", DlgDocPreview : "Podgląd", // Templates Dialog Templates : "Sablony", DlgTemplatesTitle : "Szablony zawartości", DlgTemplatesSelMsg : "Wybierz szablon do otwarcia w edytorze
(obecna zawartość okna edytora zostanie utracona):", DlgTemplatesLoading : "Ładowanie listy szablonów. Proszę czekać...", DlgTemplatesNoTpl : "(Brak zdefiniowanych szablonów)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "O ...", DlgAboutBrowserInfoTab : "O przeglądarce", DlgAboutLicenseTab : "Licencja", DlgAboutVersion : "wersja", DlgAboutInfo : "Więcej informacji uzyskasz pod adresem" };FCKeditor/editor/lang/ca.js0000644000102600010270000004362311234071565015015 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Catalan language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Col·lapsa la barra", ToolbarExpand : "Amplia la barra", // Toolbar Items and Context Menu Save : "Desa", NewPage : "Nova Pàgina", Preview : "Vista Prèvia", Cut : "Retalla", Copy : "Copia", Paste : "Enganxa", PasteText : "Enganxa com a text no formatat", PasteWord : "Enganxa des del Word", Print : "Imprimeix", SelectAll : "Selecciona-ho tot", RemoveFormat : "Elimina Format", InsertLinkLbl : "Enllaç", InsertLink : "Insereix/Edita enllaç", RemoveLink : "Elimina enllaç", Anchor : "Insereix/Edita àncora", InsertImageLbl : "Imatge", InsertImage : "Insereix/Edita imatge", InsertFlashLbl : "Flash", InsertFlash : "Insereix/Edita Flash", InsertTableLbl : "Taula", InsertTable : "Insereix/Edita taula", InsertLineLbl : "Línia", InsertLine : "Insereix línia horitzontal", InsertSpecialCharLbl: "Caràcter Especial", InsertSpecialChar : "Insereix caràcter especial", InsertSmileyLbl : "Icona", InsertSmiley : "Insereix icona", About : "Quant a FCKeditor", Bold : "Negreta", Italic : "Cursiva", Underline : "Subratllat", StrikeThrough : "Barrat", Subscript : "Subíndex", Superscript : "Superíndex", LeftJustify : "Aliniament esquerra", CenterJustify : "Aliniament centrat", RightJustify : "Aliniament dreta", BlockJustify : "Justifica", DecreaseIndent : "Sagna el text", IncreaseIndent : "Treu el sagnat del text", Undo : "Desfés", Redo : "Refés", NumberedListLbl : "Llista numerada", NumberedList : "Aplica o elimina la llista numerada", BulletedListLbl : "Llista de pics", BulletedList : "Aplica o elimina la llista de pics", ShowTableBorders : "Mostra les vores de les taules", ShowDetails : "Mostra detalls", Style : "Estil", FontFormat : "Format", Font : "Tipus de lletra", FontSize : "Mida", TextColor : "Color de Text", BGColor : "Color de Fons", Source : "Codi font", Find : "Cerca", Replace : "Reemplaça", SpellCheck : "Revisa l'ortografia", UniversalKeyboard : "Teclat universal", PageBreakLbl : "Salt de pàgina", PageBreak : "Insereix salt de pàgina", Form : "Formulari", Checkbox : "Casella de verificació", RadioButton : "Botó d'opció", TextField : "Camp de text", Textarea : "Àrea de text", HiddenField : "Camp ocult", Button : "Botó", SelectionField : "Camp de selecció", ImageButton : "Botó d'imatge", FitWindow : "Maximiza la mida de l'editor", // Context Menu EditLink : "Edita l'enllaç", CellCM : "Cel·la", RowCM : "Fila", ColumnCM : "Columna", InsertRow : "Insereix una fila", DeleteRows : "Suprimeix una fila", InsertColumn : "Afegeix una columna", DeleteColumns : "Suprimeix una columna", InsertCell : "Insereix una cel·la", DeleteCells : "Suprimeix les cel·les", MergeCells : "Fusiona les cel·les", SplitCell : "Separa les cel·les", TableDelete : "Suprimeix la taula", CellProperties : "Propietats de la cel·la", TableProperties : "Propietats de la taula", ImageProperties : "Propietats de la imatge", FlashProperties : "Propietats del Flash", AnchorProp : "Propietats de l'àncora", ButtonProp : "Propietats del botó", CheckboxProp : "Propietats de la casella de verificació", HiddenFieldProp : "Propietats del camp ocult", RadioButtonProp : "Propietats del botó d'opció", ImageButtonProp : "Propietats del botó d'imatge", TextFieldProp : "Propietats del camp de text", SelectionFieldProp : "Propietats del camp de selecció", TextareaProp : "Propietats de l'àrea de text", FormProp : "Propietats del formulari", FontFormats : "Normal;Formatejat;Adreça;Encapçalament 1;Encapçalament 2;Encapçalament 3;Encapçalament 4;Encapçalament 5;Encapçalament 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processant XHTML. Si us plau esperi...", Done : "Fet", PasteWordConfirm : "El text que voleu enganxar sembla provenir de Word. Voleu netejar aquest text abans que sigui enganxat?", NotCompatiblePaste : "Aquesta funció és disponible per a Internet Explorer versió 5.5 o superior. Voleu enganxar sense netejar?", UnknownToolbarItem : "Element de la barra d'eines desconegut \"%1\"", UnknownCommand : "Nom de comanda desconegut \"%1\"", NotImplemented : "Mètode no implementat", UnknownToolbarSet : "Conjunt de barra d'eines \"%1\" inexistent", NoActiveX : "Les preferències del navegador poden limitar algunes funcions d'aquest editor. Cal habilitar l'opció \"Executa controls ActiveX i plug-ins\". Poden sorgir errors i poden faltar algunes funcions.", BrowseServerBlocked : "El visualitzador de recursos no s'ha pogut obrir. Assegura't de que els bloquejos de finestres emergents estan desactivats.", DialogBlocked : "No ha estat possible obrir una finestra de diàleg. Assegura't de que els bloquejos de finestres emergents estan desactivats.", // Dialogs DlgBtnOK : "D'acord", DlgBtnCancel : "Cancel·la", DlgBtnClose : "Tanca", DlgBtnBrowseServer : "Veure servidor", DlgAdvancedTag : "Avançat", DlgOpOther : "Altres", DlgInfoTab : "Info", DlgAlertUrl : "Si us plau, afegiu la URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Direcció de l'idioma", DlgGenLangDirLtr : "D'esquerra a dreta (LTR)", DlgGenLangDirRtl : "De dreta a esquerra (RTL)", DlgGenLangCode : "Codi d'idioma", DlgGenAccessKey : "Clau d'accés", DlgGenName : "Nom", DlgGenTabIndex : "Index de Tab", DlgGenLongDescr : "Descripció llarga de la URL", DlgGenClass : "Classes del full d'estil", DlgGenTitle : "Títol consultiu", DlgGenContType : "Tipus de contingut consultiu", DlgGenLinkCharset : "Conjunt de caràcters font enllaçat", DlgGenStyle : "Estil", // Image Dialog DlgImgTitle : "Propietats de la imatge", DlgImgInfoTab : "Informació de la imatge", DlgImgBtnUpload : "Envia-la al servidor", DlgImgURL : "URL", DlgImgUpload : "Puja", DlgImgAlt : "Text alternatiu", DlgImgWidth : "Amplada", DlgImgHeight : "Alçada", DlgImgLockRatio : "Bloqueja les proporcions", DlgBtnResetSize : "Restaura la mida", DlgImgBorder : "Vora", DlgImgHSpace : "Espaiat horit.", DlgImgVSpace : "Espaiat vert.", DlgImgAlign : "Alineació", DlgImgAlignLeft : "Ajusta a l'esquerra", DlgImgAlignAbsBottom: "Abs Bottom", DlgImgAlignAbsMiddle: "Abs Middle", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Bottom", DlgImgAlignMiddle : "Middle", DlgImgAlignRight : "Ajusta a la dreta", DlgImgAlignTextTop : "Text Top", DlgImgAlignTop : "Top", DlgImgPreview : "Vista prèvia", DlgImgAlertUrl : "Si us plau, escriviu la URL de la imatge", DlgImgLinkTab : "Enllaç", // Flash Dialog DlgFlashTitle : "Propietats del Flash", DlgFlashChkPlay : "Reprodució automàtica", DlgFlashChkLoop : "Bucle", DlgFlashChkMenu : "Habilita menú Flash", DlgFlashScale : "Escala", DlgFlashScaleAll : "Mostra-ho tot", DlgFlashScaleNoBorder : "Sense vores", DlgFlashScaleFit : "Mida exacta", // Link Dialog DlgLnkWindowTitle : "Enllaç", DlgLnkInfoTab : "Informació de l'enllaç", DlgLnkTargetTab : "Destí", DlgLnkType : "Tipus d'enllaç", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Àncora en aquesta pàgina", DlgLnkTypeEMail : "Correu electrònic", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Selecciona una àncora", DlgLnkAnchorByName : "Per nom d'àncora", DlgLnkAnchorById : "Per Id d'element", DlgLnkNoAnchors : "(No hi ha àncores disponibles en aquest document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adreça de correu electrònic", DlgLnkEMailSubject : "Assumpte del missatge", DlgLnkEMailBody : "Cos del missatge", DlgLnkUpload : "Puja", DlgLnkBtnUpload : "Envia al servidor", DlgLnkTarget : "Destí", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nova finestra (_blank)", DlgLnkTargetParent : "Finestra pare (_parent)", DlgLnkTargetSelf : "Mateixa finestra (_self)", DlgLnkTargetTop : "Finestra Major (_top)", DlgLnkTargetFrameName : "Nom del marc de destí", DlgLnkPopWinName : "Nom finestra popup", DlgLnkPopWinFeat : "Característiques finestra popup", DlgLnkPopResize : "Redimensionable", DlgLnkPopLocation : "Barra d'adreça", DlgLnkPopMenu : "Barra de menú", DlgLnkPopScroll : "Barres d'scroll", DlgLnkPopStatus : "Barra d'estat", DlgLnkPopToolbar : "Barra d'eines", DlgLnkPopFullScrn : "Pantalla completa (IE)", DlgLnkPopDependent : "Depenent (Netscape)", DlgLnkPopWidth : "Amplada", DlgLnkPopHeight : "Alçada", DlgLnkPopLeft : "Posició esquerra", DlgLnkPopTop : "Posició dalt", DlnLnkMsgNoUrl : "Si us plau, escrigui l'enllaç URL", DlnLnkMsgNoEMail : "Si us plau, escrigui l'adreça correu electrònic", DlnLnkMsgNoAnchor : "Si us plau, escrigui l'àncora", DlnLnkMsgInvPopName : "El nom de la finestra emergent ha de començar amb una lletra i no pot tenir espais", // Color Dialog DlgColorTitle : "Selecciona el color", DlgColorBtnClear : "Neteja", DlgColorHighlight : "Realça", DlgColorSelected : "Selecciona", // Smiley Dialog DlgSmileyTitle : "Insereix una icona", // Special Character Dialog DlgSpecialCharTitle : "Selecciona el caràcter especial", // Table Dialog DlgTableTitle : "Propietats de la taula", DlgTableRows : "Files", DlgTableColumns : "Columnes", DlgTableBorder : "Mida vora", DlgTableAlign : "Alineació", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Esquerra", DlgTableAlignCenter : "Centre", DlgTableAlignRight : "Dreta", DlgTableWidth : "Amplada", DlgTableWidthPx : "píxels", DlgTableWidthPc : "percentatge", DlgTableHeight : "Alçada", DlgTableCellSpace : "Espaiat de cel·les", DlgTableCellPad : "Encoixinament de cel·les", DlgTableCaption : "Títol", DlgTableSummary : "Resum", // Table Cell Dialog DlgCellTitle : "Propietats de la cel·la", DlgCellWidth : "Amplada", DlgCellWidthPx : "píxels", DlgCellWidthPc : "percentatge", DlgCellHeight : "Alçada", DlgCellWordWrap : "Ajust de paraula", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Si", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Alineació horitzontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Esquerra", DlgCellHorAlignCenter : "Centre", DlgCellHorAlignRight: "Dreta", DlgCellVerAlign : "Alineació vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Color de fons", DlgCellBorderColor : "Color de la vora", DlgCellBtnSelect : "Seleccioneu...", // Find Dialog DlgFindTitle : "Cerca", DlgFindFindBtn : "Cerca", DlgFindNotFoundMsg : "El text especificat no s'ha trobat.", // Replace Dialog DlgReplaceTitle : "Reemplaça", DlgReplaceFindLbl : "Cerca:", DlgReplaceReplaceLbl : "Remplaça amb:", DlgReplaceCaseChk : "Distingeix majúscules/minúscules", DlgReplaceReplaceBtn : "Reemplaça", DlgReplaceReplAllBtn : "Reemplaça-ho tot", DlgReplaceWordChk : "Només paraules completes", // Paste Operations / Dialog PasteErrorCut : "La seguretat del vostre navegador no permet executar automàticament les operacions de retallar. Si us plau, utilitzeu el teclat (Ctrl+X).", PasteErrorCopy : "La seguretat del vostre navegador no permet executar automàticament les operacions de copiar. Si us plau, utilitzeu el teclat (Ctrl+C).", PasteAsText : "Enganxa com a text no formatat", PasteFromWord : "Enganxa com a Word", DlgPasteMsg2 : "Si us plau, enganxeu dins del següent camp utilitzant el teclat (Ctrl+V) i premeu OK.", DlgPasteSec : "A causa de la configuració de seguretat del vostre navegador, l'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.", DlgPasteIgnoreFont : "Ignora definicions de font", DlgPasteRemoveStyles : "Elimina definicions d'estil", DlgPasteCleanBox : "Neteja camp", // Color Picker ColorAutomatic : "Automàtic", ColorMoreColors : "Més colors...", // Document Properties DocProps : "Propietats del document", // Anchor Dialog DlgAnchorTitle : "Propietats de l'àncora", DlgAnchorName : "Nom de l'àncora", DlgAnchorErrorName : "Si us plau, escriviu el nom de l'ancora", // Speller Pages Dialog DlgSpellNotInDic : "No és al diccionari", DlgSpellChangeTo : "Canvia a", DlgSpellBtnIgnore : "Ignora", DlgSpellBtnIgnoreAll : "Ignora-les totes", DlgSpellBtnReplace : "Canvia", DlgSpellBtnReplaceAll : "Canvia-les totes", DlgSpellBtnUndo : "Desfés", DlgSpellNoSuggestions : "Cap sugerència", DlgSpellProgress : "Comprovació ortogràfica en progrés", DlgSpellNoMispell : "Comprovació ortogràfica completada", DlgSpellNoChanges : "Comprovació ortogràfica: cap paraulada canviada", DlgSpellOneChange : "Comprovació ortogràfica: una paraula canviada", DlgSpellManyChanges : "Comprovació ortogràfica %1 paraules canviades", IeSpellDownload : "Comprovació ortogràfica no instal·lada. Voleu descarregar-ho ara?", // Button Dialog DlgButtonText : "Text (Valor)", DlgButtonType : "Tipus", DlgButtonTypeBtn : "Botó", DlgButtonTypeSbm : "Transmet formulari", DlgButtonTypeRst : "Reinicia formulari", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nom", DlgCheckboxValue : "Valor", DlgCheckboxSelected : "Seleccionat", // Form Dialog DlgFormName : "Nom", DlgFormAction : "Acció", DlgFormMethod : "Mètode", // Select Field Dialog DlgSelectName : "Nom", DlgSelectValue : "Valor", DlgSelectSize : "Mida", DlgSelectLines : "Línies", DlgSelectChkMulti : "Permet múltiples seleccions", DlgSelectOpAvail : "Opcions disponibles", DlgSelectOpText : "Text", DlgSelectOpValue : "Valor", DlgSelectBtnAdd : "Afegeix", DlgSelectBtnModify : "Modifica", DlgSelectBtnUp : "Amunt", DlgSelectBtnDown : "Avall", DlgSelectBtnSetValue : "Selecciona per defecte", DlgSelectBtnDelete : "Elimina", // Textarea Dialog DlgTextareaName : "Nom", DlgTextareaCols : "Columnes", DlgTextareaRows : "Files", // Text Field Dialog DlgTextName : "Nom", DlgTextValue : "Valor", DlgTextCharWidth : "Amplada de caràcter", DlgTextMaxChars : "Màxim de caràcters", DlgTextType : "Tipus", DlgTextTypeText : "Text", DlgTextTypePass : "Contrasenya", // Hidden Field Dialog DlgHiddenName : "Nom", DlgHiddenValue : "Valor", // Bulleted List Dialog BulletedListProp : "Propietats de la llista de pics", NumberedListProp : "Propietats de llista numerada", DlgLstStart : "Inici", DlgLstType : "Tipus", DlgLstTypeCircle : "Cercle", DlgLstTypeDisc : "Disc", DlgLstTypeSquare : "Quadrat", DlgLstTypeNumbers : "Números (1, 2, 3)", DlgLstTypeLCase : "Lletres minúscules (a, b, c)", DlgLstTypeUCase : "Lletres majúscules (A, B, C)", DlgLstTypeSRoman : "Números romans minúscules (i, ii, iii)", DlgLstTypeLRoman : "Números romans majúscules (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "General", DlgDocBackTab : "Fons", DlgDocColorsTab : "Colors i marges", DlgDocMetaTab : "Dades Meta", DlgDocPageTitle : "Títol de la pàgina", DlgDocLangDir : "Direcció idioma", DlgDocLangDirLTR : "Esquerra a dreta (LTR)", DlgDocLangDirRTL : "Dreta a esquerra (RTL)", DlgDocLangCode : "Codi d'idioma", DlgDocCharSet : "Codificació de conjunt de caràcters", DlgDocCharSetCE : "Centreeuropeu", DlgDocCharSetCT : "Xinès tradicional (Big5)", DlgDocCharSetCR : "Ciríl·lic", DlgDocCharSetGR : "Grec", DlgDocCharSetJP : "Japonès", DlgDocCharSetKR : "Coreà", DlgDocCharSetTR : "Turc", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Europeu occidental", DlgDocCharSetOther : "Una altra codificació de caràcters", DlgDocDocType : "Capçalera de tipus de document", DlgDocDocTypeOther : "Un altra capçalera de tipus de document", DlgDocIncXHTML : "Incloure declaracions XHTML", DlgDocBgColor : "Color de fons", DlgDocBgImage : "URL de la imatge de fons", DlgDocBgNoScroll : "Fons fixe", DlgDocCText : "Text", DlgDocCLink : "Enllaç", DlgDocCVisited : "Enllaç visitat", DlgDocCActive : "Enllaç actiu", DlgDocMargins : "Marges de pàgina", DlgDocMaTop : "Cap", DlgDocMaLeft : "Esquerra", DlgDocMaRight : "Dreta", DlgDocMaBottom : "Peu", DlgDocMeIndex : "Mots clau per a indexació (separats per coma)", DlgDocMeDescr : "Descripció del document", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Copyright", DlgDocPreview : "Vista prèvia", // Templates Dialog Templates : "Plantilles", DlgTemplatesTitle : "Contingut plantilles", DlgTemplatesSelMsg : "Si us plau, seleccioneu la plantilla per obrir en l'editor
(el contingut actual no serà enregistrat):", DlgTemplatesLoading : "Carregant la llista de plantilles. Si us plau, espereu...", DlgTemplatesNoTpl : "(No hi ha plantilles definides)", DlgTemplatesReplace : "Reemplaça el contingut actual", // About Dialog DlgAboutAboutTab : "Quant a", DlgAboutBrowserInfoTab : "Informació del navegador", DlgAboutLicenseTab : "Llicència", DlgAboutVersion : "versió", DlgAboutInfo : "Per a més informació aneu a" };FCKeditor/editor/lang/lt.js0000644000102600010270000004455111234071623015045 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Lithuanian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Sutraukti mygtukų juostą", ToolbarExpand : "Išplėsti mygtukų juostą", // Toolbar Items and Context Menu Save : "Išsaugoti", NewPage : "Naujas puslapis", Preview : "Peržiūra", Cut : "Iškirpti", Copy : "Kopijuoti", Paste : "Įdėti", PasteText : "Įdėti kaip gryną tekstą", PasteWord : "Įdėti iš Word", Print : "Spausdinti", SelectAll : "Pažymėti viską", RemoveFormat : "Panaikinti formatą", InsertLinkLbl : "Nuoroda", InsertLink : "Įterpti/taisyti nuorodą", RemoveLink : "Panaikinti nuorodą", Anchor : "Įterpti/modifikuoti žymę", InsertImageLbl : "Vaizdas", InsertImage : "Įterpti/taisyti vaizdą", InsertFlashLbl : "Flash", InsertFlash : "Įterpti/taisyti Flash", InsertTableLbl : "Lentelė", InsertTable : "Įterpti/taisyti lentelę", InsertLineLbl : "Linija", InsertLine : "Įterpti horizontalią liniją", InsertSpecialCharLbl: "Spec. simbolis", InsertSpecialChar : "Įterpti specialų simbolį", InsertSmileyLbl : "Veideliai", InsertSmiley : "Įterpti veidelį", About : "Apie FCKeditor", Bold : "Pusjuodis", Italic : "Kursyvas", Underline : "Pabrauktas", StrikeThrough : "Perbrauktas", Subscript : "Apatinis indeksas", Superscript : "Viršutinis indeksas", LeftJustify : "Lygiuoti kairę", CenterJustify : "Centruoti", RightJustify : "Lygiuoti dešinę", BlockJustify : "Lygiuoti abi puses", DecreaseIndent : "Sumažinti įtrauką", IncreaseIndent : "Padidinti įtrauką", Undo : "Atšaukti", Redo : "Atstatyti", NumberedListLbl : "Numeruotas sąrašas", NumberedList : "Įterpti/Panaikinti numeruotą sąrašą", BulletedListLbl : "Suženklintas sąrašas", BulletedList : "Įterpti/Panaikinti suženklintą sąrašą", ShowTableBorders : "Rodyti lentelės rėmus", ShowDetails : "Rodyti detales", Style : "Stilius", FontFormat : "Šrifto formatas", Font : "Šriftas", FontSize : "Šrifto dydis", TextColor : "Teksto spalva", BGColor : "Fono spalva", Source : "Šaltinis", Find : "Rasti", Replace : "Pakeisti", SpellCheck : "Rašybos tikrinimas", UniversalKeyboard : "Universali klaviatūra", PageBreakLbl : "Puslapių skirtukas", PageBreak : "Įterpti puslapių skirtuką", Form : "Forma", Checkbox : "Žymimasis langelis", RadioButton : "Žymimoji akutė", TextField : "Teksto laukas", Textarea : "Teksto sritis", HiddenField : "Nerodomas laukas", Button : "Mygtukas", SelectionField : "Atrankos laukas", ImageButton : "Vaizdinis mygtukas", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Taisyti nuorodą", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Įterpti eilutę", DeleteRows : "Šalinti eilutes", InsertColumn : "Įterpti stulpelį", DeleteColumns : "Šalinti stulpelius", InsertCell : "Įterpti langelį", DeleteCells : "Šalinti langelius", MergeCells : "Sujungti langelius", SplitCell : "Skaidyti langelius", TableDelete : "Šalinti lentelę", 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", CheckboxProp : "Žymimojo langelio savybės", HiddenFieldProp : "Nerodomo lauko savybės", RadioButtonProp : "Žymimosios akutės savybės", ImageButtonProp : "Vaizdinio mygtuko savybės", TextFieldProp : "Teksto lauko savybės", SelectionFieldProp : "Atrankos lauko savybės", TextareaProp : "Teksto srities savybės", FormProp : "Formos savybės", FontFormats : "Normalus;Formuotas;Kreipinio;Antraštinis 1;Antraštinis 2;Antraštinis 3;Antraštinis 4;Antraštinis 5;Antraštinis 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Apdorojamas XHTML. Prašome palaukti...", Done : "Baigta", PasteWordConfirm : "Įdedamas tekstas yra panašus į kopiją iš Word. Ar Jūs norite prieš įdėjimą išvalyti jį?", NotCompatiblePaste : "Ši komanda yra prieinama tik per Internet Explorer 5.5 ar aukštesnę versiją. Ar Jūs norite įterpti be valymo?", UnknownToolbarItem : "Nežinomas mygtukų juosta elementas \"%1\"", UnknownCommand : "Nežinomas komandos vardas \"%1\"", NotImplemented : "Komanda nėra įgyvendinta", UnknownToolbarSet : "Mygtukų juostos rinkinys \"%1\" neegzistuoja", NoActiveX : "Jūsų naršyklės saugumo nuostatos gali riboti kai kurias redaktoriaus savybes. Jūs turite aktyvuoti opciją \"Run ActiveX controls and plug-ins\". Kitu atveju Jums bus pranešama apie klaidas ir trūkstamas savybes.", BrowseServerBlocked : "Neįmanoma atidaryti naujo naršyklės lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", DialogBlocked : "Neįmanoma atidaryti dialogo lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Nutraukti", DlgBtnClose : "Uždaryti", DlgBtnBrowseServer : "Naršyti po serverį", DlgAdvancedTag : "Papildomas", DlgOpOther : "", DlgInfoTab : "Informacija", DlgAlertUrl : "Prašome įrašyti URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Teksto kryptis", DlgGenLangDirLtr : "Iš kairės į dešinę (LTR)", DlgGenLangDirRtl : "Iš dešinės į kairę (RTL)", DlgGenLangCode : "Kalbos kodas", DlgGenAccessKey : "Prieigos raktas", DlgGenName : "Vardas", DlgGenTabIndex : "Tabuliavimo indeksas", DlgGenLongDescr : "Ilgas aprašymas URL", DlgGenClass : "Stilių lentelės klasės", DlgGenTitle : "Konsultacinė antraštė", DlgGenContType : "Konsultacinio turinio tipas", DlgGenLinkCharset : "Susietų išteklių simbolių lentelė", DlgGenStyle : "Stilius", // Image Dialog DlgImgTitle : "Vaizdo savybės", DlgImgInfoTab : "Vaizdo informacija", DlgImgBtnUpload : "Siųsti į serverį", DlgImgURL : "URL", DlgImgUpload : "Nusiųsti", DlgImgAlt : "Alternatyvus Tekstas", DlgImgWidth : "Plotis", DlgImgHeight : "Aukštis", DlgImgLockRatio : "Išlaikyti proporciją", DlgBtnResetSize : "Atstatyti dydį", DlgImgBorder : "Rėmelis", DlgImgHSpace : "Hor.Erdvė", DlgImgVSpace : "Vert.Erdvė", DlgImgAlign : "Lygiuoti", DlgImgAlignLeft : "Kairę", DlgImgAlignAbsBottom: "Absoliučią apačią", DlgImgAlignAbsMiddle: "Absoliutų vidurį", DlgImgAlignBaseline : "Apatinę liniją", DlgImgAlignBottom : "Apačią", DlgImgAlignMiddle : "Vidurį", DlgImgAlignRight : "Dešinę", DlgImgAlignTextTop : "Teksto viršūnę", DlgImgAlignTop : "Viršūnę", DlgImgPreview : "Peržiūra", DlgImgAlertUrl : "Prašome įvesti vaizdo URL", 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", DlgLnkTargetTab : "Paskirtis", DlgLnkType : "Nuorodos tipas", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Žymė šiame puslapyje", DlgLnkTypeEMail : "El.paštas", DlgLnkProto : "Protokolas", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Pasirinkite žymę", DlgLnkAnchorByName : "Pagal žymės vardą", DlgLnkAnchorById : "Pagal žymės Id", DlgLnkNoAnchors : "<Šiame dokumente žymių nėra>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "El.pašto adresas", DlgLnkEMailSubject : "Žinutės tema", DlgLnkEMailBody : "Žinutės turinys", DlgLnkUpload : "Siųsti", DlgLnkBtnUpload : "Siųsti į serverį", DlgLnkTarget : "Paskirties vieta", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Naujas langas (_blank)", DlgLnkTargetParent : "Pirminis langas (_parent)", DlgLnkTargetSelf : "Tas pats langas (_self)", DlgLnkTargetTop : "Svarbiausias langas (_top)", DlgLnkTargetFrameName : "Paskirties kadro vardas", DlgLnkPopWinName : "Paskirties lango vardas", DlgLnkPopWinFeat : "Išskleidžiamo lango savybės", DlgLnkPopResize : "Keičiamas dydis", DlgLnkPopLocation : "Adreso juosta", DlgLnkPopMenu : "Meniu juosta", DlgLnkPopScroll : "Slinkties juostos", DlgLnkPopStatus : "Būsenos juosta", DlgLnkPopToolbar : "Mygtukų juosta", DlgLnkPopFullScrn : "Visas ekranas (IE)", DlgLnkPopDependent : "Priklausomas (Netscape)", DlgLnkPopWidth : "Plotis", DlgLnkPopHeight : "Aukštis", DlgLnkPopLeft : "Kairė pozicija", DlgLnkPopTop : "Viršutinė pozicija", DlnLnkMsgNoUrl : "Prašome įvesti nuorodos URL", DlnLnkMsgNoEMail : "Prašome įvesti el.pašto adresą", DlnLnkMsgNoAnchor : "Prašome pasirinkti žymę", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Pasirinkite spalvą", DlgColorBtnClear : "Trinti", DlgColorHighlight : "Paryškinta", DlgColorSelected : "Pažymėta", // Smiley Dialog DlgSmileyTitle : "Įterpti veidelį", // Special Character Dialog DlgSpecialCharTitle : "Pasirinkite specialų simbolį", // Table Dialog DlgTableTitle : "Lentelės savybės", DlgTableRows : "Eilutės", DlgTableColumns : "Stulpeliai", DlgTableBorder : "Rėmelio dydis", DlgTableAlign : "Lygiuoti", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Kairę", DlgTableAlignCenter : "Centrą", DlgTableAlignRight : "Dešinę", DlgTableWidth : "Plotis", DlgTableWidthPx : "taškais", DlgTableWidthPc : "procentais", DlgTableHeight : "Aukštis", DlgTableCellSpace : "Tarpas tarp langelių", DlgTableCellPad : "Trapas nuo langelio rėmo iki teksto", DlgTableCaption : "Antraštė", DlgTableSummary : "Santrauka", // Table Cell Dialog DlgCellTitle : "Langelio savybės", DlgCellWidth : "Plotis", DlgCellWidthPx : "taškais", DlgCellWidthPc : "procentais", DlgCellHeight : "Aukštis", DlgCellWordWrap : "Teksto laužymas", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Taip", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Horizontaliai lygiuoti", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Kairę", DlgCellHorAlignCenter : "Centrą", DlgCellHorAlignRight: "Dešinę", DlgCellVerAlign : "Vertikaliai lygiuoti", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Viršų", DlgCellVerAlignMiddle : "Vidurį", DlgCellVerAlignBottom : "Apačią", DlgCellVerAlignBaseline : "Apatinę liniją", DlgCellRowSpan : "Eilučių apjungimas", DlgCellCollSpan : "Stulpelių apjungimas", DlgCellBackColor : "Fono spalva", DlgCellBorderColor : "Rėmelio spalva", DlgCellBtnSelect : "Pažymėti...", // Find Dialog DlgFindTitle : "Paieška", DlgFindFindBtn : "Surasti", DlgFindNotFoundMsg : "Nurodytas tekstas nerastas.", // Replace Dialog DlgReplaceTitle : "Pakeisti", DlgReplaceFindLbl : "Surasti tekstą:", DlgReplaceReplaceLbl : "Pakeisti tekstu:", DlgReplaceCaseChk : "Skirti didžiąsias ir mažąsias raides", DlgReplaceReplaceBtn : "Pakeisti", DlgReplaceReplAllBtn : "Pakeisti viską", DlgReplaceWordChk : "Atitikti pilną žodį", // Paste Operations / Dialog PasteErrorCut : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti iškirpimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+X).", PasteErrorCopy : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti kopijavimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+C).", PasteAsText : "Įdėti kaip gryną tekstą", PasteFromWord : "Įdėti iš Word", DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (Ctrl+V) ir spūstelkite mygtuką OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoruoti šriftų nustatymus", DlgPasteRemoveStyles : "Pašalinti stilių nustatymus", DlgPasteCleanBox : "Trinti įvedimo lauką", // Color Picker ColorAutomatic : "Automatinis", ColorMoreColors : "Daugiau spalvų...", // Document Properties DocProps : "Dokumento savybės", // Anchor Dialog DlgAnchorTitle : "Žymės savybės", DlgAnchorName : "Žymės vardas", DlgAnchorErrorName : "Prašome įvesti žymės vardą", // Speller Pages Dialog DlgSpellNotInDic : "Žodyne nerastas", DlgSpellChangeTo : "Pakeisti į", DlgSpellBtnIgnore : "Ignoruoti", DlgSpellBtnIgnoreAll : "Ignoruoti visus", DlgSpellBtnReplace : "Pakeisti", DlgSpellBtnReplaceAll : "Pakeisti visus", DlgSpellBtnUndo : "Atšaukti", DlgSpellNoSuggestions : "- Nėra pasiūlymų -", DlgSpellProgress : "Vyksta rašybos tikrinimas...", DlgSpellNoMispell : "Rašybos tikrinimas baigtas: Nerasta rašybos klaidų", DlgSpellNoChanges : "Rašybos tikrinimas baigtas: Nėra pakeistų žodžių", DlgSpellOneChange : "Rašybos tikrinimas baigtas: Vienas žodis pakeistas", DlgSpellManyChanges : "Rašybos tikrinimas baigtas: Pakeista %1 žodžių", IeSpellDownload : "Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį dabar atsisiųsti?", // Button Dialog DlgButtonText : "Tekstas (Reikšmė)", DlgButtonType : "Tipas", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Vardas", DlgCheckboxValue : "Reikšmė", DlgCheckboxSelected : "Pažymėtas", // Form Dialog DlgFormName : "Vardas", DlgFormAction : "Veiksmas", DlgFormMethod : "Metodas", // Select Field Dialog DlgSelectName : "Vardas", DlgSelectValue : "Reikšmė", DlgSelectSize : "Dydis", DlgSelectLines : "eilučių", DlgSelectChkMulti : "Leisti daugeriopą atranką", DlgSelectOpAvail : "Galimos parinktys", DlgSelectOpText : "Tekstas", DlgSelectOpValue : "Reikšmė", DlgSelectBtnAdd : "Įtraukti", DlgSelectBtnModify : "Modifikuoti", DlgSelectBtnUp : "Aukštyn", DlgSelectBtnDown : "Žemyn", DlgSelectBtnSetValue : "Laikyti pažymėta reikšme", DlgSelectBtnDelete : "Trinti", // Textarea Dialog DlgTextareaName : "Vardas", DlgTextareaCols : "Ilgis", DlgTextareaRows : "Plotis", // Text Field Dialog DlgTextName : "Vardas", DlgTextValue : "Reikšmė", DlgTextCharWidth : "Ilgis simboliais", DlgTextMaxChars : "Maksimalus simbolių skaičius", DlgTextType : "Tipas", DlgTextTypeText : "Tekstas", DlgTextTypePass : "Slaptažodis", // Hidden Field Dialog DlgHiddenName : "Vardas", DlgHiddenValue : "Reikšmė", // Bulleted List Dialog BulletedListProp : "Suženklinto sąrašo savybės", NumberedListProp : "Numeruoto sąrašo savybės", DlgLstStart : "Start", //MISSING DlgLstType : "Tipas", DlgLstTypeCircle : "Apskritimas", DlgLstTypeDisc : "Diskas", DlgLstTypeSquare : "Kvadratas", DlgLstTypeNumbers : "Skaičiai (1, 2, 3)", DlgLstTypeLCase : "Mažosios raidės (a, b, c)", DlgLstTypeUCase : "Didžiosios raidės (A, B, C)", DlgLstTypeSRoman : "Romėnų mažieji skaičiai (i, ii, iii)", DlgLstTypeLRoman : "Romėnų didieji skaičiai (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Bendros savybės", DlgDocBackTab : "Fonas", DlgDocColorsTab : "Spalvos ir kraštinės", DlgDocMetaTab : "Meta duomenys", DlgDocPageTitle : "Puslapio antraštė", DlgDocLangDir : "Kalbos kryptis", DlgDocLangDirLTR : "Iš kairės į dešinę (LTR)", DlgDocLangDirRTL : "Iš dešinės į kairę (RTL)", DlgDocLangCode : "Kalbos kodas", DlgDocCharSet : "Simbolių kodavimo lentelė", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Kita simbolių kodavimo lentelė", DlgDocDocType : "Dokumento tipo antraštė", DlgDocDocTypeOther : "Kita dokumento tipo antraštė", DlgDocIncXHTML : "Įtraukti XHTML deklaracijas", DlgDocBgColor : "Fono spalva", DlgDocBgImage : "Fono paveikslėlio nuoroda (URL)", DlgDocBgNoScroll : "Neslenkantis fonas", DlgDocCText : "Tekstas", DlgDocCLink : "Nuoroda", DlgDocCVisited : "Aplankyta nuoroda", DlgDocCActive : "Aktyvi nuoroda", DlgDocMargins : "Puslapio kraštinės", DlgDocMaTop : "Viršuje", DlgDocMaLeft : "Kairėje", DlgDocMaRight : "Dešinėje", DlgDocMaBottom : "Apačioje", DlgDocMeIndex : "Dokumento indeksavimo raktiniai žodžiai (atskirti kableliais)", DlgDocMeDescr : "Dokumento apibūdinimas", DlgDocMeAuthor : "Autorius", DlgDocMeCopy : "Autorinės teisės", DlgDocPreview : "Peržiūra", // Templates Dialog 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)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Apie", DlgAboutBrowserInfoTab : "Naršyklės informacija", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "versija", DlgAboutInfo : "Papildomą informaciją galima gauti" };FCKeditor/editor/lang/hu.js0000644000102600010270000004435111234071615015041 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Hungarian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Eszköztár elrejtése", ToolbarExpand : "Eszköztár megjelenítése", // Toolbar Items and Context Menu Save : "Mentés", NewPage : "Új oldal", Preview : "Előnézet", Cut : "Kivágás", Copy : "Másolás", Paste : "Beillesztés", PasteText : "Beillesztés formázás nélkül", PasteWord : "Beillesztés Word-ből", Print : "Nyomtatás", SelectAll : "Mindent kijelöl", RemoveFormat : "Formázás eltávolítása", InsertLinkLbl : "Hivatkozás", InsertLink : "Hivatkozás beillesztése/módosítása", RemoveLink : "Hivatkozás törlése", Anchor : "Horgony beillesztése/szerkesztése", InsertImageLbl : "Kép", InsertImage : "Kép beillesztése/módosítása", InsertFlashLbl : "Flash", InsertFlash : "Flash beillesztése, módosítása", InsertTableLbl : "Táblázat", InsertTable : "Táblázat beillesztése/módosítása", InsertLineLbl : "Vonal", InsertLine : "Elválasztóvonal beillesztése", InsertSpecialCharLbl: "Speciális karakter", InsertSpecialChar : "Speciális karakter beillesztése", InsertSmileyLbl : "Hangulatjelek", InsertSmiley : "Hangulatjelek beillesztése", About : "FCKeditor névjegy", Bold : "Félkövér", Italic : "Dőlt", Underline : "Aláhúzott", StrikeThrough : "Áthúzott", Subscript : "Alsó index", Superscript : "Felső index", LeftJustify : "Balra", CenterJustify : "Középre", RightJustify : "Jobbra", BlockJustify : "Sorkizárt", DecreaseIndent : "Behúzás csökkentése", IncreaseIndent : "Behúzás növelése", Undo : "Visszavonás", Redo : "Ismétlés", NumberedListLbl : "Számozás", NumberedList : "Számozás beillesztése/törlése", BulletedListLbl : "Felsorolás", BulletedList : "Felsorolás beillesztése/törlése", ShowTableBorders : "Táblázat szegély mutatása", ShowDetails : "Részletek mutatása", Style : "Stílus", FontFormat : "Formátum", Font : "Betűtípus", FontSize : "Méret", TextColor : "Betűszín", BGColor : "Háttérszín", Source : "Forráskód", Find : "Keresés", Replace : "Csere", SpellCheck : "Helyesírás-ellenőrzés", UniversalKeyboard : "Univerzális billentyűzet", PageBreakLbl : "Oldaltörés", PageBreak : "Oldaltörés beillesztése", Form : "Űrlap", Checkbox : "Jelölőnégyzet", RadioButton : "Választógomb", TextField : "Szövegmező", Textarea : "Szövegterület", HiddenField : "Rejtettmező", Button : "Gomb", SelectionField : "Legördülő lista", ImageButton : "Képgomb", FitWindow : "Maximalizálás", // Context Menu EditLink : "Hivatkozás módosítása", CellCM : "Cella", RowCM : "Sor", ColumnCM : "Oszlop", InsertRow : "Sor beszúrása", DeleteRows : "Sorok törlése", InsertColumn : "Oszlop beszúrása", DeleteColumns : "Oszlopok törlése", InsertCell : "Cella beszúrása", DeleteCells : "Cellák törlése", MergeCells : "Cellák egyesítése", SplitCell : "Cella szétválasztása", TableDelete : "Táblázat törlése", CellProperties : "Cella tulajdonságai", TableProperties : "Táblázat tulajdonságai", ImageProperties : "Kép tulajdonságai", FlashProperties : "Flash tulajdonságai", AnchorProp : "Horgony tulajdonságai", ButtonProp : "Gomb tulajdonságai", CheckboxProp : "Jelölőnégyzet tulajdonságai", HiddenFieldProp : "Rejtett mező tulajdonságai", RadioButtonProp : "Választógomb tulajdonságai", ImageButtonProp : "Képgomb tulajdonságai", TextFieldProp : "Szövegmező tulajdonságai", SelectionFieldProp : "Legördülő lista tulajdonságai", TextareaProp : "Szövegterület tulajdonságai", FormProp : "Űrlap tulajdonságai", FontFormats : "Normál;Formázott;Címsor;Fejléc 1;Fejléc 2;Fejléc 3;Fejléc 4;Fejléc 5;Fejléc 6;Bekezdés (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML feldolgozása. Kérem várjon...", Done : "Kész", PasteWordConfirm : "A beilleszteni kívánt szöveg Word-ből van másolva. El kívánja távolítani a formázást a beillesztés előtt?", NotCompatiblePaste : "Ez a parancs csak Internet Explorer 5.5 verziótól használható. Megpróbálja beilleszteni a szöveget az eredeti formázással?", UnknownToolbarItem : "Ismeretlen eszköztár elem \"%1\"", UnknownCommand : "Ismeretlen parancs \"%1\"", NotImplemented : "A parancs nem hajtható végre", UnknownToolbarSet : "Az eszközkészlet \"%1\" nem létezik", NoActiveX : "A böngésző biztonsági beállításai korlátozzák a szerkesztő lehetőségeit. Engedélyezni kell ezt az opciót: \"Run ActiveX controls and plug-ins\". Ettől függetlenül előfordulhatnak hibaüzenetek ill. bizonyos funkciók hiányozhatnak.", BrowseServerBlocked : "Nem lehet megnyitni a fájlböngészőt. Bizonyosodjon meg róla, hogy a felbukkanó ablakok engedélyezve vannak.", DialogBlocked : "Nem lehet megnyitni a párbeszédablakot. Bizonyosodjon meg róla, hogy a felbukkanó ablakok engedélyezve vannak.", // Dialogs DlgBtnOK : "Rendben", DlgBtnCancel : "Mégsem", DlgBtnClose : "Bezárás", DlgBtnBrowseServer : "Böngészés a szerveren", DlgAdvancedTag : "További opciók", DlgOpOther : "Egyéb", DlgInfoTab : "Alaptulajdonságok", DlgAlertUrl : "Illessze be a webcímet", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Azonosító", DlgGenLangDir : "Írás iránya", DlgGenLangDirLtr : "Balról jobbra", DlgGenLangDirRtl : "Jobbról balra", DlgGenLangCode : "Nyelv kódja", DlgGenAccessKey : "Billentyűkombináció", DlgGenName : "Név", DlgGenTabIndex : "Tabulátor index", DlgGenLongDescr : "Részletes leírás webcíme", DlgGenClass : "Stíluskészlet", DlgGenTitle : "Súgócimke", DlgGenContType : "Súgó tartalomtípusa", DlgGenLinkCharset : "Hivatkozott tartalom kódlapja", DlgGenStyle : "Stílus", // Image Dialog DlgImgTitle : "Kép tulajdonságai", DlgImgInfoTab : "Alaptulajdonságok", DlgImgBtnUpload : "Küldés a szerverre", DlgImgURL : "Hivatkozás", DlgImgUpload : "Feltöltés", DlgImgAlt : "Buborék szöveg", DlgImgWidth : "Szélesség", DlgImgHeight : "Magasság", DlgImgLockRatio : "Arány megtartása", DlgBtnResetSize : "Eredeti méret", DlgImgBorder : "Keret", DlgImgHSpace : "Vízsz. táv", DlgImgVSpace : "Függ. táv", DlgImgAlign : "Igazítás", DlgImgAlignLeft : "Bal", DlgImgAlignAbsBottom: "Legaljára", DlgImgAlignAbsMiddle: "Közepére", DlgImgAlignBaseline : "Alapvonalhoz", DlgImgAlignBottom : "Aljára", DlgImgAlignMiddle : "Középre", DlgImgAlignRight : "Jobbra", DlgImgAlignTextTop : "Szöveg tetejére", DlgImgAlignTop : "Tetejére", DlgImgPreview : "Előnézet", DlgImgAlertUrl : "Töltse ki a kép webcímét", DlgImgLinkTab : "Hivatkozás", // Flash Dialog DlgFlashTitle : "Flash tulajdonságai", DlgFlashChkPlay : "Automata lejátszás", DlgFlashChkLoop : "Folyamatosan", DlgFlashChkMenu : "Flash menü engedélyezése", DlgFlashScale : "Méretezés", DlgFlashScaleAll : "Mindent mutat", DlgFlashScaleNoBorder : "Keret nélkül", DlgFlashScaleFit : "Teljes kitöltés", // Link Dialog DlgLnkWindowTitle : "Hivatkozás tulajdonságai", DlgLnkInfoTab : "Alaptulajdonságok", DlgLnkTargetTab : "Megjelenítés", DlgLnkType : "Hivatkozás típusa", DlgLnkTypeURL : "Webcím", DlgLnkTypeAnchor : "Horgony az oldalon", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "Webcím", DlgLnkAnchorSel : "Horgony választása", DlgLnkAnchorByName : "Horgony név szerint", DlgLnkAnchorById : "Azonosító szerint", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail cím", DlgLnkEMailSubject : "Üzenet tárgya", DlgLnkEMailBody : "Üzenet", DlgLnkUpload : "Feltöltés", DlgLnkBtnUpload : "Küldés a szerverre", DlgLnkTarget : "Tartalom megjelenítése", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Új ablakban (_blank)", DlgLnkTargetParent : "Szülő ablakban (_parent)", DlgLnkTargetSelf : "Azonos ablakban (_self)", DlgLnkTargetTop : "Legfelső ablakban (_top)", DlgLnkTargetFrameName : "Keret neve", DlgLnkPopWinName : "Felugró ablak neve", DlgLnkPopWinFeat : "Felugró ablak jellemzői", DlgLnkPopResize : "Méretezhető", DlgLnkPopLocation : "Címsor", DlgLnkPopMenu : "Menü sor", DlgLnkPopScroll : "Gördítősáv", DlgLnkPopStatus : "Állapotsor", DlgLnkPopToolbar : "Eszköztár", DlgLnkPopFullScrn : "Teljes képernyő (csak IE)", DlgLnkPopDependent : "Szülőhöz kapcsolt (csak Netscape)", DlgLnkPopWidth : "Szélesség", DlgLnkPopHeight : "Magasság", DlgLnkPopLeft : "Bal pozíció", DlgLnkPopTop : "Felső pozíció", DlnLnkMsgNoUrl : "Adja meg a hivatkozás webcímét", DlnLnkMsgNoEMail : "Adja meg az E-Mail címet", DlnLnkMsgNoAnchor : "Válasszon egy horgonyt", DlnLnkMsgInvPopName : "A felbukkanó ablak neve alfanumerikus karakterrel kezdôdjön, valamint ne tartalmazzon szóközt", // Color Dialog DlgColorTitle : "Színválasztás", DlgColorBtnClear : "Törlés", DlgColorHighlight : "Előnézet", DlgColorSelected : "Kiválasztott", // Smiley Dialog DlgSmileyTitle : "Hangulatjel beszúrása", // Special Character Dialog DlgSpecialCharTitle : "Speciális karakter választása", // Table Dialog DlgTableTitle : "Táblázat tulajdonságai", DlgTableRows : "Sorok", DlgTableColumns : "Oszlopok", DlgTableBorder : "Szegélyméret", DlgTableAlign : "Igazítás", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Balra", DlgTableAlignCenter : "Középre", DlgTableAlignRight : "Jobbra", DlgTableWidth : "Szélesség", DlgTableWidthPx : "képpont", DlgTableWidthPc : "százalék", DlgTableHeight : "Magasság", DlgTableCellSpace : "Cella térköz", DlgTableCellPad : "Cella belső margó", DlgTableCaption : "Felirat", DlgTableSummary : "Leírás", // Table Cell Dialog DlgCellTitle : "Cella tulajdonságai", DlgCellWidth : "Szélesség", DlgCellWidthPx : "képpont", DlgCellWidthPc : "százalék", DlgCellHeight : "Magasság", DlgCellWordWrap : "Sortörés", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Igen", DlgCellWordWrapNo : "Nem", DlgCellHorAlign : "Vízsz. igazítás", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Balra", DlgCellHorAlignCenter : "Középre", DlgCellHorAlignRight: "Jobbra", DlgCellVerAlign : "Függ. igazítás", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Tetejére", DlgCellVerAlignMiddle : "Középre", DlgCellVerAlignBottom : "Aljára", DlgCellVerAlignBaseline : "Egyvonalba", DlgCellRowSpan : "Sorok egyesítése", DlgCellCollSpan : "Oszlopok egyesítése", DlgCellBackColor : "Háttérszín", DlgCellBorderColor : "Szegélyszín", DlgCellBtnSelect : "Kiválasztás...", // Find Dialog DlgFindTitle : "Keresés", DlgFindFindBtn : "Keresés", DlgFindNotFoundMsg : "A keresett szöveg nem található.", // Replace Dialog DlgReplaceTitle : "Csere", DlgReplaceFindLbl : "Keresett szöveg:", DlgReplaceReplaceLbl : "Csere erre:", DlgReplaceCaseChk : "kis- és nagybetű megkülönböztetése", DlgReplaceReplaceBtn : "Csere", DlgReplaceReplAllBtn : "Az összes cseréje", DlgReplaceWordChk : "csak ha ez a teljes szó", // Paste Operations / Dialog PasteErrorCut : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a kivágás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).", PasteErrorCopy : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a másolás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).", PasteAsText : "Beillesztés formázatlan szövegként", PasteFromWord : "Beillesztés Word-ből", DlgPasteMsg2 : "Másolja be az alábbi mezőbe a Ctrl+V billentyűk lenyomásával, majd nyomjon Rendben-t.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Betű formázások megszüntetése", DlgPasteRemoveStyles : "Stílusok eltávolítása", DlgPasteCleanBox : "Törlés", // Color Picker ColorAutomatic : "Automatikus", ColorMoreColors : "További színek...", // Document Properties DocProps : "Dokumentum tulajdonságai", // Anchor Dialog DlgAnchorTitle : "Horgony tulajdonságai", DlgAnchorName : "Horgony neve", DlgAnchorErrorName : "Kérem adja meg a horgony nevét", // Speller Pages Dialog DlgSpellNotInDic : "Nincs a szótárban", DlgSpellChangeTo : "Módosítás", DlgSpellBtnIgnore : "Kihagyja", DlgSpellBtnIgnoreAll : "Mindet kihagyja", DlgSpellBtnReplace : "Csere", DlgSpellBtnReplaceAll : "Összes cseréje", DlgSpellBtnUndo : "Visszavonás", DlgSpellNoSuggestions : "Nincs javaslat", DlgSpellProgress : "Helyesírás-ellenőrzés folyamatban...", DlgSpellNoMispell : "Helyesírás-ellenőrzés kész: Nem találtam hibát", DlgSpellNoChanges : "Helyesírás-ellenőrzés kész: Nincs változtatott szó", DlgSpellOneChange : "Helyesírás-ellenőrzés kész: Egy szó cserélve", DlgSpellManyChanges : "Helyesírás-ellenőrzés kész: %1 szó cserélve", IeSpellDownload : "A helyesírás-ellenőrző nincs telepítve. Szeretné letölteni most?", // Button Dialog DlgButtonText : "Szöveg (Érték)", DlgButtonType : "Típus", DlgButtonTypeBtn : "Gomb", DlgButtonTypeSbm : "Küldés", DlgButtonTypeRst : "Alaphelyzet", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Név", DlgCheckboxValue : "Érték", DlgCheckboxSelected : "Kiválasztott", // Form Dialog DlgFormName : "Név", DlgFormAction : "Adatfeldolgozást végző hivatkozás", DlgFormMethod : "Adatküldés módja", // Select Field Dialog DlgSelectName : "Név", DlgSelectValue : "Érték", DlgSelectSize : "Méret", DlgSelectLines : "sor", DlgSelectChkMulti : "több sor is kiválasztható", DlgSelectOpAvail : "Elérhető opciók", DlgSelectOpText : "Szöveg", DlgSelectOpValue : "Érték", DlgSelectBtnAdd : "Hozzáad", DlgSelectBtnModify : "Módosít", DlgSelectBtnUp : "Fel", DlgSelectBtnDown : "Le", DlgSelectBtnSetValue : "Legyen az alapértelmezett érték", DlgSelectBtnDelete : "Töröl", // Textarea Dialog DlgTextareaName : "Név", DlgTextareaCols : "Karakterek száma egy sorban", DlgTextareaRows : "Sorok száma", // Text Field Dialog DlgTextName : "Név", DlgTextValue : "Érték", DlgTextCharWidth : "Megjelenített karakterek száma", DlgTextMaxChars : "Maximális karakterszám", DlgTextType : "Típus", DlgTextTypeText : "Szöveg", DlgTextTypePass : "Jelszó", // Hidden Field Dialog DlgHiddenName : "Név", DlgHiddenValue : "Érték", // Bulleted List Dialog BulletedListProp : "Felsorolás tulajdonságai", NumberedListProp : "Számozás tulajdonságai", DlgLstStart : "Start", DlgLstType : "Formátum", DlgLstTypeCircle : "Kör", DlgLstTypeDisc : "Lemez", DlgLstTypeSquare : "Négyzet", DlgLstTypeNumbers : "Számok (1, 2, 3)", DlgLstTypeLCase : "Kisbetűk (a, b, c)", DlgLstTypeUCase : "Nagybetűk (A, B, C)", DlgLstTypeSRoman : "Kis római számok (i, ii, iii)", DlgLstTypeLRoman : "Nagy római számok (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Általános", DlgDocBackTab : "Háttér", DlgDocColorsTab : "Színek és margók", DlgDocMetaTab : "Meta adatok", DlgDocPageTitle : "Oldalcím", DlgDocLangDir : "Írás iránya", DlgDocLangDirLTR : "Balról jobbra", DlgDocLangDirRTL : "Jobbról balra", DlgDocLangCode : "Nyelv kód", DlgDocCharSet : "Karakterkódolás", DlgDocCharSetCE : "Közép-Európai", DlgDocCharSetCT : "Kínai Tradicionális (Big5)", DlgDocCharSetCR : "Cyrill", DlgDocCharSetGR : "Görög", DlgDocCharSetJP : "Japán", DlgDocCharSetKR : "Koreai", DlgDocCharSetTR : "Török", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Nyugat-Európai", DlgDocCharSetOther : "Más karakterkódolás", DlgDocDocType : "Dokumentum típus fejléc", DlgDocDocTypeOther : "Más dokumentum típus fejléc", DlgDocIncXHTML : "XHTML deklarációk beillesztése", DlgDocBgColor : "Háttérszín", DlgDocBgImage : "Háttérkép cím", DlgDocBgNoScroll : "Nem gördíthető háttér", DlgDocCText : "Szöveg", DlgDocCLink : "Cím", DlgDocCVisited : "Látogatott cím", DlgDocCActive : "Aktív cím", DlgDocMargins : "Oldal margók", DlgDocMaTop : "Felső", DlgDocMaLeft : "Bal", DlgDocMaRight : "Jobb", DlgDocMaBottom : "Alsó", DlgDocMeIndex : "Dokumentum keresőszavak (vesszővel elválasztva)", DlgDocMeDescr : "Dokumentum leírás", DlgDocMeAuthor : "Szerző", DlgDocMeCopy : "Szerzői jog", DlgDocPreview : "Előnézet", // Templates Dialog Templates : "Sablonok", DlgTemplatesTitle : "Elérhető sablonok", DlgTemplatesSelMsg : "Válassza ki melyik sablon nyíljon meg a szerkesztőben
(a jelenlegi tartalom elveszik):", DlgTemplatesLoading : "Sablon lista betöltése. Kis türelmet...", DlgTemplatesNoTpl : "(Nincs sablon megadva)", DlgTemplatesReplace : "Kicseréli a jelenlegi tartalmat", // About Dialog DlgAboutAboutTab : "Névjegy", DlgAboutBrowserInfoTab : "Böngésző információ", DlgAboutLicenseTab : "Licensz", DlgAboutVersion : "verzió", DlgAboutInfo : "További információkért látogasson el ide:" };FCKeditor/editor/lang/sv.js0000644000102600010270000004147611234071645015065 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Swedish language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Dölj verktygsfält", ToolbarExpand : "Visa verktygsfält", // Toolbar Items and Context Menu Save : "Spara", NewPage : "Ny sida", Preview : "Förhandsgranska", Cut : "Klipp ut", Copy : "Kopiera", Paste : "Klistra in", PasteText : "Klistra in som text", PasteWord : "Klistra in från Word", Print : "Skriv ut", SelectAll : "Markera allt", RemoveFormat : "Radera formatering", InsertLinkLbl : "Länk", InsertLink : "Infoga/Redigera länk", RemoveLink : "Radera länk", Anchor : "Infoga/Redigera ankarlänk", InsertImageLbl : "Bild", InsertImage : "Infoga/Redigera bild", InsertFlashLbl : "Flash", InsertFlash : "Infoga/Redigera Flash", InsertTableLbl : "Tabell", InsertTable : "Infoga/Redigera tabell", InsertLineLbl : "Linje", InsertLine : "Infoga horisontal linje", InsertSpecialCharLbl: "Utökade tecken", InsertSpecialChar : "Klistra in utökat tecken", InsertSmileyLbl : "Smiley", InsertSmiley : "Infoga Smiley", About : "Om FCKeditor", Bold : "Fet", Italic : "Kursiv", Underline : "Understruken", StrikeThrough : "Genomstruken", Subscript : "Nedsänkta tecken", Superscript : "Upphöjda tecken", LeftJustify : "Vänsterjustera", CenterJustify : "Centrera", RightJustify : "Högerjustera", BlockJustify : "Justera till marginaler", DecreaseIndent : "Minska indrag", IncreaseIndent : "Öka indrag", Undo : "Ångra", Redo : "Gör om", NumberedListLbl : "Numrerad lista", NumberedList : "Infoga/Radera numrerad lista", BulletedListLbl : "Punktlista", BulletedList : "Infoga/Radera punktlista", ShowTableBorders : "Visa tabellkant", ShowDetails : "Visa radbrytningar", Style : "Anpassad stil", FontFormat : "Teckenformat", Font : "Typsnitt", FontSize : "Storlek", TextColor : "Textfärg", BGColor : "Bakgrundsfärg", Source : "Källa", Find : "Sök", Replace : "Ersätt", SpellCheck : "Stavningskontroll", UniversalKeyboard : "Universellt tangentbord", PageBreakLbl : "Sidbrytning", PageBreak : "Infoga sidbrytning", Form : "Formulär", Checkbox : "Kryssruta", RadioButton : "Alternativknapp", TextField : "Textfält", Textarea : "Textruta", HiddenField : "Dolt fält", Button : "Knapp", SelectionField : "Flervalslista", ImageButton : "Bildknapp", FitWindow : "Anpassa till fönstrets storlek", // Context Menu EditLink : "Redigera länk", CellCM : "Cell", RowCM : "Rad", ColumnCM : "Kolumn", InsertRow : "Infoga rad", DeleteRows : "Radera rad", InsertColumn : "Infoga kolumn", DeleteColumns : "Radera kolumn", InsertCell : "Infoga cell", DeleteCells : "Radera celler", MergeCells : "Sammanfoga celler", SplitCell : "Separera celler", TableDelete : "Radera tabell", CellProperties : "Cellegenskaper", TableProperties : "Tabellegenskaper", ImageProperties : "Bildegenskaper", FlashProperties : "Flashegenskaper", AnchorProp : "Egenskaper för ankarlänk", ButtonProp : "Egenskaper för knapp", CheckboxProp : "Egenskaper för kryssruta", HiddenFieldProp : "Egenskaper för dolt fält", RadioButtonProp : "Egenskaper för alternativknapp", ImageButtonProp : "Egenskaper för bildknapp", TextFieldProp : "Egenskaper för textfält", SelectionFieldProp : "Egenskaper för flervalslista", TextareaProp : "Egenskaper för textruta", FormProp : "Egenskaper för formulär", FontFormats : "Normal;Formaterad;Adress;Rubrik 1;Rubrik 2;Rubrik 3;Rubrik 4;Rubrik 5;Rubrik 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Bearbetar XHTML. Var god vänta...", Done : "Klar", PasteWordConfirm : "Texten du vill klistra in verkar vara kopierad från Word. Vill du rensa innan du klistar in?", NotCompatiblePaste : "Denna åtgärd är inte tillgängligt för Internet Explorer version 5.5 eller högre. Vill du klistra in utan att rensa?", UnknownToolbarItem : "Okänt verktygsfält \"%1\"", UnknownCommand : "Okänt kommando \"%1\"", NotImplemented : "Kommandot finns ej", UnknownToolbarSet : "Verktygsfält \"%1\" finns ej", NoActiveX : "Din webläsares säkerhetsinställningar kan begränsa funktionaliteten. Du bör aktivera \"Kör ActiveX kontroller och plug-ins\". Fel och avsaknad av funktioner kan annars uppstå.", BrowseServerBlocked : "Kunde Ej öppna resursfönstret. Var god och avaktivera alla popup-blockerare.", DialogBlocked : "Kunde Ej öppna dialogfönstret. Var god och avaktivera alla popup-blockerare.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Avbryt", DlgBtnClose : "Stäng", DlgBtnBrowseServer : "Bläddra på server", DlgAdvancedTag : "Avancerad", DlgOpOther : "Övrigt", DlgInfoTab : "Information", DlgAlertUrl : "Var god och ange en URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Språkriktning", DlgGenLangDirLtr : "Vänster till Höger (VTH)", DlgGenLangDirRtl : "Höger till Vänster (HTV)", DlgGenLangCode : "Språkkod", DlgGenAccessKey : "Behörighetsnyckel", DlgGenName : "Namn", DlgGenTabIndex : "Tabindex", DlgGenLongDescr : "URL-beskrivning", DlgGenClass : "Stylesheet class", DlgGenTitle : "Titel", DlgGenContType : "Innehållstyp", DlgGenLinkCharset : "Teckenuppställning", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Bildegenskaper", DlgImgInfoTab : "Bildinformation", DlgImgBtnUpload : "Skicka till server", DlgImgURL : "URL", DlgImgUpload : "Ladda upp", DlgImgAlt : "Alternativ text", DlgImgWidth : "Bredd", DlgImgHeight : "Höjd", DlgImgLockRatio : "Lås höjd/bredd förhållanden", DlgBtnResetSize : "Återställ storlek", DlgImgBorder : "Kant", DlgImgHSpace : "Horis. marginal", DlgImgVSpace : "Vert. marginal", DlgImgAlign : "Justering", DlgImgAlignLeft : "Vänster", DlgImgAlignAbsBottom: "Absolut nederkant", DlgImgAlignAbsMiddle: "Absolut centrering", DlgImgAlignBaseline : "Baslinje", DlgImgAlignBottom : "Nederkant", DlgImgAlignMiddle : "Mitten", DlgImgAlignRight : "Höger", DlgImgAlignTextTop : "Text överkant", DlgImgAlignTop : "Överkant", DlgImgPreview : "Förhandsgranska", 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", DlgLnkTargetTab : "Mål", DlgLnkType : "Länktyp", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Ankare i sidan", DlgLnkTypeEMail : "E-post", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "<övrigt>", DlgLnkURL : "URL", DlgLnkAnchorSel : "Välj ett ankare", DlgLnkAnchorByName : "efter ankarnamn", DlgLnkAnchorById : "efter objektid", DlgLnkNoAnchors : "(Inga ankare kunde hittas)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-postadress", DlgLnkEMailSubject : "Ämne", DlgLnkEMailBody : "Innehåll", DlgLnkUpload : "Ladda upp", DlgLnkBtnUpload : "Skicka till servern", DlgLnkTarget : "Mål", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nytt fönster (_blank)", DlgLnkTargetParent : "Föregående Window (_parent)", DlgLnkTargetSelf : "Detta fönstret (_self)", DlgLnkTargetTop : "Översta fönstret (_top)", DlgLnkTargetFrameName : "Målets ramnamn", DlgLnkPopWinName : "Popup-fönstrets namn", DlgLnkPopWinFeat : "Popup-fönstrets egenskaper", DlgLnkPopResize : "Kan ändra storlek", DlgLnkPopLocation : "Adressfält", DlgLnkPopMenu : "Menyfält", DlgLnkPopScroll : "Scrolllista", DlgLnkPopStatus : "Statusfält", DlgLnkPopToolbar : "Verktygsfält", DlgLnkPopFullScrn : "Helskärm (endast IE)", DlgLnkPopDependent : "Beroende (endest Netscape)", DlgLnkPopWidth : "Bredd", DlgLnkPopHeight : "Höjd", DlgLnkPopLeft : "Position från vänster", DlgLnkPopTop : "Position från sidans topp", DlnLnkMsgNoUrl : "Var god ange länkens URL", DlnLnkMsgNoEMail : "Var god ange E-postadress", DlnLnkMsgNoAnchor : "Var god ange ett ankare", DlnLnkMsgInvPopName : "Popup-rutans namn måste börja med en alfabetisk bokstav och får inte innehålla mellanslag", // Color Dialog DlgColorTitle : "Välj färg", DlgColorBtnClear : "Rensa", DlgColorHighlight : "Markera", DlgColorSelected : "Vald", // Smiley Dialog DlgSmileyTitle : "Infoga smiley", // Special Character Dialog DlgSpecialCharTitle : "Välj utökat tecken", // Table Dialog DlgTableTitle : "Tabellegenskaper", DlgTableRows : "Rader", DlgTableColumns : "Kolumner", DlgTableBorder : "Kantstorlek", DlgTableAlign : "Justering", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Vänster", DlgTableAlignCenter : "Centrerad", DlgTableAlignRight : "Höger", DlgTableWidth : "Bredd", DlgTableWidthPx : "pixlar", DlgTableWidthPc : "procent", DlgTableHeight : "Höjd", DlgTableCellSpace : "Cellavstånd", DlgTableCellPad : "Cellutfyllnad", DlgTableCaption : "Rubrik", DlgTableSummary : "Sammanfattning", // Table Cell Dialog DlgCellTitle : "Cellegenskaper", DlgCellWidth : "Bredd", DlgCellWidthPx : "pixlar", DlgCellWidthPc : "procent", DlgCellHeight : "Höjd", DlgCellWordWrap : "Automatisk radbrytning", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nej", DlgCellHorAlign : "Horisontal justering", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Vänster", DlgCellHorAlignCenter : "Centrerad", DlgCellHorAlignRight: "Höger", DlgCellVerAlign : "Vertikal justering", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Topp", DlgCellVerAlignMiddle : "Mitten", DlgCellVerAlignBottom : "Nederkant", DlgCellVerAlignBaseline : "Underst", DlgCellRowSpan : "Radomfång", DlgCellCollSpan : "Kolumnomfång", DlgCellBackColor : "Bakgrundsfärg", DlgCellBorderColor : "Kantfärg", DlgCellBtnSelect : "Välj...", // Find Dialog DlgFindTitle : "Sök", DlgFindFindBtn : "Sök", DlgFindNotFoundMsg : "Angiven text kunde ej hittas.", // Replace Dialog DlgReplaceTitle : "Ersätt", DlgReplaceFindLbl : "Sök efter:", DlgReplaceReplaceLbl : "Ersätt med:", DlgReplaceCaseChk : "Skiftläge", DlgReplaceReplaceBtn : "Ersätt", DlgReplaceReplAllBtn : "Ersätt alla", DlgReplaceWordChk : "Inkludera hela ord", // Paste Operations / Dialog PasteErrorCut : "Säkerhetsinställningar i Er webläsare tillåter inte åtgården Klipp ut. Använd (Ctrl+X) istället.", PasteErrorCopy : "Säkerhetsinställningar i Er webläsare tillåter inte åtgården Kopiera. Använd (Ctrl+C) istället", PasteAsText : "Klistra in som vanlig text", PasteFromWord : "Klistra in från Word", DlgPasteMsg2 : "Var god och klistra in Er text i rutan nedan genom att använda (Ctrl+V) klicka sen på OK.", DlgPasteSec : "På grund av din webläsares säkerhetsinställningar kan verktyget inte få åtkomst till urklippsdatan. Var god och använd detta fönster istället.", DlgPasteIgnoreFont : "Ignorera typsnittsdefinitioner", DlgPasteRemoveStyles : "Radera Stildefinitioner", DlgPasteCleanBox : "Töm rutans innehåll", // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Fler färger...", // Document Properties DocProps : "Dokumentegenskaper", // Anchor Dialog DlgAnchorTitle : "Ankaregenskaper", DlgAnchorName : "Ankarnamn", DlgAnchorErrorName : "Var god ange ett ankarnamn", // Speller Pages Dialog DlgSpellNotInDic : "Saknas i ordlistan", DlgSpellChangeTo : "Ändra till", DlgSpellBtnIgnore : "Ignorera", DlgSpellBtnIgnoreAll : "Ignorera alla", DlgSpellBtnReplace : "Ersätt", DlgSpellBtnReplaceAll : "Ersätt alla", DlgSpellBtnUndo : "Ångra", DlgSpellNoSuggestions : "- Förslag saknas -", DlgSpellProgress : "Stavningskontroll pågår...", DlgSpellNoMispell : "Stavningskontroll slutförd: Inga stavfel påträffades.", DlgSpellNoChanges : "Stavningskontroll slutförd: Inga ord rättades.", DlgSpellOneChange : "Stavningskontroll slutförd: Ett ord rättades.", DlgSpellManyChanges : "Stavningskontroll slutförd: %1 ord rättades.", IeSpellDownload : "Stavningskontrollen är ej installerad. Vill du göra det nu?", // Button Dialog DlgButtonText : "Text (Värde)", DlgButtonType : "Typ", DlgButtonTypeBtn : "Knapp", DlgButtonTypeSbm : "Skicka", DlgButtonTypeRst : "Återställ", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Namn", DlgCheckboxValue : "Värde", DlgCheckboxSelected : "Vald", // Form Dialog DlgFormName : "Namn", DlgFormAction : "Funktion", DlgFormMethod : "Metod", // Select Field Dialog DlgSelectName : "Namn", DlgSelectValue : "Värde", DlgSelectSize : "Storlek", DlgSelectLines : "Linjer", DlgSelectChkMulti : "Tillåt flerval", DlgSelectOpAvail : "Befintliga val", DlgSelectOpText : "Text", DlgSelectOpValue : "Värde", DlgSelectBtnAdd : "Lägg till", DlgSelectBtnModify : "Redigera", DlgSelectBtnUp : "Upp", DlgSelectBtnDown : "Ner", DlgSelectBtnSetValue : "Markera som valt värde", DlgSelectBtnDelete : "Radera", // Textarea Dialog DlgTextareaName : "Namn", DlgTextareaCols : "Kolumner", DlgTextareaRows : "Rader", // Text Field Dialog DlgTextName : "Namn", DlgTextValue : "Värde", DlgTextCharWidth : "Teckenbredd", DlgTextMaxChars : "Max antal tecken", DlgTextType : "Typ", DlgTextTypeText : "Text", DlgTextTypePass : "Lösenord", // Hidden Field Dialog DlgHiddenName : "Namn", DlgHiddenValue : "Värde", // Bulleted List Dialog BulletedListProp : "Egenskaper för punktlista", NumberedListProp : "Egenskaper för numrerad lista", DlgLstStart : "Start", //MISSING DlgLstType : "Typ", DlgLstTypeCircle : "Cirkel", DlgLstTypeDisc : "Punkt", DlgLstTypeSquare : "Ruta", DlgLstTypeNumbers : "Nummer (1, 2, 3)", DlgLstTypeLCase : "Gemener (a, b, c)", DlgLstTypeUCase : "Versaler (A, B, C)", DlgLstTypeSRoman : "Små romerska siffror (i, ii, iii)", DlgLstTypeLRoman : "Stora romerska siffror (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Allmän", DlgDocBackTab : "Bakgrund", DlgDocColorsTab : "Färg och marginal", DlgDocMetaTab : "Metadata", DlgDocPageTitle : "Sidtitel", DlgDocLangDir : "Språkriktning", DlgDocLangDirLTR : "Vänster till Höger", DlgDocLangDirRTL : "Höger till Vänster", DlgDocLangCode : "Språkkod", DlgDocCharSet : "Teckenuppsättningar", DlgDocCharSetCE : "Central Europa", DlgDocCharSetCT : "Traditionell Kinesisk (Big5)", DlgDocCharSetCR : "Kyrillisk", DlgDocCharSetGR : "Grekiska", DlgDocCharSetJP : "Japanska", DlgDocCharSetKR : "Koreanska", DlgDocCharSetTR : "Turkiska", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Väst Europa", DlgDocCharSetOther : "Övriga teckenuppsättningar", DlgDocDocType : "Sidhuvud", DlgDocDocTypeOther : "Övriga sidhuvuden", DlgDocIncXHTML : "Inkludera XHTML deklaration", DlgDocBgColor : "Bakgrundsfärg", DlgDocBgImage : "Bakgrundsbildens URL", DlgDocBgNoScroll : "Fast bakgrund", DlgDocCText : "Text", DlgDocCLink : "Länk", DlgDocCVisited : "Besökt länk", DlgDocCActive : "Aktiv länk", DlgDocMargins : "Sidmarginal", DlgDocMaTop : "Topp", DlgDocMaLeft : "Vänster", DlgDocMaRight : "Höger", DlgDocMaBottom : "Botten", DlgDocMeIndex : "Sidans nyckelord", DlgDocMeDescr : "Sidans beskrivning", DlgDocMeAuthor : "Författare", DlgDocMeCopy : "Upphovsrätt", DlgDocPreview : "Förhandsgranska", // Templates Dialog Templates : "Sidmallar", DlgTemplatesTitle : "Sidmallar", DlgTemplatesSelMsg : "Var god välj en mall att använda med editorn
(allt nuvarande innehåll raderas):", DlgTemplatesLoading : "Laddar mallar. Var god vänta...", DlgTemplatesNoTpl : "(Ingen mall är vald)", DlgTemplatesReplace : "Ersätt aktuellt innehåll", // About Dialog DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Webläsare", DlgAboutLicenseTab : "Licens", DlgAboutVersion : "version", DlgAboutInfo : "För mer information se" };FCKeditor/editor/lang/bs.js0000644000102600010270000004473311234071564015040 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Bosnian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Skupi trake sa alatima", ToolbarExpand : "Otvori trake sa alatima", // Toolbar Items and Context Menu Save : "Snimi", NewPage : "Novi dokument", Preview : "Prikaži", Cut : "Izreži", Copy : "Kopiraj", Paste : "Zalijepi", PasteText : "Zalijepi kao obièan tekst", PasteWord : "Zalijepi iz Word-a", Print : "Štampaj", SelectAll : "Selektuj sve", RemoveFormat : "Poništi format", InsertLinkLbl : "Link", InsertLink : "Ubaci/Izmjeni link", RemoveLink : "Izbriši link", 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", InsertLine : "Ubaci horizontalnu liniju", InsertSpecialCharLbl: "Specijalni karakter", InsertSpecialChar : "Ubaci specijalni karater", InsertSmileyLbl : "Smješko", InsertSmiley : "Ubaci smješka", About : "O FCKeditor-u", Bold : "Boldiraj", Italic : "Ukosi", Underline : "Podvuci", StrikeThrough : "Precrtaj", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Lijevo poravnanje", CenterJustify : "Centralno poravnanje", RightJustify : "Desno poravnanje", BlockJustify : "Puno poravnanje", DecreaseIndent : "Smanji uvod", IncreaseIndent : "Poveæaj uvod", Undo : "Vrati", Redo : "Ponovi", NumberedListLbl : "Numerisana lista", NumberedList : "Ubaci/Izmjeni numerisanu listu", BulletedListLbl : "Lista", BulletedList : "Ubaci/Izmjeni listu", ShowTableBorders : "Pokaži okvire tabela", ShowDetails : "Pokaži detalje", Style : "Stil", FontFormat : "Format", Font : "Font", FontSize : "Velièina", TextColor : "Boja teksta", BGColor : "Boja pozadine", Source : "HTML kôd", Find : "Naði", Replace : "Zamjeni", SpellCheck : "Check Spelling", //MISSING UniversalKeyboard : "Universal Keyboard", //MISSING PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //MISSING 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 FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Izmjeni link", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Ubaci red", DeleteRows : "Briši redove", InsertColumn : "Ubaci kolonu", DeleteColumns : "Briši kolone", InsertCell : "Ubaci æeliju", DeleteCells : "Briši æelije", MergeCells : "Spoji æelije", SplitCell : "Razdvoji æeliju", TableDelete : "Delete Table", //MISSING CellProperties : "Svojstva æelije", TableProperties : "Svojstva tabele", ImageProperties : "Svojstva slike", FlashProperties : "Flash Properties", //MISSING 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 FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Procesiram XHTML. Molim saèekajte...", Done : "Gotovo", PasteWordConfirm : "Tekst koji želite zalijepiti èini se da je kopiran iz Worda. Da li želite da se prvo oèisti?", NotCompatiblePaste : "Ova komanda je podržana u Internet Explorer-u verzijama 5.5 ili novijim. Da li želite da izvršite lijepljenje teksta bez èišæenja?", UnknownToolbarItem : "Nepoznata stavka sa trake sa alatima \"%1\"", UnknownCommand : "Nepoznata komanda \"%1\"", NotImplemented : "Komanda nije implementirana", UnknownToolbarSet : "Traka sa alatima \"%1\" ne postoji", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Odustani", DlgBtnClose : "Zatvori", DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "Naprednije", DlgOpOther : "", //MISSING DlgInfoTab : "Info", //MISSING DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Smjer pisanja", DlgGenLangDirLtr : "S lijeva na desno (LTR)", DlgGenLangDirRtl : "S desna na lijevo (RTL)", DlgGenLangCode : "Jezièni kôd", DlgGenAccessKey : "Pristupna tipka", DlgGenName : "Naziv", DlgGenTabIndex : "Tab indeks", DlgGenLongDescr : "Dugaèki opis URL-a", DlgGenClass : "Klase CSS stilova", DlgGenTitle : "Advisory title", DlgGenContType : "Advisory vrsta sadržaja", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Svojstva slike", DlgImgInfoTab : "Info slike", DlgImgBtnUpload : "Šalji na server", DlgImgURL : "URL", DlgImgUpload : "Šalji", DlgImgAlt : "Tekst na slici", DlgImgWidth : "Širina", DlgImgHeight : "Visina", DlgImgLockRatio : "Zakljuèaj odnos", DlgBtnResetSize : "Resetuj dimenzije", DlgImgBorder : "Okvir", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Poravnanje", DlgImgAlignLeft : "Lijevo", DlgImgAlignAbsBottom: "Abs dole", DlgImgAlignAbsMiddle: "Abs sredina", DlgImgAlignBaseline : "Bazno", DlgImgAlignBottom : "Dno", DlgImgAlignMiddle : "Sredina", DlgImgAlignRight : "Desno", DlgImgAlignTextTop : "Vrh teksta", DlgImgAlignTop : "Vrh", DlgImgPreview : "Prikaz", 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", DlgLnkTargetTab : "Prozor", DlgLnkType : "Tip linka", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Sidro na ovoj stranici", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Izaberi sidro", DlgLnkAnchorByName : "Po nazivu sidra", DlgLnkAnchorById : "Po Id-u elementa", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Adresa", DlgLnkEMailSubject : "Subjekt poruke", DlgLnkEMailBody : "Poruka", DlgLnkUpload : "Šalji", DlgLnkBtnUpload : "Šalji na server", DlgLnkTarget : "Prozor", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Novi prozor (_blank)", DlgLnkTargetParent : "Glavni prozor (_parent)", DlgLnkTargetSelf : "Isti prozor (_self)", DlgLnkTargetTop : "Najgornji prozor (_top)", DlgLnkTargetFrameName : "Target Frame Name", //MISSING DlgLnkPopWinName : "Naziv popup prozora", DlgLnkPopWinFeat : "Moguænosti popup prozora", DlgLnkPopResize : "Promjenljive velièine", DlgLnkPopLocation : "Traka za lokaciju", DlgLnkPopMenu : "Izborna traka", DlgLnkPopScroll : "Scroll traka", DlgLnkPopStatus : "Statusna traka", DlgLnkPopToolbar : "Traka sa alatima", DlgLnkPopFullScrn : "Cijeli ekran (IE)", DlgLnkPopDependent : "Ovisno (Netscape)", DlgLnkPopWidth : "Širina", DlgLnkPopHeight : "Visina", DlgLnkPopLeft : "Lijeva pozicija", DlgLnkPopTop : "Gornja pozicija", DlnLnkMsgNoUrl : "Molimo ukucajte URL link", DlnLnkMsgNoEMail : "Molimo ukucajte e-mail adresu", DlnLnkMsgNoAnchor : "Molimo izaberite sidro", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Izaberi boju", DlgColorBtnClear : "Oèisti", DlgColorHighlight : "Igled", DlgColorSelected : "Selektovana", // Smiley Dialog DlgSmileyTitle : "Ubaci smješka", // Special Character Dialog DlgSpecialCharTitle : "Izaberi specijalni karakter", // Table Dialog DlgTableTitle : "Svojstva tabele", DlgTableRows : "Redova", DlgTableColumns : "Kolona", DlgTableBorder : "Okvir", DlgTableAlign : "Poravnanje", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Lijevo", DlgTableAlignCenter : "Centar", DlgTableAlignRight : "Desno", DlgTableWidth : "Širina", DlgTableWidthPx : "piksela", DlgTableWidthPc : "posto", DlgTableHeight : "Visina", DlgTableCellSpace : "Razmak æelija", DlgTableCellPad : "Uvod æelija", DlgTableCaption : "Naslov", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Svojstva æelije", DlgCellWidth : "Širina", DlgCellWidthPx : "piksela", DlgCellWidthPc : "posto", DlgCellHeight : "Visina", DlgCellWordWrap : "Vrapuj tekst", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Da", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Horizontalno poravnanje", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Lijevo", DlgCellHorAlignCenter : "Centar", DlgCellHorAlignRight: "Desno", DlgCellVerAlign : "Vertikalno poravnanje", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Gore", DlgCellVerAlignMiddle : "Sredina", DlgCellVerAlignBottom : "Dno", DlgCellVerAlignBaseline : "Bazno", DlgCellRowSpan : "Spajanje æelija", DlgCellCollSpan : "Spajanje kolona", DlgCellBackColor : "Boja pozadine", DlgCellBorderColor : "Boja okvira", DlgCellBtnSelect : "Selektuj...", // Find Dialog DlgFindTitle : "Naði", DlgFindFindBtn : "Naði", DlgFindNotFoundMsg : "Traženi tekst nije pronaðen.", // Replace Dialog DlgReplaceTitle : "Zamjeni", DlgReplaceFindLbl : "Naði šta:", DlgReplaceReplaceLbl : "Zamjeni sa:", DlgReplaceCaseChk : "Uporeðuj velika/mala slova", DlgReplaceReplaceBtn : "Zamjeni", DlgReplaceReplAllBtn : "Zamjeni sve", DlgReplaceWordChk : "Uporeðuj samo cijelu rijeè", // Paste Operations / Dialog PasteErrorCut : "Sigurnosne postavke vašeg pretraživaèa ne dozvoljavaju operacije automatskog rezanja. Molimo koristite kraticu na tastaturi (Ctrl+X).", PasteErrorCopy : "Sigurnosne postavke Vašeg pretraživaèa ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tastaturi (Ctrl+C).", PasteAsText : "Zalijepi kao obièan tekst", PasteFromWord : "Zalijepi iz Word-a", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING DlgPasteCleanBox : "Clean Up Box", //MISSING // Color Picker ColorAutomatic : "Automatska", ColorMoreColors : "Više boja...", // Document Properties DocProps : "Document Properties", //MISSING // Anchor Dialog DlgAnchorTitle : "Anchor Properties", //MISSING DlgAnchorName : "Anchor Name", //MISSING DlgAnchorErrorName : "Please type the anchor name", //MISSING // 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 IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING // Button Dialog DlgButtonText : "Text (Value)", //MISSING DlgButtonType : "Type", //MISSING DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", //MISSING DlgCheckboxValue : "Value", //MISSING DlgCheckboxSelected : "Selected", //MISSING // Form Dialog DlgFormName : "Name", //MISSING DlgFormAction : "Action", //MISSING DlgFormMethod : "Method", //MISSING // 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 // Textarea Dialog DlgTextareaName : "Name", //MISSING DlgTextareaCols : "Columns", //MISSING DlgTextareaRows : "Rows", //MISSING // 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 // Hidden Field Dialog DlgHiddenName : "Name", //MISSING DlgHiddenValue : "Value", //MISSING // Bulleted List Dialog BulletedListProp : "Bulleted List Properties", //MISSING NumberedListProp : "Numbered List Properties", //MISSING DlgLstStart : "Start", //MISSING DlgLstType : "Type", //MISSING DlgLstTypeCircle : "Circle", //MISSING DlgLstTypeDisc : "Disc", //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 // Document Properties Dialog DlgDocGeneralTab : "General", //MISSING DlgDocBackTab : "Background", //MISSING DlgDocColorsTab : "Colors and Margins", //MISSING DlgDocMetaTab : "Meta Data", //MISSING 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 DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Other Character Set Encoding", //MISSING 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 // 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 DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "About", //MISSING DlgAboutBrowserInfoTab : "Browser Info", //MISSING DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "verzija", DlgAboutInfo : "Za više informacija posjetite" };FCKeditor/editor/lang/bg.js0000644000102600010270000005627011234071562015021 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Bulgarian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Скрий панела с инструментите", ToolbarExpand : "Покажи панела с инструментите", // Toolbar Items and Context Menu Save : "Запази", NewPage : "Нова страница", Preview : "Предварителен изглед", Cut : "Изрежи", Copy : "Запамети", Paste : "Вмъкни", PasteText : "Вмъкни само текст", PasteWord : "Вмъкни от MS Word", Print : "Печат", SelectAll : "Селектирай всичко", RemoveFormat : "Изтрий форматирането", InsertLinkLbl : "Връзка", InsertLink : "Добави/Редактирай връзка", RemoveLink : "Изтрий връзка", Anchor : "Добави/Редактирай котва", InsertImageLbl : "Изображение", InsertImage : "Добави/Редактирай изображение", InsertFlashLbl : "Flash", InsertFlash : "Добави/Редактиай Flash обект", InsertTableLbl : "Таблица", InsertTable : "Добави/Редактирай таблица", InsertLineLbl : "Линия", InsertLine : "Вмъкни хоризонтална линия", InsertSpecialCharLbl: "Специален символ", InsertSpecialChar : "Вмъкни специален символ", InsertSmileyLbl : "Усмивка", InsertSmiley : "Добави усмивка", About : "За FCKeditor", Bold : "Удебелен", Italic : "Курсив", Underline : "Подчертан", StrikeThrough : "Зачертан", Subscript : "Индекс за база", Superscript : "Индекс за степен", LeftJustify : "Подравняване в ляво", CenterJustify : "Подравнявне в средата", RightJustify : "Подравняване в дясно", BlockJustify : "Двустранно подравняване", DecreaseIndent : "Намали отстъпа", IncreaseIndent : "Увеличи отстъпа", Undo : "Отмени", Redo : "Повтори", NumberedListLbl : "Нумериран списък", NumberedList : "Добави/Изтрий нумериран списък", BulletedListLbl : "Ненумериран списък", BulletedList : "Добави/Изтрий ненумериран списък", ShowTableBorders : "Покажи рамките на таблицата", ShowDetails : "Покажи подробности", Style : "Стил", FontFormat : "Формат", Font : "Шрифт", FontSize : "Размер", TextColor : "Цвят на текста", BGColor : "Цвят на фона", Source : "Код", Find : "Търси", Replace : "Замести", SpellCheck : "Провери правописа", UniversalKeyboard : "Универсална клавиатура", PageBreakLbl : "Нов ред", PageBreak : "Вмъкни нов ред", Form : "Формуляр", Checkbox : "Поле за отметка", RadioButton : "Поле за опция", TextField : "Текстово поле", Textarea : "Текстова област", HiddenField : "Скрито поле", Button : "Бутон", SelectionField : "Падащо меню с опции", ImageButton : "Бутон-изображение", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Редактирай връзка", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Добави ред", DeleteRows : "Изтрий редовете", InsertColumn : "Добави колона", DeleteColumns : "Изтрий колоните", InsertCell : "Добави клетка", DeleteCells : "Изтрий клетките", MergeCells : "Обедини клетките", SplitCell : "Раздели клетката", TableDelete : "Изтрий таблицата", CellProperties : "Параметри на клетката", TableProperties : "Параметри на таблицата", ImageProperties : "Параметри на изображението", FlashProperties : "Параметри на Flash обекта", AnchorProp : "Параметри на котвата", ButtonProp : "Параметри на бутона", CheckboxProp : "Параметри на полето за отметка", HiddenFieldProp : "Параметри на скритото поле", RadioButtonProp : "Параметри на полето за опция", ImageButtonProp : "Параметри на бутона-изображение", TextFieldProp : "Параметри на текстовото-поле", SelectionFieldProp : "Параметри на падащото меню с опции", TextareaProp : "Параметри на текстовата област", FormProp : "Параметри на формуляра", FontFormats : "Нормален;Форматиран;Адрес;Заглавие 1;Заглавие 2;Заглавие 3;Заглавие 4;Заглавие 5;Заглавие 6;Параграф (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обработка на XHTML. Моля изчакайте...", Done : "Готово", PasteWordConfirm : "Текстът, който искате да вмъкнете е копиран от MS Word. Желаете ли да бъде изчистен преди вмъкването?", NotCompatiblePaste : "Тази операция изисква MS Internet Explorer версия 5.5 или по-висока. Желаете ли да вмъкнете запаметеното без изчистване?", UnknownToolbarItem : "Непознат инструмент \"%1\"", UnknownCommand : "Непозната команда \"%1\"", NotImplemented : "Командата не е имплементирана", UnknownToolbarSet : "Панелът \"%1\" не съществува", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "ОК", DlgBtnCancel : "Отказ", DlgBtnClose : "Затвори", DlgBtnBrowseServer : "Разгледай сървъра", DlgAdvancedTag : "Подробности...", DlgOpOther : "<Друго>", DlgInfoTab : "Информация", DlgAlertUrl : "Моля, въведете пълния път (URL)", // General Dialogs Labels DlgGenNotSet : "<не е настроен>", DlgGenId : "Идентификатор", DlgGenLangDir : "посока на речта", DlgGenLangDirLtr : "От ляво на дясно", DlgGenLangDirRtl : "От дясно на ляво", DlgGenLangCode : "Код на езика", DlgGenAccessKey : "Бърз клавиш", DlgGenName : "Име", DlgGenTabIndex : "Ред на достъп", DlgGenLongDescr : "Описание на връзката", DlgGenClass : "Клас от стиловите таблици", DlgGenTitle : "Препоръчително заглавие", DlgGenContType : "Препоръчителен тип на съдържанието", DlgGenLinkCharset : "Тип на свързания ресурс", DlgGenStyle : "Стил", // Image Dialog DlgImgTitle : "Параметри на изображението", DlgImgInfoTab : "Информация за изображението", DlgImgBtnUpload : "Прати към сървъра", DlgImgURL : "Пълен път (URL)", DlgImgUpload : "Качи", DlgImgAlt : "Алтернативен текст", DlgImgWidth : "Ширина", DlgImgHeight : "Височина", DlgImgLockRatio : "Запази пропорцията", DlgBtnResetSize : "Възстанови размера", DlgImgBorder : "Рамка", DlgImgHSpace : "Хоризонтален отстъп", DlgImgVSpace : "Вертикален отстъп", DlgImgAlign : "Подравняване", DlgImgAlignLeft : "Ляво", DlgImgAlignAbsBottom: "Най-долу", DlgImgAlignAbsMiddle: "Точно по средата", DlgImgAlignBaseline : "По базовата линия", DlgImgAlignBottom : "Долу", DlgImgAlignMiddle : "По средата", DlgImgAlignRight : "Дясно", DlgImgAlignTextTop : "Върху текста", DlgImgAlignTop : "Отгоре", DlgImgPreview : "Изглед", DlgImgAlertUrl : "Моля, въведете пълния път до изображението", DlgImgLinkTab : "Връзка", // Flash Dialog DlgFlashTitle : "Параметри на Flash обекта", DlgFlashChkPlay : "Автоматично стартиране", DlgFlashChkLoop : "Ново стартиране след завършването", DlgFlashChkMenu : "Разрешено Flash меню", DlgFlashScale : "Оразмеряване", DlgFlashScaleAll : "Покажи целия обект", DlgFlashScaleNoBorder : "Без рамка", DlgFlashScaleFit : "Според мястото", // Link Dialog DlgLnkWindowTitle : "Връзка", DlgLnkInfoTab : "Информация за връзката", DlgLnkTargetTab : "Цел", DlgLnkType : "Вид на връзката", DlgLnkTypeURL : "Пълен път (URL)", DlgLnkTypeAnchor : "Котва в текущата страница", DlgLnkTypeEMail : "Е-поща", DlgLnkProto : "Протокол", DlgLnkProtoOther : "<друго>", DlgLnkURL : "Пълен път (URL)", DlgLnkAnchorSel : "Изберете котва", DlgLnkAnchorByName : "По име на котвата", DlgLnkAnchorById : "По идентификатор на елемент", DlgLnkNoAnchors : "<Няма котви в текущия документ>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адрес за е-поща", DlgLnkEMailSubject : "Тема на писмото", DlgLnkEMailBody : "Текст на писмото", DlgLnkUpload : "Качи", DlgLnkBtnUpload : "Прати на сървъра", DlgLnkTarget : "Цел", DlgLnkTargetFrame : "<рамка>", DlgLnkTargetPopup : "<дъщерен прозорец>", DlgLnkTargetBlank : "Нов прозорец (_blank)", DlgLnkTargetParent : "Родителски прозорец (_parent)", DlgLnkTargetSelf : "Активния прозорец (_self)", DlgLnkTargetTop : "Целия прозорец (_top)", DlgLnkTargetFrameName : "Име на целевия прозорец", DlgLnkPopWinName : "Име на дъщерния прозорец", DlgLnkPopWinFeat : "Параметри на дъщерния прозорец", DlgLnkPopResize : "С променливи размери", DlgLnkPopLocation : "Поле за адрес", DlgLnkPopMenu : "Меню", DlgLnkPopScroll : "Плъзгач", DlgLnkPopStatus : "Поле за статус", DlgLnkPopToolbar : "Панел с бутони", DlgLnkPopFullScrn : "Голям екран (MS IE)", DlgLnkPopDependent : "Зависим (Netscape)", DlgLnkPopWidth : "Ширина", DlgLnkPopHeight : "Височина", DlgLnkPopLeft : "Координати - X", DlgLnkPopTop : "Координати - Y", DlnLnkMsgNoUrl : "Моля, напишете пълния път (URL)", DlnLnkMsgNoEMail : "Моля, напишете адреса за е-поща", DlnLnkMsgNoAnchor : "Моля, изберете котва", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Изберете цвят", DlgColorBtnClear : "Изчисти", DlgColorHighlight : "Текущ", DlgColorSelected : "Избран", // Smiley Dialog DlgSmileyTitle : "Добави усмивка", // Special Character Dialog DlgSpecialCharTitle : "Изберете специален символ", // Table Dialog DlgTableTitle : "Параметри на таблицата", DlgTableRows : "Редове", DlgTableColumns : "Колони", DlgTableBorder : "Размер на рамката", DlgTableAlign : "Подравняване", DlgTableAlignNotSet : "<Не е избрано>", DlgTableAlignLeft : "Ляво", DlgTableAlignCenter : "Център", DlgTableAlignRight : "Дясно", DlgTableWidth : "Ширина", DlgTableWidthPx : "пиксели", DlgTableWidthPc : "проценти", DlgTableHeight : "Височина", DlgTableCellSpace : "Разстояние между клетките", DlgTableCellPad : "Отстъп на съдържанието в клетките", DlgTableCaption : "Заглавие", DlgTableSummary : "Резюме", // Table Cell Dialog DlgCellTitle : "Параметри на клетката", DlgCellWidth : "Ширина", DlgCellWidthPx : "пиксели", DlgCellWidthPc : "проценти", DlgCellHeight : "Височина", DlgCellWordWrap : "пренасяне на нов ред", DlgCellWordWrapNotSet : "<Не е настроено>", DlgCellWordWrapYes : "Да", DlgCellWordWrapNo : "не", DlgCellHorAlign : "Хоризонтално подравняване", DlgCellHorAlignNotSet : "<Не е настроено>", DlgCellHorAlignLeft : "Ляво", DlgCellHorAlignCenter : "Център", DlgCellHorAlignRight: "Дясно", DlgCellVerAlign : "Вертикално подравняване", DlgCellVerAlignNotSet : "<Не е настроено>", DlgCellVerAlignTop : "Горе", DlgCellVerAlignMiddle : "По средата", DlgCellVerAlignBottom : "Долу", DlgCellVerAlignBaseline : "По базовата линия", DlgCellRowSpan : "повече от един ред", DlgCellCollSpan : "повече от една колона", DlgCellBackColor : "фонов цвят", DlgCellBorderColor : "цвят на рамката", DlgCellBtnSelect : "Изберете...", // Find Dialog DlgFindTitle : "Търси", DlgFindFindBtn : "Търси", DlgFindNotFoundMsg : "Указания текст не беше намерен.", // Replace Dialog DlgReplaceTitle : "Замести", DlgReplaceFindLbl : "Търси:", DlgReplaceReplaceLbl : "Замести с:", DlgReplaceCaseChk : "Със същия регистър", DlgReplaceReplaceBtn : "Замести", DlgReplaceReplAllBtn : "Замести всички", DlgReplaceWordChk : "Търси същата дума", // Paste Operations / Dialog PasteErrorCut : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни изрязването. За целта използвайте клавиатурата (Ctrl+X).", PasteErrorCopy : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни запаметяването. За целта използвайте клавиатурата (Ctrl+C).", PasteAsText : "Вмъкни като чист текст", PasteFromWord : "Вмъкни от MS Word", DlgPasteMsg2 : "Вмъкнете тук съдъжанието с клавиатуарата (Ctrl+V) и натиснете OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Игнорирай шрифтовите дефиниции", DlgPasteRemoveStyles : "Изтрий стиловите дефиниции", DlgPasteCleanBox : "Изчисти", // Color Picker ColorAutomatic : "По подразбиране", ColorMoreColors : "Други цветове...", // Document Properties DocProps : "Параметри на документа", // Anchor Dialog DlgAnchorTitle : "Параметри на котвата", DlgAnchorName : "Име на котвата", DlgAnchorErrorName : "Моля, въведете име на котвата", // Speller Pages Dialog DlgSpellNotInDic : "Липсва в речника", DlgSpellChangeTo : "Промени на", DlgSpellBtnIgnore : "Игнорирай", DlgSpellBtnIgnoreAll : "Игнорирай всички", DlgSpellBtnReplace : "Замести", DlgSpellBtnReplaceAll : "Замести всички", DlgSpellBtnUndo : "Отмени", DlgSpellNoSuggestions : "- Няма предложения -", DlgSpellProgress : "Извършване на проверката за правопис...", DlgSpellNoMispell : "Проверката за правопис завършена: не са открити правописни грешки", DlgSpellNoChanges : "Проверката за правопис завършена: няма променени думи", DlgSpellOneChange : "Проверката за правопис завършена: една дума е променена", DlgSpellManyChanges : "Проверката за правопис завършена: %1 думи са променени", IeSpellDownload : "Инструментът за проверка на правопис не е инсталиран. Желаете ли да го инсталирате ?", // Button Dialog DlgButtonText : "Текст (Стойност)", DlgButtonType : "Тип", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Име", DlgCheckboxValue : "Стойност", DlgCheckboxSelected : "Отметнато", // Form Dialog DlgFormName : "Име", DlgFormAction : "Действие", DlgFormMethod : "Метод", // Select Field Dialog DlgSelectName : "Име", DlgSelectValue : "Стойност", DlgSelectSize : "Размер", DlgSelectLines : "линии", DlgSelectChkMulti : "Разрешено множествено селектиране", DlgSelectOpAvail : "Възможни опции", DlgSelectOpText : "Текст", DlgSelectOpValue : "Стойност", DlgSelectBtnAdd : "Добави", DlgSelectBtnModify : "Промени", DlgSelectBtnUp : "Нагоре", DlgSelectBtnDown : "Надолу", DlgSelectBtnSetValue : "Настрой като избрана стойност", DlgSelectBtnDelete : "Изтрий", // Textarea Dialog DlgTextareaName : "Име", DlgTextareaCols : "Колони", DlgTextareaRows : "Редове", // Text Field Dialog DlgTextName : "Име", DlgTextValue : "Стойност", DlgTextCharWidth : "Ширина на символите", DlgTextMaxChars : "Максимум символи", DlgTextType : "Тип", DlgTextTypeText : "Текст", DlgTextTypePass : "Парола", // Hidden Field Dialog DlgHiddenName : "Име", DlgHiddenValue : "Стойност", // Bulleted List Dialog BulletedListProp : "Параметри на ненумерирания списък", NumberedListProp : "Параметри на нумерирания списък", DlgLstStart : "Start", //MISSING DlgLstType : "Тип", DlgLstTypeCircle : "Окръжност", DlgLstTypeDisc : "Кръг", 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 : "Общи", DlgDocBackTab : "Фон", DlgDocColorsTab : "Цветове и отстъпи", DlgDocMetaTab : "Мета данни", DlgDocPageTitle : "Заглавие на страницата", DlgDocLangDir : "Посока на речта", DlgDocLangDirLTR : "От ляво на дясно", DlgDocLangDirRTL : "От дясно на ляво", DlgDocLangCode : "Код на езика", DlgDocCharSet : "Кодиране на символите", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Друго кодиране на символите", DlgDocDocType : "Тип на документа", DlgDocDocTypeOther : "Друг тип на документа", DlgDocIncXHTML : "Включи XHTML декларация", DlgDocBgColor : "Цвят на фона", DlgDocBgImage : "Пълен път до фоновото изображение", DlgDocBgNoScroll : "Не-повтарящо се фоново изображение", DlgDocCText : "Текст", DlgDocCLink : "Връзка", DlgDocCVisited : "Посетена връзка", DlgDocCActive : "Активна връзка", DlgDocMargins : "Отстъпи на страницата", DlgDocMaTop : "Горе", DlgDocMaLeft : "Ляво", DlgDocMaRight : "Дясно", DlgDocMaBottom : "Долу", DlgDocMeIndex : "Ключови думи за документа (разделени със запетаи)", DlgDocMeDescr : "Описание на документа", DlgDocMeAuthor : "Автор", DlgDocMeCopy : "Авторски права", DlgDocPreview : "Изглед", // Templates Dialog Templates : "Шаблони", DlgTemplatesTitle : "Шаблони", DlgTemplatesSelMsg : "Изберете шаблон
(текущото съдържание на редактора ще бъде загубено):", DlgTemplatesLoading : "Зареждане на списъка с шаблоните. Моля изчакайте...", DlgTemplatesNoTpl : "(Няма дефинирани шаблони)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "За", DlgAboutBrowserInfoTab : "Информация за браузъра", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "версия", DlgAboutInfo : "За повече информация посетете" };FCKeditor/editor/lang/tr.js0000644000102600010270000004323711234071647015061 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Turkish language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Araç Çubuğunu Kapat", ToolbarExpand : "Araç Çubuğunu Aç", // Toolbar Items and Context Menu Save : "Kaydet", NewPage : "Yeni Sayfa", Preview : "Ön İzleme", Cut : "Kes", Copy : "Kopyala", Paste : "Yapıştır", PasteText : "Düzyazı Olarak Yapıştır", PasteWord : "Word'den Yapıştır", Print : "Yazdır", SelectAll : "Tümünü Seç", RemoveFormat : "Biçimi Kaldır", InsertLinkLbl : "Köprü", InsertLink : "Köprü Ekle/Düzenle", RemoveLink : "Köprü Kaldır", Anchor : "Çapa Ekle/Düzenle", InsertImageLbl : "Resim", InsertImage : "Resim Ekle/Düzenle", InsertFlashLbl : "Flash", InsertFlash : "Flash Ekle/Düzenle", InsertTableLbl : "Tablo", InsertTable : "Tablo Ekle/Düzenle", InsertLineLbl : "Satır", InsertLine : "Yatay Satır Ekle", InsertSpecialCharLbl: "Özel Karakter", InsertSpecialChar : "Özel Karakter Ekle", InsertSmileyLbl : "İfade", InsertSmiley : "İfade Ekle", About : "FCKeditor Hakkında", Bold : "Kalın", Italic : "İtalik", Underline : "Altı Çizgili", StrikeThrough : "Üstü Çizgili", Subscript : "Alt Simge", Superscript : "Üst Simge", LeftJustify : "Sola Dayalı", CenterJustify : "Ortalanmış", RightJustify : "Sağa Dayalı", BlockJustify : "İki Kenara Yaslanmış", DecreaseIndent : "Sekme Azalt", IncreaseIndent : "Sekme Arttır", Undo : "Geri Al", Redo : "Tekrarla", NumberedListLbl : "Numaralı Liste", NumberedList : "Numaralı Liste Ekle/Kaldır", BulletedListLbl : "Simgeli Liste", BulletedList : "Simgeli Liste Ekle/Kaldır", ShowTableBorders : "Tablo Kenarlarını Göster", ShowDetails : "Detayları Göster", Style : "Biçem", FontFormat : "Biçim", Font : "Yazı Türü", FontSize : "Boyut", TextColor : "Yazı Rengi", BGColor : "Arka Renk", Source : "Kaynak", Find : "Bul", Replace : "Değiştir", SpellCheck : "Yazım Denetimi", UniversalKeyboard : "Evrensel Klavye", PageBreakLbl : "Sayfa sonu", PageBreak : "Sayfa Sonu Ekle", Form : "Form", Checkbox : "Onay Kutusu", RadioButton : "Seçenek Düğmesi", TextField : "Metin Girişi", Textarea : "Çok Satırlı Metin", HiddenField : "Gizli Veri", Button : "Düğme", SelectionField : "Seçim Menüsü", ImageButton : "Resimli Düğme", FitWindow : "Düzenleyici boyutunu büyüt", // Context Menu EditLink : "Köprü Düzenle", CellCM : "Hücre", RowCM : "Satır", ColumnCM : "Sütun", InsertRow : "Satır Ekle", DeleteRows : "Satır Sil", InsertColumn : "Sütun Ekle", DeleteColumns : "Sütun Sil", InsertCell : "Hücre Ekle", DeleteCells : "Hücre Sil", MergeCells : "Hücreleri Birleştir", SplitCell : "Hücre Böl", TableDelete : "Tabloyu Sil", CellProperties : "Hücre Özellikleri", TableProperties : "Tablo Özellikleri", ImageProperties : "Resim Özellikleri", FlashProperties : "Flash Özellikleri", AnchorProp : "Çapa Özellikleri", ButtonProp : "Düğme Özellikleri", CheckboxProp : "Onay Kutusu Özellikleri", HiddenFieldProp : "Gizli Veri Özellikleri", RadioButtonProp : "Seçenek Düğmesi Özellikleri", ImageButtonProp : "Resimli Düğme Özellikleri", TextFieldProp : "Metin Girişi Özellikleri", SelectionFieldProp : "Seçim Menüsü Özellikleri", TextareaProp : "Çok Satırlı Metin Özellikleri", FormProp : "Form Özellikleri", FontFormats : "Normal;Biçimli;Adres;Başlık 1;Başlık 2;Başlık 3;Başlık 4;Başlık 5;Başlık 6;Paragraf (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML işleniyor. Lütfen bekleyin...", Done : "Bitti", PasteWordConfirm : "Yapıştırdığınız yazı Word'den gelmişe benziyor. Yapıştırmadan önce gereksiz eklentileri silmek ister misiniz?", NotCompatiblePaste : "Bu komut Internet Explorer 5.5 ve ileriki sürümleri için mevcuttur. Temizlenmeden yapıştırılmasını ister misiniz ?", UnknownToolbarItem : "Bilinmeyen araç çubugu öğesi \"%1\"", UnknownCommand : "Bilinmeyen komut \"%1\"", NotImplemented : "Komut uyarlanamadı", UnknownToolbarSet : "\"%1\" araç çubuğu öğesi mevcut değil", NoActiveX : "Kullandığınız tarayıcının güvenlik ayarları bazı özelliklerin kullanılmasını engelliyor. Bu özelliklerin çalışması için \"Run ActiveX controls and plug-ins (Activex ve eklentileri çalıştır)\" seçeneğinin aktif yapılması gerekiyor. Kullanılamayan eklentiler ve hatalar konusunda daha fazla bilgi sahibi olun.", BrowseServerBlocked : "Kaynak tarayıcısı açılamadı. Tüm \"popup blocker\" programlarının devre dışı olduğundan emin olun. (Yahoo toolbar, Msn toolbar, Google toolbar gibi)", DialogBlocked : "Diyalog açmak mümkün olmadı. Tüm \"Popup Blocker\" programlarının devre dışı olduğundan emin olun.", // Dialogs DlgBtnOK : "Tamam", DlgBtnCancel : "İptal", DlgBtnClose : "Kapat", DlgBtnBrowseServer : "Sunucuyu Gez", DlgAdvancedTag : "Gelişmiş", DlgOpOther : "", DlgInfoTab : "Bilgi", DlgAlertUrl : "Lütfen URL girin", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Kimlik", DlgGenLangDir : "Dil Yönü", DlgGenLangDirLtr : "Soldan Sağa (LTR)", DlgGenLangDirRtl : "Sağdan Sola (RTL)", DlgGenLangCode : "Dil Kodlaması", DlgGenAccessKey : "Erişim Tuşu", DlgGenName : "Ad", DlgGenTabIndex : "Sekme İndeksi", DlgGenLongDescr : "Uzun Tanımlı URL", DlgGenClass : "Biçem Sayfası Sınıfları", DlgGenTitle : "Danışma Başlığı", DlgGenContType : "Danışma İçerik Türü", DlgGenLinkCharset : "Bağlı Kaynak Karakter Gurubu", DlgGenStyle : "Biçem", // Image Dialog DlgImgTitle : "Resim Özellikleri", DlgImgInfoTab : "Resim Bilgisi", DlgImgBtnUpload : "Sunucuya Yolla", DlgImgURL : "URL", DlgImgUpload : "Karşıya Yükle", DlgImgAlt : "Alternatif Yazı", DlgImgWidth : "Genişlik", DlgImgHeight : "Yükseklik", DlgImgLockRatio : "Oranı Kilitle", DlgBtnResetSize : "Boyutu Başa Döndür", DlgImgBorder : "Kenar", DlgImgHSpace : "Yatay Boşluk", DlgImgVSpace : "Dikey Boşluk", DlgImgAlign : "Hizalama", DlgImgAlignLeft : "Sol", DlgImgAlignAbsBottom: "Tam Altı", DlgImgAlignAbsMiddle: "Tam Ortası", DlgImgAlignBaseline : "Taban Çizgisi", DlgImgAlignBottom : "Alt", DlgImgAlignMiddle : "Orta", DlgImgAlignRight : "Sağ", DlgImgAlignTextTop : "Yazı Tepeye", DlgImgAlignTop : "Tepe", DlgImgPreview : "Ön İzleme", DlgImgAlertUrl : "Lütfen resmin URL'sini yazınız", DlgImgLinkTab : "Köprü", // Flash Dialog DlgFlashTitle : "Flash Özellikleri", DlgFlashChkPlay : "Otomatik Oynat", DlgFlashChkLoop : "Döngü", DlgFlashChkMenu : "Flash Menüsünü Kullan", DlgFlashScale : "Boyutlandır", DlgFlashScaleAll : "Hepsini Göster", DlgFlashScaleNoBorder : "Kenar Yok", DlgFlashScaleFit : "Tam Sığdır", // Link Dialog DlgLnkWindowTitle : "Köprü", DlgLnkInfoTab : "Köprü Bilgisi", DlgLnkTargetTab : "Hedef", DlgLnkType : "Köprü Türü", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Bu sayfada çapa", DlgLnkTypeEMail : "E-Posta", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Çapa Seç", DlgLnkAnchorByName : "Çapa Adı ile", DlgLnkAnchorById : "Eleman Kimlik Numarası ile", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Posta Adresi", DlgLnkEMailSubject : "İleti Konusu", DlgLnkEMailBody : "İleti Gövdesi", DlgLnkUpload : "Karşıya Yükle", DlgLnkBtnUpload : "Sunucuya Gönder", DlgLnkTarget : "Hedef", DlgLnkTargetFrame : "<çerçeve>", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Yeni Pencere(_blank)", DlgLnkTargetParent : "Anne Pencere (_parent)", DlgLnkTargetSelf : "Kendi Penceresi (_self)", DlgLnkTargetTop : "En Üst Pencere (_top)", DlgLnkTargetFrameName : "Hedef Çerçeve Adı", DlgLnkPopWinName : "Yeni Açılan Pencere Adı", DlgLnkPopWinFeat : "Yeni Açılan Pencere Özellikleri", DlgLnkPopResize : "Boyutlandırılabilir", DlgLnkPopLocation : "Yer Çubuğu", DlgLnkPopMenu : "Menü Çubuğu", DlgLnkPopScroll : "Kaydırma Çubukları", DlgLnkPopStatus : "Durum Çubuğu", DlgLnkPopToolbar : "Araç Çubuğu", DlgLnkPopFullScrn : "Tam Ekran (IE)", DlgLnkPopDependent : "Bağımlı (Netscape)", DlgLnkPopWidth : "Genişlik", DlgLnkPopHeight : "Yükseklik", DlgLnkPopLeft : "Sola Göre Konum", DlgLnkPopTop : "Yukarıya Göre Konum", DlnLnkMsgNoUrl : "Lütfen köprü URL'sini yazın", DlnLnkMsgNoEMail : "Lütfen E-posta adresini yazın", DlnLnkMsgNoAnchor : "Lütfen bir çapa seçin", DlnLnkMsgInvPopName : "Açılır pencere adı abecesel bir karakterle başlamalı ve boşluk içermemelidir", // Color Dialog DlgColorTitle : "Renk Seç", DlgColorBtnClear : "Temizle", DlgColorHighlight : "Vurgula", DlgColorSelected : "Seçilmiş", // Smiley Dialog DlgSmileyTitle : "İfade Ekle", // Special Character Dialog DlgSpecialCharTitle : "Özel Karakter Seç", // Table Dialog DlgTableTitle : "Tablo Özellikleri", DlgTableRows : "Satırlar", DlgTableColumns : "Sütunlar", DlgTableBorder : "Kenar Kalınlığı", DlgTableAlign : "Hizalama", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Sol", DlgTableAlignCenter : "Merkez", DlgTableAlignRight : "Sağ", DlgTableWidth : "Genişlik", DlgTableWidthPx : "piksel", DlgTableWidthPc : "yüzde", DlgTableHeight : "Yükseklik", DlgTableCellSpace : "Izgara kalınlığı", DlgTableCellPad : "Izgara yazı arası", DlgTableCaption : "Başlık", DlgTableSummary : "Özet", // Table Cell Dialog DlgCellTitle : "Hücre Özellikleri", DlgCellWidth : "Genişlik", DlgCellWidthPx : "piksel", DlgCellWidthPc : "yüzde", DlgCellHeight : "Yükseklik", DlgCellWordWrap : "Sözcük Kaydır", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Evet", DlgCellWordWrapNo : "Hayır", DlgCellHorAlign : "Yatay Hizalama", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Sol", DlgCellHorAlignCenter : "Merkez", DlgCellHorAlignRight: "Sağ", DlgCellVerAlign : "Dikey Hizalama", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Tepe", DlgCellVerAlignMiddle : "Orta", DlgCellVerAlignBottom : "Alt", DlgCellVerAlignBaseline : "Taban Çizgisi", DlgCellRowSpan : "Satır Kapla", DlgCellCollSpan : "Sütun Kapla", DlgCellBackColor : "Arka Plan Rengi", DlgCellBorderColor : "Kenar Rengi", DlgCellBtnSelect : "Seç...", // Find Dialog DlgFindTitle : "Bul", DlgFindFindBtn : "Bul", DlgFindNotFoundMsg : "Belirtilen yazı bulunamadı.", // Replace Dialog DlgReplaceTitle : "Değiştir", DlgReplaceFindLbl : "Aranan:", DlgReplaceReplaceLbl : "Bununla değiştir:", DlgReplaceCaseChk : "Büyük/küçük harf duyarlı", DlgReplaceReplaceBtn : "Değiştir", DlgReplaceReplAllBtn : "Tümünü Değiştir", DlgReplaceWordChk : "Kelimenin tamamı uysun", // Paste Operations / Dialog PasteErrorCut : "Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kesme işlemine izin vermiyor. İşlem için (Ctrl+X) tuşlarını kullanın.", PasteErrorCopy : "Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kopyalama işlemine izin vermiyor. İşlem için (Ctrl+C) tuşlarını kullanın.", PasteAsText : "Düz Metin Olarak Yapıştır", PasteFromWord : "Word'den yapıştır", DlgPasteMsg2 : "Lütfen aşağıdaki kutunun içine yapıştırın. (Ctrl+V) ve Tamam butonunu tıklayın.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Yazı Tipi tanımlarını yoksay", DlgPasteRemoveStyles : "Biçem Tanımlarını çıkar", DlgPasteCleanBox : "Temizlik Kutusu", // Color Picker ColorAutomatic : "Otomatik", ColorMoreColors : "Diğer renkler...", // Document Properties DocProps : "Belge Özellikleri", // Anchor Dialog DlgAnchorTitle : "Çapa Özellikleri", DlgAnchorName : "Çapa Adı", DlgAnchorErrorName : "Lütfen çapa için ad giriniz", // Speller Pages Dialog DlgSpellNotInDic : "Sözlükte Yok", DlgSpellChangeTo : "Şuna değiştir:", DlgSpellBtnIgnore : "Yoksay", DlgSpellBtnIgnoreAll : "Tümünü Yoksay", DlgSpellBtnReplace : "Değiştir", DlgSpellBtnReplaceAll : "Tümünü Değiştir", DlgSpellBtnUndo : "Geri Al", DlgSpellNoSuggestions : "- Öneri Yok -", DlgSpellProgress : "Yazım denetimi işlemde...", DlgSpellNoMispell : "Yazım denetimi tamamlandı: Yanlış yazıma rastlanmadı", DlgSpellNoChanges : "Yazım denetimi tamamlandı: Hiçbir kelime değiştirilmedi", DlgSpellOneChange : "Yazım denetimi tamamlandı: Bir kelime değiştirildi", DlgSpellManyChanges : "Yazım denetimi tamamlandı: %1 kelime değiştirildi", IeSpellDownload : "Yazım denetimi yüklenmemiş. Şimdi yüklemek ister misiniz?", // Button Dialog DlgButtonText : "Metin (Değer)", DlgButtonType : "Tip", DlgButtonTypeBtn : "Düğme", DlgButtonTypeSbm : "Gönder", DlgButtonTypeRst : "Sıfırla", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Ad", DlgCheckboxValue : "Değer", DlgCheckboxSelected : "Seçili", // Form Dialog DlgFormName : "Ad", DlgFormAction : "İşlem", DlgFormMethod : "Yöntem", // Select Field Dialog DlgSelectName : "Ad", DlgSelectValue : "Değer", DlgSelectSize : "Boyut", DlgSelectLines : "satır", DlgSelectChkMulti : "Çoklu seçime izin ver", DlgSelectOpAvail : "Mevcut Seçenekler", DlgSelectOpText : "Metin", DlgSelectOpValue : "Değer", DlgSelectBtnAdd : "Ekle", DlgSelectBtnModify : "Düzenle", DlgSelectBtnUp : "Yukarı", DlgSelectBtnDown : "Aşağı", DlgSelectBtnSetValue : "Seçili değer olarak ata", DlgSelectBtnDelete : "Sil", // Textarea Dialog DlgTextareaName : "Ad", DlgTextareaCols : "Sütunlar", DlgTextareaRows : "Satırlar", // Text Field Dialog DlgTextName : "Ad", DlgTextValue : "Değer", DlgTextCharWidth : "Karakter Genişliği", DlgTextMaxChars : "En Fazla Karakter", DlgTextType : "Tür", DlgTextTypeText : "Metin", DlgTextTypePass : "Parola", // Hidden Field Dialog DlgHiddenName : "Ad", DlgHiddenValue : "Değer", // Bulleted List Dialog BulletedListProp : "Simgeli Liste Özellikleri", NumberedListProp : "Numaralı Liste Özellikleri", DlgLstStart : "Başlangıç", DlgLstType : "Tip", DlgLstTypeCircle : "Çember", DlgLstTypeDisc : "Disk", DlgLstTypeSquare : "Kare", DlgLstTypeNumbers : "Sayılar (1, 2, 3)", DlgLstTypeLCase : "Küçük Harfler (a, b, c)", DlgLstTypeUCase : "Büyük Harfler (A, B, C)", DlgLstTypeSRoman : "Küçük Romen Rakamları (i, ii, iii)", DlgLstTypeLRoman : "Büyük Romen Rakamları (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Genel", DlgDocBackTab : "Arka Plan", DlgDocColorsTab : "Renkler ve Kenar Boşlukları", DlgDocMetaTab : "Tanım Bilgisi (Meta)", DlgDocPageTitle : "Sayfa Başlığı", DlgDocLangDir : "Dil Yönü", DlgDocLangDirLTR : "Soldan Sağa (LTR)", DlgDocLangDirRTL : "Sağdan Sola (RTL)", DlgDocLangCode : "Dil Kodu", DlgDocCharSet : "Karakter Kümesi Kodlaması", DlgDocCharSetCE : "Orta Avrupa", DlgDocCharSetCT : "Geleneksel Çince (Big5)", DlgDocCharSetCR : "Kiril", DlgDocCharSetGR : "Yunanca", DlgDocCharSetJP : "Japonca", DlgDocCharSetKR : "Korece", DlgDocCharSetTR : "Türkçe", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Batı Avrupa", DlgDocCharSetOther : "Diğer Karakter Kümesi Kodlaması", DlgDocDocType : "Belge Türü Başlığı", DlgDocDocTypeOther : "Diğer Belge Türü Başlığı", DlgDocIncXHTML : "XHTML Bildirimlerini Dahil Et", DlgDocBgColor : "Arka Plan Rengi", DlgDocBgImage : "Arka Plan Resim URLsi", DlgDocBgNoScroll : "Sabit Arka Plan", DlgDocCText : "Metin", DlgDocCLink : "Köprü", DlgDocCVisited : "Ziyaret Edilmiş Köprü", DlgDocCActive : "Etkin Köprü", DlgDocMargins : "Kenar Boşlukları", DlgDocMaTop : "Tepe", DlgDocMaLeft : "Sol", DlgDocMaRight : "Sağ", DlgDocMaBottom : "Alt", DlgDocMeIndex : "Belge Dizinleme Anahtar Kelimeleri (virgülle ayrılmış)", DlgDocMeDescr : "Belge Tanımı", DlgDocMeAuthor : "Yazar", DlgDocMeCopy : "Telif", DlgDocPreview : "Ön İzleme", // Templates Dialog Templates : "Şablonlar", DlgTemplatesTitle : "İçerik Şablonları", DlgTemplatesSelMsg : "Düzenleyicide açmak için lütfen bir şablon seçin.
(hali hazırdaki içerik kaybolacaktır.):", DlgTemplatesLoading : "Şablon listesi yüklenmekte. Lütfen bekleyiniz...", DlgTemplatesNoTpl : "(Belirli bir şablon seçilmedi)", DlgTemplatesReplace : "Mevcut içerik ile değiştir", // About Dialog DlgAboutAboutTab : "Hakkında", DlgAboutBrowserInfoTab : "Gezgin Bilgisi", DlgAboutLicenseTab : "Lisans", DlgAboutVersion : "sürüm", DlgAboutInfo : "Daha fazla bilgi için:" };FCKeditor/editor/lang/hi.js0000644000102600010270000006437611234071613015034 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Hindi language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "टूलबार सिमटायें", ToolbarExpand : "टूलबार का विस्तार करें", // Toolbar Items and Context Menu Save : "सेव", NewPage : "नया पेज", Preview : "प्रीव्यू", Cut : "कट", Copy : "कॉपी", Paste : "पेस्ट", PasteText : "पेस्ट (सादा टॅक्स्ट)", PasteWord : "पेस्ट (वर्ड से)", Print : "प्रिन्ट", SelectAll : "सब सॅलॅक्ट करें", RemoveFormat : "फ़ॉर्मैट हटायें", InsertLinkLbl : "लिंक", InsertLink : "लिंक इन्सर्ट/संपादन", RemoveLink : "लिंक हटायें", Anchor : "ऐंकर इन्सर्ट/संपादन", InsertImageLbl : "तस्वीर", InsertImage : "तस्वीर इन्सर्ट/संपादन", InsertFlashLbl : "फ़्लैश", InsertFlash : "फ़्लैश इन्सर्ट/संपादन", InsertTableLbl : "टेबल", InsertTable : "टेबल इन्सर्ट/संपादन", InsertLineLbl : "रेखा", InsertLine : "हॉरिज़ॉन्टल रेखा इन्सर्ट करें", InsertSpecialCharLbl: "विशेष करॅक्टर", InsertSpecialChar : "विशेष करॅक्टर इन्सर्ट करें", InsertSmileyLbl : "स्माइली", InsertSmiley : "स्माइली इन्सर्ट करें", About : "FCKeditor के बारे में", Bold : "बोल्ड", Italic : "इटैलिक", Underline : "रेखांकण", StrikeThrough : "स्ट्राइक थ्रू", Subscript : "अधोलेख", Superscript : "अभिलेख", LeftJustify : "बायीं तरफ", CenterJustify : "बीच में", RightJustify : "दायीं तरफ", BlockJustify : "ब्लॉक जस्टीफ़ाई", DecreaseIndent : "इन्डॅन्ट कम करें", IncreaseIndent : "इन्डॅन्ट बढ़ायें", Undo : "अन्डू", Redo : "रीडू", NumberedListLbl : "अंकीय सूची", NumberedList : "अंकीय सूची इन्सर्ट/संपादन", BulletedListLbl : "बुलॅट सूची", BulletedList : "बुलॅट सूची इन्सर्ट/संपादन", ShowTableBorders : "टेबल बॉर्डरयें दिखायें", ShowDetails : "ज्यादा दिखायें", Style : "स्टाइल", FontFormat : "फ़ॉर्मैट", Font : "फ़ॉन्ट", FontSize : "साइज़", TextColor : "टेक्स्ट रंग", BGColor : "बैक्ग्राउन्ड रंग", Source : "सोर्स", Find : "खोजें", Replace : "रीप्लेस", SpellCheck : "वर्तनी (स्पेलिंग) जाँच", UniversalKeyboard : "यूनीवर्सल कीबोर्ड", PageBreakLbl : "पेज ब्रेक", PageBreak : "पेज ब्रेक इन्सर्ट् करें", Form : "फ़ॉर्म", Checkbox : "चॅक बॉक्स", RadioButton : "रेडिओ बटन", TextField : "टेक्स्ट फ़ील्ड", Textarea : "टेक्स्ट एरिया", HiddenField : "गुप्त फ़ील्ड", Button : "बटन", SelectionField : "चुनाव फ़ील्ड", ImageButton : "तस्वीर बटन", FitWindow : "एडिटर साइज़ को चरम सीमा तक बढ़ायें", // Context Menu EditLink : "लिंक संपादन", CellCM : "खाना", RowCM : "पंक्ति", ColumnCM : "कालम", InsertRow : "पंक्ति इन्सर्ट करें", DeleteRows : "पंक्तियाँ डिलीट करें", InsertColumn : "कॉलम इन्सर्ट करें", DeleteColumns : "कॉलम डिलीट करें", InsertCell : "सॅल इन्सर्ट करें", DeleteCells : "सॅल डिलीट करें", MergeCells : "सॅल मिलायें", SplitCell : "सॅल अलग करें", TableDelete : "टेबल डिलीट करें", CellProperties : "सॅल प्रॉपर्टीज़", TableProperties : "टेबल प्रॉपर्टीज़", ImageProperties : "तस्वीर प्रॉपर्टीज़", FlashProperties : "फ़्लैश प्रॉपर्टीज़", AnchorProp : "ऐंकर प्रॉपर्टीज़", ButtonProp : "बटन प्रॉपर्टीज़", CheckboxProp : "चॅक बॉक्स प्रॉपर्टीज़", HiddenFieldProp : "गुप्त फ़ील्ड प्रॉपर्टीज़", RadioButtonProp : "रेडिओ बटन प्रॉपर्टीज़", ImageButtonProp : "तस्वीर बटन प्रॉपर्टीज़", TextFieldProp : "टेक्स्ट फ़ील्ड प्रॉपर्टीज़", SelectionFieldProp : "चुनाव फ़ील्ड प्रॉपर्टीज़", TextareaProp : "टेक्स्त एरिया प्रॉपर्टीज़", FormProp : "फ़ॉर्म प्रॉपर्टीज़", FontFormats : "साधारण;फ़ॉर्मैटॅड;पता;शीर्षक 1;शीर्षक 2;शीर्षक 3;शीर्षक 4;शीर्षक 5;शीर्षक 6;शीर्षक (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML प्रोसॅस हो रहा है। ज़रा ठहरें...", Done : "पूरा हुआ", PasteWordConfirm : "आप जो टेक्स्ट पेस्ट करना चाहते हैं, वह वर्ड से कॉपी किया हुआ लग रहा है। क्या पेस्ट करने से पहले आप इसे साफ़ करना चाहेंगे?", NotCompatiblePaste : "यह कमांड इन्टरनॅट एक्स्प्लोरर(Internet Explorer) 5.5 या उसके बाद के वर्ज़न के लिए ही उपलब्ध है। क्या आप बिना साफ़ किए पेस्ट करना चाहेंगे?", UnknownToolbarItem : "अनजान टूलबार आइटम \"%1\"", UnknownCommand : "अनजान कमान्ड \"%1\"", NotImplemented : "कमान्ड इम्प्लीमॅन्ट नहीं किया गया है", UnknownToolbarSet : "टूलबार सॅट \"%1\" उपलब्ध नहीं है", NoActiveX : "आपके ब्राउज़र् की सुरक्शा सेटिंग्स् एडिटर की कुछ् फ़ीचरों को सीमित कर् सकती हैं। क्रिपया \"Run ActiveX controls and plug-ins\" विकल्प को एनेबल करें. आपको एरर्स् और गायब फ़ीचर्स् का अनुभव हो सकता है।", BrowseServerBlocked : "रिसोर्सेज़ ब्राउज़र् नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को डिसेबल करें।", DialogBlocked : "डायलग विन्डो नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को डिसेबल करें।", // Dialogs DlgBtnOK : "ठीक है", DlgBtnCancel : "रद्द करें", DlgBtnClose : "बन्द करें", DlgBtnBrowseServer : "सर्वर ब्राउज़ करें", DlgAdvancedTag : "ऍड्वान्स्ड", DlgOpOther : "<अन्य>", DlgInfoTab : "सूचना", DlgAlertUrl : "URL इन्सर्ट करें", // General Dialogs Labels DlgGenNotSet : "<सॅट नहीं>", DlgGenId : "Id", DlgGenLangDir : "भाषा लिखने की दिशा", DlgGenLangDirLtr : "बायें से दायें (LTR)", DlgGenLangDirRtl : "दायें से बायें (RTL)", DlgGenLangCode : "भाषा कोड", DlgGenAccessKey : "ऍक्सॅस की", DlgGenName : "नाम", DlgGenTabIndex : "टैब इन्डॅक्स", DlgGenLongDescr : "अधिक विवरण के लिए URL", DlgGenClass : "स्टाइल-शीट क्लास", DlgGenTitle : "परामर्श शीर्शक", DlgGenContType : "परामर्श कन्टॅन्ट प्रकार", DlgGenLinkCharset : "लिंक रिसोर्स करॅक्टर सॅट", DlgGenStyle : "स्टाइल", // Image Dialog DlgImgTitle : "तस्वीर प्रॉपर्टीज़", DlgImgInfoTab : "तस्वीर की जानकारी", DlgImgBtnUpload : "इसे सर्वर को भेजें", DlgImgURL : "URL", DlgImgUpload : "अपलोड", DlgImgAlt : "वैकल्पिक टेक्स्ट", DlgImgWidth : "चौड़ाई", DlgImgHeight : "ऊँचाई", DlgImgLockRatio : "लॉक अनुपात", DlgBtnResetSize : "रीसॅट साइज़", DlgImgBorder : "बॉर्डर", DlgImgHSpace : "हॉरिज़ॉन्टल स्पेस", DlgImgVSpace : "वर्टिकल स्पेस", DlgImgAlign : "ऍलाइन", DlgImgAlignLeft : "दायें", DlgImgAlignAbsBottom: "Abs नीचे", DlgImgAlignAbsMiddle: "Abs ऊपर", DlgImgAlignBaseline : "मूल रेखा", DlgImgAlignBottom : "नीचे", DlgImgAlignMiddle : "मध्य", DlgImgAlignRight : "दायें", DlgImgAlignTextTop : "टेक्स्ट ऊपर", DlgImgAlignTop : "ऊपर", DlgImgPreview : "प्रीव्यू", DlgImgAlertUrl : "तस्वीर का URL टाइप करें ", DlgImgLinkTab : "लिंक", // Flash Dialog DlgFlashTitle : "फ़्लैश प्रॉपर्टीज़", DlgFlashChkPlay : "ऑटो प्ले", DlgFlashChkLoop : "लूप", DlgFlashChkMenu : "फ़्लैश मॅन्यू का प्रयोग करें", DlgFlashScale : "स्केल", DlgFlashScaleAll : "सभी दिखायें", DlgFlashScaleNoBorder : "कोई बॉर्डर नहीं", DlgFlashScaleFit : "बिल्कुल फ़िट", // Link Dialog DlgLnkWindowTitle : "लिंक", DlgLnkInfoTab : "लिंक ", DlgLnkTargetTab : "टार्गेट", DlgLnkType : "लिंक प्रकार", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "इस पेज का ऐंकर", DlgLnkTypeEMail : "ई-मेल", DlgLnkProto : "प्रोटोकॉल", DlgLnkProtoOther : "<अन्य>", DlgLnkURL : "URL", DlgLnkAnchorSel : "ऐंकर चुनें", DlgLnkAnchorByName : "ऐंकर नाम से", DlgLnkAnchorById : "ऍलीमॅन्ट Id से", DlgLnkNoAnchors : "<डॉक्यूमॅन्ट में ऐंकर्स की संख्या>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "ई-मेल पता", DlgLnkEMailSubject : "संदेश विषय", DlgLnkEMailBody : "संदेश", DlgLnkUpload : "अपलोड", DlgLnkBtnUpload : "इसे सर्वर को भेजें", DlgLnkTarget : "टार्गेट", DlgLnkTargetFrame : "<फ़्रेम>", DlgLnkTargetPopup : "<पॉप-अप विन्डो>", DlgLnkTargetBlank : "नया विन्डो (_blank)", DlgLnkTargetParent : "मूल विन्डो (_parent)", DlgLnkTargetSelf : "इसी विन्डो (_self)", DlgLnkTargetTop : "शीर्ष विन्डो (_top)", DlgLnkTargetFrameName : "टार्गेट फ़्रेम का नाम", DlgLnkPopWinName : "पॉप-अप विन्डो का नाम", DlgLnkPopWinFeat : "पॉप-अप विन्डो फ़ीचर्स", DlgLnkPopResize : "साइज़ बदला जा सकता है", DlgLnkPopLocation : "लोकेशन बार", DlgLnkPopMenu : "मॅन्यू बार", DlgLnkPopScroll : "स्क्रॉल बार", DlgLnkPopStatus : "स्टेटस बार", DlgLnkPopToolbar : "टूल बार", DlgLnkPopFullScrn : "फ़ुल स्क्रीन (IE)", DlgLnkPopDependent : "डिपेन्डॅन्ट (Netscape)", DlgLnkPopWidth : "चौड़ाई", DlgLnkPopHeight : "ऊँचाई", DlgLnkPopLeft : "बायीं तरफ", DlgLnkPopTop : "दायीं तरफ", DlnLnkMsgNoUrl : "लिंक URL टाइप करें", DlnLnkMsgNoEMail : "ई-मेल पता टाइप करें", DlnLnkMsgNoAnchor : "ऐंकर चुनें", DlnLnkMsgInvPopName : "पॉप-अप का नाम अल्फाबेट से शुरू होना चाहिये और उसमें स्पेस नहीं होने चाहिए", // Color Dialog DlgColorTitle : "रंग चुनें", DlgColorBtnClear : "साफ़ करें", DlgColorHighlight : "हाइलाइट", DlgColorSelected : "सॅलॅक्टॅड", // Smiley Dialog DlgSmileyTitle : "स्माइली इन्सर्ट करें", // Special Character Dialog DlgSpecialCharTitle : "विशेष करॅक्टर चुनें", // Table Dialog DlgTableTitle : "टेबल प्रॉपर्टीज़", DlgTableRows : "पंक्तियाँ", DlgTableColumns : "कॉलम", DlgTableBorder : "बॉर्डर साइज़", DlgTableAlign : "ऍलाइन्मॅन्ट", DlgTableAlignNotSet : "<सॅट नहीं>", DlgTableAlignLeft : "दायें", DlgTableAlignCenter : "बीच में", DlgTableAlignRight : "बायें", DlgTableWidth : "चौड़ाई", DlgTableWidthPx : "पिक्सॅल", DlgTableWidthPc : "प्रतिशत", DlgTableHeight : "ऊँचाई", DlgTableCellSpace : "सॅल अंतर", DlgTableCellPad : "सॅल पैडिंग", DlgTableCaption : "शीर्षक", DlgTableSummary : "सारांश", // Table Cell Dialog DlgCellTitle : "सॅल प्रॉपर्टीज़", DlgCellWidth : "चौड़ाई", DlgCellWidthPx : "पिक्सॅल", DlgCellWidthPc : "प्रतिशत", DlgCellHeight : "ऊँचाई", DlgCellWordWrap : "वर्ड रैप", DlgCellWordWrapNotSet : "<सॅट नहीं>", DlgCellWordWrapYes : "हाँ", DlgCellWordWrapNo : "नहीं", DlgCellHorAlign : "हॉरिज़ॉन्टल ऍलाइन्मॅन्ट", DlgCellHorAlignNotSet : "<सॅट नहीं>", DlgCellHorAlignLeft : "दायें", DlgCellHorAlignCenter : "बीच में", DlgCellHorAlignRight: "बायें", DlgCellVerAlign : "वर्टिकल ऍलाइन्मॅन्ट", DlgCellVerAlignNotSet : "<सॅट नहीं>", DlgCellVerAlignTop : "ऊपर", DlgCellVerAlignMiddle : "मध्य", DlgCellVerAlignBottom : "नीचे", DlgCellVerAlignBaseline : "मूलरेखा", DlgCellRowSpan : "पंक्ति स्पैन", DlgCellCollSpan : "कॉलम स्पैन", DlgCellBackColor : "बैक्ग्राउन्ड रंग", DlgCellBorderColor : "बॉर्डर का रंग", DlgCellBtnSelect : "चुनें...", // Find Dialog DlgFindTitle : "खोजें", DlgFindFindBtn : "खोजें", DlgFindNotFoundMsg : "आपके द्वारा दिया गया टेक्स्ट नहीं मिला", // Replace Dialog DlgReplaceTitle : "रिप्लेस", DlgReplaceFindLbl : "यह खोजें:", DlgReplaceReplaceLbl : "इससे रिप्लेस करें:", DlgReplaceCaseChk : "केस मिलायें", DlgReplaceReplaceBtn : "रिप्लेस", DlgReplaceReplAllBtn : "सभी रिप्लेस करें", DlgReplaceWordChk : "पूरा शब्द मिलायें", // Paste Operations / Dialog PasteErrorCut : "आपके ब्राउज़र की सुरक्षा सॅटिन्ग्स ने कट करने की अनुमति नहीं प्रदान की है। (Ctrl+X) का प्रयोग करें।", PasteErrorCopy : "आपके ब्राआउज़र की सुरक्षा सॅटिन्ग्स ने कॉपी करने की अनुमति नहीं प्रदान की है। (Ctrl+C) का प्रयोग करें।", PasteAsText : "पेस्ट (सादा टॅक्स्ट)", PasteFromWord : "पेस्ट (वर्ड से)", DlgPasteMsg2 : "Ctrl+V का प्रयोग करके पेस्ट करें और ठीक है करें.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "फ़ॉन्ट परिभाषा निकालें", DlgPasteRemoveStyles : "स्टाइल परिभाषा निकालें", DlgPasteCleanBox : "बॉक्स साफ़ करें", // Color Picker ColorAutomatic : "ऑटोमैटिक", ColorMoreColors : "और रंग...", // Document Properties DocProps : "डॉक्यूमॅन्ट प्रॉपर्टीज़", // Anchor Dialog DlgAnchorTitle : "ऐंकर प्रॉपर्टीज़", DlgAnchorName : "ऐंकर का नाम", DlgAnchorErrorName : "ऐंकर का नाम टाइप करें", // Speller Pages Dialog DlgSpellNotInDic : "शब्दकोश में नहीं", DlgSpellChangeTo : "इसमें बदलें", DlgSpellBtnIgnore : "इग्नोर", DlgSpellBtnIgnoreAll : "सभी इग्नोर करें", DlgSpellBtnReplace : "रिप्लेस", DlgSpellBtnReplaceAll : "सभी रिप्लेस करें", DlgSpellBtnUndo : "अन्डू", DlgSpellNoSuggestions : "- कोई सुझाव नहीं -", DlgSpellProgress : "वर्तनी की जाँच (स्पॅल-चॅक) जारी है...", DlgSpellNoMispell : "वर्तनी की जाँच : कोई गलत वर्तनी (स्पॅलिंग) नहीं पाई गई", DlgSpellNoChanges : "वर्तनी की जाँच :कोई शब्द नहीं बदला गया", DlgSpellOneChange : "वर्तनी की जाँच : एक शब्द बदला गया", DlgSpellManyChanges : "वर्तनी की जाँच : %1 शब्द बदले गये", IeSpellDownload : "स्पॅल-चॅकर इन्स्टाल नहीं किया गया है। क्या आप इसे डा‌उनलोड करना चाहेंगे?", // Button Dialog DlgButtonText : "टेक्स्ट (वैल्यू)", DlgButtonType : "प्रकार", DlgButtonTypeBtn : "बटन", DlgButtonTypeSbm : "सब्मिट", DlgButtonTypeRst : "रिसेट", // Checkbox and Radio Button Dialogs DlgCheckboxName : "नाम", DlgCheckboxValue : "वैल्यू", DlgCheckboxSelected : "सॅलॅक्टॅड", // Form Dialog DlgFormName : "नाम", DlgFormAction : "ऍक्शन", DlgFormMethod : "तरीका", // Select Field Dialog DlgSelectName : "नाम", DlgSelectValue : "वैल्यू", DlgSelectSize : "साइज़", DlgSelectLines : "पंक्तियाँ", DlgSelectChkMulti : "एक से ज्यादा विकल्प चुनने दें", DlgSelectOpAvail : "उपलब्ध विकल्प", DlgSelectOpText : "टेक्स्ट", DlgSelectOpValue : "वैल्यू", DlgSelectBtnAdd : "जोड़ें", DlgSelectBtnModify : "बदलें", DlgSelectBtnUp : "ऊपर", DlgSelectBtnDown : "नीचे", DlgSelectBtnSetValue : "चुनी गई वैल्यू सॅट करें", DlgSelectBtnDelete : "डिलीट", // Textarea Dialog DlgTextareaName : "नाम", DlgTextareaCols : "कॉलम", DlgTextareaRows : "पंक्तियां", // Text Field Dialog DlgTextName : "नाम", DlgTextValue : "वैल्यू", DlgTextCharWidth : "करॅक्टर की चौढ़ाई", DlgTextMaxChars : "अधिकतम करॅक्टर", DlgTextType : "टाइप", DlgTextTypeText : "टेक्स्ट", DlgTextTypePass : "पास्वर्ड", // Hidden Field Dialog DlgHiddenName : "नाम", DlgHiddenValue : "वैल्यू", // Bulleted List Dialog BulletedListProp : "बुलॅट सूची प्रॉपर्टीज़", NumberedListProp : "अंकीय सूची प्रॉपर्टीज़", DlgLstStart : "प्रारम्भ", DlgLstType : "प्रकार", DlgLstTypeCircle : "गोल", DlgLstTypeDisc : "डिस्क", 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 : "आम", DlgDocBackTab : "बैक्ग्राउन्ड", DlgDocColorsTab : "रंग और मार्जिन", DlgDocMetaTab : "मॅटाडेटा", DlgDocPageTitle : "पेज शीर्षक", DlgDocLangDir : "भाषा लिखने की दिशा", DlgDocLangDirLTR : "बायें से दायें (LTR)", DlgDocLangDirRTL : "दायें से बायें (RTL)", DlgDocLangCode : "भाषा कोड", DlgDocCharSet : "करेक्टर सॅट ऍन्कोडिंग", DlgDocCharSetCE : "मध्य यूरोपीय (Central European)", DlgDocCharSetCT : "चीनी (Chinese Traditional Big5)", DlgDocCharSetCR : "सिरीलिक (Cyrillic)", DlgDocCharSetGR : "यवन (Greek)", DlgDocCharSetJP : "जापानी (Japanese)", DlgDocCharSetKR : "कोरीयन (Korean)", DlgDocCharSetTR : "तुर्की (Turkish)", DlgDocCharSetUN : "यूनीकोड (UTF-8)", DlgDocCharSetWE : "पश्चिम यूरोपीय (Western European)", DlgDocCharSetOther : "अन्य करेक्टर सॅट ऍन्कोडिंग", DlgDocDocType : "डॉक्यूमॅन्ट प्रकार शीर्षक", DlgDocDocTypeOther : "अन्य डॉक्यूमॅन्ट प्रकार शीर्षक", DlgDocIncXHTML : "XHTML सूचना सम्मिलित करें", DlgDocBgColor : "बैक्ग्राउन्ड रंग", DlgDocBgImage : "बैक्ग्राउन्ड तस्वीर URL", DlgDocBgNoScroll : "स्क्रॉल न करने वाला बैक्ग्राउन्ड", DlgDocCText : "टेक्स्ट", DlgDocCLink : "लिंक", DlgDocCVisited : "विज़िट किया गया लिंक", DlgDocCActive : "सक्रिय लिंक", DlgDocMargins : "पेज मार्जिन", DlgDocMaTop : "ऊपर", DlgDocMaLeft : "बायें", DlgDocMaRight : "दायें", DlgDocMaBottom : "नीचे", DlgDocMeIndex : "डॉक्युमॅन्ट इन्डेक्स संकेतशब्द (अल्पविराम से अलग करें)", DlgDocMeDescr : "डॉक्यूमॅन्ट करॅक्टरन", DlgDocMeAuthor : "लेखक", DlgDocMeCopy : "कॉपीराइट", DlgDocPreview : "प्रीव्यू", // Templates Dialog Templates : "टॅम्प्लेट", DlgTemplatesTitle : "कन्टेन्ट टॅम्प्लेट", DlgTemplatesSelMsg : "ऍडिटर में ओपन करने हेतु टॅम्प्लेट चुनें(वर्तमान कन्टॅन्ट सेव नहीं होंगे):", DlgTemplatesLoading : "टॅम्प्लेट सूची लोड की जा रही है। ज़रा ठहरें...", DlgTemplatesNoTpl : "(कोई टॅम्प्लेट डिफ़ाइन नहीं किया गया है)", DlgTemplatesReplace : "मूल शब्दों को बदलें", // About Dialog DlgAboutAboutTab : "FCKEditor के बारे में", DlgAboutBrowserInfoTab : "ब्राउज़र के बारे में", DlgAboutLicenseTab : "लाइसैन्स", DlgAboutVersion : "वर्ज़न", DlgAboutInfo : "अधिक जानकारी के लिये यहाँ जायें:" };FCKeditor/editor/lang/gl.js0000644000102600010270000004415611234071610015025 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Galician language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Ocultar Ferramentas", ToolbarExpand : "Mostrar Ferramentas", // Toolbar Items and Context Menu Save : "Gardar", NewPage : "Nova Páxina", Preview : "Vista Previa", Cut : "Cortar", Copy : "Copiar", Paste : "Pegar", PasteText : "Pegar como texto plano", PasteWord : "Pegar dende Word", Print : "Imprimir", SelectAll : "Seleccionar todo", RemoveFormat : "Eliminar Formato", InsertLinkLbl : "Ligazón", InsertLink : "Inserir/Editar Ligazón", RemoveLink : "Eliminar Ligazón", 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", InsertLine : "Inserir Liña Horizontal", InsertSpecialCharLbl: "Carácter Special", InsertSpecialChar : "Inserir Carácter Especial", InsertSmileyLbl : "Smiley", InsertSmiley : "Inserir Smiley", About : "Acerca de FCKeditor", Bold : "Negrita", Italic : "Cursiva", Underline : "Sub-raiado", StrikeThrough : "Tachado", Subscript : "Subíndice", Superscript : "Superíndice", LeftJustify : "Aliñar á Esquerda", CenterJustify : "Centrado", RightJustify : "Aliñar á Dereita", BlockJustify : "Xustificado", DecreaseIndent : "Disminuir Sangría", IncreaseIndent : "Aumentar Sangría", Undo : "Desfacer", Redo : "Refacer", NumberedListLbl : "Lista Numerada", NumberedList : "Inserir/Eliminar Lista Numerada", BulletedListLbl : "Marcas", BulletedList : "Inserir/Eliminar Marcas", ShowTableBorders : "Mostrar Bordes das Táboas", ShowDetails : "Mostrar Marcas Parágrafo", Style : "Estilo", FontFormat : "Formato", Font : "Tipo", FontSize : "Tamaño", TextColor : "Cor do Texto", BGColor : "Cor do Fondo", Source : "Código Fonte", Find : "Procurar", Replace : "Substituir", SpellCheck : "Corrección Ortográfica", UniversalKeyboard : "Teclado Universal", PageBreakLbl : "Salto de Páxina", PageBreak : "Inserir Salto de Páxina", Form : "Formulario", Checkbox : "Cadro de Verificación", RadioButton : "Botón de Radio", TextField : "Campo de Texto", Textarea : "Área de Texto", HiddenField : "Campo Oculto", Button : "Botón", SelectionField : "Campo de Selección", ImageButton : "Botón de Imaxe", FitWindow : "Maximizar o tamaño do editor", // Context Menu EditLink : "Editar Ligazón", CellCM : "Cela", RowCM : "Fila", ColumnCM : "Columna", InsertRow : "Inserir Fila", DeleteRows : "Borrar Filas", InsertColumn : "Inserir Columna", DeleteColumns : "Borrar Columnas", InsertCell : "Inserir Cela", DeleteCells : "Borrar Cela", MergeCells : "Unir Celas", SplitCell : "Partir Celas", TableDelete : "Borrar Táboa", CellProperties : "Propriedades da Cela", TableProperties : "Propriedades da Táboa", ImageProperties : "Propriedades Imaxe", FlashProperties : "Propriedades Flash", AnchorProp : "Propriedades da Referencia", ButtonProp : "Propriedades do Botón", CheckboxProp : "Propriedades do Cadro de Verificación", HiddenFieldProp : "Propriedades do Campo Oculto", RadioButtonProp : "Propriedades do Botón de Radio", ImageButtonProp : "Propriedades do Botón de Imaxe", TextFieldProp : "Propriedades do Campo de Texto", SelectionFieldProp : "Propriedades do Campo de Selección", TextareaProp : "Propriedades da Área de Texto", FormProp : "Propriedades do Formulario", FontFormats : "Normal;Formateado;Enderezo;Enacabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Paragraph (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Procesando XHTML. Por facor, agarde...", Done : "Feiro", PasteWordConfirm : "Parece que o texto que quere pegar está copiado do Word.¿Quere limpar o formato antes de pegalo?", NotCompatiblePaste : "Este comando está disponible para Internet Explorer versión 5.5 ou superior. ¿Quere pegalo sen limpar o formato?", UnknownToolbarItem : "Ítem de ferramentas descoñecido \"%1\"", UnknownCommand : "Nome de comando descoñecido \"%1\"", NotImplemented : "Comando non implementado", UnknownToolbarSet : "O conxunto de ferramentas \"%1\" non existe", NoActiveX : "As opcións de seguridade do seu navegador poderían limitar algunha das características de editor. Debe activar a opción \"Executar controis ActiveX e plug-ins\". Pode notar que faltan características e experimentar erros", BrowseServerBlocked : "Non se poido abrir o navegador de recursos. Asegúrese de que están desactivados os bloqueadores de xanelas emerxentes", DialogBlocked : "Non foi posible abrir a xanela de diálogo. Asegúrese de que están desactivados os bloqueadores de xanelas emerxentes", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancelar", DlgBtnClose : "Pechar", DlgBtnBrowseServer : "Navegar no Servidor", DlgAdvancedTag : "Advanzado", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Por favor, insira a URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Orientación do Idioma", DlgGenLangDirLtr : "Esquerda a Dereita (LTR)", DlgGenLangDirRtl : "Dereita a Esquerda (RTL)", DlgGenLangCode : "Código do Idioma", DlgGenAccessKey : "Chave de Acceso", DlgGenName : "Nome", DlgGenTabIndex : "Índice de Tabulación", DlgGenLongDescr : "Descrición Completa da URL", DlgGenClass : "Clases da Folla de Estilos", DlgGenTitle : "Título", DlgGenContType : "Tipo de Contido", DlgGenLinkCharset : "Fonte de Caracteres Vinculado", DlgGenStyle : "Estilo", // Image Dialog DlgImgTitle : "Propriedades da Imaxe", DlgImgInfoTab : "Información da Imaxe", DlgImgBtnUpload : "Enviar ó Servidor", DlgImgURL : "URL", DlgImgUpload : "Carregar", DlgImgAlt : "Texto Alternativo", DlgImgWidth : "Largura", DlgImgHeight : "Altura", DlgImgLockRatio : "Proporcional", DlgBtnResetSize : "Tamaño Orixinal", DlgImgBorder : "Límite", DlgImgHSpace : "Esp. Horiz.", DlgImgVSpace : "Esp. Vert.", DlgImgAlign : "Aliñamento", DlgImgAlignLeft : "Esquerda", DlgImgAlignAbsBottom: "Abs Inferior", DlgImgAlignAbsMiddle: "Abs Centro", DlgImgAlignBaseline : "Liña Base", DlgImgAlignBottom : "Pé", DlgImgAlignMiddle : "Centro", DlgImgAlignRight : "Dereita", DlgImgAlignTextTop : "Tope do Texto", DlgImgAlignTop : "Tope", DlgImgPreview : "Vista Previa", 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", DlgLnkTargetTab : "Referencia a esta páxina", DlgLnkType : "Tipo de Ligazón", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Referencia nesta páxina", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocolo", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Seleccionar unha Referencia", DlgLnkAnchorByName : "Por Nome de Referencia", DlgLnkAnchorById : "Por Element Id", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Enderezo de E-Mail", DlgLnkEMailSubject : "Asunto do Mensaxe", DlgLnkEMailBody : "Corpo do Mensaxe", DlgLnkUpload : "Carregar", DlgLnkBtnUpload : "Enviar ó servidor", DlgLnkTarget : "Destino", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nova Xanela (_blank)", DlgLnkTargetParent : "Xanela Pai (_parent)", DlgLnkTargetSelf : "Mesma Xanela (_self)", DlgLnkTargetTop : "Xanela Primaria (_top)", DlgLnkTargetFrameName : "Nome do Marco Destino", DlgLnkPopWinName : "Nome da Xanela Emerxente", DlgLnkPopWinFeat : "Características da Xanela Emerxente", DlgLnkPopResize : "Axustable", DlgLnkPopLocation : "Barra de Localización", DlgLnkPopMenu : "Barra de Menú", DlgLnkPopScroll : "Barras de Desplazamento", DlgLnkPopStatus : "Barra de Estado", DlgLnkPopToolbar : "Barra de Ferramentas", DlgLnkPopFullScrn : "A Toda Pantalla (IE)", DlgLnkPopDependent : "Dependente (Netscape)", DlgLnkPopWidth : "Largura", DlgLnkPopHeight : "Altura", DlgLnkPopLeft : "Posición Esquerda", DlgLnkPopTop : "Posición dende Arriba", DlnLnkMsgNoUrl : "Por favor, escriba a ligazón URL", DlnLnkMsgNoEMail : "Por favor, escriba o enderezo de e-mail", DlnLnkMsgNoAnchor : "Por favor, seleccione un destino", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Seleccionar Color", DlgColorBtnClear : "Nengunha", DlgColorHighlight : "Destacado", DlgColorSelected : "Seleccionado", // Smiley Dialog DlgSmileyTitle : "Inserte un Smiley", // Special Character Dialog DlgSpecialCharTitle : "Seleccione Caracter Especial", // Table Dialog DlgTableTitle : "Propiedades da Táboa", DlgTableRows : "Filas", DlgTableColumns : "Columnas", DlgTableBorder : "Tamaño do Borde", DlgTableAlign : "Aliñamento", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Esquerda", DlgTableAlignCenter : "Centro", DlgTableAlignRight : "Ereita", DlgTableWidth : "Largura", DlgTableWidthPx : "pixels", DlgTableWidthPc : "percent", DlgTableHeight : "Altura", DlgTableCellSpace : "Marxe entre Celas", DlgTableCellPad : "Marxe interior", DlgTableCaption : "Título", DlgTableSummary : "Sumario", // Table Cell Dialog DlgCellTitle : "Propriedades da Cela", DlgCellWidth : "Largura", DlgCellWidthPx : "pixels", DlgCellWidthPc : "percent", DlgCellHeight : "Altura", DlgCellWordWrap : "Axustar Liñas", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Si", DlgCellWordWrapNo : "Non", DlgCellHorAlign : "Aliñamento Horizontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Esquerda", DlgCellHorAlignCenter : "Centro", DlgCellHorAlignRight: "Dereita", DlgCellVerAlign : "Aliñamento Vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Arriba", DlgCellVerAlignMiddle : "Medio", DlgCellVerAlignBottom : "Abaixo", DlgCellVerAlignBaseline : "Liña de Base", DlgCellRowSpan : "Ocupar Filas", DlgCellCollSpan : "Ocupar Columnas", DlgCellBackColor : "Color de Fondo", DlgCellBorderColor : "Color de Borde", DlgCellBtnSelect : "Seleccionar...", // Find Dialog DlgFindTitle : "Procurar", DlgFindFindBtn : "Procurar", DlgFindNotFoundMsg : "Non te atopou o texto indicado.", // Replace Dialog DlgReplaceTitle : "Substituir", DlgReplaceFindLbl : "Texto a procurar:", DlgReplaceReplaceLbl : "Substituir con:", DlgReplaceCaseChk : "Coincidir Mai./min.", DlgReplaceReplaceBtn : "Substituir", DlgReplaceReplAllBtn : "Substitiur Todo", DlgReplaceWordChk : "Coincidir con toda a palabra", // Paste Operations / Dialog PasteErrorCut : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de corte. Por favor, use o teclado para iso (Ctrl+X).", PasteErrorCopy : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de copia. Por favor, use o teclado para iso (Ctrl+C).", PasteAsText : "Pegar como texto plano", PasteFromWord : "Pegar dende Word", DlgPasteMsg2 : "Por favor, pegue dentro do seguinte cadro usando o teclado (Ctrl+V) e pulse OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING 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...", // Document Properties DocProps : "Propriedades do Documento", // Anchor Dialog DlgAnchorTitle : "Propriedades da Referencia", DlgAnchorName : "Nome da Referencia", DlgAnchorErrorName : "Por favor, escriba o nome da referencia", // Speller Pages Dialog DlgSpellNotInDic : "Non está no diccionario", DlgSpellChangeTo : "Cambiar a", DlgSpellBtnIgnore : "Ignorar", DlgSpellBtnIgnoreAll : "Ignorar Todas", DlgSpellBtnReplace : "Substituir", DlgSpellBtnReplaceAll : "Substituir Todas", DlgSpellBtnUndo : "Desfacer", DlgSpellNoSuggestions : "- Sen candidatos -", DlgSpellProgress : "Corrección ortográfica en progreso...", DlgSpellNoMispell : "Corrección ortográfica rematada: Non se atoparon erros", DlgSpellNoChanges : "Corrección ortográfica rematada: Non se substituiu nengunha verba", DlgSpellOneChange : "Corrección ortográfica rematada: Unha verba substituida", DlgSpellManyChanges : "Corrección ortográfica rematada: %1 verbas substituidas", IeSpellDownload : "O corrector ortográfico non está instalado. ¿Quere descargalo agora?", // Button Dialog DlgButtonText : "Texto (Valor)", DlgButtonType : "Tipo", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nome", DlgCheckboxValue : "Valor", DlgCheckboxSelected : "Seleccionado", // Form Dialog DlgFormName : "Nome", DlgFormAction : "Acción", DlgFormMethod : "Método", // Select Field Dialog DlgSelectName : "Nome", DlgSelectValue : "Valor", DlgSelectSize : "Tamaño", DlgSelectLines : "liñas", DlgSelectChkMulti : "Permitir múltiples seleccións", DlgSelectOpAvail : "Opcións Disponibles", DlgSelectOpText : "Texto", DlgSelectOpValue : "Valor", DlgSelectBtnAdd : "Engadir", DlgSelectBtnModify : "Modificar", DlgSelectBtnUp : "Subir", DlgSelectBtnDown : "Baixar", DlgSelectBtnSetValue : "Definir como valor por defecto", DlgSelectBtnDelete : "Borrar", // Textarea Dialog DlgTextareaName : "Nome", DlgTextareaCols : "Columnas", DlgTextareaRows : "Filas", // Text Field Dialog DlgTextName : "Nome", DlgTextValue : "Valor", DlgTextCharWidth : "Tamaño do Caracter", DlgTextMaxChars : "Máximo de Caracteres", DlgTextType : "Tipo", DlgTextTypeText : "Texto", DlgTextTypePass : "Chave", // Hidden Field Dialog DlgHiddenName : "Nome", DlgHiddenValue : "Valor", // Bulleted List Dialog BulletedListProp : "Propriedades das Marcas", NumberedListProp : "Propriedades da Lista de Numeración", DlgLstStart : "Start", //MISSING DlgLstType : "Tipo", DlgLstTypeCircle : "Círculo", DlgLstTypeDisc : "Disco", DlgLstTypeSquare : "Cuadrado", DlgLstTypeNumbers : "Números (1, 2, 3)", DlgLstTypeLCase : "Letras Minúsculas (a, b, c)", DlgLstTypeUCase : "Letras Maiúsculas (A, B, C)", DlgLstTypeSRoman : "Números Romanos en minúscula (i, ii, iii)", DlgLstTypeLRoman : "Números Romanos en Maiúscula (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Xeral", DlgDocBackTab : "Fondo", DlgDocColorsTab : "Cores e Marxes", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Título da Páxina", DlgDocLangDir : "Orientación do Idioma", DlgDocLangDirLTR : "Esquerda a Dereita (LTR)", DlgDocLangDirRTL : "Dereita a Esquerda (RTL)", DlgDocLangCode : "Código de Idioma", DlgDocCharSet : "Codificación do Xogo de Caracteres", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Outra Codificación do Xogo de Caracteres", DlgDocDocType : "Encabezado do Tipo de Documento", DlgDocDocTypeOther : "Outro Encabezado do Tipo de Documento", DlgDocIncXHTML : "Incluir Declaracións XHTML", DlgDocBgColor : "Cor de Fondo", DlgDocBgImage : "URL da Imaxe de Fondo", DlgDocBgNoScroll : "Fondo Fixo", DlgDocCText : "Texto", DlgDocCLink : "Ligazóns", DlgDocCVisited : "Ligazón Visitada", DlgDocCActive : "Ligazón Activa", DlgDocMargins : "Marxes da Páxina", DlgDocMaTop : "Arriba", DlgDocMaLeft : "Esquerda", DlgDocMaRight : "Dereita", DlgDocMaBottom : "Abaixo", DlgDocMeIndex : "Palabras Chave de Indexación do Documento (separadas por comas)", DlgDocMeDescr : "Descripción do Documento", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Copyright", DlgDocPreview : "Vista Previa", // Templates Dialog Templates : "Plantillas", DlgTemplatesTitle : "Plantillas de Contido", DlgTemplatesSelMsg : "Por favor, seleccione a plantilla a abrir no editor
(o contido actual perderase):", DlgTemplatesLoading : "Cargando listado de plantillas. Por favor, espere...", DlgTemplatesNoTpl : "(Non hai plantillas definidas)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Acerca de", DlgAboutBrowserInfoTab : "Información do Navegador", DlgAboutLicenseTab : "Licencia", DlgAboutVersion : "versión", DlgAboutInfo : "Para máis información visitar:" };FCKeditor/editor/lang/km.js0000644000102600010270000006575411234071620015042 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Khmer language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "បង្រួមរបាឧបរកណ៍", ToolbarExpand : "ពង្រីករបាឧបរណ៍", // Toolbar Items and Context Menu Save : "រក្សាទុក", NewPage : "ទំព័រថ្មី", Preview : "មើលសាកល្បង", Cut : "កាត់យក", Copy : "ចំលងយក", Paste : "ចំលងដាក់", PasteText : "ចំលងដាក់ជាអត្ថបទធម្មតា", PasteWord : "ចំលងដាក់ពី Word", Print : "បោះពុម្ភ", SelectAll : "ជ្រើសរើសទាំងអស់", RemoveFormat : "លប់ចោល ការរចនា", InsertLinkLbl : "ឈ្នាប់", InsertLink : "បន្ថែម/កែប្រែ ឈ្នាប់", RemoveLink : "លប់ឈ្នាប់", Anchor : "បន្ថែម/កែប្រែ យុថ្កា", InsertImageLbl : "រូបភាព", InsertImage : "បន្ថែម/កែប្រែ រូបភាព", InsertFlashLbl : "Flash", InsertFlash : "បន្ថែម/កែប្រែ Flash", InsertTableLbl : "តារាង", InsertTable : "បន្ថែម/កែប្រែ តារាង", InsertLineLbl : "បន្ទាត់", InsertLine : "បន្ថែមបន្ទាត់ផ្តេក", InsertSpecialCharLbl: "អក្សរពិសេស", InsertSpecialChar : "បន្ថែមអក្សរពិសេស", InsertSmileyLbl : "រូបភាព", InsertSmiley : "បន្ថែម រូបភាព", About : "អំពី FCKeditor", Bold : "អក្សរដិតធំ", Italic : "អក្សរផ្តេក", Underline : "ដិតបន្ទាត់ពីក្រោមអក្សរ", StrikeThrough : "ដិតបន្ទាត់ពាក់កណ្តាលអក្សរ", Subscript : "អក្សរតូចក្រោម", Superscript : "អក្សរតូចលើ", LeftJustify : "តំរឹមឆ្វេង", CenterJustify : "តំរឹមកណ្តាល", RightJustify : "តំរឹមស្តាំ", BlockJustify : "តំរឹមសងខាង", DecreaseIndent : "បន្ថយការចូលបន្ទាត់", IncreaseIndent : "បន្ថែមការចូលបន្ទាត់", Undo : "សារឡើងវិញ", Redo : "ធ្វើឡើងវិញ", NumberedListLbl : "បញ្ជីជាអក្សរ", NumberedList : "បន្ថែម/លប់ បញ្ជីជាអក្សរ", BulletedListLbl : "បញ្ជីជារង្វង់មូល", BulletedList : "បន្ថែម/លប់ បញ្ជីជារង្វង់មូល", ShowTableBorders : "បង្ហាញស៊ុមតារាង", ShowDetails : "បង្ហាញពិស្តារ", Style : "ម៉ូត", FontFormat : "រចនា", Font : "ហ្វុង", FontSize : "ទំហំ", TextColor : "ពណ៌អក្សរ", BGColor : "ពណ៌ផ្ទៃខាងក្រោយ", Source : "កូត", Find : "ស្វែងរក", Replace : "ជំនួស", SpellCheck : "ពិនិត្យអក្ខរាវិរុទ្ធ", UniversalKeyboard : "ក្តារពុម្ភអក្សរសកល", PageBreakLbl : "ការផ្តាច់ទំព័រ", PageBreak : "បន្ថែម ការផ្តាច់ទំព័រ", Form : "បែបបទ", Checkbox : "ប្រអប់ជ្រើសរើស", RadioButton : "ប៉ូតុនរង្វង់មូល", TextField : "ជួរសរសេរអត្ថបទ", Textarea : "តំបន់សរសេរអត្ថបទ", HiddenField : "ជួរលាក់", Button : "ប៉ូតុន", SelectionField : "ជួរជ្រើសរើស", ImageButton : "ប៉ូតុនរូបភាព", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "កែប្រែឈ្នាប់", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "បន្ថែមជួរផ្តេក", DeleteRows : "លប់ជួរផ្តេក", InsertColumn : "បន្ថែមជួរឈរ", DeleteColumns : "លប់ជួរឈរ", InsertCell : "បន្ថែម សែល", DeleteCells : "លប់សែល", MergeCells : "បញ្ជូលសែល", SplitCell : "ផ្តាច់សែល", TableDelete : "លប់តារាង", CellProperties : "ការកំណត់សែល", TableProperties : "ការកំណត់តារាង", ImageProperties : "ការកំណត់រូបភាព", FlashProperties : "ការកំណត់ Flash", AnchorProp : "ការកំណត់យុថ្កា", ButtonProp : "ការកំណត់ ប៉ូតុន", CheckboxProp : "ការកំណត់ប្រអប់ជ្រើសរើស", HiddenFieldProp : "ការកំណត់ជួរលាក់", RadioButtonProp : "ការកំណត់ប៉ូតុនរង្វង់", ImageButtonProp : "ការកំណត់ប៉ូតុនរូបភាព", TextFieldProp : "ការកំណត់ជួរអត្ថបទ", SelectionFieldProp : "ការកំណត់ជួរជ្រើសរើស", TextareaProp : "ការកំណត់កន្លែងសរសេរអត្ថបទ", FormProp : "ការកំណត់បែបបទ", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "កំពុងដំណើរការ XHTML ។ សូមរងចាំ...", Done : "ចប់រួចរាល់", PasteWordConfirm : "អត្ថបទដែលលោកអ្នកបំរុងចំលងដាក់ ហាក់បីដូចជាត្រូវចំលងមកពីកម្មវិធី​Word​។ តើលោកអ្នកចង់សំអាតមុនចំលងអត្ថបទដាក់ទេ?", NotCompatiblePaste : "ពាក្យបញ្ជានេះប្រើបានតែជាមួយ Internet Explorer កំរិត 5.5 រឺ លើសនេះ ។ តើលោកអ្នកចង់ចំលងដាក់ដោយមិនចាំបាច់សំអាតទេ?", UnknownToolbarItem : "វត្ថុលើរបាឧបរកណ៍ មិនស្គាល់ \"%1\"", UnknownCommand : "ឈ្មោះពាក្យបញ្ជា មិនស្គាល់ \"%1\"", NotImplemented : "ពាក្យបញ្ជា មិនបានអនុវត្ត", UnknownToolbarSet : "របាឧបរកណ៍ \"%1\" ពុំមាន ។", NoActiveX : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​អាចធ្វើអោយលោកអ្នកមិនអាចប្រើមុខងារខ្លះរបស់កម្មវិធីតាក់តែងអត្ថបទនេះ ។ លោកអ្នកត្រូវកំណត់អោយ \"ActiveX និង​កម្មវិធីជំនួយក្នុង (plug-ins)\" អោយដំណើរការ ។ លោកអ្នកអាចជួបប្រទះនឹង បញ្ហា ព្រមជាមួយនឹងការបាត់បង់មុខងារណាមួយរបស់កម្មវិធីតាក់តែងអត្ថបទនេះ ។", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "វីនដូវមិនអាចបើកបានទេ ។ សូមពិនិត្យចំពោះកម្មវិធីបិទ វីនដូវលោត (popup) ថាតើវាដំណើរការរឺទេ ។", // Dialogs DlgBtnOK : "យល់ព្រម", DlgBtnCancel : "មិនយល់ព្រម", DlgBtnClose : "បិទ", DlgBtnBrowseServer : "មើល", DlgAdvancedTag : "កំរិតខ្ពស់", DlgOpOther : "<ផ្សេងទៅត>", DlgInfoTab : "ពត៌មាន", DlgAlertUrl : "សូមសរសេរ URL", // General Dialogs Labels DlgGenNotSet : "<មិនមែន>", DlgGenId : "Id", DlgGenLangDir : "ទិសដៅភាសា", DlgGenLangDirLtr : "ពីឆ្វេងទៅស្តាំ(LTR)", DlgGenLangDirRtl : "ពីស្តាំទៅឆ្វេង(RTL)", DlgGenLangCode : "លេខកូតភាសា", DlgGenAccessKey : "ឃី សំរាប់ចូល", DlgGenName : "ឈ្មោះ", DlgGenTabIndex : "លេខ Tab", DlgGenLongDescr : "អធិប្បាយ URL វែង", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "ចំណងជើង ប្រឹក្សា", DlgGenContType : "ប្រភេទអត្ថបទ ប្រឹក្សា", DlgGenLinkCharset : "លេខកូតអក្សររបស់ឈ្នាប់", DlgGenStyle : "ម៉ូត", // Image Dialog DlgImgTitle : "ការកំណត់រូបភាព", DlgImgInfoTab : "ពត៌មានអំពីរូបភាព", DlgImgBtnUpload : "បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា", DlgImgURL : "URL", DlgImgUpload : "ទាញយក", DlgImgAlt : "អត្ថបទជំនួស", DlgImgWidth : "ទទឹង", DlgImgHeight : "កំពស់", DlgImgLockRatio : "អត្រាឡុក", DlgBtnResetSize : "កំណត់ទំហំឡើងវិញ", DlgImgBorder : "ស៊ុម", DlgImgHSpace : "គំលាតទទឹង", DlgImgVSpace : "គំលាតបណ្តោយ", DlgImgAlign : "កំណត់ទីតាំង", DlgImgAlignLeft : "ខាងឆ្វង", DlgImgAlignAbsBottom: "Abs Bottom", //MISSING DlgImgAlignAbsMiddle: "Abs Middle", //MISSING DlgImgAlignBaseline : "បន្ទាត់ជាមូលដ្ឋាន", DlgImgAlignBottom : "ខាងក្រោម", DlgImgAlignMiddle : "កណ្តាល", DlgImgAlignRight : "ខាងស្តាំ", DlgImgAlignTextTop : "លើអត្ថបទ", DlgImgAlignTop : "ខាងលើ", DlgImgPreview : "មើលសាកល្បង", DlgImgAlertUrl : "សូមសរសេរងាស័យដ្ឋានរបស់រូបភាព", DlgImgLinkTab : "ឈ្នាប់", // Flash Dialog DlgFlashTitle : "ការកំណត់ Flash", DlgFlashChkPlay : "លេងដោយស្វ័យប្រវត្ត", DlgFlashChkLoop : "ចំនួនដង", DlgFlashChkMenu : "បង្ហាញ មឺនុយរបស់ Flash", DlgFlashScale : "ទំហំ", DlgFlashScaleAll : "បង្ហាញទាំងអស់", DlgFlashScaleNoBorder : "មិនបង្ហាញស៊ុម", DlgFlashScaleFit : "ត្រូវល្មម", // Link Dialog DlgLnkWindowTitle : "ឈ្នាប់", DlgLnkInfoTab : "ពត៌មានអំពីឈ្នាប់", DlgLnkTargetTab : "គោលដៅ", DlgLnkType : "ប្រភេទឈ្នាប់", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "យុថ្កានៅក្នុងទំព័រនេះ", DlgLnkTypeEMail : "អ៊ីមែល", DlgLnkProto : "ប្រូតូកូល", DlgLnkProtoOther : "<ផ្សេងទៀត>", DlgLnkURL : "URL", DlgLnkAnchorSel : "ជ្រើសរើសយុថ្កា", DlgLnkAnchorByName : "តាមឈ្មោះរបស់យុថ្កា", DlgLnkAnchorById : "តាម Id", DlgLnkNoAnchors : "<ពុំមានយុថ្កានៅក្នុងឯកសារនេះទេ>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "អ៊ីមែល", DlgLnkEMailSubject : "ចំណងជើងអត្ថបទ", DlgLnkEMailBody : "អត្ថបទ", DlgLnkUpload : "ទាញយក", DlgLnkBtnUpload : "ទាញយក", DlgLnkTarget : "គោលដៅ", DlgLnkTargetFrame : "<ហ្វ្រេម>", DlgLnkTargetPopup : "<វីនដូវ លោត>", DlgLnkTargetBlank : "វីនដូវថ្មី (_blank)", DlgLnkTargetParent : "វីនដូវមេ (_parent)", DlgLnkTargetSelf : "វីនដូវដដែល (_self)", DlgLnkTargetTop : "វីនដូវនៅលើគេ(_top)", DlgLnkTargetFrameName : "ឈ្មោះហ្រ្វេមដែលជាគោលដៅ", DlgLnkPopWinName : "ឈ្មោះវីនដូវលោត", DlgLnkPopWinFeat : "លក្ខណះរបស់វីនដូលលោត", DlgLnkPopResize : "ទំហំអាចផ្លាស់ប្តូរ", DlgLnkPopLocation : "របា ទីតាំង", DlgLnkPopMenu : "របា មឺនុយ", DlgLnkPopScroll : "របា ទាញ", DlgLnkPopStatus : "របា ពត៌មាន", DlgLnkPopToolbar : "របា ឩបករណ៍", DlgLnkPopFullScrn : "អេក្រុងពេញ(IE)", DlgLnkPopDependent : "អាស្រ័យលើ (Netscape)", DlgLnkPopWidth : "ទទឹង", DlgLnkPopHeight : "កំពស់", DlgLnkPopLeft : "ទីតាំងខាងឆ្វេង", DlgLnkPopTop : "ទីតាំងខាងលើ", DlnLnkMsgNoUrl : "សូមសរសេរ អាស័យដ្ឋាន URL", DlnLnkMsgNoEMail : "សូមសរសេរ អាស័យដ្ឋាន អ៊ីមែល", DlnLnkMsgNoAnchor : "សូមជ្រើសរើស យុថ្កា", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "ជ្រើសរើស ពណ៌", DlgColorBtnClear : "លប់", DlgColorHighlight : "ផាត់ពណ៌", DlgColorSelected : "បានជ្រើសរើស", // Smiley Dialog DlgSmileyTitle : "បញ្ជូលរូបភាព", // Special Character Dialog DlgSpecialCharTitle : "តូអក្សរពិសេស", // Table Dialog DlgTableTitle : "ការកំណត់ តារាង", DlgTableRows : "ជួរផ្តេក", DlgTableColumns : "ជួរឈរ", DlgTableBorder : "ទំហំស៊ុម", DlgTableAlign : "ការកំណត់ទីតាំង", DlgTableAlignNotSet : "<មិនកំណត់>", DlgTableAlignLeft : "ខាងឆ្វេង", DlgTableAlignCenter : "កណ្តាល", DlgTableAlignRight : "ខាងស្តាំ", DlgTableWidth : "ទទឹង", DlgTableWidthPx : "ភីកសែល", DlgTableWidthPc : "ភាគរយ", DlgTableHeight : "កំពស់", DlgTableCellSpace : "គំលាតសែល", DlgTableCellPad : "គែមសែល", DlgTableCaption : "ចំណងជើង", DlgTableSummary : "សេចក្តីសង្ខេប", // Table Cell Dialog DlgCellTitle : "ការកំណត់ សែល", DlgCellWidth : "ទទឹង", DlgCellWidthPx : "ភីកសែល", DlgCellWidthPc : "ភាគរយ", DlgCellHeight : "កំពស់", DlgCellWordWrap : "បង្ហាញអត្ថបទទាំងអស់", DlgCellWordWrapNotSet : "<មិនកំណត់>", DlgCellWordWrapYes : "បាទ(ចា)", DlgCellWordWrapNo : "ទេ", DlgCellHorAlign : "តំរឹមផ្តេក", DlgCellHorAlignNotSet : "<មិនកំណត់>", DlgCellHorAlignLeft : "ខាងឆ្វេង", DlgCellHorAlignCenter : "កណ្តាល", DlgCellHorAlignRight: "Right", //MISSING DlgCellVerAlign : "តំរឹមឈរ", DlgCellVerAlignNotSet : "<មិនកណត់>", DlgCellVerAlignTop : "ខាងលើ", DlgCellVerAlignMiddle : "កណ្តាល", DlgCellVerAlignBottom : "ខាងក្រោម", DlgCellVerAlignBaseline : "បន្ទាត់ជាមូលដ្ឋាន", DlgCellRowSpan : "បញ្ជូលជួរផ្តេក", DlgCellCollSpan : "បញ្ជូលជួរឈរ", DlgCellBackColor : "ពណ៌ផ្នែកខាងក្រោម", DlgCellBorderColor : "ពណ៌ស៊ុម", DlgCellBtnSelect : "ជ្រើសរើស...", // Find Dialog DlgFindTitle : "ស្វែងរក", DlgFindFindBtn : "ស្វែងរក", DlgFindNotFoundMsg : "ពាក្យនេះ រកមិនឃើញទេ ។", // Replace Dialog DlgReplaceTitle : "ជំនួស", DlgReplaceFindLbl : "ស្វែងរកអ្វី:", DlgReplaceReplaceLbl : "ជំនួសជាមួយ:", DlgReplaceCaseChk : "ករណ៉ត្រូវរក", DlgReplaceReplaceBtn : "ជំនួស", DlgReplaceReplAllBtn : "ជំនួសទាំងអស់", DlgReplaceWordChk : "ត្រូវពាក្យទាំងអស់", // Paste Operations / Dialog PasteErrorCut : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​មិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ កាត់អត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+X) ។", PasteErrorCopy : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​មិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ ចំលងអត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+C)។", PasteAsText : "ចំលងដាក់អត្ថបទធម្មតា", PasteFromWord : "ចំលងពាក្យពីកម្មវិធី Word", DlgPasteMsg2 : "សូមចំលងអត្ថបទទៅដាក់ក្នុងប្រអប់ដូចខាងក្រោមដោយប្រើប្រាស់ ឃី ​(Ctrl+V) ហើយចុច OK ។", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "មិនគិតអំពីប្រភេទពុម្ភអក្សរ", DlgPasteRemoveStyles : "លប់ម៉ូត", DlgPasteCleanBox : "លប់អត្ថបទចេញពីប្រអប់", // Color Picker ColorAutomatic : "ស្វ័យប្រវត្ត", ColorMoreColors : "ពណ៌ផ្សេងទៀត..", // Document Properties DocProps : "ការកំណត់ ឯកសារ", // Anchor Dialog DlgAnchorTitle : "ការកំណត់ចំណងជើងយុទ្ធថ្កា", DlgAnchorName : "ឈ្មោះយុទ្ធថ្កា", DlgAnchorErrorName : "សូមសរសេរ ឈ្មោះយុទ្ធថ្កា", // Speller Pages Dialog DlgSpellNotInDic : "គ្មានក្នុងវចនានុក្រម", DlgSpellChangeTo : "ផ្លាស់ប្តូរទៅ", DlgSpellBtnIgnore : "មិនផ្លាស់ប្តូរ", DlgSpellBtnIgnoreAll : "មិនផ្លាស់ប្តូរ ទាំងអស់", DlgSpellBtnReplace : "ជំនួស", DlgSpellBtnReplaceAll : "ជំនួសទាំងអស់", DlgSpellBtnUndo : "សារឡើងវិញ", DlgSpellNoSuggestions : "- គ្មានសំណើរ -", DlgSpellProgress : "កំពុងពិនិត្យអក្ខរាវិរុទ្ធ...", DlgSpellNoMispell : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: គ្មានកំហុស", DlgSpellNoChanges : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពុំមានផ្លាស់ប្តូរ", DlgSpellOneChange : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពាក្យមួយត្រូចបានផ្លាស់ប្តូរ", DlgSpellManyChanges : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: %1 ពាក្យបានផ្លាស់ប្តូរ", IeSpellDownload : "ពុំមានកម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ ។ តើចង់ទាញយកពីណា?", // Button Dialog DlgButtonText : "អត្ថបទ(តំលៃ)", DlgButtonType : "ប្រភេទ", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "ឈ្មោះ", DlgCheckboxValue : "តំលៃ", DlgCheckboxSelected : "បានជ្រើសរើស", // Form Dialog DlgFormName : "ឈ្មោះ", DlgFormAction : "សកម្មភាព", DlgFormMethod : "វិធី", // Select Field Dialog DlgSelectName : "ឈ្មោះ", DlgSelectValue : "តំលៃ", DlgSelectSize : "ទំហំ", DlgSelectLines : "បន្ទាត់", DlgSelectChkMulti : "អនុញ្ញាតអោយជ្រើសរើសច្រើន", DlgSelectOpAvail : "ការកំណត់ជ្រើសរើស ដែលអាចកំណត់បាន", DlgSelectOpText : "ពាក្យ", DlgSelectOpValue : "តំលៃ", DlgSelectBtnAdd : "បន្ថែម", DlgSelectBtnModify : "ផ្លាស់ប្តូរ", DlgSelectBtnUp : "លើ", DlgSelectBtnDown : "ក្រោម", DlgSelectBtnSetValue : "Set as selected value", //MISSING DlgSelectBtnDelete : "លប់", // Textarea Dialog DlgTextareaName : "ឈ្មោះ", DlgTextareaCols : "ជូរឈរ", DlgTextareaRows : "ជូរផ្តេក", // Text Field Dialog DlgTextName : "ឈ្មោះ", DlgTextValue : "តំលៃ", DlgTextCharWidth : "ទទឹង អក្សរ", DlgTextMaxChars : "អក្សរអតិបរិមា", DlgTextType : "ប្រភេទ", DlgTextTypeText : "ពាក្យ", DlgTextTypePass : "ពាក្យសំងាត់", // Hidden Field Dialog DlgHiddenName : "ឈ្មោះ", DlgHiddenValue : "តំលៃ", // Bulleted List Dialog BulletedListProp : "កំណត់បញ្ជីរង្វង់", NumberedListProp : "កំណត់បញ្េជីលេខ", DlgLstStart : "Start", //MISSING DlgLstType : "ប្រភេទ", DlgLstTypeCircle : "រង្វង់", DlgLstTypeDisc : "Disc", 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 : "ទូទៅ", DlgDocBackTab : "ផ្នែកខាងក្រោយ", DlgDocColorsTab : "ទំព័រ​និង ស៊ុម", DlgDocMetaTab : "ទិន្នន័យមេ", DlgDocPageTitle : "ចំណងជើងទំព័រ", DlgDocLangDir : "ទិសដៅសរសេរភាសា", DlgDocLangDirLTR : "ពីឆ្វេងទៅស្ដាំ(LTR)", DlgDocLangDirRTL : "ពីស្ដាំទៅឆ្វេង(RTL)", DlgDocLangCode : "លេខកូតភាសា", DlgDocCharSet : "កំណត់លេខកូតភាសា", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "កំណត់លេខកូតភាសាផ្សេងទៀត", DlgDocDocType : "ប្រភេទក្បាលទំព័រ", DlgDocDocTypeOther : "ប្រភេទក្បាលទំព័រផ្សេងទៀត", DlgDocIncXHTML : "បញ្ជូល XHTML", DlgDocBgColor : "ពណ៌ខាងក្រោម", DlgDocBgImage : "URL របស់រូបភាពខាងក្រោម", DlgDocBgNoScroll : "ទំព័រក្រោមមិនប្តូរ", DlgDocCText : "អត្តបទ", DlgDocCLink : "ឈ្នាប់", DlgDocCVisited : "ឈ្នាប់មើលហើយ", DlgDocCActive : "ឈ្នាប់កំពុងមើល", DlgDocMargins : "ស៊ុមទំព័រ", DlgDocMaTop : "លើ", DlgDocMaLeft : "ឆ្វេង", DlgDocMaRight : "ស្ដាំ", DlgDocMaBottom : "ក្រោម", DlgDocMeIndex : "ពាក្យនៅក្នុងឯកសារ (ផ្តាច់ពីគ្នាដោយក្បៀស)", DlgDocMeDescr : "សេចក្តីអត្ថាធិប្បាយអំពីឯកសារ", DlgDocMeAuthor : "អ្នកនិពន្ធ", DlgDocMeCopy : "រក្សាសិទ្ធិ៏", DlgDocPreview : "មើលសាកល្បង", // Templates Dialog Templates : "ឯកសារគំរូ", DlgTemplatesTitle : "ឯកសារគំរូ របស់អត្ថន័យ", DlgTemplatesSelMsg : "សូមជ្រើសរើសឯកសារគំរូ ដើម្បីបើកនៅក្នុងកម្មវិធីតាក់តែងអត្ថបទ
(អត្ថបទនឹងបាត់បង់):", DlgTemplatesLoading : "កំពុងអានបញ្ជីឯកសារគំរូ ។ សូមរងចាំ...", DlgTemplatesNoTpl : "(ពុំមានឯកសារគំរូត្រូវបានកំណត់)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "អំពី", DlgAboutBrowserInfoTab : "ព៌តមានកម្មវិធីរុករក", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "ជំនាន់", DlgAboutInfo : "សំរាប់ព៌តមានផ្សេងទៀត សូមទាក់ទង" };FCKeditor/editor/lang/pt.js0000644000102600010270000004437211234071635015055 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Portuguese language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Fechar Barra", ToolbarExpand : "Expandir Barra", // Toolbar Items and Context Menu Save : "Guardar", NewPage : "Nova Página", Preview : "Pré-visualizar", Cut : "Cortar", Copy : "Copiar", Paste : "Colar", PasteText : "Colar como texto não formatado", PasteWord : "Colar do Word", Print : "Imprimir", SelectAll : "Seleccionar Tudo", RemoveFormat : "Eliminar Formato", InsertLinkLbl : "Hiperligação", InsertLink : "Inserir/Editar Hiperligação", RemoveLink : "Eliminar Hiperligação", Anchor : " Inserir/Editar Âncora", InsertImageLbl : "Imagem", InsertImage : "Inserir/Editar Imagem", InsertFlashLbl : "Flash", InsertFlash : "Inserir/Editar Flash", InsertTableLbl : "Tabela", InsertTable : "Inserir/Editar Tabela", InsertLineLbl : "Linha", InsertLine : "Inserir Linha Horizontal", InsertSpecialCharLbl: "Caracter Especial", InsertSpecialChar : "Inserir Caracter Especial", InsertSmileyLbl : "Emoticons", InsertSmiley : "Inserir Emoticons", About : "Acerca do FCKeditor", Bold : "Negrito", Italic : "Itálico", Underline : "Sublinhado", StrikeThrough : "Rasurado", Subscript : "Superior à Linha", Superscript : "Inferior à Linha", LeftJustify : "Alinhar à Esquerda", CenterJustify : "Alinhar ao Centro", RightJustify : "Alinhar à Direita", BlockJustify : "Justificado", DecreaseIndent : "Diminuir Avanço", IncreaseIndent : "Aumentar Avanço", Undo : "Anular", Redo : "Repetir", NumberedListLbl : "Numeração", NumberedList : "Inserir/Eliminar Numeração", BulletedListLbl : "Marcas", BulletedList : "Inserir/Eliminar Marcas", ShowTableBorders : "Mostrar Limites da Tabelas", ShowDetails : "Mostrar Parágrafo", Style : "Estilo", FontFormat : "Formato", Font : "Tipo de Letra", FontSize : "Tamanho", TextColor : "Cor do Texto", BGColor : "Cor de Fundo", Source : "Fonte", Find : "Procurar", Replace : "Substituir", SpellCheck : "Verificação Ortográfica", UniversalKeyboard : "Teclado Universal", PageBreakLbl : "Quebra de Página", PageBreak : "Inserir Quebra de Página", Form : "Formulário", Checkbox : "Caixa de Verificação", RadioButton : "Botão de Opção", TextField : "Campo de Texto", Textarea : "Área de Texto", HiddenField : "Campo Escondido", Button : "Botão", SelectionField : "Caixa de Combinação", ImageButton : "Botão de Imagem", FitWindow : "Maximizar o tamanho do editor", // Context Menu EditLink : "Editar Hiperligação", CellCM : "Célula", RowCM : "Linha", ColumnCM : "Coluna", InsertRow : "Inserir Linha", DeleteRows : "Eliminar Linhas", InsertColumn : "Inserir Coluna", DeleteColumns : "Eliminar Coluna", InsertCell : "Inserir Célula", DeleteCells : "Eliminar Célula", MergeCells : "Unir Células", SplitCell : "Dividir Célula", TableDelete : "Eliminar Tabela", CellProperties : "Propriedades da Célula", TableProperties : "Propriedades da Tabela", ImageProperties : "Propriedades da Imagem", FlashProperties : "Propriedades do Flash", AnchorProp : "Propriedades da Âncora", ButtonProp : "Propriedades do Botão", CheckboxProp : "Propriedades da Caixa de Verificação", HiddenFieldProp : "Propriedades do Campo Escondido", RadioButtonProp : "Propriedades do Botão de Opção", ImageButtonProp : "Propriedades do Botão de imagens", TextFieldProp : "Propriedades do Campo de Texto", SelectionFieldProp : "Propriedades da Caixa de Combinação", TextareaProp : "Propriedades da Área de Texto", FormProp : "Propriedades do Formulário", FontFormats : "Normal;Formatado;Endereço;Título 1;Título 2;Título 3;Título 4;Título 5;Título 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "A Processar XHTML. Por favor, espere...", Done : "Concluído", PasteWordConfirm : "O texto que deseja parece ter sido copiado do Word. Deseja limpar a formatação antes de colar?", NotCompatiblePaste : "Este comando só está disponível para Internet Explorer versão 5.5 ou superior. Deseja colar sem limpar a formatação?", UnknownToolbarItem : "Item de barra desconhecido \"%1\"", UnknownCommand : "Nome de comando desconhecido \"%1\"", NotImplemented : "Comando não implementado", UnknownToolbarSet : "Nome de barra \"%1\" não definido", NoActiveX : "As definições de segurança do navegador podem limitar algumas potencalidades do editr. Deve activar a opção \"Executar controlos e extensões ActiveX\". Pode ocorrer erros ou verificar que faltam potencialidades.", BrowseServerBlocked : "Não foi possível abrir o navegador de recursos. Certifique-se que todos os bloqueadores de popup estão desactivados.", DialogBlocked : "Não foi possível abrir a janela de diálogo. Certifique-se que todos os bloqueadores de popup estão desactivados.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancelar", DlgBtnClose : "Fechar", DlgBtnBrowseServer : "Navegar no Servidor", DlgAdvancedTag : "Avançado", DlgOpOther : "", DlgInfoTab : "Informação", DlgAlertUrl : "Por favor introduza o URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Orientação de idioma", DlgGenLangDirLtr : "Esquerda à Direita (LTR)", DlgGenLangDirRtl : "Direita a Esquerda (RTL)", DlgGenLangCode : "Código de Idioma", DlgGenAccessKey : "Chave de Acesso", DlgGenName : "Nome", DlgGenTabIndex : "Índice de Tubulação", DlgGenLongDescr : "Descrição Completa do URL", DlgGenClass : "Classes de Estilo de Folhas Classes", DlgGenTitle : "Título", DlgGenContType : "Tipo de Conteúdo", DlgGenLinkCharset : "Fonte de caracteres vinculado", DlgGenStyle : "Estilo", // Image Dialog DlgImgTitle : "Propriedades da Imagem", DlgImgInfoTab : "Informação da Imagem", DlgImgBtnUpload : "Enviar para o Servidor", DlgImgURL : "URL", DlgImgUpload : "Carregar", DlgImgAlt : "Texto Alternativo", DlgImgWidth : "Largura", DlgImgHeight : "Altura", DlgImgLockRatio : "Proporcional", DlgBtnResetSize : "Tamanho Original", DlgImgBorder : "Limite", DlgImgHSpace : "Esp.Horiz", DlgImgVSpace : "Esp.Vert", DlgImgAlign : "Alinhamento", DlgImgAlignLeft : "Esquerda", DlgImgAlignAbsBottom: "Abs inferior", DlgImgAlignAbsMiddle: "Abs centro", DlgImgAlignBaseline : "Linha de base", DlgImgAlignBottom : "Fundo", DlgImgAlignMiddle : "Centro", DlgImgAlignRight : "Direita", DlgImgAlignTextTop : "Topo do texto", DlgImgAlignTop : "Topo", DlgImgPreview : "Pré-visualizar", DlgImgAlertUrl : "Por favor introduza o URL da imagem", DlgImgLinkTab : "Hiperligação", // Flash Dialog DlgFlashTitle : "Propriedades do Flash", DlgFlashChkPlay : "Reproduzir automaticamente", DlgFlashChkLoop : "Loop", DlgFlashChkMenu : "Permitir Menu do Flash", DlgFlashScale : "Escala", DlgFlashScaleAll : "Mostrar tudo", DlgFlashScaleNoBorder : "Sem Limites", DlgFlashScaleFit : "Tamanho Exacto", // Link Dialog DlgLnkWindowTitle : "Hiperligação", DlgLnkInfoTab : "Informação de Hiperligação", DlgLnkTargetTab : "Destino", DlgLnkType : "Tipo de Hiperligação", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Referência a esta página", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocolo", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Seleccionar una referência", DlgLnkAnchorByName : "Por Nome de Referência", DlgLnkAnchorById : "Por ID de elemento", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Endereço de E-Mail", DlgLnkEMailSubject : "Título de Mensagem", DlgLnkEMailBody : "Corpo da Mensagem", DlgLnkUpload : "Carregar", DlgLnkBtnUpload : "Enviar ao Servidor", DlgLnkTarget : "Destino", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nova Janela(_blank)", DlgLnkTargetParent : "Janela Pai (_parent)", DlgLnkTargetSelf : "Mesma janela (_self)", DlgLnkTargetTop : "Janela primaria (_top)", DlgLnkTargetFrameName : "Nome do Frame Destino", DlgLnkPopWinName : "Nome da Janela de Popup", DlgLnkPopWinFeat : "Características de Janela de Popup", DlgLnkPopResize : "Ajustável", DlgLnkPopLocation : "Barra de localização", DlgLnkPopMenu : "Barra de Menu", DlgLnkPopScroll : "Barras de deslocamento", DlgLnkPopStatus : "Barra de Estado", DlgLnkPopToolbar : "Barra de Ferramentas", DlgLnkPopFullScrn : "Janela Completa (IE)", DlgLnkPopDependent : "Dependente (Netscape)", DlgLnkPopWidth : "Largura", DlgLnkPopHeight : "Altura", DlgLnkPopLeft : "Posição Esquerda", DlgLnkPopTop : "Posição Direita", DlnLnkMsgNoUrl : "Por favor introduza a hiperligação URL", DlnLnkMsgNoEMail : "Por favor introduza o endereço de e-mail", DlnLnkMsgNoAnchor : "Por favor seleccione uma referência", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Seleccionar Cor", DlgColorBtnClear : "Nenhuma", DlgColorHighlight : "Destacado", DlgColorSelected : "Seleccionado", // Smiley Dialog DlgSmileyTitle : "Inserir um Emoticon", // Special Character Dialog DlgSpecialCharTitle : "Seleccione um caracter especial", // Table Dialog DlgTableTitle : "Propriedades da Tabela", DlgTableRows : "Linhas", DlgTableColumns : "Colunas", DlgTableBorder : "Tamanho do Limite", DlgTableAlign : "Alinhamento", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Esquerda", DlgTableAlignCenter : "Centrado", DlgTableAlignRight : "Direita", DlgTableWidth : "Largura", DlgTableWidthPx : "pixeis", DlgTableWidthPc : "percentagem", DlgTableHeight : "Altura", DlgTableCellSpace : "Esp. e/células", DlgTableCellPad : "Esp. interior", DlgTableCaption : "Título", DlgTableSummary : "Sumário", // Table Cell Dialog DlgCellTitle : "Propriedades da Célula", DlgCellWidth : "Largura", DlgCellWidthPx : "pixeis", DlgCellWidthPc : "percentagem", DlgCellHeight : "Altura", DlgCellWordWrap : "Moldar Texto", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Sim", DlgCellWordWrapNo : "Não", DlgCellHorAlign : "Alinhamento Horizontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Esquerda", DlgCellHorAlignCenter : "Centrado", DlgCellHorAlignRight: "Direita", DlgCellVerAlign : "Alinhamento Vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Topo", DlgCellVerAlignMiddle : "Médio", DlgCellVerAlignBottom : "Fundi", DlgCellVerAlignBaseline : "Linha de Base", DlgCellRowSpan : "Unir Linhas", DlgCellCollSpan : "Unir Colunas", DlgCellBackColor : "Cor do Fundo", DlgCellBorderColor : "Cor do Limite", DlgCellBtnSelect : "Seleccione...", // Find Dialog DlgFindTitle : "Procurar", DlgFindFindBtn : "Procurar", DlgFindNotFoundMsg : "O texto especificado não foi encontrado.", // Replace Dialog DlgReplaceTitle : "Substituir", DlgReplaceFindLbl : "Texto a Procurar:", DlgReplaceReplaceLbl : "Substituir por:", DlgReplaceCaseChk : "Maiúsculas/Minúsculas", DlgReplaceReplaceBtn : "Substituir", DlgReplaceReplAllBtn : "Substituir Tudo", DlgReplaceWordChk : "Coincidir com toda a palavra", // Paste Operations / Dialog PasteErrorCut : "A configuração de segurança do navegador não permite a execução automática de operações de cortar. Por favor use o teclado (Ctrl+X).", PasteErrorCopy : "A configuração de segurança do navegador não permite a execução automática de operações de copiar. Por favor use o teclado (Ctrl+C).", PasteAsText : "Colar como Texto Simples", PasteFromWord : "Colar do Word", DlgPasteMsg2 : "Por favor, cole dentro da seguinte caixa usando o teclado (Ctrl+V) e prima OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorar da definições do Tipo de Letra ", DlgPasteRemoveStyles : "Remover as definições de Estilos", DlgPasteCleanBox : "Caixa de Limpeza", // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Mais Cores...", // Document Properties DocProps : "Propriedades do Documento", // Anchor Dialog DlgAnchorTitle : "Propriedades da Âncora", DlgAnchorName : "Nome da Âncora", DlgAnchorErrorName : "Por favor, introduza o nome da âncora", // Speller Pages Dialog DlgSpellNotInDic : "Não está num directório", DlgSpellChangeTo : "Mudar para", DlgSpellBtnIgnore : "Ignorar", DlgSpellBtnIgnoreAll : "Ignorar Tudo", DlgSpellBtnReplace : "Substituir", DlgSpellBtnReplaceAll : "Substituir Tudo", DlgSpellBtnUndo : "Anular", DlgSpellNoSuggestions : "- Sem sugestões -", DlgSpellProgress : "Verificação ortográfica em progresso…", DlgSpellNoMispell : "Verificação ortográfica completa: não foram encontrados erros", DlgSpellNoChanges : "Verificação ortográfica completa: não houve alteração de palavras", DlgSpellOneChange : "Verificação ortográfica completa: uma palavra alterada", DlgSpellManyChanges : "Verificação ortográfica completa: %1 palavras alteradas", IeSpellDownload : " Verificação ortográfica não instalada. Quer descarregar agora?", // Button Dialog DlgButtonText : "Texto (Valor)", DlgButtonType : "Tipo", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nome", DlgCheckboxValue : "Valor", DlgCheckboxSelected : "Seleccionado", // Form Dialog DlgFormName : "Nome", DlgFormAction : "Acção", DlgFormMethod : "Método", // Select Field Dialog DlgSelectName : "Nome", DlgSelectValue : "Valor", DlgSelectSize : "Tamanho", DlgSelectLines : "linhas", DlgSelectChkMulti : "Permitir selecções múltiplas", DlgSelectOpAvail : "Opções Possíveis", DlgSelectOpText : "Texto", DlgSelectOpValue : "Valor", DlgSelectBtnAdd : "Adicionar", DlgSelectBtnModify : "Modificar", DlgSelectBtnUp : "Para cima", DlgSelectBtnDown : "Para baixo", DlgSelectBtnSetValue : "Definir um valor por defeito", DlgSelectBtnDelete : "Apagar", // Textarea Dialog DlgTextareaName : "Nome", DlgTextareaCols : "Colunas", DlgTextareaRows : "Linhas", // Text Field Dialog DlgTextName : "Nome", DlgTextValue : "Valor", DlgTextCharWidth : "Tamanho do caracter", DlgTextMaxChars : "Nr. Máximo de Caracteres", DlgTextType : "Tipo", DlgTextTypeText : "Texto", DlgTextTypePass : "Palavra-chave", // Hidden Field Dialog DlgHiddenName : "Nome", DlgHiddenValue : "Valor", // Bulleted List Dialog BulletedListProp : "Propriedades da Marca", NumberedListProp : "Propriedades da Numeração", DlgLstStart : "Start", //MISSING DlgLstType : "Tipo", DlgLstTypeCircle : "Circulo", DlgLstTypeDisc : "Disco", DlgLstTypeSquare : "Quadrado", DlgLstTypeNumbers : "Números (1, 2, 3)", DlgLstTypeLCase : "Letras Minúsculas (a, b, c)", DlgLstTypeUCase : "Letras Maiúsculas (A, B, C)", DlgLstTypeSRoman : "Numeração Romana em Minúsculas (i, ii, iii)", DlgLstTypeLRoman : "Numeração Romana em Maiúsculas (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Geral", DlgDocBackTab : "Fundo", DlgDocColorsTab : "Cores e Margens", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Título da Página", DlgDocLangDir : "Orientação de idioma", DlgDocLangDirLTR : "Esquerda à Direita (LTR)", DlgDocLangDirRTL : "Direita à Esquerda (RTL)", DlgDocLangCode : "Código de Idioma", DlgDocCharSet : "Codificação de Caracteres", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Outra Codificação de Caracteres", DlgDocDocType : "Tipo de Cabeçalho do Documento", DlgDocDocTypeOther : "Outro Tipo de Cabeçalho do Documento", DlgDocIncXHTML : "Incluir Declarações XHTML", DlgDocBgColor : "Cor de Fundo", DlgDocBgImage : "Caminho para a Imagem de Fundo", DlgDocBgNoScroll : "Fundo Fixo", DlgDocCText : "Texto", DlgDocCLink : "Hiperligação", DlgDocCVisited : "Hiperligação Visitada", DlgDocCActive : "Hiperligação Activa", DlgDocMargins : "Margem das Páginas", DlgDocMaTop : "Topo", DlgDocMaLeft : "Esquerda", DlgDocMaRight : "Direita", DlgDocMaBottom : "Fundo", DlgDocMeIndex : "Palavras de Indexação do Documento (separadas por virgula)", DlgDocMeDescr : "Descrição do Documento", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Direitos de Autor", DlgDocPreview : "Pré-visualizar", // Templates Dialog Templates : "Modelos", DlgTemplatesTitle : "Modelo de Conteúdo", DlgTemplatesSelMsg : "Por favor, seleccione o modelo a abrir no editor
(o conteúdo actual será perdido):", DlgTemplatesLoading : "A carregar a lista de modelos. Aguarde por favor...", DlgTemplatesNoTpl : "(Sem modelos definidos)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Acerca", DlgAboutBrowserInfoTab : "Informação do Nevegador", DlgAboutLicenseTab : "Licença", DlgAboutVersion : "versão", DlgAboutInfo : "Para mais informações por favor dirija-se a" };FCKeditor/editor/lang/zh.js0000644000102600010270000004055111234071654015047 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Chinese Traditional language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "隱藏面板", ToolbarExpand : "顯示面板", // Toolbar Items and Context Menu Save : "儲存", NewPage : "開新檔案", Preview : "預覽", Cut : "剪下", Copy : "複製", Paste : "貼上", PasteText : "貼為純文字格式", PasteWord : "自 Word 貼上", Print : "列印", SelectAll : "全選", RemoveFormat : "清除格式", InsertLinkLbl : "超連結", InsertLink : "插入/編輯超連結", RemoveLink : "移除超連結", Anchor : "插入/編輯錨點", InsertImageLbl : "影像", InsertImage : "插入/編輯影像", InsertFlashLbl : "Flash", InsertFlash : "插入/編輯 Flash", InsertTableLbl : "表格", InsertTable : "插入/編輯表格", InsertLineLbl : "水平線", InsertLine : "插入水平線", InsertSpecialCharLbl: "特殊符號", InsertSpecialChar : "插入特殊符號", InsertSmileyLbl : "表情符號", InsertSmiley : "插入表情符號", About : "關於 FCKeditor", Bold : "粗體", Italic : "斜體", Underline : "底線", StrikeThrough : "刪除線", Subscript : "下標", Superscript : "上標", LeftJustify : "靠左對齊", CenterJustify : "置中", RightJustify : "靠右對齊", BlockJustify : "左右對齊", DecreaseIndent : "減少縮排", IncreaseIndent : "增加縮排", Undo : "復原", Redo : "重複", NumberedListLbl : "編號清單", NumberedList : "插入/移除編號清單", BulletedListLbl : "項目清單", BulletedList : "插入/移除項目清單", ShowTableBorders : "顯示表格邊框", ShowDetails : "顯示詳細資料", Style : "樣式", FontFormat : "格式", Font : "字體", FontSize : "大小", TextColor : "文字顏色", BGColor : "背景顏色", Source : "原始碼", Find : "尋找", Replace : "取代", SpellCheck : "拼字檢查", UniversalKeyboard : "萬國鍵盤", PageBreakLbl : "分頁符號", PageBreak : "插入分頁符號", Form : "表單", Checkbox : "核取方塊", RadioButton : "選項按鈕", TextField : "文字方塊", Textarea : "文字區域", HiddenField : "隱藏欄位", Button : "按鈕", SelectionField : "清單/選單", ImageButton : "影像按鈕", FitWindow : "編輯器最大化", // Context Menu EditLink : "編輯超連結", CellCM : "儲存格", RowCM : "列", ColumnCM : "欄", InsertRow : "插入列", DeleteRows : "刪除列", InsertColumn : "插入欄", DeleteColumns : "刪除欄", InsertCell : "插入儲存格", DeleteCells : "刪除儲存格", MergeCells : "合併儲存格", SplitCell : "分割儲存格", TableDelete : "刪除表格", CellProperties : "儲存格屬性", TableProperties : "表格屬性", ImageProperties : "影像屬性", FlashProperties : "Flash 屬性", AnchorProp : "錨點屬性", ButtonProp : "按鈕屬性", CheckboxProp : "核取方塊屬性", HiddenFieldProp : "隱藏欄位屬性", RadioButtonProp : "選項按鈕屬性", ImageButtonProp : "影像按鈕屬性", TextFieldProp : "文字方塊屬性", SelectionFieldProp : "清單/選單屬性", TextareaProp : "文字區域屬性", FormProp : "表單屬性", FontFormats : "本文;已格式化;位址;標題 1;標題 2;標題 3;標題 4;標題 5;標題 6;本文 (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "處理 XHTML 中,請稍候…", Done : "完成", PasteWordConfirm : "您想貼上的文字似乎是自 Word 複製而來,請問您是否要先清除 Word 的格式後再行貼上?", NotCompatiblePaste : "此指令僅在 Internet Explorer 5.5 或以上的版本有效。請問您是否同意不清除格式即貼上?", UnknownToolbarItem : "未知工具列項目 \"%1\"", UnknownCommand : "未知指令名稱 \"%1\"", NotImplemented : "尚未安裝此指令", UnknownToolbarSet : "工具列設定 \"%1\" 不存在", NoActiveX : "瀏覽器的安全性設定限制了本編輯器的某些功能。您必須啟用安全性設定中的「執行ActiveX控制項與外掛程式」項目,否則本編輯器將會出現錯誤並缺少某些功能", BrowseServerBlocked : "無法開啟資源瀏覽器,請確定所有快顯視窗封鎖程式是否關閉", DialogBlocked : "無法開啟對話視窗,請確定所有快顯視窗封鎖程式是否關閉", // Dialogs DlgBtnOK : "確定", DlgBtnCancel : "取消", DlgBtnClose : "關閉", DlgBtnBrowseServer : "瀏覽伺服器端", DlgAdvancedTag : "進階", DlgOpOther : "<其他>", DlgInfoTab : "資訊", DlgAlertUrl : "請插入 URL", // General Dialogs Labels DlgGenNotSet : "<尚未設定>", DlgGenId : "ID", DlgGenLangDir : "語言方向", DlgGenLangDirLtr : "由左而右 (LTR)", DlgGenLangDirRtl : "由右而左 (RTL)", DlgGenLangCode : "語言代碼", DlgGenAccessKey : "存取鍵", DlgGenName : "名稱", DlgGenTabIndex : "定位順序", DlgGenLongDescr : "詳細 URL", DlgGenClass : "樣式表類別", DlgGenTitle : "標題", DlgGenContType : "內容類型", DlgGenLinkCharset : "連結資源之編碼", DlgGenStyle : "樣式", // Image Dialog DlgImgTitle : "影像屬性", DlgImgInfoTab : "影像資訊", DlgImgBtnUpload : "上傳至伺服器", DlgImgURL : "URL", DlgImgUpload : "上傳", DlgImgAlt : "替代文字", DlgImgWidth : "寬度", DlgImgHeight : "高度", DlgImgLockRatio : "等比例", DlgBtnResetSize : "重設為原大小", DlgImgBorder : "邊框", DlgImgHSpace : "水平距離", DlgImgVSpace : "垂直距離", DlgImgAlign : "對齊", DlgImgAlignLeft : "靠左對齊", DlgImgAlignAbsBottom: "絕對下方", DlgImgAlignAbsMiddle: "絕對中間", DlgImgAlignBaseline : "基準線", DlgImgAlignBottom : "靠下對齊", DlgImgAlignMiddle : "置中對齊", DlgImgAlignRight : "靠右對齊", DlgImgAlignTextTop : "文字上方", DlgImgAlignTop : "靠上對齊", DlgImgPreview : "預覽", DlgImgAlertUrl : "請輸入影像 URL", DlgImgLinkTab : "超連結", // Flash Dialog DlgFlashTitle : "Flash 屬性", DlgFlashChkPlay : "自動播放", DlgFlashChkLoop : "重複", DlgFlashChkMenu : "開啟選單", DlgFlashScale : "縮放", DlgFlashScaleAll : "全部顯示", DlgFlashScaleNoBorder : "無邊框", DlgFlashScaleFit : "精確符合", // Link Dialog DlgLnkWindowTitle : "超連結", DlgLnkInfoTab : "超連結資訊", DlgLnkTargetTab : "目標", DlgLnkType : "超連接類型", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "本頁錨點", DlgLnkTypeEMail : "電子郵件", DlgLnkProto : "通訊協定", DlgLnkProtoOther : "<其他>", DlgLnkURL : "URL", DlgLnkAnchorSel : "請選擇錨點", DlgLnkAnchorByName : "依錨點名稱", DlgLnkAnchorById : "依元件 ID", DlgLnkNoAnchors : "<本文件尚無可用之錨點>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "電子郵件", DlgLnkEMailSubject : "郵件主旨", DlgLnkEMailBody : "郵件內容", DlgLnkUpload : "上傳", DlgLnkBtnUpload : "傳送至伺服器", DlgLnkTarget : "目標", DlgLnkTargetFrame : "<框架>", DlgLnkTargetPopup : "<快顯視窗>", DlgLnkTargetBlank : "新視窗 (_blank)", DlgLnkTargetParent : "父視窗 (_parent)", DlgLnkTargetSelf : "本視窗 (_self)", DlgLnkTargetTop : "最上層視窗 (_top)", DlgLnkTargetFrameName : "目標框架名稱", DlgLnkPopWinName : "快顯視窗名稱", DlgLnkPopWinFeat : "快顯視窗屬性", DlgLnkPopResize : "可調整大小", DlgLnkPopLocation : "網址列", DlgLnkPopMenu : "選單列", DlgLnkPopScroll : "捲軸", DlgLnkPopStatus : "狀態列", DlgLnkPopToolbar : "工具列", DlgLnkPopFullScrn : "全螢幕 (IE)", DlgLnkPopDependent : "從屬 (NS)", DlgLnkPopWidth : "寬", DlgLnkPopHeight : "高", DlgLnkPopLeft : "左", DlgLnkPopTop : "右", DlnLnkMsgNoUrl : "請輸入欲連結的 URL", DlnLnkMsgNoEMail : "請輸入電子郵件位址", DlnLnkMsgNoAnchor : "請選擇錨點", DlnLnkMsgInvPopName : "快顯名稱必須以「英文字母」為開頭,且不得含有空白", // Color Dialog DlgColorTitle : "請選擇顏色", DlgColorBtnClear : "清除", DlgColorHighlight : "預覽", DlgColorSelected : "選擇", // Smiley Dialog DlgSmileyTitle : "插入表情符號", // Special Character Dialog DlgSpecialCharTitle : "請選擇特殊符號", // Table Dialog DlgTableTitle : "表格屬性", DlgTableRows : "列數", DlgTableColumns : "欄數", DlgTableBorder : "邊框", DlgTableAlign : "對齊", DlgTableAlignNotSet : "<未設定>", DlgTableAlignLeft : "靠左對齊", DlgTableAlignCenter : "置中", DlgTableAlignRight : "靠右對齊", DlgTableWidth : "寬度", DlgTableWidthPx : "像素", DlgTableWidthPc : "百分比", DlgTableHeight : "高度", DlgTableCellSpace : "間距", DlgTableCellPad : "內距", DlgTableCaption : "標題", DlgTableSummary : "摘要", // Table Cell Dialog DlgCellTitle : "儲存格屬性", DlgCellWidth : "寬度", DlgCellWidthPx : "像素", DlgCellWidthPc : "百分比", DlgCellHeight : "高度", DlgCellWordWrap : "自動換行", DlgCellWordWrapNotSet : "<尚未設定>", DlgCellWordWrapYes : "是", DlgCellWordWrapNo : "否", DlgCellHorAlign : "水平對齊", DlgCellHorAlignNotSet : "<尚未設定>", DlgCellHorAlignLeft : "靠左對齊", DlgCellHorAlignCenter : "置中", DlgCellHorAlignRight: "靠右對齊", DlgCellVerAlign : "垂直對齊", DlgCellVerAlignNotSet : "<尚未設定>", DlgCellVerAlignTop : "靠上對齊", DlgCellVerAlignMiddle : "置中", DlgCellVerAlignBottom : "靠下對齊", DlgCellVerAlignBaseline : "基準線", DlgCellRowSpan : "合併列數", DlgCellCollSpan : "合併欄数", DlgCellBackColor : "背景顏色", DlgCellBorderColor : "邊框顏色", DlgCellBtnSelect : "請選擇…", // Find Dialog DlgFindTitle : "尋找", DlgFindFindBtn : "尋找", DlgFindNotFoundMsg : "未找到指定的文字。", // Replace Dialog DlgReplaceTitle : "取代", DlgReplaceFindLbl : "尋找:", DlgReplaceReplaceLbl : "取代:", DlgReplaceCaseChk : "大小寫須相符", DlgReplaceReplaceBtn : "取代", DlgReplaceReplAllBtn : "全部取代", DlgReplaceWordChk : "全字相符", // Paste Operations / Dialog PasteErrorCut : "瀏覽器的安全性設定不允許編輯器自動執行剪下動作。請使用快捷鍵 (Ctrl+X) 剪下。", PasteErrorCopy : "瀏覽器的安全性設定不允許編輯器自動執行複製動作。請使用快捷鍵 (Ctrl+C) 複製。", PasteAsText : "貼為純文字格式", PasteFromWord : "自 Word 貼上", DlgPasteMsg2 : "請使用快捷鍵 (Ctrl+V) 貼到下方區域中並按下 確定", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "移除字型設定", DlgPasteRemoveStyles : "移除樣式設定", DlgPasteCleanBox : "清除文字區域", // Color Picker ColorAutomatic : "自動", ColorMoreColors : "更多顏色…", // Document Properties DocProps : "文件屬性", // Anchor Dialog DlgAnchorTitle : "命名錨點", DlgAnchorName : "錨點名稱", DlgAnchorErrorName : "請輸入錨點名稱", // Speller Pages Dialog DlgSpellNotInDic : "不在字典中", DlgSpellChangeTo : "更改為", DlgSpellBtnIgnore : "忽略", DlgSpellBtnIgnoreAll : "全部忽略", DlgSpellBtnReplace : "取代", DlgSpellBtnReplaceAll : "全部取代", DlgSpellBtnUndo : "復原", DlgSpellNoSuggestions : "- 無建議值 -", DlgSpellProgress : "進行拼字檢查中…", DlgSpellNoMispell : "拼字檢查完成:未發現拼字錯誤", DlgSpellNoChanges : "拼字檢查完成:未更改任何單字", DlgSpellOneChange : "拼字檢查完成:更改了 1 個單字", DlgSpellManyChanges : "拼字檢查完成:更改了 %1 個單字", IeSpellDownload : "尚未安裝拼字檢查元件。您是否想要現在下載?", // Button Dialog DlgButtonText : "顯示文字 (值)", DlgButtonType : "類型", DlgButtonTypeBtn : "按鈕 (Button)", DlgButtonTypeSbm : "送出 (Submit)", DlgButtonTypeRst : "重設 (Reset)", // Checkbox and Radio Button Dialogs DlgCheckboxName : "名稱", DlgCheckboxValue : "選取值", DlgCheckboxSelected : "已選取", // Form Dialog DlgFormName : "名稱", DlgFormAction : "動作", DlgFormMethod : "方法", // Select Field Dialog DlgSelectName : "名稱", DlgSelectValue : "選取值", DlgSelectSize : "大小", DlgSelectLines : "行", DlgSelectChkMulti : "可多選", DlgSelectOpAvail : "可用選項", DlgSelectOpText : "顯示文字", DlgSelectOpValue : "值", DlgSelectBtnAdd : "新增", DlgSelectBtnModify : "修改", DlgSelectBtnUp : "上移", DlgSelectBtnDown : "下移", DlgSelectBtnSetValue : "設為預設值", DlgSelectBtnDelete : "刪除", // Textarea Dialog DlgTextareaName : "名稱", DlgTextareaCols : "字元寬度", DlgTextareaRows : "列數", // Text Field Dialog DlgTextName : "名稱", DlgTextValue : "值", DlgTextCharWidth : "字元寬度", DlgTextMaxChars : "最多字元數", DlgTextType : "類型", DlgTextTypeText : "文字", DlgTextTypePass : "密碼", // Hidden Field Dialog DlgHiddenName : "名稱", DlgHiddenValue : "值", // Bulleted List Dialog BulletedListProp : "項目清單屬性", NumberedListProp : "編號清單屬性", DlgLstStart : "起始編號", DlgLstType : "清單類型", DlgLstTypeCircle : "圓圈", DlgLstTypeDisc : "圓點", 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 : "一般", DlgDocBackTab : "背景", DlgDocColorsTab : "顯色與邊界", DlgDocMetaTab : "Meta 資料", DlgDocPageTitle : "頁面標題", DlgDocLangDir : "語言方向", DlgDocLangDirLTR : "由左而右 (LTR)", DlgDocLangDirRTL : "由右而左 (RTL)", DlgDocLangCode : "語言代碼", DlgDocCharSet : "字元編碼", DlgDocCharSetCE : "中歐語系", DlgDocCharSetCT : "正體中文 (Big5)", DlgDocCharSetCR : "斯拉夫文", DlgDocCharSetGR : "希臘文", DlgDocCharSetJP : "日文", DlgDocCharSetKR : "韓文", DlgDocCharSetTR : "土耳其文", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "西歐語系", DlgDocCharSetOther : "其他字元編碼", DlgDocDocType : "文件類型", DlgDocDocTypeOther : "其他文件類型", DlgDocIncXHTML : "包含 XHTML 定義", DlgDocBgColor : "背景顏色", DlgDocBgImage : "背景影像", DlgDocBgNoScroll : "浮水印", DlgDocCText : "文字", DlgDocCLink : "超連結", DlgDocCVisited : "已瀏覽過的超連結", DlgDocCActive : "作用中的超連結", DlgDocMargins : "頁面邊界", DlgDocMaTop : "上", DlgDocMaLeft : "左", DlgDocMaRight : "右", DlgDocMaBottom : "下", DlgDocMeIndex : "文件索引關鍵字 (用半形逗號[,]分隔)", DlgDocMeDescr : "文件說明", DlgDocMeAuthor : "作者", DlgDocMeCopy : "版權所有", DlgDocPreview : "預覽", // Templates Dialog Templates : "樣版", DlgTemplatesTitle : "內容樣版", DlgTemplatesSelMsg : "請選擇欲開啟的樣版
(原有的內容將會被清除):", DlgTemplatesLoading : "讀取樣版清單中,請稍候…", DlgTemplatesNoTpl : "(無樣版)", DlgTemplatesReplace : "取代原有內容", // About Dialog DlgAboutAboutTab : "關於", DlgAboutBrowserInfoTab : "瀏覽器資訊", DlgAboutLicenseTab : "許可證", DlgAboutVersion : "版本", DlgAboutInfo : "想獲得更多資訊請至 " };FCKeditor/editor/lang/_translationstatus.txt0000644000102600010270000000503311234071655020567 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Translations Status. */ af.js Found: 401 Missing: 1 ar.js Found: 401 Missing: 1 bg.js Found: 378 Missing: 24 bn.js Found: 386 Missing: 16 bs.js Found: 230 Missing: 172 ca.js Found: 402 Missing: 0 cs.js Found: 400 Missing: 2 da.js Found: 386 Missing: 16 de.js Found: 401 Missing: 1 el.js Found: 401 Missing: 1 en-au.js Found: 402 Missing: 0 en-ca.js Found: 402 Missing: 0 en-uk.js Found: 402 Missing: 0 eo.js Found: 350 Missing: 52 es.js Found: 386 Missing: 16 et.js Found: 402 Missing: 0 eu.js Found: 386 Missing: 16 fa.js Found: 402 Missing: 0 fi.js Found: 402 Missing: 0 fo.js Found: 401 Missing: 1 fr.js Found: 401 Missing: 1 gl.js Found: 386 Missing: 16 he.js Found: 402 Missing: 0 hi.js Found: 401 Missing: 1 hr.js Found: 401 Missing: 1 hu.js Found: 401 Missing: 1 it.js Found: 401 Missing: 1 ja.js Found: 401 Missing: 1 km.js Found: 376 Missing: 26 ko.js Found: 373 Missing: 29 lt.js Found: 381 Missing: 21 lv.js Found: 386 Missing: 16 mn.js Found: 230 Missing: 172 ms.js Found: 356 Missing: 46 nb.js Found: 400 Missing: 2 nl.js Found: 401 Missing: 1 no.js Found: 400 Missing: 2 pl.js Found: 386 Missing: 16 pt-br.js Found: 401 Missing: 1 pt.js Found: 386 Missing: 16 ro.js Found: 400 Missing: 2 ru.js Found: 401 Missing: 1 sk.js Found: 401 Missing: 1 sl.js Found: 378 Missing: 24 sr-latn.js Found: 373 Missing: 29 sr.js Found: 373 Missing: 29 sv.js Found: 401 Missing: 1 th.js Found: 398 Missing: 4 tr.js Found: 401 Missing: 1 uk.js Found: 402 Missing: 0 vi.js Found: 401 Missing: 1 zh-cn.js Found: 401 Missing: 1 zh.js Found: 401 Missing: 1 FCKeditor/editor/lang/ru.js0000644000102600010270000005722511234071637015063 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Russian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Свернуть панель инструментов", ToolbarExpand : "Развернуть панель инструментов", // Toolbar Items and Context Menu Save : "Сохранить", NewPage : "Новая страница", Preview : "Предварительный просмотр", Cut : "Вырезать", Copy : "Копировать", Paste : "Вставить", PasteText : "Вставить только текст", PasteWord : "Вставить из Word", Print : "Печать", SelectAll : "Выделить все", RemoveFormat : "Убрать форматирование", InsertLinkLbl : "Ссылка", InsertLink : "Вставить/Редактировать ссылку", RemoveLink : "Убрать ссылку", Anchor : "Вставить/Редактировать якорь", InsertImageLbl : "Изображение", InsertImage : "Вставить/Редактировать изображение", InsertFlashLbl : "Flash", InsertFlash : "Вставить/Редактировать Flash", InsertTableLbl : "Таблица", InsertTable : "Вставить/Редактировать таблицу", InsertLineLbl : "Линия", InsertLine : "Вставить горизонтальную линию", InsertSpecialCharLbl: "Специальный символ", InsertSpecialChar : "Вставить специальный символ", InsertSmileyLbl : "Смайлик", InsertSmiley : "Вставить смайлик", About : "О FCKeditor", Bold : "Жирный", Italic : "Курсив", Underline : "Подчеркнутый", StrikeThrough : "Зачеркнутый", Subscript : "Подстрочный индекс", Superscript : "Надстрочный индекс", LeftJustify : "По левому краю", CenterJustify : "По центру", RightJustify : "По правому краю", BlockJustify : "По ширине", DecreaseIndent : "Уменьшить отступ", IncreaseIndent : "Увеличить отступ", Undo : "Отменить", Redo : "Повторить", NumberedListLbl : "Нумерованный список", NumberedList : "Вставить/Удалить нумерованный список", BulletedListLbl : "Маркированный список", BulletedList : "Вставить/Удалить маркированный список", ShowTableBorders : "Показать бордюры таблицы", ShowDetails : "Показать детали", Style : "Стиль", FontFormat : "Форматирование", Font : "Шрифт", FontSize : "Размер", TextColor : "Цвет текста", BGColor : "Цвет фона", Source : "Источник", Find : "Найти", Replace : "Заменить", SpellCheck : "Проверить орфографию", UniversalKeyboard : "Универсальная клавиатура", PageBreakLbl : "Разрыв страницы", PageBreak : "Вставить разрыв страницы", Form : "Форма", Checkbox : "Флаговая кнопка", RadioButton : "Кнопка выбора", TextField : "Текстовое поле", Textarea : "Текстовая область", HiddenField : "Скрытое поле", Button : "Кнопка", SelectionField : "Список", ImageButton : "Кнопка с изображением", FitWindow : "Развернуть окно редактора", // Context Menu EditLink : "Вставить ссылку", CellCM : "Ячейка", RowCM : "Строка", ColumnCM : "Колонка", InsertRow : "Вставить строку", DeleteRows : "Удалить строки", InsertColumn : "Вставить колонку", DeleteColumns : "Удалить колонки", InsertCell : "Вставить ячейку", DeleteCells : "Удалить ячейки", MergeCells : "Соединить ячейки", SplitCell : "Разбить ячейку", TableDelete : "Удалить таблицу", CellProperties : "Свойства ячейки", TableProperties : "Свойства таблицы", ImageProperties : "Свойства изображения", FlashProperties : "Свойства Flash", AnchorProp : "Свойства якоря", ButtonProp : "Свойства кнопки", CheckboxProp : "Свойства флаговой кнопки", HiddenFieldProp : "Свойства скрытого поля", RadioButtonProp : "Свойства кнопки выбора", ImageButtonProp : "Свойства кнопки с изображением", TextFieldProp : "Свойства текстового поля", SelectionFieldProp : "Свойства списка", TextareaProp : "Свойства текстовой области", FormProp : "Свойства формы", FontFormats : "Нормальный;Форматированный;Адрес;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальный (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обработка XHTML. Пожалуйста подождите...", Done : "Сделано", PasteWordConfirm : "Текст, который вы хотите вставить, похож на копируемый из Word. Вы хотите очистить его перед вставкой?", NotCompatiblePaste : "Эта команда доступна для Internet Explorer версии 5.5 или выше. Вы хотите вставить без очистки?", UnknownToolbarItem : "Не известный элемент панели инструментов \"%1\"", UnknownCommand : "Не известное имя команды \"%1\"", NotImplemented : "Команда не реализована", UnknownToolbarSet : "Панель инструментов \"%1\" не существует", NoActiveX : "Настройки безопасности вашего браузера могут ограничивать некоторые свойства редактора. Вы должны включить опцию \"Запускать элементы управления ActiveX и плугины\". Вы можете видеть ошибки и замечать отсутствие возможностей.", BrowseServerBlocked : "Ресурсы браузера не могут быть открыты. Проверьте что блокировки всплывающих окон выключены.", DialogBlocked : "Не возможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.", // Dialogs DlgBtnOK : "ОК", DlgBtnCancel : "Отмена", DlgBtnClose : "Закрыть", DlgBtnBrowseServer : "Просмотреть на сервере", DlgAdvancedTag : "Расширенный", DlgOpOther : "<Другое>", DlgInfoTab : "Информация", DlgAlertUrl : "Пожалуйста вставьте URL", // General Dialogs Labels DlgGenNotSet : "<не определено>", DlgGenId : "Идентификатор", DlgGenLangDir : "Направление языка", DlgGenLangDirLtr : "Слева на право (LTR)", DlgGenLangDirRtl : "Справа на лево (RTL)", DlgGenLangCode : "Язык", DlgGenAccessKey : "Горячая клавиша", DlgGenName : "Имя", DlgGenTabIndex : "Последовательность перехода", DlgGenLongDescr : "Длинное описание URL", DlgGenClass : "Класс CSS", DlgGenTitle : "Заголовок", DlgGenContType : "Тип содержимого", DlgGenLinkCharset : "Кодировка", DlgGenStyle : "Стиль CSS", // Image Dialog DlgImgTitle : "Свойства изображения", DlgImgInfoTab : "Информация о изображении", DlgImgBtnUpload : "Послать на сервер", DlgImgURL : "URL", DlgImgUpload : "Закачать", DlgImgAlt : "Альтернативный текст", DlgImgWidth : "Ширина", DlgImgHeight : "Высота", DlgImgLockRatio : "Сохранять пропорции", DlgBtnResetSize : "Сбросить размер", DlgImgBorder : "Бордюр", DlgImgHSpace : "Горизонтальный отступ", DlgImgVSpace : "Вертикальный отступ", DlgImgAlign : "Выравнивание", DlgImgAlignLeft : "По левому краю", DlgImgAlignAbsBottom: "Абс понизу", DlgImgAlignAbsMiddle: "Абс посередине", DlgImgAlignBaseline : "По базовой линии", DlgImgAlignBottom : "Понизу", DlgImgAlignMiddle : "Посередине", DlgImgAlignRight : "По правому краю", DlgImgAlignTextTop : "Текст наверху", DlgImgAlignTop : "По верху", DlgImgPreview : "Предварительный просмотр", DlgImgAlertUrl : "Пожалуйста введите URL изображения", DlgImgLinkTab : "Ссылка", // Flash Dialog DlgFlashTitle : "Свойства Flash", DlgFlashChkPlay : "Авто проигрывание", DlgFlashChkLoop : "Повтор", DlgFlashChkMenu : "Включить меню Flash", DlgFlashScale : "Масштабировать", DlgFlashScaleAll : "Показывать все", DlgFlashScaleNoBorder : "Без бордюра", DlgFlashScaleFit : "Точное совпадение", // Link Dialog DlgLnkWindowTitle : "Ссылка", DlgLnkInfoTab : "Информация ссылки", DlgLnkTargetTab : "Цель", DlgLnkType : "Тип ссылки", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Якорь на эту страницу", DlgLnkTypeEMail : "Эл. почта", DlgLnkProto : "Протокол", DlgLnkProtoOther : "<другое>", DlgLnkURL : "URL", DlgLnkAnchorSel : "Выберите якорь", DlgLnkAnchorByName : "По имени якоря", DlgLnkAnchorById : "По идентификатору элемента", DlgLnkNoAnchors : "<Нет якорей доступных в этом документе>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адрес эл. почты", DlgLnkEMailSubject : "Заголовок сообщения", DlgLnkEMailBody : "Тело сообщения", DlgLnkUpload : "Закачать", DlgLnkBtnUpload : "Послать на сервер", DlgLnkTarget : "Цель", DlgLnkTargetFrame : "<фрейм>", DlgLnkTargetPopup : "<всплывающее окно>", DlgLnkTargetBlank : "Новое окно (_blank)", DlgLnkTargetParent : "Родительское окно (_parent)", DlgLnkTargetSelf : "Тоже окно (_self)", DlgLnkTargetTop : "Самое верхнее окно (_top)", DlgLnkTargetFrameName : "Имя целевого фрейма", DlgLnkPopWinName : "Имя всплывающего окна", DlgLnkPopWinFeat : "Свойства всплывающего окна", DlgLnkPopResize : "Изменяющееся в размерах", DlgLnkPopLocation : "Панель локации", DlgLnkPopMenu : "Панель меню", DlgLnkPopScroll : "Полосы прокрутки", DlgLnkPopStatus : "Строка состояния", DlgLnkPopToolbar : "Панель инструментов", DlgLnkPopFullScrn : "Полный экран (IE)", DlgLnkPopDependent : "Зависимый (Netscape)", DlgLnkPopWidth : "Ширина", DlgLnkPopHeight : "Высота", DlgLnkPopLeft : "Позиция слева", DlgLnkPopTop : "Позиция сверху", DlnLnkMsgNoUrl : "Пожалуйста введите URL ссылки", DlnLnkMsgNoEMail : "Пожалуйста введите адрес эл. почты", DlnLnkMsgNoAnchor : "Пожалуйста выберете якорь", DlnLnkMsgInvPopName : "Название вспывающего окна должно начинаться буквы и не может содержать пробелов", // Color Dialog DlgColorTitle : "Выберите цвет", DlgColorBtnClear : "Очистить", DlgColorHighlight : "Подсвеченный", DlgColorSelected : "Выбранный", // Smiley Dialog DlgSmileyTitle : "Вставить смайлик", // Special Character Dialog DlgSpecialCharTitle : "Выберите специальный символ", // Table Dialog DlgTableTitle : "Свойства таблицы", DlgTableRows : "Строки", DlgTableColumns : "Колонки", DlgTableBorder : "Размер бордюра", DlgTableAlign : "Выравнивание", DlgTableAlignNotSet : "<Не уст.>", DlgTableAlignLeft : "Слева", DlgTableAlignCenter : "По центру", DlgTableAlignRight : "Справа", DlgTableWidth : "Ширина", DlgTableWidthPx : "пикселей", DlgTableWidthPc : "процентов", DlgTableHeight : "Высота", DlgTableCellSpace : "Промежуток (spacing)", DlgTableCellPad : "Отступ (padding)", DlgTableCaption : "Заголовок", DlgTableSummary : "Резюме", // Table Cell Dialog DlgCellTitle : "Свойства ячейки", DlgCellWidth : "Ширина", DlgCellWidthPx : "пикселей", DlgCellWidthPc : "процентов", DlgCellHeight : "Высота", DlgCellWordWrap : "Заворачивание текста", DlgCellWordWrapNotSet : "<Не уст.>", DlgCellWordWrapYes : "Да", DlgCellWordWrapNo : "Нет", DlgCellHorAlign : "Гор. выравнивание", DlgCellHorAlignNotSet : "<Не уст.>", DlgCellHorAlignLeft : "Слева", DlgCellHorAlignCenter : "По центру", DlgCellHorAlignRight: "Справа", DlgCellVerAlign : "Верт. выравнивание", DlgCellVerAlignNotSet : "<Не уст.>", DlgCellVerAlignTop : "Сверху", DlgCellVerAlignMiddle : "Посередине", DlgCellVerAlignBottom : "Снизу", DlgCellVerAlignBaseline : "По базовой линии", DlgCellRowSpan : "Диапазон строк (span)", DlgCellCollSpan : "Диапазон колонок (span)", DlgCellBackColor : "Цвет фона", DlgCellBorderColor : "Цвет бордюра", DlgCellBtnSelect : "Выберите...", // Find Dialog DlgFindTitle : "Найти", DlgFindFindBtn : "Найти", DlgFindNotFoundMsg : "Указанный текст не найден.", // Replace Dialog DlgReplaceTitle : "Заменить", DlgReplaceFindLbl : "Найти:", DlgReplaceReplaceLbl : "Заменить на:", DlgReplaceCaseChk : "Учитывать регистр", DlgReplaceReplaceBtn : "Заменить", DlgReplaceReplAllBtn : "Заменить все", DlgReplaceWordChk : "Совпадение целых слов", // Paste Operations / Dialog PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста используйте клавиатуру для этого (Ctrl+X).", PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста используйте клавиатуру для этого (Ctrl+C).", PasteAsText : "Вставить только текст", PasteFromWord : "Вставить из Word", DlgPasteMsg2 : "Пожалуйста вставьте текст в прямоугольник используя сочетание клавиш (Ctrl+V) и нажмите OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Игнорировать определения гарнитуры", DlgPasteRemoveStyles : "Убрать определения стилей", DlgPasteCleanBox : "Очистить", // Color Picker ColorAutomatic : "Автоматический", ColorMoreColors : "Цвета...", // Document Properties DocProps : "Свойства документа", // Anchor Dialog DlgAnchorTitle : "Свойства якоря", DlgAnchorName : "Имя якоря", DlgAnchorErrorName : "Пожалуйста введите имя якоря", // Speller Pages Dialog DlgSpellNotInDic : "Нет в словаре", DlgSpellChangeTo : "Заменить на", DlgSpellBtnIgnore : "Игнорировать", DlgSpellBtnIgnoreAll : "Игнорировать все", DlgSpellBtnReplace : "Заменить", DlgSpellBtnReplaceAll : "Заменить все", DlgSpellBtnUndo : "Отменить", DlgSpellNoSuggestions : "- Нет предположений -", DlgSpellProgress : "Идет проверка орфографии...", DlgSpellNoMispell : "Проверка орфографии закончена: ошибок не найдено", DlgSpellNoChanges : "Проверка орфографии закончена: ни одного слова не изменено", DlgSpellOneChange : "Проверка орфографии закончена: одно слово изменено", DlgSpellManyChanges : "Проверка орфографии закончена: 1% слов изменен", IeSpellDownload : "Модуль проверки орфографии не установлен. Хотите скачать его сейчас?", // Button Dialog DlgButtonText : "Текст (Значение)", DlgButtonType : "Тип", DlgButtonTypeBtn : "Кнопка", DlgButtonTypeSbm : "Отправить", DlgButtonTypeRst : "Сбросить", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Имя", DlgCheckboxValue : "Значение", DlgCheckboxSelected : "Выбранная", // Form Dialog DlgFormName : "Имя", DlgFormAction : "Действие", DlgFormMethod : "Метод", // Select Field Dialog DlgSelectName : "Имя", DlgSelectValue : "Значение", DlgSelectSize : "Размер", DlgSelectLines : "линии", DlgSelectChkMulti : "Разрешить множественный выбор", DlgSelectOpAvail : "Доступные варианты", DlgSelectOpText : "Текст", DlgSelectOpValue : "Значение", DlgSelectBtnAdd : "Добавить", DlgSelectBtnModify : "Модифицировать", DlgSelectBtnUp : "Вверх", DlgSelectBtnDown : "Вниз", DlgSelectBtnSetValue : "Установить как выбранное значение", DlgSelectBtnDelete : "Удалить", // Textarea Dialog DlgTextareaName : "Имя", DlgTextareaCols : "Колонки", DlgTextareaRows : "Строки", // Text Field Dialog DlgTextName : "Имя", DlgTextValue : "Значение", DlgTextCharWidth : "Ширина", DlgTextMaxChars : "Макс. кол-во символов", DlgTextType : "Тип", DlgTextTypeText : "Текст", DlgTextTypePass : "Пароль", // Hidden Field Dialog DlgHiddenName : "Имя", DlgHiddenValue : "Значение", // Bulleted List Dialog BulletedListProp : "Свойства маркированного списка", NumberedListProp : "Свойства нумерованного списка", DlgLstStart : "Начало", DlgLstType : "Тип", DlgLstTypeCircle : "Круг", DlgLstTypeDisc : "Диск", 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 : "Общие", DlgDocBackTab : "Задний фон", DlgDocColorsTab : "Цвета и отступы", DlgDocMetaTab : "Мета данные", DlgDocPageTitle : "Заголовок страницы", DlgDocLangDir : "Направление текста", DlgDocLangDirLTR : "Слева на право (LTR)", DlgDocLangDirRTL : "Справа на лево (RTL)", DlgDocLangCode : "Код языка", DlgDocCharSet : "Кодировка набора символов", DlgDocCharSetCE : "Центрально-европейская", DlgDocCharSetCT : "Китайская традиционная (Big5)", DlgDocCharSetCR : "Кириллица", DlgDocCharSetGR : "Греческая", DlgDocCharSetJP : "Японская", DlgDocCharSetKR : "Корейская", DlgDocCharSetTR : "Турецкая", DlgDocCharSetUN : "Юникод (UTF-8)", DlgDocCharSetWE : "Западно-европейская", DlgDocCharSetOther : "Другая кодировка набора символов", DlgDocDocType : "Заголовок типа документа", DlgDocDocTypeOther : "Другой заголовок типа документа", DlgDocIncXHTML : "Включить XHTML объявления", DlgDocBgColor : "Цвет фона", DlgDocBgImage : "URL изображения фона", DlgDocBgNoScroll : "Нескроллируемый фон", DlgDocCText : "Текст", DlgDocCLink : "Ссылка", DlgDocCVisited : "Посещенная ссылка", DlgDocCActive : "Активная ссылка", DlgDocMargins : "Отступы страницы", DlgDocMaTop : "Верхний", DlgDocMaLeft : "Левый", DlgDocMaRight : "Правый", DlgDocMaBottom : "Нижний", DlgDocMeIndex : "Ключевые слова документа (разделенные запятой)", DlgDocMeDescr : "Описание документа", DlgDocMeAuthor : "Автор", DlgDocMeCopy : "Авторские права", DlgDocPreview : "Предварительный просмотр", // Templates Dialog Templates : "Шаблоны", DlgTemplatesTitle : "Шаблоны содержимого", DlgTemplatesSelMsg : "Пожалуйста выберете шаблон для открытия в редакторе
(текущее содержимое будет потеряно):", DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста подождите...", DlgTemplatesNoTpl : "(Ни одного шаблона не определено)", DlgTemplatesReplace : "Заменить текущее содержание", // About Dialog DlgAboutAboutTab : "О программе", DlgAboutBrowserInfoTab : "Информация браузера", DlgAboutLicenseTab : "Лицензия", DlgAboutVersion : "Версия", DlgAboutInfo : "Для большей информации, посетите" };FCKeditor/editor/lang/da.js0000644000102600010270000004213111234071567015011 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Danish language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Skjul værktøjslinier", ToolbarExpand : "Vis værktøjslinier", // Toolbar Items and Context Menu Save : "Gem", NewPage : "Ny side", Preview : "Vis eksempel", Cut : "Klip", Copy : "Kopier", Paste : "Indsæt", PasteText : "Indsæt som ikke-formateret tekst", PasteWord : "Indsæt fra Word", Print : "Udskriv", SelectAll : "Vælg alt", RemoveFormat : "Fjern formatering", InsertLinkLbl : "Hyperlink", InsertLink : "Indsæt/rediger hyperlink", RemoveLink : "Fjern hyperlink", Anchor : "Indsæt/rediger bogmærke", InsertImageLbl : "Indsæt billede", InsertImage : "Indsæt/rediger billede", InsertFlashLbl : "Flash", InsertFlash : "Indsæt/rediger Flash", InsertTableLbl : "Table", InsertTable : "Indsæt/rediger tabel", InsertLineLbl : "Linie", InsertLine : "Indsæt vandret linie", InsertSpecialCharLbl: "Symbol", InsertSpecialChar : "Indsæt symbol", InsertSmileyLbl : "Smiley", InsertSmiley : "Indsæt smiley", About : "Om FCKeditor", Bold : "Fed", Italic : "Kursiv", Underline : "Understreget", StrikeThrough : "Overstreget", Subscript : "Sænket skrift", Superscript : "Hævet skrift", LeftJustify : "Venstrestillet", CenterJustify : "Centreret", RightJustify : "Højrestillet", BlockJustify : "Lige margener", DecreaseIndent : "Formindsk indrykning", IncreaseIndent : "Forøg indrykning", Undo : "Fortryd", Redo : "Annuller fortryd", NumberedListLbl : "Talopstilling", NumberedList : "Indsæt/fjern talopstilling", BulletedListLbl : "Punktopstilling", BulletedList : "Indsæt/fjern punktopstilling", ShowTableBorders : "Vis tabelkanter", ShowDetails : "Vis detaljer", Style : "Typografi", FontFormat : "Formatering", Font : "Skrifttype", FontSize : "Skriftstørrelse", TextColor : "Tekstfarve", BGColor : "Baggrundsfarve", Source : "Kilde", Find : "Søg", Replace : "Erstat", SpellCheck : "Stavekontrol", UniversalKeyboard : "Universaltastatur", PageBreakLbl : "Sidskift", PageBreak : "Indsæt sideskift", Form : "Indsæt formular", Checkbox : "Indsæt afkrydsningsfelt", RadioButton : "Indsæt alternativknap", TextField : "Indsæt tekstfelt", Textarea : "Indsæt tekstboks", HiddenField : "Indsæt skjult felt", Button : "Indsæt knap", SelectionField : "Indsæt liste", ImageButton : "Indsæt billedknap", FitWindow : "Maksimer editor vinduet", // Context Menu EditLink : "Rediger hyperlink", CellCM : "Celle", RowCM : "Række", ColumnCM : "Kolonne", InsertRow : "Indsæt række", DeleteRows : "Slet række", InsertColumn : "Indsæt kolonne", DeleteColumns : "Slet kolonne", InsertCell : "Indsæt celle", DeleteCells : "Slet celle", MergeCells : "Flet celler", SplitCell : "Opdel celle", TableDelete : "Slet tabel", CellProperties : "Egenskaber for celle", TableProperties : "Egenskaber for tabel", ImageProperties : "Egenskaber for billede", FlashProperties : "Egenskaber for Flash", AnchorProp : "Egenskaber for bogmærke", ButtonProp : "Egenskaber for knap", CheckboxProp : "Egenskaber for afkrydsningsfelt", HiddenFieldProp : "Egenskaber for skjult felt", RadioButtonProp : "Egenskaber for alternativknap", ImageButtonProp : "Egenskaber for billedknap", TextFieldProp : "Egenskaber for tekstfelt", SelectionFieldProp : "Egenskaber for liste", TextareaProp : "Egenskaber for tekstboks", FormProp : "Egenskaber for formular", FontFormats : "Normal;Formateret;Adresse;Overskrift 1;Overskrift 2;Overskrift 3;Overskrift 4;Overskrift 5;Overskrift 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Behandler XHTML...", Done : "Færdig", PasteWordConfirm : "Den tekst du forsøger at indsætte ser ud til at komme fra Word.
Vil du rense teksten før den indsættes?", NotCompatiblePaste : "Denne kommando er tilgændelig i Internet Explorer 5.5 eller senere.
Vil du indsætte teksten uden at rense den ?", UnknownToolbarItem : "Ukendt værktøjslinjeobjekt \"%1\"!", UnknownCommand : "Ukendt kommandonavn \"%1\"!", NotImplemented : "Kommandoen er ikke implementeret!", UnknownToolbarSet : "Værktøjslinjen \"%1\" eksisterer ikke!", NoActiveX : "Din browsers sikkerhedsindstillinger begrænser nogle af editorens muligheder.
Slå \"Kør ActiveX-objekter og plug-ins\" til, ellers vil du opleve fejl og manglende muligheder.", BrowseServerBlocked : "Browseren kunne ikke åbne de nødvendige ressourcer!
Slå pop-up blokering fra.", DialogBlocked : "Dialogvinduet kunne ikke åbnes!
Slå pop-up blokering fra.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Annuller", DlgBtnClose : "Luk", DlgBtnBrowseServer : "Gennemse...", DlgAdvancedTag : "Avanceret", DlgOpOther : "", DlgInfoTab : "Generelt", DlgAlertUrl : "Indtast URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Tekstretning", DlgGenLangDirLtr : "Fra venstre mod højre (LTR)", DlgGenLangDirRtl : "Fra højre mod venstre (RTL)", DlgGenLangCode : "Sprogkode", DlgGenAccessKey : "Genvejstast", DlgGenName : "Navn", DlgGenTabIndex : "Tabulator indeks", DlgGenLongDescr : "Udvidet beskrivelse", DlgGenClass : "Typografiark", DlgGenTitle : "Titel", DlgGenContType : "Indholdstype", DlgGenLinkCharset : "Tegnsæt", DlgGenStyle : "Typografi", // Image Dialog DlgImgTitle : "Egenskaber for billede", DlgImgInfoTab : "Generelt", DlgImgBtnUpload : "Upload", DlgImgURL : "URL", DlgImgUpload : "Upload", DlgImgAlt : "Alternativ tekst", DlgImgWidth : "Bredde", DlgImgHeight : "Højde", DlgImgLockRatio : "Lås størrelsesforhold", DlgBtnResetSize : "Nulstil størrelse", DlgImgBorder : "Ramme", DlgImgHSpace : "HMargen", DlgImgVSpace : "VMargen", DlgImgAlign : "Justering", DlgImgAlignLeft : "Venstre", DlgImgAlignAbsBottom: "Absolut nederst", DlgImgAlignAbsMiddle: "Absolut centreret", DlgImgAlignBaseline : "Grundlinje", DlgImgAlignBottom : "Nederst", DlgImgAlignMiddle : "Centreret", DlgImgAlignRight : "Højre", DlgImgAlignTextTop : "Toppen af teksten", DlgImgAlignTop : "Øverst", DlgImgPreview : "Vis eksempel", DlgImgAlertUrl : "Indtast stien til billedet", DlgImgLinkTab : "Hyperlink", // Flash Dialog DlgFlashTitle : "Egenskaber for Flash", 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 : "Egenskaber for hyperlink", DlgLnkInfoTab : "Generelt", DlgLnkTargetTab : "Mål", DlgLnkType : "Hyperlink type", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Bogmærke på denne side", DlgLnkTypeEMail : "E-mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Vælg et anker", DlgLnkAnchorByName : "Efter anker navn", DlgLnkAnchorById : "Efter element Id", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-mailadresse", DlgLnkEMailSubject : "Emne", DlgLnkEMailBody : "Brødtekst", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Upload", DlgLnkTarget : "Mål", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nyt vindue (_blank)", DlgLnkTargetParent : "Overordnet ramme (_parent)", DlgLnkTargetSelf : "Samme vindue (_self)", DlgLnkTargetTop : "Hele vinduet (_top)", DlgLnkTargetFrameName : "Destinationsvinduets navn", DlgLnkPopWinName : "Pop-up vinduets navn", DlgLnkPopWinFeat : "Egenskaber for pop-up", DlgLnkPopResize : "Skalering", DlgLnkPopLocation : "Adresselinje", DlgLnkPopMenu : "Menulinje", DlgLnkPopScroll : "Scrollbars", DlgLnkPopStatus : "Statuslinje", DlgLnkPopToolbar : "Værktøjslinje", DlgLnkPopFullScrn : "Fuld skærm (IE)", DlgLnkPopDependent : "Koblet/dependent (Netscape)", DlgLnkPopWidth : "Bredde", DlgLnkPopHeight : "Højde", DlgLnkPopLeft : "Position fra venstre", DlgLnkPopTop : "Position fra toppen", DlnLnkMsgNoUrl : "Indtast hyperlink URL!", DlnLnkMsgNoEMail : "Indtast e-mailaddresse!", DlnLnkMsgNoAnchor : "Vælg bogmærke!", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Vælg farve", DlgColorBtnClear : "Nulstil", DlgColorHighlight : "Markeret", DlgColorSelected : "Valgt", // Smiley Dialog DlgSmileyTitle : "Vælg smiley", // Special Character Dialog DlgSpecialCharTitle : "Vælg symbol", // Table Dialog DlgTableTitle : "Egenskaber for tabel", DlgTableRows : "Rækker", DlgTableColumns : "Kolonner", DlgTableBorder : "Rammebredde", DlgTableAlign : "Justering", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Venstrestillet", DlgTableAlignCenter : "Centreret", DlgTableAlignRight : "Højrestillet", DlgTableWidth : "Bredde", DlgTableWidthPx : "pixels", DlgTableWidthPc : "procent", DlgTableHeight : "Højde", DlgTableCellSpace : "Celleafstand", DlgTableCellPad : "Cellemargen", DlgTableCaption : "Titel", DlgTableSummary : "Resume", // Table Cell Dialog DlgCellTitle : "Egenskaber for celle", DlgCellWidth : "Bredde", DlgCellWidthPx : "pixels", DlgCellWidthPc : "procent", DlgCellHeight : "Højde", DlgCellWordWrap : "Orddeling", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nej", DlgCellHorAlign : "Vandret justering", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Venstrestillet", DlgCellHorAlignCenter : "Centreret", DlgCellHorAlignRight: "Højrestillet", DlgCellVerAlign : "Lodret justering", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Øverst", DlgCellVerAlignMiddle : "Centreret", DlgCellVerAlignBottom : "Nederst", DlgCellVerAlignBaseline : "Grundlinje", DlgCellRowSpan : "Højde i antal rækker", DlgCellCollSpan : "Bredde i antal kolonner", DlgCellBackColor : "Baggrundsfarve", DlgCellBorderColor : "Rammefarve", DlgCellBtnSelect : "Vælg...", // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", DlgFindNotFoundMsg : "Søgeteksten blev ikke fundet!", // Replace Dialog DlgReplaceTitle : "Erstat", DlgReplaceFindLbl : "Søg efter:", DlgReplaceReplaceLbl : "Erstat med:", DlgReplaceCaseChk : "Forskel på store og små bogstaver", DlgReplaceReplaceBtn : "Erstat", DlgReplaceReplAllBtn : "Erstat alle", DlgReplaceWordChk : "Kun hele ord", // Paste Operations / Dialog PasteErrorCut : "Din browsers sikkerhedsindstillinger tillader ikke editoren at klippe tekst automatisk!
Brug i stedet tastaturet til at klippe teksten (Ctrl+X).", PasteErrorCopy : "Din browsers sikkerhedsindstillinger tillader ikke editoren at kopiere tekst automatisk!
Brug i stedet tastaturet til at kopiere teksten (Ctrl+C).", PasteAsText : "Indsæt som ikke-formateret tekst", PasteFromWord : "Indsæt fra Word", DlgPasteMsg2 : "Indsæt i feltet herunder (Ctrl+V) og klik OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorer font definitioner", DlgPasteRemoveStyles : "Ignorer typografi", DlgPasteCleanBox : "Slet indhold", // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Flere farver...", // Document Properties DocProps : "Egenskaber for dokument", // Anchor Dialog DlgAnchorTitle : "Egenskaber for bogmærke", DlgAnchorName : "Bogmærke navn", DlgAnchorErrorName : "Indtast bogmærke navn!", // Speller Pages Dialog DlgSpellNotInDic : "Ikke i ordbogen", DlgSpellChangeTo : "Forslag", DlgSpellBtnIgnore : "Ignorer", DlgSpellBtnIgnoreAll : "Ignorer alle", DlgSpellBtnReplace : "Erstat", DlgSpellBtnReplaceAll : "Erstat alle", DlgSpellBtnUndo : "Tilbage", DlgSpellNoSuggestions : "- ingen forslag -", DlgSpellProgress : "Stavekontrolen arbejder...", DlgSpellNoMispell : "Stavekontrol færdig: Ingen fejl fundet", DlgSpellNoChanges : "Stavekontrol færdig: Ingen ord ændret", DlgSpellOneChange : "Stavekontrol færdig: Et ord ændret", DlgSpellManyChanges : "Stavekontrol færdig: %1 ord ændret", IeSpellDownload : "Stavekontrol ikke installeret.
Vil du hente den nu?", // Button Dialog DlgButtonText : "Tekst", DlgButtonType : "Type", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Navn", DlgCheckboxValue : "Værdi", DlgCheckboxSelected : "Valgt", // Form Dialog DlgFormName : "Navn", DlgFormAction : "Handling", DlgFormMethod : "Metod", // Select Field Dialog DlgSelectName : "Navn", DlgSelectValue : "Værdi", DlgSelectSize : "Størrelse", DlgSelectLines : "linier", DlgSelectChkMulti : "Tillad flere valg", DlgSelectOpAvail : "Valgmuligheder", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Værdi", DlgSelectBtnAdd : "Tilføj", DlgSelectBtnModify : "Rediger", DlgSelectBtnUp : "Op", DlgSelectBtnDown : "Ned", DlgSelectBtnSetValue : "Sæt som valgt", DlgSelectBtnDelete : "Slet", // Textarea Dialog DlgTextareaName : "Navn", DlgTextareaCols : "Kolonner", DlgTextareaRows : "Rækker", // Text Field Dialog DlgTextName : "Navn", DlgTextValue : "Værdi", DlgTextCharWidth : "Bredde (tegn)", DlgTextMaxChars : "Max antal tegn", DlgTextType : "Type", DlgTextTypeText : "Tekst", DlgTextTypePass : "Adgangskode", // Hidden Field Dialog DlgHiddenName : "Navn", DlgHiddenValue : "Værdi", // Bulleted List Dialog BulletedListProp : "Egenskaber for punktopstilling", NumberedListProp : "Egenskaber for talopstilling", DlgLstStart : "Start", //MISSING DlgLstType : "Type", DlgLstTypeCircle : "Cirkel", DlgLstTypeDisc : "Udfyldt cirkel", DlgLstTypeSquare : "Firkant", DlgLstTypeNumbers : "Nummereret (1, 2, 3)", DlgLstTypeLCase : "Små bogstaver (a, b, c)", DlgLstTypeUCase : "Store bogstaver (A, B, C)", DlgLstTypeSRoman : "Små romertal (i, ii, iii)", DlgLstTypeLRoman : "Store romertal (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Generelt", DlgDocBackTab : "Baggrund", DlgDocColorsTab : "Farver og margen", DlgDocMetaTab : "Metadata", DlgDocPageTitle : "Sidetitel", DlgDocLangDir : "Sprog", DlgDocLangDirLTR : "Fra venstre mod højre (LTR)", DlgDocLangDirRTL : "Fra højre mod venstre (RTL)", DlgDocLangCode : "Landekode", DlgDocCharSet : "Tegnsæt kode", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Anden tegnsæt kode", DlgDocDocType : "Dokumenttype kategori", DlgDocDocTypeOther : "Anden dokumenttype kategori", DlgDocIncXHTML : "Inkludere XHTML deklartion", DlgDocBgColor : "Baggrundsfarve", DlgDocBgImage : "Baggrundsbillede URL", DlgDocBgNoScroll : "Fastlåst baggrund", DlgDocCText : "Tekst", DlgDocCLink : "Hyperlink", DlgDocCVisited : "Besøgt hyperlink", DlgDocCActive : "Aktivt hyperlink", DlgDocMargins : "Sidemargen", DlgDocMaTop : "Øverst", DlgDocMaLeft : "Venstre", DlgDocMaRight : "Højre", DlgDocMaBottom : "Nederst", DlgDocMeIndex : "Dokument index nøgleord (kommasepareret)", DlgDocMeDescr : "Dokument beskrivelse", DlgDocMeAuthor : "Forfatter", DlgDocMeCopy : "Copyright", DlgDocPreview : "Vis", // Templates Dialog Templates : "Skabeloner", DlgTemplatesTitle : "Indholdsskabeloner", DlgTemplatesSelMsg : "Vælg den skabelon, som skal åbnes i editoren.
(Nuværende indhold vil blive overskrevet!):", DlgTemplatesLoading : "Henter liste over skabeloner...", DlgTemplatesNoTpl : "(Der er ikke defineret nogen skabelon!)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Generelt", DlgAboutLicenseTab : "Licens", DlgAboutVersion : "version", DlgAboutInfo : "For yderlig information gå til" };FCKeditor/editor/lang/en.js0000644000102600010270000004102711234071576015032 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * English language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Collapse Toolbar", ToolbarExpand : "Expand Toolbar", // Toolbar Items and Context Menu Save : "Save", NewPage : "New Page", Preview : "Preview", Cut : "Cut", Copy : "Copy", Paste : "Paste", PasteText : "Paste as plain text", PasteWord : "Paste from Word", Print : "Print", SelectAll : "Select All", RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", InsertLine : "Insert Horizontal Line", InsertSpecialCharLbl: "Special Character", InsertSpecialChar : "Insert Special Character", InsertSmileyLbl : "Smiley", InsertSmiley : "Insert Smiley", About : "About FCKeditor", Bold : "Bold", Italic : "Italic", Underline : "Underline", StrikeThrough : "Strike Through", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Left Justify", CenterJustify : "Center Justify", RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", NumberedList : "Insert/Remove Numbered List", BulletedListLbl : "Bulleted List", BulletedList : "Insert/Remove Bulleted List", ShowTableBorders : "Show Table Borders", ShowDetails : "Show Details", Style : "Style", FontFormat : "Format", Font : "Font", FontSize : "Size", TextColor : "Text Color", BGColor : "Background Color", Source : "Source", Find : "Find", Replace : "Replace", SpellCheck : "Check Spelling", UniversalKeyboard : "Universal Keyboard", PageBreakLbl : "Page Break", PageBreak : "Insert Page Break", Form : "Form", Checkbox : "Checkbox", RadioButton : "Radio Button", TextField : "Text Field", Textarea : "Textarea", HiddenField : "Hidden Field", Button : "Button", SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", InsertRow : "Insert Row", DeleteRows : "Delete Rows", InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", FlashProperties : "Flash Properties", 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;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", Done : "Done", PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", UnknownToolbarItem : "Unknown toolbar item \"%1\"", UnknownCommand : "Unknown command name \"%1\"", NotImplemented : "Command not implemented", UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancel", DlgBtnClose : "Close", DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Language Direction", DlgGenLangDirLtr : "Left to Right (LTR)", DlgGenLangDirRtl : "Right to Left (RTL)", DlgGenLangCode : "Language Code", DlgGenAccessKey : "Access Key", DlgGenName : "Name", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Long Description URL", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Image Properties", DlgImgInfoTab : "Image Info", DlgImgBtnUpload : "Send it to the Server", DlgImgURL : "URL", DlgImgUpload : "Upload", DlgImgAlt : "Alternative Text", DlgImgWidth : "Width", DlgImgHeight : "Height", DlgImgLockRatio : "Lock Ratio", DlgBtnResetSize : "Reset Size", DlgImgBorder : "Border", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Align", DlgImgAlignLeft : "Left", DlgImgAlignAbsBottom: "Abs Bottom", DlgImgAlignAbsMiddle: "Abs Middle", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Bottom", DlgImgAlignMiddle : "Middle", DlgImgAlignRight : "Right", DlgImgAlignTextTop : "Text Top", DlgImgAlignTop : "Top", DlgImgPreview : "Preview", 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", DlgLnkTargetTab : "Target", DlgLnkType : "Link Type", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Link to anchor in the text", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Send it to the Server", DlgLnkTarget : "Target", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "New Window (_blank)", DlgLnkTargetParent : "Parent Window (_parent)", DlgLnkTargetSelf : "Same Window (_self)", DlgLnkTargetTop : "Topmost Window (_top)", DlgLnkTargetFrameName : "Target Frame Name", DlgLnkPopWinName : "Popup Window Name", DlgLnkPopWinFeat : "Popup Window Features", DlgLnkPopResize : "Resizable", DlgLnkPopLocation : "Location Bar", DlgLnkPopMenu : "Menu Bar", DlgLnkPopScroll : "Scroll Bars", DlgLnkPopStatus : "Status Bar", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Full Screen (IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "Width", DlgLnkPopHeight : "Height", DlgLnkPopLeft : "Left Position", DlgLnkPopTop : "Top Position", DlnLnkMsgNoUrl : "Please type the link URL", DlnLnkMsgNoEMail : "Please type the e-mail address", DlnLnkMsgNoAnchor : "Please select an anchor", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", // Color Dialog DlgColorTitle : "Select Color", DlgColorBtnClear : "Clear", DlgColorHighlight : "Highlight", DlgColorSelected : "Selected", // Smiley Dialog DlgSmileyTitle : "Insert a Smiley", // Special Character Dialog DlgSpecialCharTitle : "Select Special Character", // Table Dialog DlgTableTitle : "Table Properties", DlgTableRows : "Rows", DlgTableColumns : "Columns", DlgTableBorder : "Border size", DlgTableAlign : "Alignment", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Left", DlgTableAlignCenter : "Center", DlgTableAlignRight : "Right", DlgTableWidth : "Width", DlgTableWidthPx : "pixels", DlgTableWidthPc : "percent", DlgTableHeight : "Height", DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", // Table Cell Dialog DlgCellTitle : "Cell Properties", DlgCellWidth : "Width", DlgCellWidthPx : "pixels", DlgCellWidthPc : "percent", DlgCellHeight : "Height", DlgCellWordWrap : "Word Wrap", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Yes", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Horizontal Alignment", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Left", DlgCellHorAlignCenter : "Center", DlgCellHorAlignRight: "Right", DlgCellVerAlign : "Vertical Alignment", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Color", DlgCellBorderColor : "Border Color", DlgCellBtnSelect : "Select...", // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", DlgFindNotFoundMsg : "The specified text was not found.", // Replace Dialog DlgReplaceTitle : "Replace", DlgReplaceFindLbl : "Find what:", DlgReplaceReplaceLbl : "Replace with:", DlgReplaceCaseChk : "Match case", DlgReplaceReplaceBtn : "Replace", DlgReplaceReplAllBtn : "Replace All", DlgReplaceWordChk : "Match whole word", // Paste Operations / Dialog PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "More Colors...", // Document Properties DocProps : "Document Properties", // Anchor Dialog DlgAnchorTitle : "Anchor Properties", DlgAnchorName : "Anchor Name", DlgAnchorErrorName : "Please type the anchor name", // Speller Pages Dialog 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?", // Button Dialog DlgButtonText : "Text (Value)", DlgButtonType : "Type", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", DlgCheckboxValue : "Value", DlgCheckboxSelected : "Selected", // Form Dialog DlgFormName : "Name", DlgFormAction : "Action", DlgFormMethod : "Method", // Select Field Dialog 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", DlgTextareaCols : "Columns", DlgTextareaRows : "Rows", // Text Field Dialog DlgTextName : "Name", DlgTextValue : "Value", DlgTextCharWidth : "Character Width", DlgTextMaxChars : "Maximum Characters", DlgTextType : "Type", DlgTextTypeText : "Text", DlgTextTypePass : "Password", // Hidden Field Dialog DlgHiddenName : "Name", DlgHiddenValue : "Value", // Bulleted List Dialog BulletedListProp : "Bulleted List Properties", NumberedListProp : "Numbered List Properties", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Circle", DlgLstTypeDisc : "Disc", 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", DlgDocBackTab : "Background", DlgDocColorsTab : "Colors and Margins", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Page Title", DlgDocLangDir : "Language Direction", DlgDocLangDirLTR : "Left to Right (LTR)", DlgDocLangDirRTL : "Right to Left (RTL)", DlgDocLangCode : "Language Code", DlgDocCharSet : "Character Set Encoding", DlgDocCharSetCE : "Central European", DlgDocCharSetCT : "Chinese Traditional (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Greek", DlgDocCharSetJP : "Japanese", DlgDocCharSetKR : "Korean", DlgDocCharSetTR : "Turkish", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "Other Character Set Encoding", 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", 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)", DlgTemplatesReplace : "Replace actual contents", // About Dialog DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", DlgAboutInfo : "For further information go to" };FCKeditor/editor/lang/zh-cn.js0000644000102600010270000004041711234071653015445 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Chinese Simplified language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "折叠工具栏", ToolbarExpand : "展开工具栏", // Toolbar Items and Context Menu Save : "保存", NewPage : "新建", Preview : "预览", Cut : "剪切", Copy : "复制", Paste : "粘贴", PasteText : "粘贴为无格式文本", PasteWord : "从 MS Word 粘贴", Print : "打印", SelectAll : "全选", RemoveFormat : "清除格式", InsertLinkLbl : "超链接", InsertLink : "插入/编辑超链接", RemoveLink : "取消超链接", Anchor : "插入/编辑锚点链接", InsertImageLbl : "图象", InsertImage : "插入/编辑图象", InsertFlashLbl : "Flash", InsertFlash : "插入/编辑 Flash", InsertTableLbl : "表格", InsertTable : "插入/编辑表格", InsertLineLbl : "水平线", InsertLine : "插入水平线", InsertSpecialCharLbl: "特殊符号", InsertSpecialChar : "插入特殊符号", InsertSmileyLbl : "表情符", InsertSmiley : "插入表情图标", About : "关于 FCKeditor", Bold : "加粗", Italic : "倾斜", Underline : "下划线", StrikeThrough : "删除线", Subscript : "下标", Superscript : "上标", LeftJustify : "左对齐", CenterJustify : "居中对齐", RightJustify : "右对齐", BlockJustify : "两端对齐", DecreaseIndent : "减少缩进量", IncreaseIndent : "增加缩进量", Undo : "撤消", Redo : "重做", NumberedListLbl : "编号列表", NumberedList : "插入/删除编号列表", BulletedListLbl : "项目列表", BulletedList : "插入/删除项目列表", ShowTableBorders : "显示表格边框", ShowDetails : "显示详细资料", Style : "样式", FontFormat : "格式", Font : "字体", FontSize : "大小", TextColor : "文本颜色", BGColor : "背景颜色", Source : "源代码", Find : "查找", Replace : "替换", SpellCheck : "拼写检查", UniversalKeyboard : "软键盘", PageBreakLbl : "分页符", PageBreak : "插入分页符", Form : "表单", Checkbox : "复选框", RadioButton : "单选按钮", TextField : "单行文本", Textarea : "多行文本", HiddenField : "隐藏域", Button : "按钮", SelectionField : "列表/菜单", ImageButton : "图像域", FitWindow : "全屏编辑", // Context Menu EditLink : "编辑超链接", CellCM : "单元格", RowCM : "行", ColumnCM : "列", InsertRow : "插入行", DeleteRows : "删除行", InsertColumn : "插入列", DeleteColumns : "删除列", InsertCell : "插入单元格", DeleteCells : "删除单元格", MergeCells : "合并单元格", SplitCell : "拆分单元格", TableDelete : "删除表格", CellProperties : "单元格属性", TableProperties : "表格属性", ImageProperties : "图象属性", FlashProperties : "Flash 属性", AnchorProp : "锚点链接属性", ButtonProp : "按钮属性", CheckboxProp : "复选框属性", HiddenFieldProp : "隐藏域属性", RadioButtonProp : "单选按钮属性", ImageButtonProp : "图像域属性", TextFieldProp : "单行文本属性", SelectionFieldProp : "菜单/列表属性", TextareaProp : "多行文本属性", FormProp : "表单属性", FontFormats : "普通;已编排格式;地址;标题 1;标题 2;标题 3;标题 4;标题 5;标题 6;段落(DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "正在处理 XHTML,请稍等...", Done : "完成", PasteWordConfirm : "您要粘贴的内容好像是来自 MS Word,是否要清除 MS Word 格式后再粘贴?", NotCompatiblePaste : "该命令需要 Internet Explorer 5.5 或更高版本的支持,是否按常规粘贴进行?", UnknownToolbarItem : "未知工具栏项目 \"%1\"", UnknownCommand : "未知命令名称 \"%1\"", NotImplemented : "命令无法执行", UnknownToolbarSet : "工具栏设置 \"%1\" 不存在", NoActiveX : "浏览器安全设置限制了本编辑器的某些功能。您必须启用安全设置中的“运行 ActiveX 控件和插件”,否则将出现某些错误并缺少功能。", BrowseServerBlocked : "无法打开资源浏览器,请确认是否启用了禁止弹出窗口。", DialogBlocked : "无法打开对话框窗口,请确认是否启用了禁止弹出窗口或网页对话框(IE)。", // Dialogs DlgBtnOK : "确定", DlgBtnCancel : "取消", DlgBtnClose : "关闭", DlgBtnBrowseServer : "浏览服务器", DlgAdvancedTag : "高级", DlgOpOther : "<其它>", DlgInfoTab : "信息", DlgAlertUrl : "请插入 URL", // General Dialogs Labels DlgGenNotSet : "<没有设置>", DlgGenId : "ID", DlgGenLangDir : "语言方向", DlgGenLangDirLtr : "从左到右 (LTR)", DlgGenLangDirRtl : "从右到左 (RTL)", DlgGenLangCode : "语言代码", DlgGenAccessKey : "访问键", DlgGenName : "名称", DlgGenTabIndex : "Tab 键次序", DlgGenLongDescr : "详细说明地址", DlgGenClass : "样式类名称", DlgGenTitle : "标题", DlgGenContType : "内容类型", DlgGenLinkCharset : "字符编码", DlgGenStyle : "行内样式", // Image Dialog DlgImgTitle : "图象属性", DlgImgInfoTab : "图象", DlgImgBtnUpload : "发送到服务器上", DlgImgURL : "源文件", DlgImgUpload : "上传", DlgImgAlt : "替换文本", DlgImgWidth : "宽度", DlgImgHeight : "高度", DlgImgLockRatio : "锁定比例", DlgBtnResetSize : "恢复尺寸", DlgImgBorder : "边框大小", DlgImgHSpace : "水平间距", DlgImgVSpace : "垂直间距", DlgImgAlign : "对齐方式", DlgImgAlignLeft : "左对齐", DlgImgAlignAbsBottom: "绝对底边", DlgImgAlignAbsMiddle: "绝对居中", DlgImgAlignBaseline : "基线", DlgImgAlignBottom : "底边", DlgImgAlignMiddle : "居中", DlgImgAlignRight : "右对齐", DlgImgAlignTextTop : "文本上方", DlgImgAlignTop : "顶端", DlgImgPreview : "预览", DlgImgAlertUrl : "请输入图象地址", DlgImgLinkTab : "链接", // Flash Dialog DlgFlashTitle : "Flash 属性", DlgFlashChkPlay : "自动播放", DlgFlashChkLoop : "循环", DlgFlashChkMenu : "启用 Flash 菜单", DlgFlashScale : "缩放", DlgFlashScaleAll : "全部显示", DlgFlashScaleNoBorder : "无边框", DlgFlashScaleFit : "严格匹配", // Link Dialog DlgLnkWindowTitle : "超链接", DlgLnkInfoTab : "超链接信息", DlgLnkTargetTab : "目标", DlgLnkType : "超链接类型", DlgLnkTypeURL : "超链接", DlgLnkTypeAnchor : "页内锚点链接", DlgLnkTypeEMail : "电子邮件", DlgLnkProto : "协议", DlgLnkProtoOther : "<其它>", DlgLnkURL : "地址", DlgLnkAnchorSel : "选择一个锚点", DlgLnkAnchorByName : "按锚点名称", DlgLnkAnchorById : "按锚点 ID", DlgLnkNoAnchors : "<此文档没有可用的锚点>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "地址", DlgLnkEMailSubject : "主题", DlgLnkEMailBody : "内容", DlgLnkUpload : "上传", DlgLnkBtnUpload : "发送到服务器上", DlgLnkTarget : "目标", DlgLnkTargetFrame : "<框架>", DlgLnkTargetPopup : "<弹出窗口>", DlgLnkTargetBlank : "新窗口 (_blank)", DlgLnkTargetParent : "父窗口 (_parent)", DlgLnkTargetSelf : "本窗口 (_self)", DlgLnkTargetTop : "整页 (_top)", DlgLnkTargetFrameName : "目标框架名称", DlgLnkPopWinName : "弹出窗口名称", DlgLnkPopWinFeat : "弹出窗口属性", DlgLnkPopResize : "调整大小", DlgLnkPopLocation : "地址栏", DlgLnkPopMenu : "菜单栏", DlgLnkPopScroll : "滚动条", DlgLnkPopStatus : "状态栏", DlgLnkPopToolbar : "工具栏", DlgLnkPopFullScrn : "全屏 (IE)", DlgLnkPopDependent : "依附 (NS)", DlgLnkPopWidth : "宽", DlgLnkPopHeight : "高", DlgLnkPopLeft : "左", DlgLnkPopTop : "右", DlnLnkMsgNoUrl : "请输入超链接地址", DlnLnkMsgNoEMail : "请输入电子邮件地址", DlnLnkMsgNoAnchor : "请选择一个锚点", DlnLnkMsgInvPopName : "弹出窗口名称必须以字母开头,并且不能含有空格。", // Color Dialog DlgColorTitle : "选择颜色", DlgColorBtnClear : "清除", DlgColorHighlight : "预览", DlgColorSelected : "选择", // Smiley Dialog DlgSmileyTitle : "插入表情图标", // Special Character Dialog DlgSpecialCharTitle : "选择特殊符号", // Table Dialog DlgTableTitle : "表格属性", DlgTableRows : "行数", DlgTableColumns : "列数", DlgTableBorder : "边框", DlgTableAlign : "对齐", DlgTableAlignNotSet : "<没有设置>", DlgTableAlignLeft : "左对齐", DlgTableAlignCenter : "居中", DlgTableAlignRight : "右对齐", DlgTableWidth : "宽度", DlgTableWidthPx : "像素", DlgTableWidthPc : "百分比", DlgTableHeight : "高度", DlgTableCellSpace : "间距", DlgTableCellPad : "边距", DlgTableCaption : "标题", DlgTableSummary : "摘要", // Table Cell Dialog DlgCellTitle : "单元格属性", DlgCellWidth : "宽度", DlgCellWidthPx : "像素", DlgCellWidthPc : "百分比", DlgCellHeight : "高度", DlgCellWordWrap : "自动换行", DlgCellWordWrapNotSet : "<没有设置>", DlgCellWordWrapYes : "是", DlgCellWordWrapNo : "否", DlgCellHorAlign : "水平对齐", DlgCellHorAlignNotSet : "<没有设置>", DlgCellHorAlignLeft : "左对齐", DlgCellHorAlignCenter : "居中", DlgCellHorAlignRight: "右对齐", DlgCellVerAlign : "垂直对齐", DlgCellVerAlignNotSet : "<没有设置>", DlgCellVerAlignTop : "顶端", DlgCellVerAlignMiddle : "居中", DlgCellVerAlignBottom : "底部", DlgCellVerAlignBaseline : "基线", DlgCellRowSpan : "纵跨行数", DlgCellCollSpan : "横跨列数", DlgCellBackColor : "背景颜色", DlgCellBorderColor : "边框颜色", DlgCellBtnSelect : "选择...", // Find Dialog DlgFindTitle : "查找", DlgFindFindBtn : "查找", DlgFindNotFoundMsg : "指定文本没有找到。", // Replace Dialog DlgReplaceTitle : "替换", DlgReplaceFindLbl : "查找:", DlgReplaceReplaceLbl : "替换:", DlgReplaceCaseChk : "区分大小写", DlgReplaceReplaceBtn : "替换", DlgReplaceReplAllBtn : "全部替换", DlgReplaceWordChk : "全字匹配", // Paste Operations / Dialog PasteErrorCut : "您的浏览器安全设置不允许编辑器自动执行剪切操作,请使用键盘快捷键(Ctrl+X)来完成。", PasteErrorCopy : "您的浏览器安全设置不允许编辑器自动执行复制操作,请使用键盘快捷键(Ctrl+C)来完成。", PasteAsText : "粘贴为无格式文本", PasteFromWord : "从 MS Word 粘贴", DlgPasteMsg2 : "请使用键盘快捷键(Ctrl+V)把内容粘贴到下面的方框里,再按 确定。", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "忽略 Font 标签", DlgPasteRemoveStyles : "清理 CSS 样式", DlgPasteCleanBox : "清空上面内容", // Color Picker ColorAutomatic : "自动", ColorMoreColors : "其它颜色...", // Document Properties DocProps : "页面属性", // Anchor Dialog DlgAnchorTitle : "命名锚点", DlgAnchorName : "锚点名称", DlgAnchorErrorName : "请输入锚点名称", // Speller Pages Dialog DlgSpellNotInDic : "没有在字典里", DlgSpellChangeTo : "更改为", DlgSpellBtnIgnore : "忽略", DlgSpellBtnIgnoreAll : "全部忽略", DlgSpellBtnReplace : "替换", DlgSpellBtnReplaceAll : "全部替换", DlgSpellBtnUndo : "撤消", DlgSpellNoSuggestions : "- 没有建议 -", DlgSpellProgress : "正在进行拼写检查...", DlgSpellNoMispell : "拼写检查完成:没有发现拼写错误", DlgSpellNoChanges : "拼写检查完成:没有更改任何单词", DlgSpellOneChange : "拼写检查完成:更改了一个单词", DlgSpellManyChanges : "拼写检查完成:更改了 %1 个单词", IeSpellDownload : "拼写检查插件还没安装,你是否想现在就下载?", // Button Dialog DlgButtonText : "标签(值)", DlgButtonType : "类型", DlgButtonTypeBtn : "按钮", DlgButtonTypeSbm : "提交", DlgButtonTypeRst : "重设", // Checkbox and Radio Button Dialogs DlgCheckboxName : "名称", DlgCheckboxValue : "选定值", DlgCheckboxSelected : "已勾选", // Form Dialog DlgFormName : "名称", DlgFormAction : "动作", DlgFormMethod : "方法", // Select Field Dialog DlgSelectName : "名称", DlgSelectValue : "选定", DlgSelectSize : "高度", DlgSelectLines : "行", DlgSelectChkMulti : "允许多选", DlgSelectOpAvail : "列表值", DlgSelectOpText : "标签", DlgSelectOpValue : "值", DlgSelectBtnAdd : "新增", DlgSelectBtnModify : "修改", DlgSelectBtnUp : "上移", DlgSelectBtnDown : "下移", DlgSelectBtnSetValue : "设为初始化时选定", DlgSelectBtnDelete : "删除", // Textarea Dialog DlgTextareaName : "名称", DlgTextareaCols : "字符宽度", DlgTextareaRows : "行数", // Text Field Dialog DlgTextName : "名称", DlgTextValue : "初始值", DlgTextCharWidth : "字符宽度", DlgTextMaxChars : "最多字符数", DlgTextType : "类型", DlgTextTypeText : "文本", DlgTextTypePass : "密码", // Hidden Field Dialog DlgHiddenName : "名称", DlgHiddenValue : "初始值", // Bulleted List Dialog BulletedListProp : "项目列表属性", NumberedListProp : "编号列表属性", DlgLstStart : "开始序号", DlgLstType : "列表类型", DlgLstTypeCircle : "圆圈", DlgLstTypeDisc : "圆点", 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 : "常规", DlgDocBackTab : "背景", DlgDocColorsTab : "颜色和边距", DlgDocMetaTab : "Meta 数据", DlgDocPageTitle : "页面标题", DlgDocLangDir : "语言方向", DlgDocLangDirLTR : "从左到右 (LTR)", DlgDocLangDirRTL : "从右到左 (RTL)", DlgDocLangCode : "语言代码", DlgDocCharSet : "字符编码", DlgDocCharSetCE : "中欧", DlgDocCharSetCT : "繁体中文 (Big5)", DlgDocCharSetCR : "西里尔文", DlgDocCharSetGR : "希腊文", DlgDocCharSetJP : "日文", DlgDocCharSetKR : "韩文", DlgDocCharSetTR : "土耳其文", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "西欧", DlgDocCharSetOther : "其它字符编码", DlgDocDocType : "文档类型", DlgDocDocTypeOther : "其它文档类型", DlgDocIncXHTML : "包含 XHTML 声明", DlgDocBgColor : "背景颜色", DlgDocBgImage : "背景图像", DlgDocBgNoScroll : "不滚动背景图像", DlgDocCText : "文本", DlgDocCLink : "超链接", DlgDocCVisited : "已访问的超链接", DlgDocCActive : "活动超链接", DlgDocMargins : "页面边距", DlgDocMaTop : "上", DlgDocMaLeft : "左", DlgDocMaRight : "右", DlgDocMaBottom : "下", DlgDocMeIndex : "页面索引关键字 (用半角逗号[,]分隔)", DlgDocMeDescr : "页面说明", DlgDocMeAuthor : "作者", DlgDocMeCopy : "版权", DlgDocPreview : "预览", // Templates Dialog Templates : "模板", DlgTemplatesTitle : "内容模板", DlgTemplatesSelMsg : "请选择编辑器内容模板
(当前内容将会被清除替换):", DlgTemplatesLoading : "正在加载模板列表,请稍等...", DlgTemplatesNoTpl : "(没有模板)", DlgTemplatesReplace : "替换当前内容", // About Dialog DlgAboutAboutTab : "关于", DlgAboutBrowserInfoTab : "浏览器信息", DlgAboutLicenseTab : "许可证", DlgAboutVersion : "版本", DlgAboutInfo : "要获得更多信息请访问 " };FCKeditor/editor/lang/nb.js0000644000102600010270000004112511234071627015023 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Norwegian Bokmål language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Skjul verktøylinje", ToolbarExpand : "Vis verktøylinje", // Toolbar Items and Context Menu Save : "Lagre", NewPage : "Ny Side", Preview : "Forhåndsvis", Cut : "Klipp ut", Copy : "Kopier", Paste : "Lim inn", PasteText : "Lim inn som ren tekst", PasteWord : "Lim inn fra Word", Print : "Skriv ut", SelectAll : "Merk alt", RemoveFormat : "Fjern format", InsertLinkLbl : "Lenke", InsertLink : "Sett inn/Rediger lenke", RemoveLink : "Fjern lenke", 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", InsertLine : "Sett inn horisontal linje", InsertSpecialCharLbl: "Spesielt tegn", InsertSpecialChar : "Sett inn spesielt tegn", InsertSmileyLbl : "Smil", InsertSmiley : "Sett inn smil", About : "Om FCKeditor", Bold : "Fet", Italic : "Kursiv", Underline : "Understrek", StrikeThrough : "Gjennomstrek", Subscript : "Senket skrift", Superscript : "Hevet skrift", LeftJustify : "Venstrejuster", CenterJustify : "Midtjuster", RightJustify : "Høyrejuster", BlockJustify : "Blokkjuster", DecreaseIndent : "Senk nivå", IncreaseIndent : "Øk nivå", Undo : "Angre", Redo : "Gjør om", NumberedListLbl : "Numrert liste", NumberedList : "Sett inn/Fjern numrert liste", BulletedListLbl : "Uordnet liste", BulletedList : "Sett inn/Fjern uordnet liste", ShowTableBorders : "Vis tabellrammer", ShowDetails : "Vis detaljer", Style : "Stil", FontFormat : "Format", Font : "Skrift", FontSize : "Størrelse", TextColor : "Tekstfarge", BGColor : "Bakgrunnsfarge", Source : "Kilde", Find : "Finn", Replace : "Erstatt", SpellCheck : "Stavekontroll", UniversalKeyboard : "Universelt tastatur", PageBreakLbl : "Sideskift", PageBreak : "Sett inn sideskift", Form : "Skjema", Checkbox : "Sjekkboks", RadioButton : "Radioknapp", TextField : "Tekstfelt", Textarea : "Tekstområde", HiddenField : "Skjult felt", Button : "Knapp", SelectionField : "Dropdown meny", ImageButton : "Bildeknapp", FitWindow : "Maksimer størrelsen på redigeringsverktøyet", // Context Menu EditLink : "Rediger lenke", CellCM : "Celle", RowCM : "Rader", ColumnCM : "Kolonne", InsertRow : "Sett inn rad", DeleteRows : "Slett rader", InsertColumn : "Sett inn kolonne", DeleteColumns : "Slett kolonner", InsertCell : "Sett inn celle", DeleteCells : "Slett celler", MergeCells : "Slå sammen celler", SplitCell : "Splitt celler", TableDelete : "Slett tabell", CellProperties : "Celleegenskaper", TableProperties : "Tabellegenskaper", ImageProperties : "Bildeegenskaper", FlashProperties : "Flash Egenskaper", AnchorProp : "Ankeregenskaper", ButtonProp : "Knappegenskaper", CheckboxProp : "Sjekkboksegenskaper", HiddenFieldProp : "Skjult felt egenskaper", RadioButtonProp : "Radioknappegenskaper", ImageButtonProp : "Bildeknappegenskaper", TextFieldProp : "Tekstfeltegenskaper", SelectionFieldProp : "Dropdown menyegenskaper", TextareaProp : "Tekstfeltegenskaper", FormProp : "Skjemaegenskaper", FontFormats : "Normal;Formatert;Adresse;Tittel 1;Tittel 2;Tittel 3;Tittel 4;Tittel 5;Tittel 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Lager XHTML. Vennligst vent...", Done : "Ferdig", PasteWordConfirm : "Teksten du prøver å lime inn ser ut som om den kommer fra word , du bør rense den før du limer inn , vil du gjøre dette?", NotCompatiblePaste : "Denne kommandoen er tilgjenglig kun for Internet Explorer version 5.5 eller bedre. Vil du fortsette uten å rense?(Du kan lime inn som ren tekst)", UnknownToolbarItem : "Ukjent menyvalg \"%1\"", UnknownCommand : "Ukjent kommando \"%1\"", NotImplemented : "Kommando ikke ennå implimentert", UnknownToolbarSet : "Verktøylinjesett \"%1\" finnes ikke", NoActiveX : "Din nettleser's sikkerhetsinstillinger kan begrense noen av funksjonene i redigeringsverktøyet. Du må aktivere \"Kjør ActiveXkontroller og plugins\". Du kan oppleve feil og advarsler om manglende funksjoner", BrowseServerBlocked : "Kunne ikke åpne dialogboksen for filarkiv. Pass på at du har slått av popupstoppere.", DialogBlocked : "Kunne ikke åpne dialogboksen. Pass på at du har slått av popupstoppere.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Avbryt", DlgBtnClose : "Lukk", DlgBtnBrowseServer : "Bla igjennom server", DlgAdvancedTag : "Avansert", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Vennligst skriv inn URL'en", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Språkretning", DlgGenLangDirLtr : "Venstre til høyre (VTH)", DlgGenLangDirRtl : "Høyre til venstre (HTV)", DlgGenLangCode : "Språk kode", DlgGenAccessKey : "Aksessknapp", DlgGenName : "Navn", DlgGenTabIndex : "Tab Indeks", DlgGenLongDescr : "Utvidet beskrivelse", DlgGenClass : "Stilarkklasser", DlgGenTitle : "Tittel", DlgGenContType : "Type", DlgGenLinkCharset : "Lenket språkkart", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Bildeegenskaper", DlgImgInfoTab : "Bildeinformasjon", DlgImgBtnUpload : "Send det til serveren", DlgImgURL : "URL", DlgImgUpload : "Last opp", DlgImgAlt : "Alternativ tekst", DlgImgWidth : "Bredde", DlgImgHeight : "Høyde", DlgImgLockRatio : "Lås forhold", DlgBtnResetSize : "Tilbakestill størrelse", DlgImgBorder : "Ramme", DlgImgHSpace : "HMarg", DlgImgVSpace : "VMarg", DlgImgAlign : "Juster", DlgImgAlignLeft : "Venstre", DlgImgAlignAbsBottom: "Abs bunn", DlgImgAlignAbsMiddle: "Abs midten", DlgImgAlignBaseline : "Bunnlinje", DlgImgAlignBottom : "Bunn", DlgImgAlignMiddle : "Midten", DlgImgAlignRight : "Høyre", DlgImgAlignTextTop : "Tekst topp", DlgImgAlignTop : "Topp", DlgImgPreview : "Forhåndsvis", 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", DlgLnkTargetTab : "Mål", DlgLnkType : "Lenketype", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Lenke til bokmerke i teksten", DlgLnkTypeEMail : "E-Post", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Velg ett anker", DlgLnkAnchorByName : "Anker etter navn", DlgLnkAnchorById : "Element etter ID", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Post Addresse", DlgLnkEMailSubject : "Meldingsemne", DlgLnkEMailBody : "Melding", DlgLnkUpload : "Last opp", DlgLnkBtnUpload : "Send til server", DlgLnkTarget : "Mål", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nytt vindu (_blank)", DlgLnkTargetParent : "Foreldre vindu (_parent)", DlgLnkTargetSelf : "Samme vindu (_self)", DlgLnkTargetTop : "Hele vindu (_top)", DlgLnkTargetFrameName : "Målramme", DlgLnkPopWinName : "Popup vindus navn", DlgLnkPopWinFeat : "Popup vindus egenskaper", DlgLnkPopResize : "Endre størrelse", DlgLnkPopLocation : "Adresselinje", DlgLnkPopMenu : "Menylinje", DlgLnkPopScroll : "Scrollbar", DlgLnkPopStatus : "Statuslinje", DlgLnkPopToolbar : "Verktøylinje", DlgLnkPopFullScrn : "Full skjerm (IE)", DlgLnkPopDependent : "Avhenging (Netscape)", DlgLnkPopWidth : "Bredde", DlgLnkPopHeight : "Høyde", DlgLnkPopLeft : "Venstre posisjon", DlgLnkPopTop : "Topp posisjon", DlnLnkMsgNoUrl : "Vennligst skriv inn lenkens url", DlnLnkMsgNoEMail : "Vennligst skriv inn e-postadressen", DlnLnkMsgNoAnchor : "Vennligst velg ett anker", DlnLnkMsgInvPopName : "Popup vinduets navn må begynne med en bokstav, og kan ikke inneholde mellomrom", // Color Dialog DlgColorTitle : "Velg farge", DlgColorBtnClear : "Tøm", DlgColorHighlight : "Marker", DlgColorSelected : "Velg", // Smiley Dialog DlgSmileyTitle : "Sett inn smil", // Special Character Dialog DlgSpecialCharTitle : "Velg spesielt tegn", // Table Dialog DlgTableTitle : "Tabellegenskaper", DlgTableRows : "Rader", DlgTableColumns : "Kolonner", DlgTableBorder : "Rammestørrelse", DlgTableAlign : "Justering", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Venstre", DlgTableAlignCenter : "Midtjuster", DlgTableAlignRight : "Høyre", DlgTableWidth : "Bredde", DlgTableWidthPx : "pixler", DlgTableWidthPc : "prosent", DlgTableHeight : "Høyde", DlgTableCellSpace : "Celle marg", DlgTableCellPad : "Celle polstring", DlgTableCaption : "Tittel", DlgTableSummary : "Sammendrag", // Table Cell Dialog DlgCellTitle : "Celle egenskaper", DlgCellWidth : "Bredde", DlgCellWidthPx : "pixeler", DlgCellWidthPc : "prosent", DlgCellHeight : "Høyde", DlgCellWordWrap : "Tekstbrytning", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nei", DlgCellHorAlign : "Horisontal justering", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Venstre", DlgCellHorAlignCenter : "Midtjuster", DlgCellHorAlignRight: "Høyre", DlgCellVerAlign : "Vertikal justering", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Topp", DlgCellVerAlignMiddle : "Midten", DlgCellVerAlignBottom : "Bunn", DlgCellVerAlignBaseline : "Bunnlinje", DlgCellRowSpan : "Radspenn", DlgCellCollSpan : "Kolonnespenn", DlgCellBackColor : "Bakgrunnsfarge", DlgCellBorderColor : "Rammefarge", DlgCellBtnSelect : "Velg...", // Find Dialog DlgFindTitle : "Finn", DlgFindFindBtn : "Finn", DlgFindNotFoundMsg : "Den spesifiserte teksten ble ikke funnet.", // Replace Dialog DlgReplaceTitle : "Erstatt", DlgReplaceFindLbl : "Finn hva:", DlgReplaceReplaceLbl : "Erstatt med:", DlgReplaceCaseChk : "Riktig case", DlgReplaceReplaceBtn : "Erstatt", DlgReplaceReplAllBtn : "Erstatt alle", DlgReplaceWordChk : "Finn hele ordet", // Paste Operations / Dialog PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst brukt snareveien (Ctrl+X).", PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst brukt snareveien (Ctrl+C).", PasteAsText : "Lim inn som ren tekst", PasteFromWord : "Lim inn fra word", DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (Ctrl+V) og trykk OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Fjern skrifttyper", DlgPasteRemoveStyles : "Fjern stildefinisjoner", DlgPasteCleanBox : "Tøm boksen", // Color Picker ColorAutomatic : "Automatisk", ColorMoreColors : "Flere farger...", // Document Properties DocProps : "Dokumentegenskaper", // Anchor Dialog DlgAnchorTitle : "Ankeregenskaper", DlgAnchorName : "Ankernavn", DlgAnchorErrorName : "Vennligst skriv inn ankernavnet", // Speller Pages Dialog DlgSpellNotInDic : "Ikke i ordboken", DlgSpellChangeTo : "Endre til", DlgSpellBtnIgnore : "Ignorer", DlgSpellBtnIgnoreAll : "Ignorer alle", DlgSpellBtnReplace : "Erstatt", DlgSpellBtnReplaceAll : "Erstatt alle", DlgSpellBtnUndo : "Angre", DlgSpellNoSuggestions : "- ingen forslag -", DlgSpellProgress : "Stavekontroll pågår...", DlgSpellNoMispell : "Stavekontroll fullført: ingen feilstavinger funnet", DlgSpellNoChanges : "Stavekontroll fullført: ingen ord endret", DlgSpellOneChange : "Stavekontroll fullført: Ett ord endret", DlgSpellManyChanges : "Stavekontroll fullført: %1 ord endret", IeSpellDownload : "Stavekontroll ikke installert, vil du laste den ned nå?", // Button Dialog DlgButtonText : "Tekst", DlgButtonType : "Type", DlgButtonTypeBtn : "Knapp", DlgButtonTypeSbm : "Send", DlgButtonTypeRst : "Nullstill", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Navn", DlgCheckboxValue : "Verdi", DlgCheckboxSelected : "Valgt", // Form Dialog DlgFormName : "Navn", DlgFormAction : "Handling", DlgFormMethod : "Metode", // Select Field Dialog DlgSelectName : "Navn", DlgSelectValue : "Verdi", DlgSelectSize : "Størrelse", DlgSelectLines : "Linjer", DlgSelectChkMulti : "Tillat flervalg", DlgSelectOpAvail : "Tilgjenglige alternativer", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Verdi", DlgSelectBtnAdd : "Legg til", DlgSelectBtnModify : "Endre", DlgSelectBtnUp : "Opp", DlgSelectBtnDown : "Ned", DlgSelectBtnSetValue : "Sett som valgt", DlgSelectBtnDelete : "Slett", // Textarea Dialog DlgTextareaName : "Navn", DlgTextareaCols : "Kolonner", DlgTextareaRows : "Rader", // Text Field Dialog DlgTextName : "Navn", DlgTextValue : "verdi", DlgTextCharWidth : "Tegnbredde", DlgTextMaxChars : "Maks antall tegn", DlgTextType : "Type", DlgTextTypeText : "Tekst", DlgTextTypePass : "Passord", // Hidden Field Dialog DlgHiddenName : "Navn", DlgHiddenValue : "Verdi", // Bulleted List Dialog BulletedListProp : "Uordnet listeegenskaper", NumberedListProp : "Ordnet listeegenskaper", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Sirkel", DlgLstTypeDisc : "Hel sirkel", DlgLstTypeSquare : "Firkant", DlgLstTypeNumbers : "Numre(1, 2, 3)", DlgLstTypeLCase : "Små bokstaver (a, b, c)", DlgLstTypeUCase : "Store bokstaver(A, B, C)", DlgLstTypeSRoman : "Små romerske tall(i, ii, iii)", DlgLstTypeLRoman : "Store romerske tall(I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Generalt", DlgDocBackTab : "Bakgrunn", DlgDocColorsTab : "Farger og marginer", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Sidetittel", DlgDocLangDir : "Språkretning", DlgDocLangDirLTR : "Venstre til høyre (LTR)", DlgDocLangDirRTL : "Høyre til venstre (RTL)", DlgDocLangCode : "Språkkode", DlgDocCharSet : "Tegnsett", DlgDocCharSetCE : "Sentraleuropeisk", DlgDocCharSetCT : "Tradisonell kinesisk(Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Gresk", DlgDocCharSetJP : "Japansk", DlgDocCharSetKR : "Koreansk", DlgDocCharSetTR : "Tyrkisk", DlgDocCharSetUN : "Unikode (UTF-8)", DlgDocCharSetWE : "Vesteuropeisk", DlgDocCharSetOther : "Annet tegnsett", DlgDocDocType : "Dokumenttype header", DlgDocDocTypeOther : "Annet dokumenttype header", DlgDocIncXHTML : "Inkulder XHTML deklarasjon", DlgDocBgColor : "Bakgrunnsfarge", DlgDocBgImage : "Bakgrunnsbilde url", DlgDocBgNoScroll : "Ikke scroll bakgrunnsbilde", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Besøkt lenke", DlgDocCActive : "Aktiv lenke", DlgDocMargins : "Sidemargin", DlgDocMaTop : "Topp", DlgDocMaLeft : "Venstre", DlgDocMaRight : "Høyre", DlgDocMaBottom : "Bunn", DlgDocMeIndex : "Dokument nøkkelord (kommaseparert)", DlgDocMeDescr : "Dokumentbeskrivelse", DlgDocMeAuthor : "Forfatter", DlgDocMeCopy : "Kopirett", DlgDocPreview : "Forhåndsvising", // Templates Dialog Templates : "Maler", DlgTemplatesTitle : "Innholdsmaler", DlgTemplatesSelMsg : "Velg malen du vil åpne
(innholdet du har skrevet blir tapt!):", DlgTemplatesLoading : "Laster malliste. Vennligst vent...", DlgTemplatesNoTpl : "(Ingen maler definert)", DlgTemplatesReplace : "Erstatt faktisk innold", // About Dialog DlgAboutAboutTab : "Om", DlgAboutBrowserInfoTab : "Nettleserinfo", DlgAboutLicenseTab : "Lisens", DlgAboutVersion : "versjon", DlgAboutInfo : "For further information go to" //MISSING };FCKeditor/editor/lang/fr.js0000644000102600010270000004374111234071607015037 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * French language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Masquer Outils", ToolbarExpand : "Afficher Outils", // Toolbar Items and Context Menu Save : "Enregistrer", NewPage : "Nouvelle page", Preview : "Prévisualisation", Cut : "Couper", Copy : "Copier", Paste : "Coller", PasteText : "Coller comme texte", PasteWord : "Coller de Word", Print : "Imprimer", SelectAll : "Tout sélectionner", RemoveFormat : "Supprimer le format", InsertLinkLbl : "Lien", InsertLink : "Insérer/modifier le lien", RemoveLink : "Supprimer le lien", Anchor : "Insérer/modifier l'ancre", InsertImageLbl : "Image", InsertImage : "Insérer/modifier l'image", InsertFlashLbl : "Animation Flash", InsertFlash : "Insérer/modifier l'animation Flash", InsertTableLbl : "Tableau", InsertTable : "Insérer/modifier le tableau", InsertLineLbl : "Séparateur", InsertLine : "Insérer un séparateur", InsertSpecialCharLbl: "Caractères spéciaux", InsertSpecialChar : "Insérer un caractère spécial", InsertSmileyLbl : "Smiley", InsertSmiley : "Insérer un Smiley", About : "A propos de FCKeditor", Bold : "Gras", Italic : "Italique", Underline : "Souligné", StrikeThrough : "Barré", Subscript : "Indice", Superscript : "Exposant", LeftJustify : "Aligné à gauche", CenterJustify : "Centré", RightJustify : "Aligné à Droite", BlockJustify : "Texte justifié", DecreaseIndent : "Diminuer le retrait", IncreaseIndent : "Augmenter le retrait", Undo : "Annuler", Redo : "Refaire", NumberedListLbl : "Liste numérotée", NumberedList : "Insérer/supprimer la liste numérotée", BulletedListLbl : "Liste à puces", BulletedList : "Insérer/supprimer la liste à puces", ShowTableBorders : "Afficher les bordures du tableau", ShowDetails : "Afficher les caractères invisibles", Style : "Style", FontFormat : "Format", Font : "Police", FontSize : "Taille", TextColor : "Couleur de caractère", BGColor : "Couleur de fond", Source : "Source", Find : "Chercher", Replace : "Remplacer", SpellCheck : "Orthographe", UniversalKeyboard : "Clavier universel", PageBreakLbl : "Saut de page", PageBreak : "Insérer un saut de page", Form : "Formulaire", Checkbox : "Case à cocher", RadioButton : "Bouton radio", TextField : "Champ texte", Textarea : "Zone de texte", HiddenField : "Champ caché", Button : "Bouton", SelectionField : "Liste/menu", ImageButton : "Bouton image", FitWindow : "Edition pleine page", // Context Menu EditLink : "Modifier le lien", CellCM : "Cellule", RowCM : "Ligne", ColumnCM : "Colonne", InsertRow : "Insérer une ligne", DeleteRows : "Supprimer des lignes", InsertColumn : "Insérer une colonne", DeleteColumns : "Supprimer des colonnes", InsertCell : "Insérer une cellule", DeleteCells : "Supprimer des cellules", MergeCells : "Fusionner les cellules", SplitCell : "Scinder les cellules", TableDelete : "Supprimer le tableau", CellProperties : "Propriétés de cellule", TableProperties : "Propriétés du tableau", ImageProperties : "Propriétés de l'image", FlashProperties : "Propriétés de l'animation Flash", AnchorProp : "Propriétés de l'ancre", ButtonProp : "Propriétés du bouton", CheckboxProp : "Propriétés de la case à cocher", HiddenFieldProp : "Propriétés du champ caché", RadioButtonProp : "Propriétés du bouton radio", ImageButtonProp : "Propriétés du bouton image", TextFieldProp : "Propriétés du champ texte", SelectionFieldProp : "Propriétés de la liste/du menu", TextareaProp : "Propriétés de la zone de texte", FormProp : "Propriétés du formulaire", FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Calcul XHTML. Veuillez patienter...", Done : "Terminé", PasteWordConfirm : "Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller?", NotCompatiblePaste : "Cette commande nécessite Internet Explorer version 5.5 minimum. Souhaitez-vous coller sans nettoyage?", UnknownToolbarItem : "Elément de barre d'outil inconnu \"%1\"", UnknownCommand : "Nom de commande inconnu \"%1\"", NotImplemented : "Commande non encore écrite", UnknownToolbarSet : "La barre d'outils \"%1\" n'existe pas", NoActiveX : "Les paramètres de sécurité de votre navigateur peuvent limiter quelques fonctionnalités de l'éditeur. Veuillez activer l'option \"Exécuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.", BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Annuler", DlgBtnClose : "Fermer", DlgBtnBrowseServer : "Parcourir le serveur", DlgAdvancedTag : "Avancé", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Veuillez saisir l'URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Sens d'écriture", DlgGenLangDirLtr : "De gauche à droite (LTR)", DlgGenLangDirRtl : "De droite à gauche (RTL)", DlgGenLangCode : "Code langue", DlgGenAccessKey : "Equivalent clavier", DlgGenName : "Nom", DlgGenTabIndex : "Ordre de tabulation", DlgGenLongDescr : "URL de description longue", DlgGenClass : "Classes de feuilles de style", DlgGenTitle : "Titre", DlgGenContType : "Type de contenu", DlgGenLinkCharset : "Encodage de caractère", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Propriétés de l'image", DlgImgInfoTab : "Informations sur l'image", DlgImgBtnUpload : "Envoyer sur le serveur", DlgImgURL : "URL", DlgImgUpload : "Télécharger", DlgImgAlt : "Texte de remplacement", DlgImgWidth : "Largeur", DlgImgHeight : "Hauteur", DlgImgLockRatio : "Garder les proportions", DlgBtnResetSize : "Taille originale", DlgImgBorder : "Bordure", DlgImgHSpace : "Espacement horizontal", DlgImgVSpace : "Espacement vertical", DlgImgAlign : "Alignement", DlgImgAlignLeft : "Gauche", DlgImgAlignAbsBottom: "Abs Bas", DlgImgAlignAbsMiddle: "Abs Milieu", DlgImgAlignBaseline : "Bas du texte", DlgImgAlignBottom : "Bas", DlgImgAlignMiddle : "Milieu", DlgImgAlignRight : "Droite", DlgImgAlignTextTop : "Haut du texte", DlgImgAlignTop : "Haut", DlgImgPreview : "Prévisualisation", DlgImgAlertUrl : "Veuillez saisir l'URL de l'image", DlgImgLinkTab : "Lien", // Flash Dialog DlgFlashTitle : "Propriétés de l'animation Flash", DlgFlashChkPlay : "Lecture automatique", DlgFlashChkLoop : "Boucle", DlgFlashChkMenu : "Activer le menu Flash", DlgFlashScale : "Affichage", DlgFlashScaleAll : "Par défaut (tout montrer)", DlgFlashScaleNoBorder : "Sans bordure", DlgFlashScaleFit : "Ajuster aux dimensions", // Link Dialog DlgLnkWindowTitle : "Propriétés du lien", DlgLnkInfoTab : "Informations sur le lien", DlgLnkTargetTab : "Destination", DlgLnkType : "Type de lien", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Ancre dans cette page", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocole", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Sélectionner une ancre", DlgLnkAnchorByName : "Par nom", DlgLnkAnchorById : "Par id", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adresse E-Mail", DlgLnkEMailSubject : "Sujet du message", DlgLnkEMailBody : "Corps du message", DlgLnkUpload : "Télécharger", DlgLnkBtnUpload : "Envoyer sur le serveur", DlgLnkTarget : "Destination", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)", DlgLnkTargetParent : "Fenêtre mère (_parent)", DlgLnkTargetSelf : "Même fenêtre (_self)", DlgLnkTargetTop : "Fenêtre supérieure (_top)", DlgLnkTargetFrameName : "Nom du cadre de destination", DlgLnkPopWinName : "Nom de la fenêtre popup", DlgLnkPopWinFeat : "Caractéristiques de la fenêtre popup", DlgLnkPopResize : "Taille modifiable", DlgLnkPopLocation : "Barre d'adresses", DlgLnkPopMenu : "Barre de menu", DlgLnkPopScroll : "Barres de défilement", DlgLnkPopStatus : "Barre d'état", DlgLnkPopToolbar : "Barre d'outils", DlgLnkPopFullScrn : "Plein écran (IE)", DlgLnkPopDependent : "Dépendante (Netscape)", DlgLnkPopWidth : "Largeur", DlgLnkPopHeight : "Hauteur", DlgLnkPopLeft : "Position à partir de la gauche", DlgLnkPopTop : "Position à partir du haut", DlnLnkMsgNoUrl : "Veuillez saisir l'URL", DlnLnkMsgNoEMail : "Veuillez saisir l'adresse e-mail", DlnLnkMsgNoAnchor : "Veuillez sélectionner une ancre", DlnLnkMsgInvPopName : "Le nom de la fenêtre popup doit commencer par une lettre et ne doit pas contenir d'espace", // Color Dialog DlgColorTitle : "Sélectionner", DlgColorBtnClear : "Effacer", DlgColorHighlight : "Prévisualisation", DlgColorSelected : "Sélectionné", // Smiley Dialog DlgSmileyTitle : "Insérer un Smiley", // Special Character Dialog DlgSpecialCharTitle : "Insérer un caractère spécial", // Table Dialog DlgTableTitle : "Propriétés du tableau", DlgTableRows : "Lignes", DlgTableColumns : "Colonnes", DlgTableBorder : "Bordure", DlgTableAlign : "Alignement", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Gauche", DlgTableAlignCenter : "Centré", DlgTableAlignRight : "Droite", DlgTableWidth : "Largeur", DlgTableWidthPx : "pixels", DlgTableWidthPc : "pourcentage", DlgTableHeight : "Hauteur", DlgTableCellSpace : "Espacement", DlgTableCellPad : "Contour", DlgTableCaption : "Titre", DlgTableSummary : "Résumé", // Table Cell Dialog DlgCellTitle : "Propriétés de la cellule", DlgCellWidth : "Largeur", DlgCellWidthPx : "pixels", DlgCellWidthPc : "pourcentage", DlgCellHeight : "Hauteur", DlgCellWordWrap : "Retour à la ligne", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Oui", DlgCellWordWrapNo : "Non", DlgCellHorAlign : "Alignement horizontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Gauche", DlgCellHorAlignCenter : "Centré", DlgCellHorAlignRight: "Droite", DlgCellVerAlign : "Alignement vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Haut", DlgCellVerAlignMiddle : "Milieu", DlgCellVerAlignBottom : "Bas", DlgCellVerAlignBaseline : "Bas du texte", DlgCellRowSpan : "Lignes fusionnées", DlgCellCollSpan : "Colonnes fusionnées", DlgCellBackColor : "Fond", DlgCellBorderColor : "Bordure", DlgCellBtnSelect : "Choisir...", // Find Dialog DlgFindTitle : "Chercher", DlgFindFindBtn : "Chercher", DlgFindNotFoundMsg : "Le texte indiqué est introuvable.", // Replace Dialog DlgReplaceTitle : "Remplacer", DlgReplaceFindLbl : "Rechercher:", DlgReplaceReplaceLbl : "Remplacer par:", DlgReplaceCaseChk : "Respecter la casse", DlgReplaceReplaceBtn : "Remplacer", DlgReplaceReplAllBtn : "Tout remplacer", DlgReplaceWordChk : "Mot entier", // Paste Operations / Dialog PasteErrorCut : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).", PasteErrorCopy : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).", PasteAsText : "Coller comme texte", PasteFromWord : "Coller à partir de Word", DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et cliquez sur OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorer les polices de caractères", DlgPasteRemoveStyles : "Supprimer les styles", DlgPasteCleanBox : "Effacer le contenu", // Color Picker ColorAutomatic : "Automatique", ColorMoreColors : "Plus de couleurs...", // Document Properties DocProps : "Propriétés du document", // Anchor Dialog DlgAnchorTitle : "Propriétés de l'ancre", DlgAnchorName : "Nom de l'ancre", DlgAnchorErrorName : "Veuillez saisir le nom de l'ancre", // Speller Pages Dialog DlgSpellNotInDic : "Pas dans le dictionnaire", DlgSpellChangeTo : "Changer en", DlgSpellBtnIgnore : "Ignorer", DlgSpellBtnIgnoreAll : "Ignorer tout", DlgSpellBtnReplace : "Remplacer", DlgSpellBtnReplaceAll : "Remplacer tout", DlgSpellBtnUndo : "Annuler", DlgSpellNoSuggestions : "- Aucune suggestion -", DlgSpellProgress : "Vérification d'orthographe en cours...", DlgSpellNoMispell : "Vérification d'orthographe terminée: Aucune erreur trouvée", DlgSpellNoChanges : "Vérification d'orthographe terminée: Pas de modifications", DlgSpellOneChange : "Vérification d'orthographe terminée: Un mot modifié", DlgSpellManyChanges : "Vérification d'orthographe terminée: %1 mots modifiés", IeSpellDownload : "Le Correcteur n'est pas installé. Souhaitez-vous le télécharger maintenant?", // Button Dialog DlgButtonText : "Texte (valeur)", DlgButtonType : "Type", DlgButtonTypeBtn : "Bouton", DlgButtonTypeSbm : "Envoyer", DlgButtonTypeRst : "Réinitialiser", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nom", DlgCheckboxValue : "Valeur", DlgCheckboxSelected : "Sélectionné", // Form Dialog DlgFormName : "Nom", DlgFormAction : "Action", DlgFormMethod : "Méthode", // Select Field Dialog DlgSelectName : "Nom", DlgSelectValue : "Valeur", DlgSelectSize : "Taille", DlgSelectLines : "lignes", DlgSelectChkMulti : "Sélection multiple", DlgSelectOpAvail : "Options disponibles", DlgSelectOpText : "Texte", DlgSelectOpValue : "Valeur", DlgSelectBtnAdd : "Ajouter", DlgSelectBtnModify : "Modifier", DlgSelectBtnUp : "Monter", DlgSelectBtnDown : "Descendre", DlgSelectBtnSetValue : "Valeur sélectionnée", DlgSelectBtnDelete : "Supprimer", // Textarea Dialog DlgTextareaName : "Nom", DlgTextareaCols : "Colonnes", DlgTextareaRows : "Lignes", // Text Field Dialog DlgTextName : "Nom", DlgTextValue : "Valeur", DlgTextCharWidth : "Largeur en caractères", DlgTextMaxChars : "Nombre maximum de caractères", DlgTextType : "Type", DlgTextTypeText : "Texte", DlgTextTypePass : "Mot de passe", // Hidden Field Dialog DlgHiddenName : "Nom", DlgHiddenValue : "Valeur", // Bulleted List Dialog BulletedListProp : "Propriétés de liste à puces", NumberedListProp : "Propriétés de liste numérotée", DlgLstStart : "Début", DlgLstType : "Type", DlgLstTypeCircle : "Cercle", DlgLstTypeDisc : "Disque", DlgLstTypeSquare : "Carré", DlgLstTypeNumbers : "Nombres (1, 2, 3)", DlgLstTypeLCase : "Lettres minuscules (a, b, c)", DlgLstTypeUCase : "Lettres majuscules (A, B, C)", DlgLstTypeSRoman : "Chiffres romains minuscules (i, ii, iii)", DlgLstTypeLRoman : "Chiffres romains majuscules (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Général", DlgDocBackTab : "Fond", DlgDocColorsTab : "Couleurs et marges", DlgDocMetaTab : "Métadonnées", DlgDocPageTitle : "Titre de la page", DlgDocLangDir : "Sens d'écriture", DlgDocLangDirLTR : "De la gauche vers la droite (LTR)", DlgDocLangDirRTL : "De la droite vers la gauche (RTL)", DlgDocLangCode : "Code langue", DlgDocCharSet : "Encodage de caractère", DlgDocCharSetCE : "Europe Centrale", DlgDocCharSetCT : "Chinois Traditionnel (Big5)", DlgDocCharSetCR : "Cyrillique", DlgDocCharSetGR : "Grec", DlgDocCharSetJP : "Japanais", DlgDocCharSetKR : "Coréen", DlgDocCharSetTR : "Turc", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Occidental", DlgDocCharSetOther : "Autre encodage de caractère", DlgDocDocType : "Type de document", DlgDocDocTypeOther : "Autre type de document", DlgDocIncXHTML : "Inclure les déclarations XHTML", DlgDocBgColor : "Couleur de fond", DlgDocBgImage : "Image de fond", DlgDocBgNoScroll : "Image fixe sans défilement", DlgDocCText : "Texte", DlgDocCLink : "Lien", DlgDocCVisited : "Lien visité", DlgDocCActive : "Lien activé", DlgDocMargins : "Marges", DlgDocMaTop : "Haut", DlgDocMaLeft : "Gauche", DlgDocMaRight : "Droite", DlgDocMaBottom : "Bas", DlgDocMeIndex : "Mots-clés (séparés par des virgules)", DlgDocMeDescr : "Description", DlgDocMeAuthor : "Auteur", DlgDocMeCopy : "Copyright", DlgDocPreview : "Prévisualisation", // Templates Dialog Templates : "Modèles", DlgTemplatesTitle : "Modèles de contenu", DlgTemplatesSelMsg : "Veuillez sélectionner le modèle à ouvrir dans l'éditeur
(le contenu actuel sera remplacé):", DlgTemplatesLoading : "Chargement de la liste des modèles. Veuillez patienter...", DlgTemplatesNoTpl : "(Aucun modèle disponible)", DlgTemplatesReplace : "Remplacer tout le contenu", // About Dialog DlgAboutAboutTab : "A propos de", DlgAboutBrowserInfoTab : "Navigateur", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", DlgAboutInfo : "Pour plus d'informations, aller à" };FCKeditor/editor/lang/ko.js0000644000102600010270000004330011234071621015024 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Korean language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "툴바 감추기", ToolbarExpand : "툴바 보이기", // Toolbar Items and Context Menu Save : "저장하기", NewPage : "새 문서", Preview : "미리보기", Cut : "잘라내기", Copy : "복사하기", Paste : "붙여넣기", PasteText : "텍스트로 붙여넣기", PasteWord : "MS Word 형식에서 붙여넣기", Print : "인쇄하기", SelectAll : "전체선택", RemoveFormat : "포맷 지우기", InsertLinkLbl : "링크", InsertLink : "링크 삽입/변경", RemoveLink : "링크 삭제", Anchor : "책갈피 삽입/변경", InsertImageLbl : "이미지", InsertImage : "이미지 삽입/변경", InsertFlashLbl : "플래쉬", InsertFlash : "플래쉬 삽입/변경", InsertTableLbl : "표", InsertTable : "표 삽입/변경", InsertLineLbl : "수평선", InsertLine : "수평선 삽입", InsertSpecialCharLbl: "특수문자 삽입", InsertSpecialChar : "특수문자 삽입", InsertSmileyLbl : "아이콘", InsertSmiley : "아이콘 삽입", About : "FCKeditor에 대하여", Bold : "진하게", Italic : "이텔릭", Underline : "밑줄", StrikeThrough : "취소선", Subscript : "아래 첨자", Superscript : "위 첨자", LeftJustify : "왼쪽 정렬", CenterJustify : "가운데 정렬", RightJustify : "오른쪽 정렬", BlockJustify : "양쪽 맞춤", DecreaseIndent : "내어쓰기", IncreaseIndent : "들여쓰기", Undo : "취소", Redo : "재실행", NumberedListLbl : "순서있는 목록", NumberedList : "순서있는 목록", BulletedListLbl : "순서없는 목록", BulletedList : "순서없는 목록", ShowTableBorders : "표 테두리 보기", ShowDetails : "문서기호 보기", Style : "스타일", FontFormat : "포맷", Font : "폰트", FontSize : "글자 크기", TextColor : "글자 색상", BGColor : "배경 색상", Source : "소스", Find : "찾기", Replace : "바꾸기", SpellCheck : "철자검사", UniversalKeyboard : "다국어 입력기", PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //MISSING Form : "폼", Checkbox : "체크박스", RadioButton : "라디오버튼", TextField : "입력필드", Textarea : "입력영역", HiddenField : "숨김필드", Button : "버튼", SelectionField : "펼침목록", ImageButton : "이미지버튼", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "링크 수정", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "가로줄 삽입", DeleteRows : "가로줄 삭제", InsertColumn : "세로줄 삽입", DeleteColumns : "세로줄 삭제", InsertCell : "셀 삽입", DeleteCells : "셀 삭제", MergeCells : "셀 합치기", SplitCell : "셀 나누기", TableDelete : "Delete Table", //MISSING CellProperties : "셀 속성", TableProperties : "표 속성", ImageProperties : "이미지 속성", FlashProperties : "플래쉬 속성", AnchorProp : "책갈피 속성", ButtonProp : "버튼 속성", CheckboxProp : "체크박스 속성", HiddenFieldProp : "숨김필드 속성", RadioButtonProp : "라디오버튼 속성", ImageButtonProp : "이미지버튼 속성", TextFieldProp : "입력필드 속성", SelectionFieldProp : "펼침목록 속성", TextareaProp : "입력영역 속성", FormProp : "폼 속성", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML 처리중. 잠시만 기다려주십시요.", Done : "완료", PasteWordConfirm : "붙여넣기 할 텍스트는 MS Word에서 복사한 것입니다. 붙여넣기 전에 MS Word 포멧을 삭제하시겠습니까?", NotCompatiblePaste : "이 명령은 인터넷익스플로러 5.5 버전 이상에서만 작동합니다. 포멧을 삭제하지 않고 붙여넣기 하시겠습니까?", UnknownToolbarItem : "알수없는 툴바입니다. : \"%1\"", UnknownCommand : "알수없는 기능입니다. : \"%1\"", NotImplemented : "기능이 실행되지 않았습니다.", UnknownToolbarSet : "툴바 설정이 없습니다. : \"%1\"", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "예", DlgBtnCancel : "아니오", DlgBtnClose : "닫기", DlgBtnBrowseServer : "서버 보기", DlgAdvancedTag : "자세히", DlgOpOther : "<기타>", DlgInfoTab : "정보", DlgAlertUrl : "URL을 입력하십시요", // General Dialogs Labels DlgGenNotSet : "<설정되지 않음>", DlgGenId : "ID", DlgGenLangDir : "쓰기 방향", DlgGenLangDirLtr : "왼쪽에서 오른쪽 (LTR)", DlgGenLangDirRtl : "오른쪽에서 왼쪽 (RTL)", DlgGenLangCode : "언어 코드", DlgGenAccessKey : "엑세스 키", DlgGenName : "Name", DlgGenTabIndex : "탭 순서", DlgGenLongDescr : "URL 설명", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "이미지 설정", DlgImgInfoTab : "이미지 정보", DlgImgBtnUpload : "서버로 전송", DlgImgURL : "URL", DlgImgUpload : "업로드", DlgImgAlt : "이미지 설명", DlgImgWidth : "너비", DlgImgHeight : "높이", DlgImgLockRatio : "비율 유지", DlgBtnResetSize : "원래 크기로", DlgImgBorder : "테두리", DlgImgHSpace : "수평여백", DlgImgVSpace : "수직여백", DlgImgAlign : "정렬", DlgImgAlignLeft : "왼쪽", DlgImgAlignAbsBottom: "줄아래(Abs Bottom)", DlgImgAlignAbsMiddle: "줄중간(Abs Middle)", DlgImgAlignBaseline : "기준선", DlgImgAlignBottom : "아래", DlgImgAlignMiddle : "중간", DlgImgAlignRight : "오른쪽", DlgImgAlignTextTop : "글자위(Text Top)", DlgImgAlignTop : "위", DlgImgPreview : "미리보기", DlgImgAlertUrl : "이미지 URL을 입력하십시요", DlgImgLinkTab : "링크", // Flash Dialog DlgFlashTitle : "플래쉬 등록정보", DlgFlashChkPlay : "자동재생", DlgFlashChkLoop : "반복", DlgFlashChkMenu : "플래쉬메뉴 가능", DlgFlashScale : "영역", DlgFlashScaleAll : "모두보기", DlgFlashScaleNoBorder : "경계선없음", DlgFlashScaleFit : "영역자동조절", // Link Dialog DlgLnkWindowTitle : "링크", DlgLnkInfoTab : "링크 정보", DlgLnkTargetTab : "타겟", DlgLnkType : "링크 종류", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "책갈피", DlgLnkTypeEMail : "이메일", DlgLnkProto : "프로토콜", DlgLnkProtoOther : "<기타>", DlgLnkURL : "URL", DlgLnkAnchorSel : "책갈피 선택", DlgLnkAnchorByName : "책갈피 이름", DlgLnkAnchorById : "책갈피 ID", DlgLnkNoAnchors : "<문서에 책갈피가 없습니다.>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "이메일 주소", DlgLnkEMailSubject : "제목", DlgLnkEMailBody : "내용", DlgLnkUpload : "업로드", DlgLnkBtnUpload : "서버로 전송", DlgLnkTarget : "타겟", DlgLnkTargetFrame : "<프레임>", DlgLnkTargetPopup : "<팝업창>", DlgLnkTargetBlank : "새 창 (_blank)", DlgLnkTargetParent : "부모 창 (_parent)", DlgLnkTargetSelf : "현재 창 (_self)", DlgLnkTargetTop : "최 상위 창 (_top)", DlgLnkTargetFrameName : "타겟 프레임 이름", DlgLnkPopWinName : "팝업창 이름", DlgLnkPopWinFeat : "팝업창 설정", DlgLnkPopResize : "크기조정", DlgLnkPopLocation : "주소표시줄", DlgLnkPopMenu : "메뉴바", DlgLnkPopScroll : "스크롤바", DlgLnkPopStatus : "상태바", DlgLnkPopToolbar : "툴바", DlgLnkPopFullScrn : "전체화면 (IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "너비", DlgLnkPopHeight : "높이", DlgLnkPopLeft : "왼쪽 위치", DlgLnkPopTop : "윗쪽 위치", DlnLnkMsgNoUrl : "링크 URL을 입력하십시요.", DlnLnkMsgNoEMail : "이메일주소를 입력하십시요.", DlnLnkMsgNoAnchor : "책갈피명을 입력하십시요.", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "색상 선택", DlgColorBtnClear : "지우기", DlgColorHighlight : "현재", DlgColorSelected : "선택됨", // Smiley Dialog DlgSmileyTitle : "아이콘 삽입", // Special Character Dialog DlgSpecialCharTitle : "특수문자 선택", // Table Dialog DlgTableTitle : "표 설정", DlgTableRows : "가로줄", DlgTableColumns : "세로줄", DlgTableBorder : "테두리 크기", DlgTableAlign : "정렬", DlgTableAlignNotSet : "<설정되지 않음>", DlgTableAlignLeft : "왼쪽", DlgTableAlignCenter : "가운데", DlgTableAlignRight : "오른쪽", DlgTableWidth : "너비", DlgTableWidthPx : "픽셀", DlgTableWidthPc : "퍼센트", DlgTableHeight : "높이", DlgTableCellSpace : "셀 간격", DlgTableCellPad : "셀 여백", DlgTableCaption : "캡션", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "셀 설정", DlgCellWidth : "너비", DlgCellWidthPx : "픽셀", DlgCellWidthPc : "퍼센트", DlgCellHeight : "높이", DlgCellWordWrap : "워드랩", DlgCellWordWrapNotSet : "<설정되지 않음>", DlgCellWordWrapYes : "예", DlgCellWordWrapNo : "아니오", DlgCellHorAlign : "수평 정렬", DlgCellHorAlignNotSet : "<설정되지 않음>", DlgCellHorAlignLeft : "왼쪽", DlgCellHorAlignCenter : "가운데", DlgCellHorAlignRight: "오른쪽", DlgCellVerAlign : "수직 정렬", DlgCellVerAlignNotSet : "<설정되지 않음>", DlgCellVerAlignTop : "위", DlgCellVerAlignMiddle : "중간", DlgCellVerAlignBottom : "아래", DlgCellVerAlignBaseline : "기준선", DlgCellRowSpan : "세로 합치기", DlgCellCollSpan : "가로 합치기", DlgCellBackColor : "배경 색상", DlgCellBorderColor : "테두리 색상", DlgCellBtnSelect : "선택", // Find Dialog DlgFindTitle : "찾기", DlgFindFindBtn : "찾기", DlgFindNotFoundMsg : "문자열을 찾을 수 없습니다.", // Replace Dialog DlgReplaceTitle : "바꾸기", DlgReplaceFindLbl : "찾을 문자열:", DlgReplaceReplaceLbl : "바꿀 문자열:", DlgReplaceCaseChk : "대소문자 구분", DlgReplaceReplaceBtn : "바꾸기", DlgReplaceReplAllBtn : "모두 바꾸기", DlgReplaceWordChk : "온전한 단어", // Paste Operations / Dialog PasteErrorCut : "브라우저의 보안설정때문에 잘라내기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+X).", PasteErrorCopy : "브라우저의 보안설정때문에 복사하기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+C).", PasteAsText : "텍스트로 붙여넣기", PasteFromWord : "MS Word 형식에서 붙여넣기", DlgPasteMsg2 : "키보드의 (Ctrl+V) 를 이용해서 상자안에 붙여넣고 OK 를 누르세요.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "폰트 설정 무시", DlgPasteRemoveStyles : "스타일 정의 제거", DlgPasteCleanBox : "글상자 제거", // Color Picker ColorAutomatic : "기본색상", ColorMoreColors : "색상선택...", // Document Properties DocProps : "문서 속성", // Anchor Dialog DlgAnchorTitle : "책갈피 속성", DlgAnchorName : "책갈피 이름", DlgAnchorErrorName : "책갈피 이름을 입력하십시요.", // Speller Pages Dialog DlgSpellNotInDic : "사전에 없는 단어", DlgSpellChangeTo : "변경할 단어", DlgSpellBtnIgnore : "건너뜀", DlgSpellBtnIgnoreAll : "모두 건너뜀", DlgSpellBtnReplace : "변경", DlgSpellBtnReplaceAll : "모두 변경", DlgSpellBtnUndo : "취소", DlgSpellNoSuggestions : "- 추천단어 없음 -", DlgSpellProgress : "철자검사를 진행중입니다...", DlgSpellNoMispell : "철자검사 완료: 잘못된 철자가 없습니다.", DlgSpellNoChanges : "철자검사 완료: 변경된 단어가 없습니다.", DlgSpellOneChange : "철자검사 완료: 단어가 변경되었습니다.", DlgSpellManyChanges : "철자검사 완료: %1 단어가 변경되었습니다.", IeSpellDownload : "철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?", // Button Dialog DlgButtonText : "버튼글자(값)", DlgButtonType : "버튼종류", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "이름", DlgCheckboxValue : "값", DlgCheckboxSelected : "선택됨", // Form Dialog DlgFormName : "폼이름", DlgFormAction : "실행경로(Action)", DlgFormMethod : "방법(Method)", // Select Field Dialog DlgSelectName : "이름", DlgSelectValue : "값", DlgSelectSize : "세로크기", DlgSelectLines : "줄", DlgSelectChkMulti : "여러항목 선택 허용", DlgSelectOpAvail : "선택옵션", DlgSelectOpText : "이름", DlgSelectOpValue : "값", DlgSelectBtnAdd : "추가", DlgSelectBtnModify : "변경", DlgSelectBtnUp : "위로", DlgSelectBtnDown : "아래로", DlgSelectBtnSetValue : "선택된것으로 설정", DlgSelectBtnDelete : "삭제", // Textarea Dialog DlgTextareaName : "이름", DlgTextareaCols : "칸수", DlgTextareaRows : "줄수", // Text Field Dialog DlgTextName : "이름", DlgTextValue : "값", DlgTextCharWidth : "글자 너비", DlgTextMaxChars : "최대 글자수", DlgTextType : "종류", DlgTextTypeText : "문자열", DlgTextTypePass : "비밀번호", // Hidden Field Dialog DlgHiddenName : "이름", DlgHiddenValue : "값", // Bulleted List Dialog BulletedListProp : "순서없는 목록 속성", NumberedListProp : "순서있는 목록 속성", DlgLstStart : "Start", //MISSING DlgLstType : "종류", DlgLstTypeCircle : "원(Circle)", DlgLstTypeDisc : "Disc", //MISSING DlgLstTypeSquare : "네모점(Square)", DlgLstTypeNumbers : "번호 (1, 2, 3)", DlgLstTypeLCase : "소문자 (a, b, c)", DlgLstTypeUCase : "대문자 (A, B, C)", DlgLstTypeSRoman : "로마자 수문자 (i, ii, iii)", DlgLstTypeLRoman : "로마자 대문자 (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "일반", DlgDocBackTab : "배경", DlgDocColorsTab : "색상 및 여백", DlgDocMetaTab : "메타데이터", DlgDocPageTitle : "페이지명", DlgDocLangDir : "문자 쓰기방향", DlgDocLangDirLTR : "왼쪽에서 오른쪽 (LTR)", DlgDocLangDirRTL : "오른쪽에서 왼쪽 (RTL)", DlgDocLangCode : "언어코드", DlgDocCharSet : "캐릭터셋 인코딩", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "다른 캐릭터셋 인코딩", DlgDocDocType : "문서 헤드", DlgDocDocTypeOther : "다른 문서헤드", DlgDocIncXHTML : "XHTML 문서정의 포함", DlgDocBgColor : "배경색상", DlgDocBgImage : "배경이미지 URL", DlgDocBgNoScroll : "스크롤되지않는 배경", DlgDocCText : "텍스트", DlgDocCLink : "링크", DlgDocCVisited : "방문한 링크(Visited)", DlgDocCActive : "활성화된 링크(Active)", DlgDocMargins : "페이지 여백", DlgDocMaTop : "위", DlgDocMaLeft : "왼쪽", DlgDocMaRight : "오른쪽", DlgDocMaBottom : "아래", DlgDocMeIndex : "문서 키워드 (콤마로 구분)", DlgDocMeDescr : "문서 설명", DlgDocMeAuthor : "작성자", DlgDocMeCopy : "저작권", DlgDocPreview : "미리보기", // Templates Dialog Templates : "템플릿", DlgTemplatesTitle : "내용 템플릿", DlgTemplatesSelMsg : "에디터에서 사용할 템플릿을 선택하십시요.
(지금까지 작성된 내용은 사라집니다.):", DlgTemplatesLoading : "템플릿 목록을 불러오는중입니다. 잠시만 기다려주십시요.", DlgTemplatesNoTpl : "(템플릿이 없습니다.)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "브라우저 정보", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "버전", DlgAboutInfo : "For further information go to" };FCKeditor/editor/lang/sr.js0000644000102600010270000005377211234071644015062 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Serbian (Cyrillic) language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Смањи линију са алаткама", ToolbarExpand : "Прошири линију са алаткама", // Toolbar Items and Context Menu Save : "Сачувај", NewPage : "Нова страница", Preview : "Изглед странице", Cut : "Исеци", Copy : "Копирај", Paste : "Залепи", PasteText : "Залепи као неформатиран текст", PasteWord : "Залепи из Worda", Print : "Штампа", SelectAll : "Означи све", RemoveFormat : "Уклони форматирање", InsertLinkLbl : "Линк", InsertLink : "Унеси/измени линк", RemoveLink : "Уклони линк", Anchor : "Унеси/измени сидро", InsertImageLbl : "Слика", InsertImage : "Унеси/измени слику", InsertFlashLbl : "Флеш елемент", InsertFlash : "Унеси/измени флеш", InsertTableLbl : "Табела", InsertTable : "Унеси/измени табелу", InsertLineLbl : "Линија", InsertLine : "Унеси хоризонталну линију", InsertSpecialCharLbl: "Специјални карактери", InsertSpecialChar : "Унеси специјални карактер", InsertSmileyLbl : "Смајли", InsertSmiley : "Унеси смајлија", About : "О ФЦКедитору", Bold : "Подебљано", Italic : "Курзив", Underline : "Подвучено", StrikeThrough : "Прецртано", Subscript : "Индекс", Superscript : "Степен", LeftJustify : "Лево равнање", CenterJustify : "Центриран текст", RightJustify : "Десно равнање", BlockJustify : "Обострано равнање", DecreaseIndent : "Смањи леву маргину", IncreaseIndent : "Увећај леву маргину", Undo : "Поништи акцију", Redo : "Понови акцију", NumberedListLbl : "Набројиву листу", NumberedList : "Унеси/уклони набројиву листу", BulletedListLbl : "Ненабројива листа", BulletedList : "Унеси/уклони ненабројиву листу", ShowTableBorders : "Прикажи оквир табеле", ShowDetails : "Прикажи детаље", Style : "Стил", FontFormat : "Формат", Font : "Фонт", FontSize : "Величина фонта", TextColor : "Боја текста", BGColor : "Боја позадине", Source : "Kôд", Find : "Претрага", Replace : "Замена", SpellCheck : "Провери спеловање", UniversalKeyboard : "Универзална тастатура", PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //MISSING Form : "Форма", Checkbox : "Поље за потврду", RadioButton : "Радио-дугме", TextField : "Текстуално поље", Textarea : "Зона текста", HiddenField : "Скривено поље", Button : "Дугме", SelectionField : "Изборно поље", ImageButton : "Дугме са сликом", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Промени линк", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Унеси ред", DeleteRows : "Обриши редове", InsertColumn : "Унеси колону", DeleteColumns : "Обриши колоне", InsertCell : "Унеси ћелије", DeleteCells : "Обриши ћелије", MergeCells : "Спој ћелије", SplitCell : "Раздвоји ћелије", TableDelete : "Delete Table", //MISSING CellProperties : "Особине ћелије", TableProperties : "Особине табеле", ImageProperties : "Особине слике", FlashProperties : "Особине Флеша", 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", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Обрађујем XHTML. Maлo стрпљења...", Done : "Завршио", PasteWordConfirm : "Текст који желите да налепите копиран је из Worda. Да ли желите да буде очишћен од формата пре лепљења?", NotCompatiblePaste : "Ова команда је доступна само за Интернет Екплорер од верзије 5.5. Да ли желите да налепим текст без чишћења?", UnknownToolbarItem : "Непозната ставка toolbara \"%1\"", UnknownCommand : "Непозната наредба \"%1\"", NotImplemented : "Наредба није имплементирана", UnknownToolbarSet : "Toolbar \"%1\" не постоји", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Oткажи", DlgBtnClose : "Затвори", DlgBtnBrowseServer : "Претражи сервер", DlgAdvancedTag : "Напредни тагови", DlgOpOther : "<Остали>", DlgInfoTab : "Инфо", DlgAlertUrl : "Молимо Вас, унесите УРЛ", // General Dialogs Labels DlgGenNotSet : "<није постављено>", DlgGenId : "Ид", DlgGenLangDir : "Смер језика", DlgGenLangDirLtr : "С лева на десно (LTR)", DlgGenLangDirRtl : "С десна на лево (RTL)", DlgGenLangCode : "Kôд језика", DlgGenAccessKey : "Приступни тастер", DlgGenName : "Назив", DlgGenTabIndex : "Таб индекс", DlgGenLongDescr : "Пун опис УРЛ", DlgGenClass : "Stylesheet класе", DlgGenTitle : "Advisory наслов", DlgGenContType : "Advisory врста садржаја", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Стил", // Image Dialog DlgImgTitle : "Особине слика", DlgImgInfoTab : "Инфо слике", DlgImgBtnUpload : "Пошаљи на сервер", DlgImgURL : "УРЛ", DlgImgUpload : "Пошаљи", DlgImgAlt : "Алтернативни текст", DlgImgWidth : "Ширина", DlgImgHeight : "Висина", DlgImgLockRatio : "Закључај однос", DlgBtnResetSize : "Ресетуј величину", DlgImgBorder : "Оквир", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Равнање", DlgImgAlignLeft : "Лево", DlgImgAlignAbsBottom: "Abs доле", DlgImgAlignAbsMiddle: "Abs средина", DlgImgAlignBaseline : "Базно", DlgImgAlignBottom : "Доле", DlgImgAlignMiddle : "Средина", DlgImgAlignRight : "Десно", DlgImgAlignTextTop : "Врх текста", DlgImgAlignTop : "Врх", DlgImgPreview : "Изглед", DlgImgAlertUrl : "Унесите УРЛ слике", DlgImgLinkTab : "Линк", // Flash Dialog DlgFlashTitle : "Особине флеша", DlgFlashChkPlay : "Аутоматски старт", DlgFlashChkLoop : "Понављај", DlgFlashChkMenu : "Укључи флеш мени", DlgFlashScale : "Скалирај", DlgFlashScaleAll : "Прикажи све", DlgFlashScaleNoBorder : "Без ивице", DlgFlashScaleFit : "Попуни површину", // Link Dialog DlgLnkWindowTitle : "Линк", DlgLnkInfoTab : "Линк инфо", DlgLnkTargetTab : "Мета", DlgLnkType : "Врста линка", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Сидро на овој страници", DlgLnkTypeEMail : "Eлектронска пошта", DlgLnkProto : "Протокол", DlgLnkProtoOther : "<друго>", DlgLnkURL : "УРЛ", DlgLnkAnchorSel : "Одабери сидро", DlgLnkAnchorByName : "По називу сидра", DlgLnkAnchorById : "Пo Ид-jу елемента", DlgLnkNoAnchors : "<Нема доступних сидра>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Адреса електронске поште", DlgLnkEMailSubject : "Наслов", DlgLnkEMailBody : "Садржај поруке", DlgLnkUpload : "Пошаљи", DlgLnkBtnUpload : "Пошаљи на сервер", DlgLnkTarget : "Meтa", DlgLnkTargetFrame : "<оквир>", DlgLnkTargetPopup : "<искачући прозор>", DlgLnkTargetBlank : "Нови прозор (_blank)", DlgLnkTargetParent : "Родитељски прозор (_parent)", DlgLnkTargetSelf : "Исти прозор (_self)", DlgLnkTargetTop : "Прозор на врху (_top)", DlgLnkTargetFrameName : "Назив одредишног фрејма", DlgLnkPopWinName : "Назив искачућег прозора", DlgLnkPopWinFeat : "Могућности искачућег прозора", DlgLnkPopResize : "Променљива величина", DlgLnkPopLocation : "Локација", DlgLnkPopMenu : "Контекстни мени", DlgLnkPopScroll : "Скрол бар", DlgLnkPopStatus : "Статусна линија", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Приказ преко целог екрана (ИE)", DlgLnkPopDependent : "Зависно (Netscape)", DlgLnkPopWidth : "Ширина", DlgLnkPopHeight : "Висина", DlgLnkPopLeft : "Од леве ивице екрана (пиксела)", DlgLnkPopTop : "Од врха екрана (пиксела)", DlnLnkMsgNoUrl : "Унесите УРЛ линка", DlnLnkMsgNoEMail : "Откуцајте адресу електронске поште", DlnLnkMsgNoAnchor : "Одаберите сидро", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Одаберите боју", DlgColorBtnClear : "Обриши", DlgColorHighlight : "Посветли", DlgColorSelected : "Одабери", // Smiley Dialog DlgSmileyTitle : "Унеси смајлија", // Special Character Dialog DlgSpecialCharTitle : "Одаберите специјални карактер", // Table Dialog DlgTableTitle : "Особине табеле", DlgTableRows : "Редова", DlgTableColumns : "Kолона", DlgTableBorder : "Величина оквира", DlgTableAlign : "Равнање", DlgTableAlignNotSet : "<није постављено>", DlgTableAlignLeft : "Лево", DlgTableAlignCenter : "Средина", DlgTableAlignRight : "Десно", DlgTableWidth : "Ширина", DlgTableWidthPx : "пиксела", DlgTableWidthPc : "процената", DlgTableHeight : "Висина", DlgTableCellSpace : "Ћелијски простор", DlgTableCellPad : "Размак ћелија", DlgTableCaption : "Наслов табеле", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Особине ћелије", DlgCellWidth : "Ширина", DlgCellWidthPx : "пиксела", DlgCellWidthPc : "процената", DlgCellHeight : "Висина", DlgCellWordWrap : "Дељење речи", DlgCellWordWrapNotSet : "<није постављено>", DlgCellWordWrapYes : "Да", DlgCellWordWrapNo : "Не", DlgCellHorAlign : "Водоравно равнање", DlgCellHorAlignNotSet : "<није постављено>", DlgCellHorAlignLeft : "Лево", DlgCellHorAlignCenter : "Средина", DlgCellHorAlignRight: "Десно", DlgCellVerAlign : "Вертикално равнање", DlgCellVerAlignNotSet : "<није постављено>", DlgCellVerAlignTop : "Горње", DlgCellVerAlignMiddle : "Средина", DlgCellVerAlignBottom : "Доње", DlgCellVerAlignBaseline : "Базно", DlgCellRowSpan : "Спајање редова", DlgCellCollSpan : "Спајање колона", DlgCellBackColor : "Боја позадине", DlgCellBorderColor : "Боја оквира", DlgCellBtnSelect : "Oдабери...", // Find Dialog DlgFindTitle : "Пронађи", DlgFindFindBtn : "Пронађи", DlgFindNotFoundMsg : "Тражени текст није пронађен.", // Replace Dialog DlgReplaceTitle : "Замени", DlgReplaceFindLbl : "Пронађи:", DlgReplaceReplaceLbl : "Замени са:", DlgReplaceCaseChk : "Разликуј велика и мала слова", DlgReplaceReplaceBtn : "Замени", DlgReplaceReplAllBtn : "Замени све", DlgReplaceWordChk : "Упореди целе речи", // Paste Operations / Dialog PasteErrorCut : "Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског исецања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+X).", PasteErrorCopy : "Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског копирања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+C).", PasteAsText : "Залепи као чист текст", PasteFromWord : "Залепи из Worda", DlgPasteMsg2 : "Молимо Вас да залепите унутар доње површине користећи тастатурну пречицу (Ctrl+V) и да притиснете OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Игнориши Font Face дефиниције", DlgPasteRemoveStyles : "Уклони дефиниције стилова", DlgPasteCleanBox : "Обриши све", // Color Picker ColorAutomatic : "Аутоматски", ColorMoreColors : "Више боја...", // Document Properties DocProps : "Особине документа", // Anchor Dialog DlgAnchorTitle : "Особине сидра", DlgAnchorName : "Име сидра", DlgAnchorErrorName : "Молимо Вас да унесете име сидра", // Speller Pages Dialog DlgSpellNotInDic : "Није у речнику", DlgSpellChangeTo : "Измени", DlgSpellBtnIgnore : "Игнориши", DlgSpellBtnIgnoreAll : "Игнориши све", DlgSpellBtnReplace : "Замени", DlgSpellBtnReplaceAll : "Замени све", DlgSpellBtnUndo : "Врати акцију", DlgSpellNoSuggestions : "- Без сугестија -", DlgSpellProgress : "Провера спеловања у току...", DlgSpellNoMispell : "Провера спеловања завршена: грешке нису пронађене", DlgSpellNoChanges : "Провера спеловања завршена: Није измењена ниједна реч", DlgSpellOneChange : "Провера спеловања завршена: Измењена је једна реч", DlgSpellManyChanges : "Провера спеловања завршена: %1 реч(и) је измењено", IeSpellDownload : "Провера спеловања није инсталирана. Да ли желите да је скинете са Интернета?", // Button Dialog DlgButtonText : "Текст (вредност)", DlgButtonType : "Tип", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Назив", DlgCheckboxValue : "Вредност", DlgCheckboxSelected : "Означено", // Form Dialog DlgFormName : "Назив", DlgFormAction : "Aкција", DlgFormMethod : "Mетода", // Select Field Dialog DlgSelectName : "Назив", DlgSelectValue : "Вредност", DlgSelectSize : "Величина", DlgSelectLines : "линија", DlgSelectChkMulti : "Дозволи вишеструку селекцију", DlgSelectOpAvail : "Доступне опције", DlgSelectOpText : "Текст", DlgSelectOpValue : "Вредност", DlgSelectBtnAdd : "Додај", DlgSelectBtnModify : "Измени", DlgSelectBtnUp : "Горе", DlgSelectBtnDown : "Доле", DlgSelectBtnSetValue : "Подеси као означену вредност", DlgSelectBtnDelete : "Обриши", // Textarea Dialog DlgTextareaName : "Назив", DlgTextareaCols : "Број колона", DlgTextareaRows : "Број редова", // Text Field Dialog DlgTextName : "Назив", DlgTextValue : "Вредност", DlgTextCharWidth : "Ширина (карактера)", DlgTextMaxChars : "Максимално карактера", DlgTextType : "Тип", DlgTextTypeText : "Текст", DlgTextTypePass : "Лозинка", // Hidden Field Dialog DlgHiddenName : "Назив", DlgHiddenValue : "Вредност", // Bulleted List Dialog BulletedListProp : "Особине Bulleted листе", NumberedListProp : "Особине набројиве листе", DlgLstStart : "Start", //MISSING DlgLstType : "Тип", DlgLstTypeCircle : "Круг", DlgLstTypeDisc : "Disc", //MISSING 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 : "Опште особине", DlgDocBackTab : "Позадина", DlgDocColorsTab : "Боје и маргине", DlgDocMetaTab : "Метаподаци", DlgDocPageTitle : "Наслов странице", DlgDocLangDir : "Смер језика", DlgDocLangDirLTR : "Слева надесно (LTR)", DlgDocLangDirRTL : "Здесна налево (RTL)", DlgDocLangCode : "Шифра језика", DlgDocCharSet : "Кодирање скупа карактера", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Остала кодирања скупа карактера", DlgDocDocType : "Заглавље типа документа", DlgDocDocTypeOther : "Остала заглавља типа документа", DlgDocIncXHTML : "Улључи XHTML декларације", DlgDocBgColor : "Боја позадине", DlgDocBgImage : "УРЛ позадинске слике", DlgDocBgNoScroll : "Фиксирана позадина", DlgDocCText : "Текст", DlgDocCLink : "Линк", DlgDocCVisited : "Посећени линк", DlgDocCActive : "Активни линк", DlgDocMargins : "Маргине странице", DlgDocMaTop : "Горња", DlgDocMaLeft : "Лева", DlgDocMaRight : "Десна", DlgDocMaBottom : "Доња", DlgDocMeIndex : "Кључне речи за индексирање документа (раздвојене зарезом)", DlgDocMeDescr : "Опис документа", DlgDocMeAuthor : "Аутор", DlgDocMeCopy : "Ауторска права", DlgDocPreview : "Изглед странице", // Templates Dialog Templates : "Обрасци", DlgTemplatesTitle : "Обрасци за садржај", DlgTemplatesSelMsg : "Молимо Вас да одаберете образац који ће бити примењен на страницу (тренутни садржај ће бити обрисан):", DlgTemplatesLoading : "Учитавам листу образаца. Мало стрпљења...", DlgTemplatesNoTpl : "(Нема дефинисаних образаца)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "О едитору", DlgAboutBrowserInfoTab : "Информације о претраживачу", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "верзија", DlgAboutInfo : "За више информација посетите" };FCKeditor/editor/lang/th.js0000644000102600010270000007247711234071646015056 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Thai language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "ซ่อนแถบเครื่องมือ", ToolbarExpand : "แสดงแถบเครื่องมือ", // Toolbar Items and Context Menu Save : "บันทึก", NewPage : "สร้างหน้าเอกสารใหม่", Preview : "ดูหน้าเอกสารตัวอย่าง", Cut : "ตัด", Copy : "สำเนา", Paste : "วาง", PasteText : "วางสำเนาจากตัวอักษรธรรมดา", PasteWord : "วางสำเนาจากตัวอักษรเวิร์ด", Print : "สั่งพิมพ์", SelectAll : "เลือกทั้งหมด", RemoveFormat : "ล้างรูปแบบ", InsertLinkLbl : "ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ", InsertLink : "แทรก/แก้ไข ลิงค์", RemoveLink : "ลบ ลิงค์", Anchor : "แทรก/แก้ไข Anchor", InsertImageLbl : "รูปภาพ", InsertImage : "แทรก/แก้ไข รูปภาพ", InsertFlashLbl : "ไฟล์ Flash", InsertFlash : "แทรก/แก้ไข ไฟล์ Flash", InsertTableLbl : "ตาราง", InsertTable : "แทรก/แก้ไข ตาราง", InsertLineLbl : "เส้นคั่นบรรทัด", InsertLine : "แทรกเส้นคั่นบรรทัด", InsertSpecialCharLbl: "ตัวอักษรพิเศษ", InsertSpecialChar : "แทรกตัวอักษรพิเศษ", InsertSmileyLbl : "รูปสื่ออารมณ์", InsertSmiley : "แทรกรูปสื่ออารมณ์", About : "เกี่ยวกับโปรแกรม FCKeditor", Bold : "ตัวหนา", Italic : "ตัวเอียง", Underline : "ตัวขีดเส้นใต้", StrikeThrough : "ตัวขีดเส้นทับ", Subscript : "ตัวห้อย", Superscript : "ตัวยก", LeftJustify : "จัดชิดซ้าย", CenterJustify : "จัดกึ่งกลาง", RightJustify : "จัดชิดขวา", BlockJustify : "จัดพอดีหน้ากระดาษ", DecreaseIndent : "ลดระยะย่อหน้า", IncreaseIndent : "เพิ่มระยะย่อหน้า", Undo : "ยกเลิกคำสั่ง", Redo : "ทำซ้ำคำสั่ง", NumberedListLbl : "ลำดับรายการแบบตัวเลข", NumberedList : "แทรก/แก้ไข ลำดับรายการแบบตัวเลข", BulletedListLbl : "ลำดับรายการแบบสัญลักษณ์", BulletedList : "แทรก/แก้ไข ลำดับรายการแบบสัญลักษณ์", ShowTableBorders : "แสดงขอบของตาราง", ShowDetails : "แสดงรายละเอียด", Style : "ลักษณะ", FontFormat : "รูปแบบ", Font : "แบบอักษร", FontSize : "ขนาด", TextColor : "สีตัวอักษร", BGColor : "สีพื้นหลัง", Source : "ดูรหัส HTML", Find : "ค้นหา", Replace : "ค้นหาและแทนที่", SpellCheck : "ตรวจการสะกดคำ", UniversalKeyboard : "คีย์บอร์ดหลากภาษา", PageBreakLbl : "ใส่ตัวแบ่งหน้า Page Break", PageBreak : "แทรกตัวแบ่งหน้า Page Break", Form : "แบบฟอร์ม", Checkbox : "เช็คบ๊อก", RadioButton : "เรดิโอบัตตอน", TextField : "เท็กซ์ฟิลด์", Textarea : "เท็กซ์แอเรีย", HiddenField : "ฮิดเดนฟิลด์", Button : "ปุ่ม", SelectionField : "แถบตัวเลือก", ImageButton : "ปุ่มแบบรูปภาพ", FitWindow : "ขยายขนาดตัวอีดิตเตอร์", // Context Menu EditLink : "แก้ไข ลิงค์", CellCM : "ช่องตาราง", RowCM : "แถว", ColumnCM : "คอลัมน์", InsertRow : "แทรกแถว", DeleteRows : "ลบแถว", InsertColumn : "แทรกสดมน์", DeleteColumns : "ลบสดมน์", InsertCell : "แทรกช่อง", DeleteCells : "ลบช่อง", MergeCells : "ผสานช่อง", SplitCell : "แยกช่อง", TableDelete : "ลบตาราง", CellProperties : "คุณสมบัติของช่อง", TableProperties : "คุณสมบัติของตาราง", ImageProperties : "คุณสมบัติของรูปภาพ", FlashProperties : "คุณสมบัติของไฟล์ Flash", AnchorProp : "รายละเอียด Anchor", ButtonProp : "รายละเอียดของ ปุ่ม", CheckboxProp : "คุณสมบัติของ เช็คบ๊อก", HiddenFieldProp : "คุณสมบัติของ ฮิดเดนฟิลด์", RadioButtonProp : "คุณสมบัติของ เรดิโอบัตตอน", ImageButtonProp : "คุณสมบัติของ ปุ่มแบบรูปภาพ", TextFieldProp : "คุณสมบัติของ เท็กซ์ฟิลด์", SelectionFieldProp : "คุณสมบัติของ แถบตัวเลือก", TextareaProp : "คุณสมบัติของ เท็กแอเรีย", FormProp : "คุณสมบัติของ แบบฟอร์ม", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "โปรแกรมกำลังทำงานด้วยเทคโนโลยี XHTML กรุณารอสักครู่...", Done : "โปรแกรมทำงานเสร็จสมบูรณ์", PasteWordConfirm : "ข้อมูลที่ท่านต้องการวางลงในแผ่นงาน ถูกจัดรูปแบบจากโปรแกรมเวิร์ด. ท่านต้องการล้างรูปแบบที่มาจากโปรแกรมเวิร์ดหรือไม่?", NotCompatiblePaste : "คำสั่งนี้ทำงานในโปรแกรมท่องเว็บ Internet Explorer version รุ่น 5.5 หรือใหม่กว่าเท่านั้น. ท่านต้องการวางตัวอักษรโดยไม่ล้างรูปแบบที่มาจากโปรแกรมเวิร์ดหรือไม่?", UnknownToolbarItem : "ไม่สามารถระบุปุ่มเครื่องมือได้ \"%1\"", UnknownCommand : "ไม่สามารถระบุชื่อคำสั่งได้ \"%1\"", NotImplemented : "ไม่สามารถใช้งานคำสั่งได้", UnknownToolbarSet : "ไม่มีการติดตั้งชุดคำสั่งในแถบเครื่องมือ \"%1\" กรุณาติดต่อผู้ดูแลระบบ", NoActiveX : "โปรแกรมท่องอินเตอร์เน็ตของท่านไม่อนุญาติให้อีดิตเตอร์ทำงาน \"Run ActiveX controls and plug-ins\". หากไม่อนุญาติให้ใช้งาน ActiveX controls ท่านจะไม่สามารถใช้งานได้อย่างเต็มประสิทธิภาพ.", BrowseServerBlocked : "เปิดหน้าต่างป๊อบอัพเพื่อทำงานต่อไม่ได้ กรุณาปิดเครื่องมือป้องกันป๊อบอัพในโปรแกรมท่องอินเตอร์เน็ตของท่านด้วย", DialogBlocked : "เปิดหน้าต่างป๊อบอัพเพื่อทำงานต่อไม่ได้ กรุณาปิดเครื่องมือป้องกันป๊อบอัพในโปรแกรมท่องอินเตอร์เน็ตของท่านด้วย", // Dialogs DlgBtnOK : "ตกลง", DlgBtnCancel : "ยกเลิก", DlgBtnClose : "ปิด", DlgBtnBrowseServer : "เปิดหน้าต่างจัดการไฟล์อัพโหลด", DlgAdvancedTag : "ขั้นสูง", DlgOpOther : "<อื่นๆ>", DlgInfoTab : "อินโฟ", DlgAlertUrl : "กรุณาระบุ URL", // General Dialogs Labels DlgGenNotSet : "<ไม่ระบุ>", DlgGenId : "ไอดี", DlgGenLangDir : "การเขียน-อ่านภาษา", DlgGenLangDirLtr : "จากซ้ายไปขวา (LTR)", DlgGenLangDirRtl : "จากขวามาซ้าย (RTL)", DlgGenLangCode : "รหัสภาษา", DlgGenAccessKey : "แอคเซส คีย์", DlgGenName : "ชื่อ", DlgGenTabIndex : "ลำดับของ แท็บ", DlgGenLongDescr : "คำอธิบายประกอบ URL", DlgGenClass : "คลาสของไฟล์กำหนดลักษณะการแสดงผล", DlgGenTitle : "คำเกริ่นนำ", DlgGenContType : "ชนิดของคำเกริ่นนำ", DlgGenLinkCharset : "ลิงค์เชื่อมโยงไปยังชุดตัวอักษร", DlgGenStyle : "ลักษณะการแสดงผล", // Image Dialog DlgImgTitle : "คุณสมบัติของ รูปภาพ", DlgImgInfoTab : "ข้อมูลของรูปภาพ", DlgImgBtnUpload : "อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)", DlgImgURL : "ที่อยู่อ้างอิง URL", DlgImgUpload : "อัพโหลดไฟล์", DlgImgAlt : "คำประกอบรูปภาพ", DlgImgWidth : "ความกว้าง", DlgImgHeight : "ความสูง", DlgImgLockRatio : "กำหนดอัตราส่วน กว้าง-สูง แบบคงที่", DlgBtnResetSize : "กำหนดรูปเท่าขนาดจริง", DlgImgBorder : "ขนาดขอบรูป", DlgImgHSpace : "ระยะแนวนอน", DlgImgVSpace : "ระยะแนวตั้ง", DlgImgAlign : "การจัดวาง", DlgImgAlignLeft : "ชิดซ้าย", DlgImgAlignAbsBottom: "ชิดด้านล่างสุด", DlgImgAlignAbsMiddle: "กึ่งกลาง", DlgImgAlignBaseline : "ชิดบรรทัด", DlgImgAlignBottom : "ชิดด้านล่าง", DlgImgAlignMiddle : "กึ่งกลางแนวตั้ง", DlgImgAlignRight : "ชิดขวา", DlgImgAlignTextTop : "ใต้ตัวอักษร", DlgImgAlignTop : "บนสุด", DlgImgPreview : "หน้าเอกสารตัวอย่าง", DlgImgAlertUrl : "กรุณาระบุที่อยู่อ้างอิงออนไลน์ของไฟล์รูปภาพ (URL)", DlgImgLinkTab : "ลิ้งค์", // Flash Dialog DlgFlashTitle : "คุณสมบัติของไฟล์ Flash", DlgFlashChkPlay : "เล่นอัตโนมัติ Auto Play", DlgFlashChkLoop : "เล่นวนรอบ Loop", DlgFlashChkMenu : "ให้ใช้งานเมนูของ Flash", DlgFlashScale : "อัตราส่วน Scale", DlgFlashScaleAll : "แสดงให้เห็นทั้งหมด Show all", DlgFlashScaleNoBorder : "ไม่แสดงเส้นขอบ No Border", DlgFlashScaleFit : "แสดงให้พอดีกับพื้นที่ Exact Fit", // Link Dialog DlgLnkWindowTitle : "ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ", DlgLnkInfoTab : "รายละเอียด", DlgLnkTargetTab : "การเปิดหน้าจอ", DlgLnkType : "ประเภทของลิงค์", DlgLnkTypeURL : "ที่อยู่อ้างอิงออนไลน์ (URL)", DlgLnkTypeAnchor : "จุดเชื่อมโยง (Anchor)", DlgLnkTypeEMail : "ส่งอีเมล์ (E-Mail)", DlgLnkProto : "โปรโตคอล", DlgLnkProtoOther : "<อื่นๆ>", DlgLnkURL : "ที่อยู่อ้างอิงออนไลน์ (URL)", DlgLnkAnchorSel : "ระบุข้อมูลของจุดเชื่อมโยง (Anchor)", DlgLnkAnchorByName : "ชื่อ", DlgLnkAnchorById : "ไอดี", DlgLnkNoAnchors : "(ยังไม่มีจุดเชื่อมโยงภายในหน้าเอกสารนี้)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "อีเมล์ (E-Mail)", DlgLnkEMailSubject : "หัวเรื่อง", DlgLnkEMailBody : "ข้อความ", DlgLnkUpload : "อัพโหลดไฟล์", DlgLnkBtnUpload : "บันทึกไฟล์ไว้บนเซิร์ฟเวอร์", DlgLnkTarget : "การเปิดหน้าลิงค์", DlgLnkTargetFrame : "<เปิดในเฟรม>", DlgLnkTargetPopup : "<เปิดหน้าจอเล็ก (Pop-up)>", DlgLnkTargetBlank : "เปิดหน้าจอใหม่ (_blank)", DlgLnkTargetParent : "เปิดในหน้าหลัก (_parent)", DlgLnkTargetSelf : "เปิดในหน้าปัจจุบัน (_self)", DlgLnkTargetTop : "เปิดในหน้าบนสุด (_top)", DlgLnkTargetFrameName : "ชื่อทาร์เก็ตเฟรม", DlgLnkPopWinName : "ระบุชื่อหน้าจอเล็ก (Pop-up)", DlgLnkPopWinFeat : "คุณสมบัติของหน้าจอเล็ก (Pop-up)", DlgLnkPopResize : "ปรับขนาดหน้าจอ", DlgLnkPopLocation : "แสดงที่อยู่ของไฟล์", DlgLnkPopMenu : "แสดงแถบเมนู", DlgLnkPopScroll : "แสดงแถบเลื่อน", DlgLnkPopStatus : "แสดงแถบสถานะ", DlgLnkPopToolbar : "แสดงแถบเครื่องมือ", DlgLnkPopFullScrn : "แสดงเต็มหน้าจอ (IE5.5++ เท่านั้น)", DlgLnkPopDependent : "แสดงเต็มหน้าจอ (Netscape)", DlgLnkPopWidth : "กว้าง", DlgLnkPopHeight : "สูง", DlgLnkPopLeft : "พิกัดซ้าย (Left Position)", DlgLnkPopTop : "พิกัดบน (Top Position)", DlnLnkMsgNoUrl : "กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)", DlnLnkMsgNoEMail : "กรุณาระบุอีเมล์ (E-mail)", DlnLnkMsgNoAnchor : "กรุณาระบุจุดเชื่อมโยง (Anchor)", DlnLnkMsgInvPopName : "ชื่อของหน้าต่างป๊อบอัพ จะต้องขึ้นต้นด้วยตัวอักษรเท่านั้น และต้องไม่มีช่องว่างในชื่อ", // Color Dialog DlgColorTitle : "เลือกสี", DlgColorBtnClear : "ล้างค่ารหัสสี", DlgColorHighlight : "ตัวอย่างสี", DlgColorSelected : "สีที่เลือก", // Smiley Dialog DlgSmileyTitle : "แทรกสัญลักษณ์สื่ออารมณ์", // Special Character Dialog DlgSpecialCharTitle : "แทรกตัวอักษรพิเศษ", // Table Dialog DlgTableTitle : "คุณสมบัติของ ตาราง", DlgTableRows : "แถว", DlgTableColumns : "สดมน์", DlgTableBorder : "ขนาดเส้นขอบ", DlgTableAlign : "การจัดตำแหน่ง", DlgTableAlignNotSet : "<ไม่ระบุ>", DlgTableAlignLeft : "ชิดซ้าย", DlgTableAlignCenter : "กึ่งกลาง", DlgTableAlignRight : "ชิดขวา", DlgTableWidth : "กว้าง", DlgTableWidthPx : "จุดสี", DlgTableWidthPc : "เปอร์เซ็น", DlgTableHeight : "สูง", DlgTableCellSpace : "ระยะแนวนอนน", DlgTableCellPad : "ระยะแนวตั้ง", DlgTableCaption : "หัวเรื่องของตาราง", DlgTableSummary : "สรุปความ", // Table Cell Dialog DlgCellTitle : "คุณสมบัติของ ช่อง", DlgCellWidth : "กว้าง", DlgCellWidthPx : "จุดสี", DlgCellWidthPc : "เปอร์เซ็น", DlgCellHeight : "สูง", DlgCellWordWrap : "ตัดบรรทัดอัตโนมัติ", DlgCellWordWrapNotSet : "<ไม่ระบุ>", DlgCellWordWrapYes : "ใ่ช่", DlgCellWordWrapNo : "ไม่", DlgCellHorAlign : "การจัดวางแนวนอน", DlgCellHorAlignNotSet : "<ไม่ระบุ>", DlgCellHorAlignLeft : "ชิดซ้าย", DlgCellHorAlignCenter : "กึ่งกลาง", DlgCellHorAlignRight: "ชิดขวา", DlgCellVerAlign : "การจัดวางแนวตั้ง", DlgCellVerAlignNotSet : "<ไม่ระบุ>", DlgCellVerAlignTop : "บนสุด", DlgCellVerAlignMiddle : "กึ่งกลาง", DlgCellVerAlignBottom : "ล่างสุด", DlgCellVerAlignBaseline : "อิงบรรทัด", DlgCellRowSpan : "จำนวนแถวที่คร่อมกัน", DlgCellCollSpan : "จำนวนสดมน์ที่คร่อมกัน", DlgCellBackColor : "สีพื้นหลัง", DlgCellBorderColor : "สีเส้นขอบ", DlgCellBtnSelect : "เลือก..", // Find Dialog DlgFindTitle : "ค้นหา", DlgFindFindBtn : "ค้นหา", DlgFindNotFoundMsg : "ไม่พบคำที่ค้นหา.", // Replace Dialog DlgReplaceTitle : "ค้นหาและแทนที่", DlgReplaceFindLbl : "ค้นหาคำว่า:", DlgReplaceReplaceLbl : "แทนที่ด้วย:", DlgReplaceCaseChk : "ตัวโหญ่-เล็ก ต้องตรงกัน", DlgReplaceReplaceBtn : "แทนที่", DlgReplaceReplAllBtn : "แทนที่ทั้งหมดที่พบ", DlgReplaceWordChk : "ต้องตรงกันทุกคำ", // Paste Operations / Dialog PasteErrorCut : "ไม่สามารถตัดข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว X พร้อมกัน).", PasteErrorCopy : "ไม่สามารถสำเนาข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว C พร้อมกัน).", PasteAsText : "วางแบบตัวอักษรธรรมดา", PasteFromWord : "วางแบบตัวอักษรจากโปรแกรมเวิร์ด", DlgPasteMsg2 : "กรุณาใช้คีย์บอร์ดเท่านั้น โดยกดปุ๋ม (Ctrl และ V)พร้อมๆกัน และกด OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "ไม่สนใจ Font Face definitions", DlgPasteRemoveStyles : "ลบ Styles definitions", DlgPasteCleanBox : "ล้างข้อมูลใน Box", // Color Picker ColorAutomatic : "สีอัตโนมัติ", ColorMoreColors : "เลือกสีอื่นๆ...", // Document Properties DocProps : "คุณสมบัติของเอกสาร", // Anchor Dialog DlgAnchorTitle : "คุณสมบัติของ Anchor", DlgAnchorName : "ชื่อ Anchor", DlgAnchorErrorName : "กรุณาระบุชื่อของ Anchor", // Speller Pages Dialog DlgSpellNotInDic : "ไม่พบในดิกชันนารี", DlgSpellChangeTo : "แก้ไขเป็น", DlgSpellBtnIgnore : "ยกเว้น", DlgSpellBtnIgnoreAll : "ยกเว้นทั้งหมด", DlgSpellBtnReplace : "แทนที่", DlgSpellBtnReplaceAll : "แทนที่ทั้งหมด", DlgSpellBtnUndo : "ยกเลิก", DlgSpellNoSuggestions : "- ไม่มีคำแนะนำใดๆ -", DlgSpellProgress : "กำลังตรวจสอบคำสะกด...", DlgSpellNoMispell : "ตรวจสอบคำสะกดเสร็จสิ้น: ไม่พบคำสะกดผิด", DlgSpellNoChanges : "ตรวจสอบคำสะกดเสร็จสิ้น: ไม่มีการแก้คำใดๆ", DlgSpellOneChange : "ตรวจสอบคำสะกดเสร็จสิ้น: แก้ไข1คำ", DlgSpellManyChanges : "ตรวจสอบคำสะกดเสร็จสิ้น:: แก้ไข %1 คำ", IeSpellDownload : "ไม่ได้ติดตั้งระบบตรวจสอบคำสะกด. ต้องการติดตั้งไหมครับ?", // Button Dialog DlgButtonText : "ข้อความ (ค่าตัวแปร)", DlgButtonType : "ข้อความ", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "ชื่อ", DlgCheckboxValue : "ค่าตัวแปร", DlgCheckboxSelected : "เลือกเป็นค่าเริ่มต้น", // Form Dialog DlgFormName : "ชื่อ", DlgFormAction : "แอคชั่น", DlgFormMethod : "เมธอด", // Select Field Dialog DlgSelectName : "ชื่อ", DlgSelectValue : "ค่าตัวแปร", DlgSelectSize : "ขนาด", DlgSelectLines : "บรรทัด", DlgSelectChkMulti : "เลือกหลายค่าได้", DlgSelectOpAvail : "รายการตัวเลือก", DlgSelectOpText : "ข้อความ", DlgSelectOpValue : "ค่าตัวแปร", DlgSelectBtnAdd : "เพิ่ม", DlgSelectBtnModify : "แก้ไข", DlgSelectBtnUp : "บน", DlgSelectBtnDown : "ล่าง", DlgSelectBtnSetValue : "เลือกเป็นค่าเริ่มต้น", DlgSelectBtnDelete : "ลบ", // Textarea Dialog DlgTextareaName : "ชื่อ", DlgTextareaCols : "สดมภ์", DlgTextareaRows : "แถว", // Text Field Dialog DlgTextName : "ชื่อ", DlgTextValue : "ค่าตัวแปร", DlgTextCharWidth : "ความกว้าง", DlgTextMaxChars : "จำนวนตัวอักษรสูงสุด", DlgTextType : "ชนิด", DlgTextTypeText : "ข้อความ", DlgTextTypePass : "รหัสผ่าน", // Hidden Field Dialog DlgHiddenName : "ชื่อ", DlgHiddenValue : "ค่าตัวแปร", // Bulleted List Dialog BulletedListProp : "คุณสมบัติของ บูลเล็ตลิสต์", NumberedListProp : "คุณสมบัติของ นัมเบอร์ลิสต์", DlgLstStart : "Start", //MISSING DlgLstType : "ชนิด", DlgLstTypeCircle : "รูปวงกลม", DlgLstTypeDisc : "Disc", //MISSING 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 : "ลักษณะทั่วไปของเอกสาร", DlgDocBackTab : "พื้นหลัง", DlgDocColorsTab : "สีและระยะขอบ", DlgDocMetaTab : "ข้อมูลสำหรับเสิร์ชเอนจิ้น", DlgDocPageTitle : "ชื่อไตเติ้ล", DlgDocLangDir : "การอ่านภาษา", DlgDocLangDirLTR : "จากซ้ายไปขวา (LTR)", DlgDocLangDirRTL : "จากขวาไปซ้าย (RTL)", DlgDocLangCode : "รหัสภาษา", DlgDocCharSet : "ชุดตัวอักษร", DlgDocCharSetCE : "Central European", DlgDocCharSetCT : "Chinese Traditional (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Greek", DlgDocCharSetJP : "Japanese", DlgDocCharSetKR : "Korean", DlgDocCharSetTR : "Turkish", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "ชุดตัวอักษรอื่นๆ", DlgDocDocType : "ประเภทของเอกสาร", DlgDocDocTypeOther : "ประเภทเอกสารอื่นๆ", DlgDocIncXHTML : "รวมเอา XHTML Declarations ไว้ด้วย", DlgDocBgColor : "สีพื้นหลัง", DlgDocBgImage : "ที่อยู่อ้างอิงออนไลน์ของรูปพื้นหลัง (Image URL)", DlgDocBgNoScroll : "พื้นหลังแบบไม่มีแถบเลื่อน", DlgDocCText : "ข้อความ", DlgDocCLink : "ลิงค์", DlgDocCVisited : "ลิงค์ที่เคยคลิ้กแล้ว Visited Link", DlgDocCActive : "ลิงค์ที่กำลังคลิ้ก Active Link", DlgDocMargins : "ระยะขอบของหน้าเอกสาร", DlgDocMaTop : "ด้านบน", DlgDocMaLeft : "ด้านซ้าย", DlgDocMaRight : "ด้านขวา", DlgDocMaBottom : "ด้านล่าง", DlgDocMeIndex : "คำสำคัญอธิบายเอกสาร (คั่นคำด้วย คอมม่า)", DlgDocMeDescr : "ประโยคอธิบายเกี่ยวกับเอกสาร", DlgDocMeAuthor : "ผู้สร้างเอกสาร", DlgDocMeCopy : "สงวนลิขสิทธิ์", DlgDocPreview : "ตัวอย่างหน้าเอกสาร", // Templates Dialog Templates : "เทมเพลต", DlgTemplatesTitle : "เทมเพลตของส่วนเนื้อหาเว็บไซต์", DlgTemplatesSelMsg : "กรุณาเลือก เทมเพลต เพื่อนำไปแก้ไขในอีดิตเตอร์
(เนื้อหาส่วนนี้จะหายไป):", DlgTemplatesLoading : "กำลังโหลดรายการเทมเพลตทั้งหมด...", DlgTemplatesNoTpl : "(ยังไม่มีการกำหนดเทมเพลต)", DlgTemplatesReplace : "แทนที่เนื้อหาเว็บไซต์ที่เลือก", // About Dialog DlgAboutAboutTab : "เกี่ยวกับโปรแกรม", DlgAboutBrowserInfoTab : "โปรแกรมท่องเว็บที่ท่านใช้", DlgAboutLicenseTab : "ลิขสิทธิ์", DlgAboutVersion : "รุ่น", DlgAboutInfo : "For further information go to" //MISSING };FCKeditor/editor/lang/el.js0000644000102600010270000006010511234071572015022 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Greek language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Απόκρυψη Μπάρας Εργαλείων", ToolbarExpand : "Εμφάνιση Μπάρας Εργαλείων", // Toolbar Items and Context Menu Save : "Αποθήκευση", NewPage : "Νέα Σελίδα", Preview : "Προεπισκόπιση", Cut : "Αποκοπή", Copy : "Αντιγραφή", Paste : "Επικόλληση", PasteText : "Επικόλληση (απλό κείμενο)", PasteWord : "Επικόλληση από το Word", Print : "Εκτύπωση", SelectAll : "Επιλογή όλων", RemoveFormat : "Αφαίρεση Μορφοποίησης", InsertLinkLbl : "Σύνδεσμος (Link)", InsertLink : "Εισαγωγή/Μεταβολή Συνδέσμου (Link)", RemoveLink : "Αφαίρεση Συνδέσμου (Link)", Anchor : "Εισαγωγή/επεξεργασία Anchor", InsertImageLbl : "Εικόνα", InsertImage : "Εισαγωγή/Μεταβολή Εικόνας", InsertFlashLbl : "Εισαγωγή Flash", InsertFlash : "Εισαγωγή/επεξεργασία Flash", InsertTableLbl : "Πίνακας", InsertTable : "Εισαγωγή/Μεταβολή Πίνακα", InsertLineLbl : "Γραμμή", InsertLine : "Εισαγωγή Οριζόντιας Γραμμής", InsertSpecialCharLbl: "Ειδικό Σύμβολο", InsertSpecialChar : "Εισαγωγή Ειδικού Συμβόλου", InsertSmileyLbl : "Smiley", InsertSmiley : "Εισαγωγή Smiley", About : "Περί του FCKeditor", Bold : "Έντονα", Italic : "Πλάγια", Underline : "Υπογράμμιση", StrikeThrough : "Διαγράμμιση", Subscript : "Δείκτης", Superscript : "Εκθέτης", LeftJustify : "Στοίχιση Αριστερά", CenterJustify : "Στοίχιση στο Κέντρο", RightJustify : "Στοίχιση Δεξιά", BlockJustify : "Πλήρης Στοίχιση (Block)", DecreaseIndent : "Μείωση Εσοχής", IncreaseIndent : "Αύξηση Εσοχής", Undo : "Αναίρεση", Redo : "Επαναφορά", NumberedListLbl : "Λίστα με Αριθμούς", NumberedList : "Εισαγωγή/Διαγραφή Λίστας με Αριθμούς", BulletedListLbl : "Λίστα με Bullets", BulletedList : "Εισαγωγή/Διαγραφή Λίστας με Bullets", ShowTableBorders : "Προβολή Ορίων Πίνακα", ShowDetails : "Προβολή Λεπτομερειών", Style : "Στυλ", FontFormat : "Μορφή Γραμματοσειράς", Font : "Γραμματοσειρά", FontSize : "Μέγεθος", TextColor : "Χρώμα Γραμμάτων", BGColor : "Χρώμα Υποβάθρου", Source : "HTML κώδικας", Find : "Αναζήτηση", Replace : "Αντικατάσταση", SpellCheck : "Ορθογραφικός έλεγχος", UniversalKeyboard : "Διεθνής πληκτρολόγιο", PageBreakLbl : "Τέλος σελίδας", PageBreak : "Εισαγωγή τέλους σελίδας", Form : "Φόρμα", Checkbox : "Κουτί επιλογής", RadioButton : "Κουμπί Radio", TextField : "Πεδίο κειμένου", Textarea : "Περιοχή κειμένου", HiddenField : "Κρυφό πεδίο", Button : "Κουμπί", SelectionField : "Πεδίο επιλογής", ImageButton : "Κουμπί εικόνας", FitWindow : "Μεγιστοποίηση προγράμματος", // Context Menu EditLink : "Μεταβολή Συνδέσμου (Link)", CellCM : "Κελί", RowCM : "Σειρά", ColumnCM : "Στήλη", InsertRow : "Εισαγωγή Γραμμής", DeleteRows : "Διαγραφή Γραμμών", InsertColumn : "Εισαγωγή Κολώνας", DeleteColumns : "Διαγραφή Κολωνών", InsertCell : "Εισαγωγή Κελιού", DeleteCells : "Διαγραφή Κελιών", MergeCells : "Ενοποίηση Κελιών", SplitCell : "Διαχωρισμός Κελιού", TableDelete : "Διαγραφή πίνακα", CellProperties : "Ιδιότητες Κελιού", TableProperties : "Ιδιότητες Πίνακα", ImageProperties : "Ιδιότητες Εικόνας", FlashProperties : "Ιδιότητες Flash", AnchorProp : "Ιδιότητες άγκυρας", ButtonProp : "Ιδιότητες κουμπιού", CheckboxProp : "Ιδιότητες κουμπιού επιλογής", HiddenFieldProp : "Ιδιότητες κρυφού πεδίου", RadioButtonProp : "Ιδιότητες κουμπιού radio", ImageButtonProp : "Ιδιότητες κουμπιού εικόνας", TextFieldProp : "Ιδιότητες πεδίου κειμένου", SelectionFieldProp : "Ιδιότητες πεδίου επιλογής", TextareaProp : "Ιδιότητες περιοχής κειμένου", FormProp : "Ιδιότητες φόρμας", FontFormats : "Κανονικό;Μορφοποιημένο;Διεύθυνση;Επικεφαλίδα 1;Επικεφαλίδα 2;Επικεφαλίδα 3;Επικεφαλίδα 4;Επικεφαλίδα 5;Επικεφαλίδα 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Επεξεργασία XHTML. Παρακαλώ περιμένετε...", Done : "Έτοιμο", PasteWordConfirm : "Το κείμενο που θέλετε να επικολήσετε, φαίνεται πως προέρχεται από το Word. Θέλετε να καθαριστεί πριν επικοληθεί;", NotCompatiblePaste : "Αυτή η επιλογή είναι διαθέσιμη στον Internet Explorer έκδοση 5.5+. Θέλετε να γίνει η επικόλληση χωρίς καθαρισμό;", UnknownToolbarItem : "Άγνωστο αντικείμενο της μπάρας εργαλείων \"%1\"", UnknownCommand : "Άγνωστή εντολή \"%1\"", NotImplemented : "Η εντολή δεν έχει ενεργοποιηθεί", UnknownToolbarSet : "Η μπάρα εργαλείων \"%1\" δεν υπάρχει", NoActiveX : "Οι ρυθμίσεις ασφαλείας του browser σας μπορεί να περιορίσουν κάποιες ρυθμίσεις του προγράμματος. Χρειάζεται να ενεργοποιήσετε την επιλογή \"Run ActiveX controls and plug-ins\". Ίσως παρουσιαστούν λάθη και παρατηρήσετε ελειπείς λειτουργίες.", BrowseServerBlocked : "Οι πόροι του browser σας δεν είναι προσπελάσιμοι. Σιγουρευτείτε ότι δεν υπάρχουν ενεργοί popup blockers.", DialogBlocked : "Δεν ήταν δυνατό να ανοίξει το παράθυρο διαλόγου. Σιγουρευτείτε ότι δεν υπάρχουν ενεργοί popup blockers.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Ακύρωση", DlgBtnClose : "Κλείσιμο", DlgBtnBrowseServer : "Εξερεύνηση διακομιστή", DlgAdvancedTag : "Για προχωρημένους", DlgOpOther : "<Άλλα>", DlgInfoTab : "Πληροφορίες", DlgAlertUrl : "Παρακαλώ εισάγετε URL", // General Dialogs Labels DlgGenNotSet : "<χωρίς>", DlgGenId : "Id", DlgGenLangDir : "Κατεύθυνση κειμένου", DlgGenLangDirLtr : "Αριστερά προς Δεξιά (LTR)", DlgGenLangDirRtl : "Δεξιά προς Αριστερά (RTL)", DlgGenLangCode : "Κωδικός Γλώσσας", DlgGenAccessKey : "Συντόμευση (Access Key)", DlgGenName : "Όνομα", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Αναλυτική περιγραφή URL", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Συμβουλευτικός τίτλος", DlgGenContType : "Συμβουλευτικός τίτλος περιεχομένου", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Στύλ", // Image Dialog DlgImgTitle : "Ιδιότητες Εικόνας", DlgImgInfoTab : "Πληροφορίες Εικόνας", DlgImgBtnUpload : "Αποστολή στον Διακομιστή", DlgImgURL : "URL", DlgImgUpload : "Αποστολή", DlgImgAlt : "Εναλλακτικό Κείμενο (ALT)", DlgImgWidth : "Πλάτος", DlgImgHeight : "Ύψος", DlgImgLockRatio : "Κλείδωμα Αναλογίας", DlgBtnResetSize : "Επαναφορά Αρχικού Μεγέθους", DlgImgBorder : "Περιθώριο", DlgImgHSpace : "Οριζόντιος Χώρος (HSpace)", DlgImgVSpace : "Κάθετος Χώρος (VSpace)", DlgImgAlign : "Ευθυγράμμιση (Align)", DlgImgAlignLeft : "Αριστερά", DlgImgAlignAbsBottom: "Απόλυτα Κάτω (Abs Bottom)", DlgImgAlignAbsMiddle: "Απόλυτα στη Μέση (Abs Middle)", DlgImgAlignBaseline : "Γραμμή Βάσης (Baseline)", DlgImgAlignBottom : "Κάτω (Bottom)", DlgImgAlignMiddle : "Μέση (Middle)", DlgImgAlignRight : "Δεξιά (Right)", DlgImgAlignTextTop : "Κορυφή Κειμένου (Text Top)", DlgImgAlignTop : "Πάνω (Top)", DlgImgPreview : "Προεπισκόπιση", DlgImgAlertUrl : "Εισάγετε την τοποθεσία (URL) της εικόνας", DlgImgLinkTab : "Σύνδεσμος", // Flash Dialog DlgFlashTitle : "Ιδιότητες flash", DlgFlashChkPlay : "Αυτόματη έναρξη", DlgFlashChkLoop : "Επανάληψη", DlgFlashChkMenu : "Ενεργοποίηση Flash Menu", DlgFlashScale : "Κλίμακα", DlgFlashScaleAll : "Εμφάνιση όλων", DlgFlashScaleNoBorder : "Χωρίς όρια", DlgFlashScaleFit : "Ακριβής εφαρμογή", // Link Dialog DlgLnkWindowTitle : "Σύνδεσμος (Link)", DlgLnkInfoTab : "Link", DlgLnkTargetTab : "Παράθυρο Στόχος (Target)", DlgLnkType : "Τύπος συνδέσμου (Link)", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Άγκυρα σε αυτή τη σελίδα", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Προτόκολο", DlgLnkProtoOther : "<άλλο>", DlgLnkURL : "URL", DlgLnkAnchorSel : "Επιλέξτε μια άγκυρα", DlgLnkAnchorByName : "Βάσει του Ονόματος (Name) της άγκυρας", DlgLnkAnchorById : "Βάσει του Element Id", DlgLnkNoAnchors : "<Δεν υπάρχουν άγκυρες στο κείμενο>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Διεύθυνση Ηλεκτρονικού Ταχυδρομείου", DlgLnkEMailSubject : "Θέμα Μηνύματος", DlgLnkEMailBody : "Κείμενο Μηνύματος", DlgLnkUpload : "Αποστολή", DlgLnkBtnUpload : "Αποστολή στον Διακομιστή", DlgLnkTarget : "Παράθυρο Στόχος (Target)", DlgLnkTargetFrame : "<πλαίσιο>", DlgLnkTargetPopup : "<παράθυρο popup>", DlgLnkTargetBlank : "Νέο Παράθυρο (_blank)", DlgLnkTargetParent : "Γονικό Παράθυρο (_parent)", DlgLnkTargetSelf : "Ίδιο Παράθυρο (_self)", DlgLnkTargetTop : "Ανώτατο Παράθυρο (_top)", DlgLnkTargetFrameName : "Όνομα πλαισίου στόχου", DlgLnkPopWinName : "Όνομα Popup Window", DlgLnkPopWinFeat : "Επιλογές Popup Window", DlgLnkPopResize : "Με αλλαγή Μεγέθους", DlgLnkPopLocation : "Μπάρα Τοποθεσίας", DlgLnkPopMenu : "Μπάρα Menu", DlgLnkPopScroll : "Μπάρες Κύλισης", DlgLnkPopStatus : "Μπάρα Status", DlgLnkPopToolbar : "Μπάρα Εργαλείων", DlgLnkPopFullScrn : "Ολόκληρη η Οθόνη (IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "Πλάτος", DlgLnkPopHeight : "Ύψος", DlgLnkPopLeft : "Τοποθεσία Αριστερής Άκρης", DlgLnkPopTop : "Τοποθεσία Πάνω Άκρης", DlnLnkMsgNoUrl : "Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)", DlnLnkMsgNoEMail : "Εισάγετε την διεύθυνση ηλεκτρονικού ταχυδρομείου", DlnLnkMsgNoAnchor : "Επιλέξτε ένα Anchor", DlnLnkMsgInvPopName : "Το όνομα του popup πρέπει να αρχίζει με χαρακτήρα της αλφαβήτου και να μην περιέχει κενά", // Color Dialog DlgColorTitle : "Επιλογή χρώματος", DlgColorBtnClear : "Καθαρισμός", DlgColorHighlight : "Προεπισκόπιση", DlgColorSelected : "Επιλεγμένο", // Smiley Dialog DlgSmileyTitle : "Επιλέξτε ένα Smiley", // Special Character Dialog DlgSpecialCharTitle : "Επιλέξτε ένα Ειδικό Σύμβολο", // Table Dialog DlgTableTitle : "Ιδιότητες Πίνακα", DlgTableRows : "Γραμμές", DlgTableColumns : "Κολώνες", DlgTableBorder : "Μέγεθος Περιθωρίου", DlgTableAlign : "Στοίχιση", DlgTableAlignNotSet : "<χωρίς>", DlgTableAlignLeft : "Αριστερά", DlgTableAlignCenter : "Κέντρο", DlgTableAlignRight : "Δεξιά", DlgTableWidth : "Πλάτος", DlgTableWidthPx : "pixels", DlgTableWidthPc : "\%", DlgTableHeight : "Ύψος", DlgTableCellSpace : "Απόσταση κελιών", DlgTableCellPad : "Γέμισμα κελιών", DlgTableCaption : "Υπέρτιτλος", DlgTableSummary : "Περίληψη", // Table Cell Dialog DlgCellTitle : "Ιδιότητες Κελιού", DlgCellWidth : "Πλάτος", DlgCellWidthPx : "pixels", DlgCellWidthPc : "\%", DlgCellHeight : "Ύψος", DlgCellWordWrap : "Με αλλαγή γραμμής", DlgCellWordWrapNotSet : "<χωρίς>", DlgCellWordWrapYes : "Ναι", DlgCellWordWrapNo : "Όχι", DlgCellHorAlign : "Οριζόντια Στοίχιση", DlgCellHorAlignNotSet : "<χωρίς>", DlgCellHorAlignLeft : "Αριστερά", DlgCellHorAlignCenter : "Κέντρο", DlgCellHorAlignRight: "Δεξιά", DlgCellVerAlign : "Κάθετη Στοίχιση", DlgCellVerAlignNotSet : "<χωρίς>", DlgCellVerAlignTop : "Πάνω (Top)", DlgCellVerAlignMiddle : "Μέση (Middle)", DlgCellVerAlignBottom : "Κάτω (Bottom)", DlgCellVerAlignBaseline : "Γραμμή Βάσης (Baseline)", DlgCellRowSpan : "Αριθμός Γραμμών (Rows Span)", DlgCellCollSpan : "Αριθμός Κολωνών (Columns Span)", DlgCellBackColor : "Χρώμα Υποβάθρου", DlgCellBorderColor : "Χρώμα Περιθωρίου", DlgCellBtnSelect : "Επιλογή...", // Find Dialog DlgFindTitle : "Αναζήτηση", DlgFindFindBtn : "Αναζήτηση", DlgFindNotFoundMsg : "Το κείμενο δεν βρέθηκε.", // Replace Dialog DlgReplaceTitle : "Αντικατάσταση", DlgReplaceFindLbl : "Αναζήτηση:", DlgReplaceReplaceLbl : "Αντικατάσταση με:", DlgReplaceCaseChk : "Έλεγχος πεζών/κεφαλαίων", DlgReplaceReplaceBtn : "Αντικατάσταση", DlgReplaceReplAllBtn : "Αντικατάσταση Όλων", DlgReplaceWordChk : "Εύρεση πλήρους λέξης", // Paste Operations / Dialog PasteErrorCut : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αποκοπής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+X).", PasteErrorCopy : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αντιγραφής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+C).", PasteAsText : "Επικόλληση ως Απλό Κείμενο", PasteFromWord : "Επικόλληση από το Word", DlgPasteMsg2 : "Παρακαλώ επικολήστε στο ακόλουθο κουτί χρησιμοποιόντας το πληκτρολόγιο (Ctrl+V) και πατήστε OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Αγνόηση προδιαγραφών γραμματοσειράς", DlgPasteRemoveStyles : "Αφαίρεση προδιαγραφών στύλ", DlgPasteCleanBox : "Κουτί εκαθάρισης", // Color Picker ColorAutomatic : "Αυτόματο", ColorMoreColors : "Περισσότερα χρώματα...", // Document Properties DocProps : "Ιδιότητες εγγράφου", // Anchor Dialog DlgAnchorTitle : "Ιδιότητες άγκυρας", DlgAnchorName : "Όνομα άγκυρας", DlgAnchorErrorName : "Παρακαλούμε εισάγετε όνομα άγκυρας", // Speller Pages Dialog DlgSpellNotInDic : "Δεν υπάρχει στο λεξικό", DlgSpellChangeTo : "Αλλαγή σε", DlgSpellBtnIgnore : "Αγνόηση", DlgSpellBtnIgnoreAll : "Αγνόηση όλων", DlgSpellBtnReplace : "Αντικατάσταση", DlgSpellBtnReplaceAll : "Αντικατάσταση όλων", DlgSpellBtnUndo : "Αναίρεση", DlgSpellNoSuggestions : "- Δεν υπάρχουν προτάσεις -", DlgSpellProgress : "Ορθογραφικός έλεγχος σε εξέλιξη...", DlgSpellNoMispell : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν βρέθηκαν λάθη", DlgSpellNoChanges : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν άλλαξαν λέξεις", DlgSpellOneChange : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Μια λέξη άλλαξε", DlgSpellManyChanges : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: %1 λέξεις άλλαξαν", IeSpellDownload : "Δεν υπάρχει εγκατεστημένος ορθογράφος. Θέλετε να τον κατεβάσετε τώρα;", // Button Dialog DlgButtonText : "Κείμενο (Τιμή)", DlgButtonType : "Τύπος", DlgButtonTypeBtn : "Κουμπί", DlgButtonTypeSbm : "Καταχώρηση", DlgButtonTypeRst : "Επαναφορά", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Όνομα", DlgCheckboxValue : "Τιμή", DlgCheckboxSelected : "Επιλεγμένο", // Form Dialog DlgFormName : "Όνομα", DlgFormAction : "Δράση", DlgFormMethod : "Μάθοδος", // Select Field Dialog DlgSelectName : "Όνομα", DlgSelectValue : "Τιμή", DlgSelectSize : "Μέγεθος", DlgSelectLines : "γραμμές", DlgSelectChkMulti : "Πολλαπλές επιλογές", DlgSelectOpAvail : "Διαθέσιμες επιλογές", DlgSelectOpText : "Κείμενο", DlgSelectOpValue : "Τιμή", DlgSelectBtnAdd : "Προσθήκη", DlgSelectBtnModify : "Αλλαγή", DlgSelectBtnUp : "Πάνω", DlgSelectBtnDown : "Κάτω", DlgSelectBtnSetValue : "Προεπιλεγμένη επιλογή", DlgSelectBtnDelete : "Διαγραφή", // Textarea Dialog DlgTextareaName : "Όνομα", DlgTextareaCols : "Στήλες", DlgTextareaRows : "Σειρές", // Text Field Dialog DlgTextName : "Όνομα", DlgTextValue : "Τιμή", DlgTextCharWidth : "Μήκος χαρακτήρων", DlgTextMaxChars : "Μέγιστοι χαρακτήρες", DlgTextType : "Τύπος", DlgTextTypeText : "Κείμενο", DlgTextTypePass : "Κωδικός", // Hidden Field Dialog DlgHiddenName : "Όνομα", DlgHiddenValue : "Τιμή", // Bulleted List Dialog BulletedListProp : "Ιδιότητες λίστας Bulleted", NumberedListProp : "Ιδιότητες αριθμημένης λίστας ", DlgLstStart : "Αρχή", DlgLstType : "Τύπος", DlgLstTypeCircle : "Κύκλος", DlgLstTypeDisc : "Δίσκος", 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 : "Γενικά", DlgDocBackTab : "Φόντο", DlgDocColorsTab : "Χρώματα και περιθώρια", DlgDocMetaTab : "Δεδομένα Meta", DlgDocPageTitle : "Τίτλος σελίδας", DlgDocLangDir : "Κατεύθυνση γραφής", DlgDocLangDirLTR : "αριστερά προς δεξιά (LTR)", DlgDocLangDirRTL : "δεξιά προς αριστερά (RTL)", DlgDocLangCode : "Κωδικός γλώσσας", DlgDocCharSet : "Κωδικοποίηση χαρακτήρων", DlgDocCharSetCE : "Κεντρικής Ευρώπης", DlgDocCharSetCT : "Παραδοσιακά κινέζικα (Big5)", DlgDocCharSetCR : "Κυριλλική", DlgDocCharSetGR : "Ελληνική", DlgDocCharSetJP : "Ιαπωνική", DlgDocCharSetKR : "Κορεάτικη", DlgDocCharSetTR : "Τουρκική", DlgDocCharSetUN : "Διεθνής (UTF-8)", DlgDocCharSetWE : "Δυτικής Ευρώπης", DlgDocCharSetOther : "Άλλη κωδικοποίηση χαρακτήρων", DlgDocDocType : "Επικεφαλίδα τύπου εγγράφου", DlgDocDocTypeOther : "Άλλη επικεφαλίδα τύπου εγγράφου", DlgDocIncXHTML : "Να συμπεριληφθούν οι δηλώσεις XHTML", DlgDocBgColor : "Χρώμα φόντου", DlgDocBgImage : "Διεύθυνση εικόνας φόντου", DlgDocBgNoScroll : "Φόντο χωρίς κύλιση", DlgDocCText : "Κείμενο", DlgDocCLink : "Σύνδεσμος", DlgDocCVisited : "Σύνδεσμος που έχει επισκευθεί", DlgDocCActive : "Ενεργός σύνδεσμος", DlgDocMargins : "Περιθώρια σελίδας", DlgDocMaTop : "Κορυφή", DlgDocMaLeft : "Αριστερά", DlgDocMaRight : "Δεξιά", DlgDocMaBottom : "Κάτω", DlgDocMeIndex : "Λέξεις κλειδιά δείκτες εγγράφου (διαχωρισμός με κόμμα)", DlgDocMeDescr : "Περιγραφή εγγράφου", DlgDocMeAuthor : "Συγγραφέας", DlgDocMeCopy : "Πνευματικά δικαιώματα", DlgDocPreview : "Προεπισκόπηση", // Templates Dialog Templates : "Πρότυπα", DlgTemplatesTitle : "Πρότυπα περιεχομένου", DlgTemplatesSelMsg : "Παρακαλώ επιλέξτε πρότυπο για εισαγωγή στο πρόγραμμα
(τα υπάρχοντα περιεχόμενα θα χαθούν):", DlgTemplatesLoading : "Φόρτωση καταλόγου προτύπων. Παρακαλώ περιμένετε...", DlgTemplatesNoTpl : "(Δεν έχουν καθοριστεί πρότυπα)", DlgTemplatesReplace : "Αντικατάσταση υπάρχοντων περιεχομένων", // About Dialog DlgAboutAboutTab : "Σχετικά", DlgAboutBrowserInfoTab : "Πληροφορίες Browser", DlgAboutLicenseTab : "Άδεια", DlgAboutVersion : "έκδοση", DlgAboutInfo : "Για περισσότερες πληροφορίες" };FCKeditor/editor/lang/en-uk.js0000644000102600010270000004105611234071575015450 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * English (United Kingdom) language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Collapse Toolbar", ToolbarExpand : "Expand Toolbar", // Toolbar Items and Context Menu Save : "Save", NewPage : "New Page", Preview : "Preview", Cut : "Cut", Copy : "Copy", Paste : "Paste", PasteText : "Paste as plain text", PasteWord : "Paste from Word", Print : "Print", SelectAll : "Select All", RemoveFormat : "Remove Format", InsertLinkLbl : "Link", InsertLink : "Insert/Edit Link", RemoveLink : "Remove Link", Anchor : "Insert/Edit Anchor", InsertImageLbl : "Image", InsertImage : "Insert/Edit Image", InsertFlashLbl : "Flash", InsertFlash : "Insert/Edit Flash", InsertTableLbl : "Table", InsertTable : "Insert/Edit Table", InsertLineLbl : "Line", InsertLine : "Insert Horizontal Line", InsertSpecialCharLbl: "Special Character", InsertSpecialChar : "Insert Special Character", InsertSmileyLbl : "Smiley", InsertSmiley : "Insert Smiley", About : "About FCKeditor", Bold : "Bold", Italic : "Italic", Underline : "Underline", StrikeThrough : "Strike Through", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Left Justify", CenterJustify : "Centre Justify", RightJustify : "Right Justify", BlockJustify : "Block Justify", DecreaseIndent : "Decrease Indent", IncreaseIndent : "Increase Indent", Undo : "Undo", Redo : "Redo", NumberedListLbl : "Numbered List", NumberedList : "Insert/Remove Numbered List", BulletedListLbl : "Bulleted List", BulletedList : "Insert/Remove Bulleted List", ShowTableBorders : "Show Table Borders", ShowDetails : "Show Details", Style : "Style", FontFormat : "Format", Font : "Font", FontSize : "Size", TextColor : "Text Colour", BGColor : "Background Colour", Source : "Source", Find : "Find", Replace : "Replace", SpellCheck : "Check Spelling", UniversalKeyboard : "Universal Keyboard", PageBreakLbl : "Page Break", PageBreak : "Insert Page Break", Form : "Form", Checkbox : "Checkbox", RadioButton : "Radio Button", TextField : "Text Field", Textarea : "Textarea", HiddenField : "Hidden Field", Button : "Button", SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Maximize the editor size", // Context Menu EditLink : "Edit Link", CellCM : "Cell", RowCM : "Row", ColumnCM : "Column", InsertRow : "Insert Row", DeleteRows : "Delete Rows", InsertColumn : "Insert Column", DeleteColumns : "Delete Columns", InsertCell : "Insert Cell", DeleteCells : "Delete Cells", MergeCells : "Merge Cells", SplitCell : "Split Cell", TableDelete : "Delete Table", CellProperties : "Cell Properties", TableProperties : "Table Properties", ImageProperties : "Image Properties", FlashProperties : "Flash Properties", 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;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Processing XHTML. Please wait...", Done : "Done", PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", UnknownToolbarItem : "Unknown toolbar item \"%1\"", UnknownCommand : "Unknown command name \"%1\"", NotImplemented : "Command not implemented", UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancel", DlgBtnClose : "Close", DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Please insert the URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Language Direction", DlgGenLangDirLtr : "Left to Right (LTR)", DlgGenLangDirRtl : "Right to Left (RTL)", DlgGenLangCode : "Language Code", DlgGenAccessKey : "Access Key", DlgGenName : "Name", DlgGenTabIndex : "Tab Index", DlgGenLongDescr : "Long Description URL", DlgGenClass : "Stylesheet Classes", DlgGenTitle : "Advisory Title", DlgGenContType : "Advisory Content Type", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Style", // Image Dialog DlgImgTitle : "Image Properties", DlgImgInfoTab : "Image Info", DlgImgBtnUpload : "Send it to the Server", DlgImgURL : "URL", DlgImgUpload : "Upload", DlgImgAlt : "Alternative Text", DlgImgWidth : "Width", DlgImgHeight : "Height", DlgImgLockRatio : "Lock Ratio", DlgBtnResetSize : "Reset Size", DlgImgBorder : "Border", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Align", DlgImgAlignLeft : "Left", DlgImgAlignAbsBottom: "Abs Bottom", DlgImgAlignAbsMiddle: "Abs Middle", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Bottom", DlgImgAlignMiddle : "Middle", DlgImgAlignRight : "Right", DlgImgAlignTextTop : "Text Top", DlgImgAlignTop : "Top", DlgImgPreview : "Preview", 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", DlgLnkTargetTab : "Target", DlgLnkType : "Link Type", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Link to anchor in the text", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Select an Anchor", DlgLnkAnchorByName : "By Anchor Name", DlgLnkAnchorById : "By Element Id", DlgLnkNoAnchors : "(No anchors available in the document)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Address", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message Body", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Send it to the Server", DlgLnkTarget : "Target", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "New Window (_blank)", DlgLnkTargetParent : "Parent Window (_parent)", DlgLnkTargetSelf : "Same Window (_self)", DlgLnkTargetTop : "Topmost Window (_top)", DlgLnkTargetFrameName : "Target Frame Name", DlgLnkPopWinName : "Popup Window Name", DlgLnkPopWinFeat : "Popup Window Features", DlgLnkPopResize : "Resizable", DlgLnkPopLocation : "Location Bar", DlgLnkPopMenu : "Menu Bar", DlgLnkPopScroll : "Scroll Bars", DlgLnkPopStatus : "Status Bar", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Full Screen (IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "Width", DlgLnkPopHeight : "Height", DlgLnkPopLeft : "Left Position", DlgLnkPopTop : "Top Position", DlnLnkMsgNoUrl : "Please type the link URL", DlnLnkMsgNoEMail : "Please type the e-mail address", DlnLnkMsgNoAnchor : "Please select an anchor", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", // Color Dialog DlgColorTitle : "Select Colour", DlgColorBtnClear : "Clear", DlgColorHighlight : "Highlight", DlgColorSelected : "Selected", // Smiley Dialog DlgSmileyTitle : "Insert a Smiley", // Special Character Dialog DlgSpecialCharTitle : "Select Special Character", // Table Dialog DlgTableTitle : "Table Properties", DlgTableRows : "Rows", DlgTableColumns : "Columns", DlgTableBorder : "Border size", DlgTableAlign : "Alignment", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Left", DlgTableAlignCenter : "Centre", DlgTableAlignRight : "Right", DlgTableWidth : "Width", DlgTableWidthPx : "pixels", DlgTableWidthPc : "percent", DlgTableHeight : "Height", DlgTableCellSpace : "Cell spacing", DlgTableCellPad : "Cell padding", DlgTableCaption : "Caption", DlgTableSummary : "Summary", // Table Cell Dialog DlgCellTitle : "Cell Properties", DlgCellWidth : "Width", DlgCellWidthPx : "pixels", DlgCellWidthPc : "percent", DlgCellHeight : "Height", DlgCellWordWrap : "Word Wrap", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Yes", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Horizontal Alignment", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Left", DlgCellHorAlignCenter : "Centre", DlgCellHorAlignRight: "Right", DlgCellVerAlign : "Vertical Alignment", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Top", DlgCellVerAlignMiddle : "Middle", DlgCellVerAlignBottom : "Bottom", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Rows Span", DlgCellCollSpan : "Columns Span", DlgCellBackColor : "Background Colour", DlgCellBorderColor : "Border Colour", DlgCellBtnSelect : "Select...", // Find Dialog DlgFindTitle : "Find", DlgFindFindBtn : "Find", DlgFindNotFoundMsg : "The specified text was not found.", // Replace Dialog DlgReplaceTitle : "Replace", DlgReplaceFindLbl : "Find what:", DlgReplaceReplaceLbl : "Replace with:", DlgReplaceCaseChk : "Match case", DlgReplaceReplaceBtn : "Replace", DlgReplaceReplAllBtn : "Replace All", DlgReplaceWordChk : "Match whole word", // Paste Operations / Dialog PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", PasteAsText : "Paste as Plain Text", PasteFromWord : "Paste from Word", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", DlgPasteIgnoreFont : "Ignore Font Face definitions", DlgPasteRemoveStyles : "Remove Styles definitions", DlgPasteCleanBox : "Clean Up Box", // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "More Colours...", // Document Properties DocProps : "Document Properties", // Anchor Dialog DlgAnchorTitle : "Anchor Properties", DlgAnchorName : "Anchor Name", DlgAnchorErrorName : "Please type the anchor name", // Speller Pages Dialog 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?", // Button Dialog DlgButtonText : "Text (Value)", DlgButtonType : "Type", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", DlgCheckboxValue : "Value", DlgCheckboxSelected : "Selected", // Form Dialog DlgFormName : "Name", DlgFormAction : "Action", DlgFormMethod : "Method", // Select Field Dialog 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", DlgTextareaCols : "Columns", DlgTextareaRows : "Rows", // Text Field Dialog DlgTextName : "Name", DlgTextValue : "Value", DlgTextCharWidth : "Character Width", DlgTextMaxChars : "Maximum Characters", DlgTextType : "Type", DlgTextTypeText : "Text", DlgTextTypePass : "Password", // Hidden Field Dialog DlgHiddenName : "Name", DlgHiddenValue : "Value", // Bulleted List Dialog BulletedListProp : "Bulleted List Properties", NumberedListProp : "Numbered List Properties", DlgLstStart : "Start", DlgLstType : "Type", DlgLstTypeCircle : "Circle", DlgLstTypeDisc : "Disc", 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", DlgDocBackTab : "Background", DlgDocColorsTab : "Colours and Margins", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Page Title", DlgDocLangDir : "Language Direction", DlgDocLangDirLTR : "Left to Right (LTR)", DlgDocLangDirRTL : "Right to Left (RTL)", DlgDocLangCode : "Language Code", DlgDocCharSet : "Character Set Encoding", DlgDocCharSetCE : "Central European", DlgDocCharSetCT : "Chinese Traditional (Big5)", DlgDocCharSetCR : "Cyrillic", DlgDocCharSetGR : "Greek", DlgDocCharSetJP : "Japanese", DlgDocCharSetKR : "Korean", DlgDocCharSetTR : "Turkish", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Western European", DlgDocCharSetOther : "Other Character Set Encoding", DlgDocDocType : "Document Type Heading", DlgDocDocTypeOther : "Other Document Type Heading", DlgDocIncXHTML : "Include XHTML Declarations", DlgDocBgColor : "Background Colour", 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", 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)", DlgTemplatesReplace : "Replace actual contents", // About Dialog DlgAboutAboutTab : "About", DlgAboutBrowserInfoTab : "Browser Info", DlgAboutLicenseTab : "License", DlgAboutVersion : "version", DlgAboutInfo : "For further information go to" };FCKeditor/editor/lang/nl.js0000644000102600010270000004270411234071630015033 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Dutch language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Menubalk inklappen", ToolbarExpand : "Menubalk uitklappen", // Toolbar Items and Context Menu Save : "Opslaan", NewPage : "Nieuwe pagina", Preview : "Voorbeeld", Cut : "Knippen", Copy : "Kopiëren", Paste : "Plakken", PasteText : "Plakken als platte tekst", PasteWord : "Plakken als Word-gegevens", Print : "Printen", SelectAll : "Alles selecteren", RemoveFormat : "Opmaak verwijderen", InsertLinkLbl : "Link", InsertLink : "Link invoegen/wijzigen", RemoveLink : "Link verwijderen", Anchor : "Interne link", InsertImageLbl : "Afbeelding", InsertImage : "Afbeelding invoegen/wijzigen", InsertFlashLbl : "Flash", InsertFlash : "Flash invoegen/wijzigen", InsertTableLbl : "Tabel", InsertTable : "Tabel invoegen/wijzigen", InsertLineLbl : "Lijn", InsertLine : "Invoegen horizontale lijn", InsertSpecialCharLbl: "Speciale tekens", InsertSpecialChar : "Speciaal teken invoegen", InsertSmileyLbl : "Smiley", InsertSmiley : "Smiley invoegen", About : "Over FCKeditor", Bold : "Vet", Italic : "Schuingedrukt", Underline : "Onderstreept", StrikeThrough : "Doorhalen", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Links uitlijnen", CenterJustify : "Centreren", RightJustify : "Rechts uitlijnen", BlockJustify : "Uitvullen", DecreaseIndent : "Inspringen verkleinen", IncreaseIndent : "Inspringen vergroten", Undo : "Ongedaan maken", Redo : "Opnieuw uitvoeren", NumberedListLbl : "Genummerde lijst", NumberedList : "Genummerde lijst invoegen/verwijderen", BulletedListLbl : "Opsomming", BulletedList : "Opsomming invoegen/verwijderen", ShowTableBorders : "Randen tabel weergeven", ShowDetails : "Details weergeven", Style : "Stijl", FontFormat : "Opmaak", Font : "Lettertype", FontSize : "Grootte", TextColor : "Tekstkleur", BGColor : "Achtergrondkleur", Source : "Code", Find : "Zoeken", Replace : "Vervangen", SpellCheck : "Spellingscontrole", UniversalKeyboard : "Universeel toetsenbord", PageBreakLbl : "Pagina-einde", PageBreak : "Pagina-einde invoegen", Form : "Formulier", Checkbox : "Aanvinkvakje", RadioButton : "Selectievakje", TextField : "Tekstveld", Textarea : "Tekstvak", HiddenField : "Verborgen veld", Button : "Knop", SelectionField : "Selectieveld", ImageButton : "Afbeeldingsknop", FitWindow : "De editor maximaliseren", // Context Menu EditLink : "Link wijzigen", CellCM : "Cel", RowCM : "Rij", ColumnCM : "Kolom", InsertRow : "Rij invoegen", DeleteRows : "Rijen verwijderen", InsertColumn : "Kolom invoegen", DeleteColumns : "Kolommen verwijderen", InsertCell : "Cel", DeleteCells : "Cellen verwijderen", MergeCells : "Cellen samenvoegen", SplitCell : "Cellen splitsen", TableDelete : "Tabel verwijderen", CellProperties : "Eigenschappen cel", TableProperties : "Eigenschappen tabel", ImageProperties : "Eigenschappen afbeelding", FlashProperties : "Eigenschappen Flash", AnchorProp : "Eigenschappen interne link", ButtonProp : "Eigenschappen knop", CheckboxProp : "Eigenschappen aanvinkvakje", HiddenFieldProp : "Eigenschappen verborgen veld", RadioButtonProp : "Eigenschappen selectievakje", ImageButtonProp : "Eigenschappen afbeeldingsknop", TextFieldProp : "Eigenschappen tekstveld", SelectionFieldProp : "Eigenschappen selectieveld", TextareaProp : "Eigenschappen tekstvak", FormProp : "Eigenschappen formulier", FontFormats : "Normaal;Met opmaak;Adres;Kop 1;Kop 2;Kop 3;Kop 4;Kop 5;Kop 6;Normaal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Bezig met verwerken XHTML. Even geduld aub...", Done : "Klaar", PasteWordConfirm : "De tekst die je plakte lijkt gekopieerd uit te zijn Word. Wil je de tekst opschonen voordat deze geplakt wordt?", NotCompatiblePaste : "Deze opdracht is beschikbaar voor Internet Explorer versie 5.5 of hoger. Wil je plakken zonder op te schonen?", UnknownToolbarItem : "Onbekend item op menubalk \"%1\"", UnknownCommand : "Onbekende opdrachtnaam: \"%1\"", NotImplemented : "Opdracht niet geïmplementeerd.", UnknownToolbarSet : "Menubalk \"%1\" bestaat niet.", NoActiveX : "De beveilingsinstellingen van je browser zouden sommige functies van de editor kunnen beperken. De optie \"Activeer ActiveX-elementen en plug-ins\" dient ingeschakeld te worden. Het kan zijn dat er nu functies ontbreken of niet werken.", BrowseServerBlocked : "De bestandsbrowser kon niet geopend worden. Zorg ervoor dat pop-up-blokkeerders uit staan.", DialogBlocked : "Kan het dialoogvenster niet weergeven. Zorg ervoor dat pop-up-blokkeerders uit staan.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Annuleren", DlgBtnClose : "Afsluiten", DlgBtnBrowseServer : "Bladeren op server", DlgAdvancedTag : "Geavanceerd", DlgOpOther : "", DlgInfoTab : "Informatie", DlgAlertUrl : "Geef URL op", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Kenmerk", DlgGenLangDir : "Schrijfrichting", DlgGenLangDirLtr : "Links naar rechts (LTR)", DlgGenLangDirRtl : "Rechts naar links (RTL)", DlgGenLangCode : "Taalcode", DlgGenAccessKey : "Toegangstoets", DlgGenName : "Naam", DlgGenTabIndex : "Tabvolgorde", DlgGenLongDescr : "Lange URL-omschrijving", DlgGenClass : "Stylesheet-klassen", DlgGenTitle : "Aanbevolen titel", DlgGenContType : "Aanbevolen content-type", DlgGenLinkCharset : "Karakterset van gelinkte bron", DlgGenStyle : "Stijl", // Image Dialog DlgImgTitle : "Eigenschappen afbeelding", DlgImgInfoTab : "Informatie afbeelding", DlgImgBtnUpload : "Naar server verzenden", DlgImgURL : "URL", DlgImgUpload : "Upload", DlgImgAlt : "Alternatieve tekst", DlgImgWidth : "Breedte", DlgImgHeight : "Hoogte", DlgImgLockRatio : "Afmetingen vergrendelen", DlgBtnResetSize : "Afmetingen resetten", DlgImgBorder : "Rand", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Uitlijning", DlgImgAlignLeft : "Links", DlgImgAlignAbsBottom: "Absoluut-onder", DlgImgAlignAbsMiddle: "Absoluut-midden", DlgImgAlignBaseline : "Basislijn", DlgImgAlignBottom : "Beneden", DlgImgAlignMiddle : "Midden", DlgImgAlignRight : "Rechts", DlgImgAlignTextTop : "Boven tekst", DlgImgAlignTop : "Boven", DlgImgPreview : "Voorbeeld", DlgImgAlertUrl : "Geef de URL van de afbeelding", DlgImgLinkTab : "Link", // Flash Dialog DlgFlashTitle : "Eigenschappen Flash", DlgFlashChkPlay : "Automatisch afspelen", DlgFlashChkLoop : "Herhalen", DlgFlashChkMenu : "Flashmenu\'s inschakelen", DlgFlashScale : "Schaal", DlgFlashScaleAll : "Alles tonen", DlgFlashScaleNoBorder : "Geen rand", DlgFlashScaleFit : "Precies passend", // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Linkomschrijving", DlgLnkTargetTab : "Doel", DlgLnkType : "Linktype", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Interne link in pagina", DlgLnkTypeEMail : "E-mail", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Kies een interne link", DlgLnkAnchorByName : "Op naam interne link", DlgLnkAnchorById : "Op kenmerk interne link", DlgLnkNoAnchors : "(Geen interne links in document gevonden)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-mailadres", DlgLnkEMailSubject : "Onderwerp bericht", DlgLnkEMailBody : "Inhoud bericht", DlgLnkUpload : "Upload", DlgLnkBtnUpload : "Naar de server versturen", DlgLnkTarget : "Doel", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nieuw venster (_blank)", DlgLnkTargetParent : "Origineel venster (_parent)", DlgLnkTargetSelf : "Zelfde venster (_self)", DlgLnkTargetTop : "Hele venster (_top)", DlgLnkTargetFrameName : "Naam doelframe", DlgLnkPopWinName : "Naam popupvenster", DlgLnkPopWinFeat : "Instellingen popupvenster", DlgLnkPopResize : "Grootte wijzigen", DlgLnkPopLocation : "Locatiemenu", DlgLnkPopMenu : "Menubalk", DlgLnkPopScroll : "Schuifbalken", DlgLnkPopStatus : "Statusbalk", DlgLnkPopToolbar : "Menubalk", DlgLnkPopFullScrn : "Volledig scherm (IE)", DlgLnkPopDependent : "Afhankelijk (Netscape)", DlgLnkPopWidth : "Breedte", DlgLnkPopHeight : "Hoogte", DlgLnkPopLeft : "Positie links", DlgLnkPopTop : "Positie boven", DlnLnkMsgNoUrl : "Geef de link van de URL", DlnLnkMsgNoEMail : "Geef een e-mailadres", DlnLnkMsgNoAnchor : "Selecteer een interne link", DlnLnkMsgInvPopName : "De naam van de popup moet met een alfa-numerieke waarde beginnen, en mag geen spaties bevatten.", // Color Dialog DlgColorTitle : "Selecteer kleur", DlgColorBtnClear : "Opschonen", DlgColorHighlight : "Accentueren", DlgColorSelected : "Geselecteerd", // Smiley Dialog DlgSmileyTitle : "Smiley invoegen", // Special Character Dialog DlgSpecialCharTitle : "Selecteer speciaal teken", // Table Dialog DlgTableTitle : "Eigenschappen tabel", DlgTableRows : "Rijen", DlgTableColumns : "Kolommen", DlgTableBorder : "Breedte rand", DlgTableAlign : "Uitlijning", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Links", DlgTableAlignCenter : "Centreren", DlgTableAlignRight : "Rechts", DlgTableWidth : "Breedte", DlgTableWidthPx : "pixels", DlgTableWidthPc : "procent", DlgTableHeight : "Hoogte", DlgTableCellSpace : "Afstand tussen cellen", DlgTableCellPad : "Afstand vanaf rand cel", DlgTableCaption : "Naam", DlgTableSummary : "Samenvatting", // Table Cell Dialog DlgCellTitle : "Eigenschappen cel", DlgCellWidth : "Breedte", DlgCellWidthPx : "pixels", DlgCellWidthPc : "procent", DlgCellHeight : "Hoogte", DlgCellWordWrap : "Afbreken woorden", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ja", DlgCellWordWrapNo : "Nee", DlgCellHorAlign : "Horizontale uitlijning", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Links", DlgCellHorAlignCenter : "Centreren", DlgCellHorAlignRight: "Rechts", DlgCellVerAlign : "Verticale uitlijning", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Boven", DlgCellVerAlignMiddle : "Midden", DlgCellVerAlignBottom : "Beneden", DlgCellVerAlignBaseline : "Basislijn", DlgCellRowSpan : "Overkoepeling rijen", DlgCellCollSpan : "Overkoepeling kolommen", DlgCellBackColor : "Achtergrondkleur", DlgCellBorderColor : "Randkleur", DlgCellBtnSelect : "Selecteren...", // Find Dialog DlgFindTitle : "Zoeken", DlgFindFindBtn : "Zoeken", DlgFindNotFoundMsg : "De opgegeven tekst is niet gevonden.", // Replace Dialog DlgReplaceTitle : "Vervangen", DlgReplaceFindLbl : "Zoeken naar:", DlgReplaceReplaceLbl : "Vervangen met:", DlgReplaceCaseChk : "Hoofdlettergevoelig", DlgReplaceReplaceBtn : "Vervangen", DlgReplaceReplAllBtn : "Alles vervangen", DlgReplaceWordChk : "Hele woord moet voorkomen", // Paste Operations / Dialog PasteErrorCut : "De beveiligingsinstelling van de browser verhinderen het automatisch knippen. Gebruik de sneltoets Ctrl+X van het toetsenbord.", PasteErrorCopy : "De beveiligingsinstelling van de browser verhinderen het automatisch kopiëren. Gebruik de sneltoets Ctrl+C van het toetsenbord.", PasteAsText : "Plakken als platte tekst", PasteFromWord : "Plakken als Word-gegevens", DlgPasteMsg2 : "Plak de tekst in het volgende vak gebruik makend van je toetstenbord (Ctrl+V) en klik op OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Negeer \"Font Face\"-definities", DlgPasteRemoveStyles : "Verwijder \"Style\"-definities", DlgPasteCleanBox : "Vak opschonen", // Color Picker ColorAutomatic : "Automatisch", ColorMoreColors : "Meer kleuren...", // Document Properties DocProps : "Eigenschappen document", // Anchor Dialog DlgAnchorTitle : "Eigenschappen interne link", DlgAnchorName : "Naam interne link", DlgAnchorErrorName : "Geef de naam van de interne link op", // Speller Pages Dialog DlgSpellNotInDic : "Niet in het woordenboek", DlgSpellChangeTo : "Wijzig in", DlgSpellBtnIgnore : "Negeren", DlgSpellBtnIgnoreAll : "Alles negeren", DlgSpellBtnReplace : "Vervangen", DlgSpellBtnReplaceAll : "Alles vervangen", DlgSpellBtnUndo : "Ongedaan maken", DlgSpellNoSuggestions : "-Geen suggesties-", DlgSpellProgress : "Bezig met spellingscontrole...", DlgSpellNoMispell : "Klaar met spellingscontrole: geen fouten gevonden", DlgSpellNoChanges : "Klaar met spellingscontrole: geen woorden aangepast", DlgSpellOneChange : "Klaar met spellingscontrole: één woord aangepast", DlgSpellManyChanges : "Klaar met spellingscontrole: %1 woorden aangepast", IeSpellDownload : "De spellingscontrole niet geïnstalleerd. Wil je deze nu downloaden?", // Button Dialog DlgButtonText : "Tekst (waarde)", DlgButtonType : "Soort", DlgButtonTypeBtn : "Knop", DlgButtonTypeSbm : "Versturen", DlgButtonTypeRst : "Leegmaken", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Naam", DlgCheckboxValue : "Waarde", DlgCheckboxSelected : "Geselecteerd", // Form Dialog DlgFormName : "Naam", DlgFormAction : "Actie", DlgFormMethod : "Methode", // Select Field Dialog DlgSelectName : "Naam", DlgSelectValue : "Waarde", DlgSelectSize : "Grootte", DlgSelectLines : "Regels", DlgSelectChkMulti : "Gecombineerde selecties toestaan", DlgSelectOpAvail : "Beschikbare opties", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Waarde", DlgSelectBtnAdd : "Toevoegen", DlgSelectBtnModify : "Wijzigen", DlgSelectBtnUp : "Omhoog", DlgSelectBtnDown : "Omlaag", DlgSelectBtnSetValue : "Als geselecteerde waarde instellen", DlgSelectBtnDelete : "Verwijderen", // Textarea Dialog DlgTextareaName : "Naam", DlgTextareaCols : "Kolommen", DlgTextareaRows : "Rijen", // Text Field Dialog DlgTextName : "Naam", DlgTextValue : "Waarde", DlgTextCharWidth : "Breedte (tekens)", DlgTextMaxChars : "Maximum aantal tekens", DlgTextType : "Soort", DlgTextTypeText : "Tekst", DlgTextTypePass : "Wachtwoord", // Hidden Field Dialog DlgHiddenName : "Naam", DlgHiddenValue : "Waarde", // Bulleted List Dialog BulletedListProp : "Eigenschappen opsommingslijst", NumberedListProp : "Eigenschappen genummerde opsommingslijst", DlgLstStart : "Start", DlgLstType : "Soort", DlgLstTypeCircle : "Cirkel", DlgLstTypeDisc : "Schijf", DlgLstTypeSquare : "Vierkant", DlgLstTypeNumbers : "Nummers (1, 2, 3)", DlgLstTypeLCase : "Kleine letters (a, b, c)", DlgLstTypeUCase : "Hoofdletters (A, B, C)", DlgLstTypeSRoman : "Klein Romeins (i, ii, iii)", DlgLstTypeLRoman : "Groot Romeins (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Algemeen", DlgDocBackTab : "Achtergrond", DlgDocColorsTab : "Kleuring en marges", DlgDocMetaTab : "META-data", DlgDocPageTitle : "Paginatitel", DlgDocLangDir : "Schrijfrichting", DlgDocLangDirLTR : "Links naar rechts", DlgDocLangDirRTL : "Rechts naar links", DlgDocLangCode : "Taalcode", DlgDocCharSet : "Karakterset-encoding", DlgDocCharSetCE : "Centraal Europees", DlgDocCharSetCT : "Traditioneel Chinees (Big5)", DlgDocCharSetCR : "Cyriliaans", DlgDocCharSetGR : "Grieks", DlgDocCharSetJP : "Japans", DlgDocCharSetKR : "Koreaans", DlgDocCharSetTR : "Turks", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "West europees", DlgDocCharSetOther : "Andere karakterset-encoding", DlgDocDocType : "Opschrift documentsoort", DlgDocDocTypeOther : "Ander opschrift documentsoort", DlgDocIncXHTML : "XHTML-declaraties meenemen", DlgDocBgColor : "Achtergrondkleur", DlgDocBgImage : "URL achtergrondplaatje", DlgDocBgNoScroll : "Vaste achtergrond", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Bezochte link", DlgDocCActive : "Active link", DlgDocMargins : "Afstandsinstellingen document", DlgDocMaTop : "Boven", DlgDocMaLeft : "Links", DlgDocMaRight : "Rechts", DlgDocMaBottom : "Onder", DlgDocMeIndex : "Trefwoorden betreffende document (kommagescheiden)", DlgDocMeDescr : "Beschrijving document", DlgDocMeAuthor : "Auteur", DlgDocMeCopy : "Copyright", DlgDocPreview : "Voorbeeld", // Templates Dialog Templates : "Sjablonen", DlgTemplatesTitle : "Inhoud sjabonen", DlgTemplatesSelMsg : "Selecteer het sjabloon dat in de editor geopend moet worden (de actuele inhoud gaat verloren):", DlgTemplatesLoading : "Bezig met laden sjabonen. Even geduld alstublieft...", DlgTemplatesNoTpl : "(Geen sjablonen gedefinieerd)", DlgTemplatesReplace : "Vervang de huidige inhoud", // About Dialog DlgAboutAboutTab : "Over", DlgAboutBrowserInfoTab : "Browserinformatie", DlgAboutLicenseTab : "Licentie", DlgAboutVersion : "Versie", DlgAboutInfo : "Voor meer informatie ga naar " };FCKeditor/editor/lang/cs.js0000644000102600010270000004321111234071566015031 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Czech language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Skrýt panel nástrojů", ToolbarExpand : "Zobrazit panel nástrojů", // Toolbar Items and Context Menu Save : "Uložit", NewPage : "Nová stránka", Preview : "Náhled", Cut : "Vyjmout", Copy : "Kopírovat", Paste : "Vložit", PasteText : "Vložit jako čistý text", PasteWord : "Vložit z Wordu", Print : "Tisk", SelectAll : "Vybrat vše", RemoveFormat : "Odstranit formátování", InsertLinkLbl : "Odkaz", InsertLink : "Vložit/změnit odkaz", RemoveLink : "Odstranit odkaz", Anchor : "Vložít/změnit záložku", InsertImageLbl : "Obrázek", InsertImage : "Vložit/změnit obrázek", InsertFlashLbl : "Flash", InsertFlash : "Vložit/Upravit Flash", InsertTableLbl : "Tabulka", InsertTable : "Vložit/změnit tabulku", InsertLineLbl : "Linka", InsertLine : "Vložit vodorovnou linku", InsertSpecialCharLbl: "Speciální znaky", InsertSpecialChar : "Vložit speciální znaky", InsertSmileyLbl : "Smajlíky", InsertSmiley : "Vložit smajlík", About : "O aplikaci FCKeditor", Bold : "Tučné", Italic : "Kurzíva", Underline : "Podtržené", StrikeThrough : "Přeškrtnuté", Subscript : "Dolní index", Superscript : "Horní index", LeftJustify : "Zarovnat vlevo", CenterJustify : "Zarovnat na střed", RightJustify : "Zarovnat vpravo", BlockJustify : "Zarovnat do bloku", DecreaseIndent : "Zmenšit odsazení", IncreaseIndent : "Zvětšit odsazení", Undo : "Zpět", Redo : "Znovu", NumberedListLbl : "Číslování", NumberedList : "Vložit/odstranit číslovaný seznam", BulletedListLbl : "Odrážky", BulletedList : "Vložit/odstranit odrážky", ShowTableBorders : "Zobrazit okraje tabulek", ShowDetails : "Zobrazit podrobnosti", Style : "Styl", FontFormat : "Formát", Font : "Písmo", FontSize : "Velikost", TextColor : "Barva textu", BGColor : "Barva pozadí", Source : "Zdroj", Find : "Hledat", Replace : "Nahradit", SpellCheck : "Zkontrolovat pravopis", UniversalKeyboard : "Univerzální klávesnice", PageBreakLbl : "Konec stránky", PageBreak : "Vložit konec stránky", Form : "Formulář", Checkbox : "Zaškrtávací políčko", RadioButton : "Přepínač", TextField : "Textové pole", Textarea : "Textová oblast", HiddenField : "Skryté pole", Button : "Tlačítko", SelectionField : "Seznam", ImageButton : "Obrázkové tlačítko", FitWindow : "Maximalizovat velikost editoru", // Context Menu EditLink : "Změnit odkaz", CellCM : "Buňka", RowCM : "Řádek", ColumnCM : "Sloupec", InsertRow : "Vložit řádek", DeleteRows : "Smazat řádek", InsertColumn : "Vložit sloupec", DeleteColumns : "Smazat sloupec", InsertCell : "Vložit buňku", DeleteCells : "Smazat buňky", MergeCells : "Sloučit buňky", SplitCell : "Rozdělit buňku", TableDelete : "Smazat tabulku", CellProperties : "Vlastnosti buňky", TableProperties : "Vlastnosti tabulky", ImageProperties : "Vlastnosti obrázku", FlashProperties : "Vlastnosti Flashe", AnchorProp : "Vlastnosti záložky", ButtonProp : "Vlastnosti tlačítka", CheckboxProp : "Vlastnosti zaškrtávacího políčka", HiddenFieldProp : "Vlastnosti skrytého pole", RadioButtonProp : "Vlastnosti přepínače", ImageButtonProp : "Vlastností obrázkového tlačítka", TextFieldProp : "Vlastnosti textového pole", SelectionFieldProp : "Vlastnosti seznamu", TextareaProp : "Vlastnosti textové oblasti", FormProp : "Vlastnosti formuláře", FontFormats : "Normální;Formátovaný;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Probíhá zpracování XHTML. Prosím čekejte...", Done : "Hotovo", PasteWordConfirm : "Jak je vidět, vkládaný text je kopírován z Wordu. Chcete jej před vložením vyčistit?", NotCompatiblePaste : "Tento příkaz je dostupný pouze v Internet Exploreru verze 5.5 nebo vyšší. Chcete vložit text bez vyčištění?", UnknownToolbarItem : "Neznámá položka panelu nástrojů \"%1\"", UnknownCommand : "Neznámý příkaz \"%1\"", NotImplemented : "Příkaz není implementován", UnknownToolbarSet : "Panel nástrojů \"%1\" neexistuje", NoActiveX : "Nastavení bezpečnosti Vašeho prohlížeče omezuje funkčnost některých jeho možností. Je třeba zapnout volbu \"Spouštět ovládáací prvky ActiveX a moduly plug-in\", jinak nebude možné využívat všechny dosputné schopnosti editoru.", BrowseServerBlocked : "Průzkumník zdrojů nelze otevřít. Prověřte, zda nemáte aktivováno blokování popup oken.", DialogBlocked : "Nelze otevřít dialogové okno. Prověřte, zda nemáte aktivováno blokování popup oken.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Storno", DlgBtnClose : "Zavřít", DlgBtnBrowseServer : "Vybrat na serveru", DlgAdvancedTag : "Rozšířené", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Prosím vložte URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Orientace jazyka", DlgGenLangDirLtr : "Zleva do prava (LTR)", DlgGenLangDirRtl : "Zprava do leva (RTL)", DlgGenLangCode : "Kód jazyka", DlgGenAccessKey : "Přístupový klíč", DlgGenName : "Jméno", DlgGenTabIndex : "Pořadí prvku", DlgGenLongDescr : "Dlouhý popis URL", DlgGenClass : "Třída stylu", DlgGenTitle : "Pomocný titulek", DlgGenContType : "Pomocný typ obsahu", DlgGenLinkCharset : "Přiřazená znaková sada", DlgGenStyle : "Styl", // Image Dialog DlgImgTitle : "Vlastnosti obrázku", DlgImgInfoTab : "Informace o obrázku", DlgImgBtnUpload : "Odeslat na server", DlgImgURL : "URL", DlgImgUpload : "Odeslat", DlgImgAlt : "Alternativní text", DlgImgWidth : "Šířka", DlgImgHeight : "Výška", DlgImgLockRatio : "Zámek", DlgBtnResetSize : "Původní velikost", DlgImgBorder : "Okraje", DlgImgHSpace : "H-mezera", DlgImgVSpace : "V-mezera", DlgImgAlign : "Zarovnání", DlgImgAlignLeft : "Vlevo", DlgImgAlignAbsBottom: "Zcela dolů", DlgImgAlignAbsMiddle: "Doprostřed", DlgImgAlignBaseline : "Na účaří", DlgImgAlignBottom : "Dolů", DlgImgAlignMiddle : "Na střed", DlgImgAlignRight : "Vpravo", DlgImgAlignTextTop : "Na horní okraj textu", DlgImgAlignTop : "Nahoru", DlgImgPreview : "Náhled", DlgImgAlertUrl : "Zadejte prosím URL obrázku", DlgImgLinkTab : "Odkaz", // Flash Dialog DlgFlashTitle : "Vlastnosti Flashe", DlgFlashChkPlay : "Automatické spuštění", DlgFlashChkLoop : "Opakování", DlgFlashChkMenu : "Nabídka Flash", DlgFlashScale : "Zobrazit", DlgFlashScaleAll : "Zobrazit vše", DlgFlashScaleNoBorder : "Bez okraje", DlgFlashScaleFit : "Přizpůsobit", // Link Dialog DlgLnkWindowTitle : "Odkaz", DlgLnkInfoTab : "Informace o odkazu", DlgLnkTargetTab : "Cíl", DlgLnkType : "Typ odkazu", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Kotva v této stránce", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Vybrat kotvu", DlgLnkAnchorByName : "Podle jména kotvy", DlgLnkAnchorById : "Podle Id objektu", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mailová adresa", DlgLnkEMailSubject : "Předmět zprávy", DlgLnkEMailBody : "Tělo zprávy", DlgLnkUpload : "Odeslat", DlgLnkBtnUpload : "Odeslat na Server", DlgLnkTarget : "Cíl", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nové okno (_blank)", DlgLnkTargetParent : "Rodičovské okno (_parent)", DlgLnkTargetSelf : "Stejné okno (_self)", DlgLnkTargetTop : "Hlavní okno (_top)", DlgLnkTargetFrameName : "Název cílového rámu", DlgLnkPopWinName : "Název vyskakovacího okna", DlgLnkPopWinFeat : "Vlastnosti vyskakovacího okna", DlgLnkPopResize : "Měnitelná velikost", DlgLnkPopLocation : "Panel umístění", DlgLnkPopMenu : "Panel nabídky", DlgLnkPopScroll : "Posuvníky", DlgLnkPopStatus : "Stavový řádek", DlgLnkPopToolbar : "Panel nástrojů", DlgLnkPopFullScrn : "Celá obrazovka (IE)", DlgLnkPopDependent : "Závislost (Netscape)", DlgLnkPopWidth : "Šířka", DlgLnkPopHeight : "Výška", DlgLnkPopLeft : "Levý okraj", DlgLnkPopTop : "Horní okraj", DlnLnkMsgNoUrl : "Zadejte prosím URL odkazu", DlnLnkMsgNoEMail : "Zadejte prosím e-mailovou adresu", DlnLnkMsgNoAnchor : "Vyberte prosím kotvu", DlnLnkMsgInvPopName : "Název vyskakovacího okna musí začínat písmenem a nesmí obsahovat mezery", // Color Dialog DlgColorTitle : "Výběr barvy", DlgColorBtnClear : "Vymazat", DlgColorHighlight : "Zvýrazněná", DlgColorSelected : "Vybraná", // Smiley Dialog DlgSmileyTitle : "Vkládání smajlíků", // Special Character Dialog DlgSpecialCharTitle : "Výběr speciálního znaku", // Table Dialog DlgTableTitle : "Vlastnosti tabulky", DlgTableRows : "Řádky", DlgTableColumns : "Sloupce", DlgTableBorder : "Ohraničení", DlgTableAlign : "Zarovnání", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Vlevo", DlgTableAlignCenter : "Na střed", DlgTableAlignRight : "Vpravo", DlgTableWidth : "Šířka", DlgTableWidthPx : "bodů", DlgTableWidthPc : "procent", DlgTableHeight : "Výška", DlgTableCellSpace : "Vzdálenost buněk", DlgTableCellPad : "Odsazení obsahu", DlgTableCaption : "Popis", DlgTableSummary : "Souhrn", // Table Cell Dialog DlgCellTitle : "Vlastnosti buňky", DlgCellWidth : "Šířka", DlgCellWidthPx : "bodů", DlgCellWidthPc : "procent", DlgCellHeight : "Výška", DlgCellWordWrap : "Zalamování", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ano", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Vodorovné zarovnání", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Vlevo", DlgCellHorAlignCenter : "Na střed", DlgCellHorAlignRight: "Vpravo", DlgCellVerAlign : "Svislé zarovnání", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Nahoru", DlgCellVerAlignMiddle : "Doprostřed", DlgCellVerAlignBottom : "Dolů", DlgCellVerAlignBaseline : "Na účaří", DlgCellRowSpan : "Sloučené řádky", DlgCellCollSpan : "Sloučené sloupce", DlgCellBackColor : "Barva pozadí", DlgCellBorderColor : "Barva ohraničení", DlgCellBtnSelect : "Výběr...", // Find Dialog DlgFindTitle : "Hledat", DlgFindFindBtn : "Hledat", DlgFindNotFoundMsg : "Hledaný text nebyl nalezen.", // Replace Dialog DlgReplaceTitle : "Nahradit", DlgReplaceFindLbl : "Co hledat:", DlgReplaceReplaceLbl : "Čím nahradit:", DlgReplaceCaseChk : "Rozlišovat velikost písma", DlgReplaceReplaceBtn : "Nahradit", DlgReplaceReplAllBtn : "Nahradit vše", DlgReplaceWordChk : "Pouze celá slova", // Paste Operations / Dialog PasteErrorCut : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro vyjmutí zvoleného textu do schránky. Prosím vyjměte zvolený text do schránky pomocí klávesnice (Ctrl+X).", PasteErrorCopy : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro kopírování zvoleného textu do schránky. Prosím zkopírujte zvolený text do schránky pomocí klávesnice (Ctrl+C).", PasteAsText : "Vložit jako čistý text", PasteFromWord : "Vložit text z Wordu", DlgPasteMsg2 : "Do následujícího pole vložte požadovaný obsah pomocí klávesnice (Ctrl+V) a stiskněte OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorovat písmo", DlgPasteRemoveStyles : "Odstranit styly", DlgPasteCleanBox : "Vyčistit", // Color Picker ColorAutomatic : "Automaticky", ColorMoreColors : "Více barev...", // Document Properties DocProps : "Vlastnosti dokumentu", // Anchor Dialog DlgAnchorTitle : "Vlastnosti záložky", DlgAnchorName : "Název záložky", DlgAnchorErrorName : "Zadejte prosím název záložky", // Speller Pages Dialog DlgSpellNotInDic : "Není ve slovníku", DlgSpellChangeTo : "Změnit na", DlgSpellBtnIgnore : "Přeskočit", DlgSpellBtnIgnoreAll : "Přeskakovat vše", DlgSpellBtnReplace : "Zaměnit", DlgSpellBtnReplaceAll : "Zaměňovat vše", DlgSpellBtnUndo : "Zpět", DlgSpellNoSuggestions : "- žádné návrhy -", DlgSpellProgress : "Probíhá kontrola pravopisu...", DlgSpellNoMispell : "Kontrola pravopisu dokončena: Žádné pravopisné chyby nenalezeny", DlgSpellNoChanges : "Kontrola pravopisu dokončena: Beze změn", DlgSpellOneChange : "Kontrola pravopisu dokončena: Jedno slovo změněno", DlgSpellManyChanges : "Kontrola pravopisu dokončena: %1 slov změněno", IeSpellDownload : "Kontrola pravopisu není nainstalována. Chcete ji nyní stáhnout?", // Button Dialog DlgButtonText : "Popisek", DlgButtonType : "Typ", DlgButtonTypeBtn : "Tlačítko", DlgButtonTypeSbm : "Odeslat", DlgButtonTypeRst : "Obnovit", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Název", DlgCheckboxValue : "Hodnota", DlgCheckboxSelected : "Zaškrtnuto", // Form Dialog DlgFormName : "Název", DlgFormAction : "Akce", DlgFormMethod : "Metoda", // Select Field Dialog DlgSelectName : "Název", DlgSelectValue : "Hodnota", DlgSelectSize : "Velikost", DlgSelectLines : "Řádků", DlgSelectChkMulti : "Povolit mnohonásobné výběry", DlgSelectOpAvail : "Dostupná nastavení", DlgSelectOpText : "Text", DlgSelectOpValue : "Hodnota", DlgSelectBtnAdd : "Přidat", DlgSelectBtnModify : "Změnit", DlgSelectBtnUp : "Nahoru", DlgSelectBtnDown : "Dolů", DlgSelectBtnSetValue : "Nastavit jako vybranou hodnotu", DlgSelectBtnDelete : "Smazat", // Textarea Dialog DlgTextareaName : "Název", DlgTextareaCols : "Sloupců", DlgTextareaRows : "Řádků", // Text Field Dialog DlgTextName : "Název", DlgTextValue : "Hodnota", DlgTextCharWidth : "Šířka ve znacích", DlgTextMaxChars : "Maximální počet znaků", DlgTextType : "Typ", DlgTextTypeText : "Text", DlgTextTypePass : "Heslo", // Hidden Field Dialog DlgHiddenName : "Název", DlgHiddenValue : "Hodnota", // Bulleted List Dialog BulletedListProp : "Vlastnosti odrážek", NumberedListProp : "Vlastnosti číslovaného seznamu", DlgLstStart : "Start", //MISSING DlgLstType : "Typ", DlgLstTypeCircle : "Kružnice", DlgLstTypeDisc : "Kruh", DlgLstTypeSquare : "Čtverec", DlgLstTypeNumbers : "Čísla (1, 2, 3)", DlgLstTypeLCase : "Malá písmena (a, b, c)", DlgLstTypeUCase : "Velká písmena (A, B, C)", DlgLstTypeSRoman : "Malé římská číslice (i, ii, iii)", DlgLstTypeLRoman : "Velké římské číslice (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Obecné", DlgDocBackTab : "Pozadí", DlgDocColorsTab : "Barvy a okraje", DlgDocMetaTab : "Metadata", DlgDocPageTitle : "Titulek stránky", DlgDocLangDir : "Směr jazyku", DlgDocLangDirLTR : "Zleva do prava ", DlgDocLangDirRTL : "Zprava doleva", DlgDocLangCode : "Kód jazyku", DlgDocCharSet : "Znaková sada", DlgDocCharSetCE : "Středoevropské jazyky", DlgDocCharSetCT : "Tradiční čínština (Big5)", DlgDocCharSetCR : "Cyrilice", DlgDocCharSetGR : "Řečtina", DlgDocCharSetJP : "Japonština", DlgDocCharSetKR : "Korejština", DlgDocCharSetTR : "Turečtina", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Západoevropské jazyky", DlgDocCharSetOther : "Další znaková sada", DlgDocDocType : "Typ dokumentu", DlgDocDocTypeOther : "Jiný typ dokumetu", DlgDocIncXHTML : "Zahrnou deklarace XHTML", DlgDocBgColor : "Barva pozadí", DlgDocBgImage : "URL obrázku na pozadí", DlgDocBgNoScroll : "Nerolovatelné pozadí", DlgDocCText : "Text", DlgDocCLink : "Odkaz", DlgDocCVisited : "Navštívený odkaz", DlgDocCActive : "Vybraný odkaz", DlgDocMargins : "Okraje stránky", DlgDocMaTop : "Horní", DlgDocMaLeft : "Levý", DlgDocMaRight : "Pravý", DlgDocMaBottom : "Dolní", DlgDocMeIndex : "Klíčová slova (oddělená čárkou)", DlgDocMeDescr : "Popis dokumentu", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Autorská práva", DlgDocPreview : "Náhled", // Templates Dialog Templates : "Šablony", DlgTemplatesTitle : "Šablony obsahu", DlgTemplatesSelMsg : "Prosím zvolte šablonu pro otevření v editoru
(aktuální obsah editoru bude ztracen):", DlgTemplatesLoading : "Nahrávám přeheld šablon. Prosím čekejte...", DlgTemplatesNoTpl : "(Není definována žádná šablona)", DlgTemplatesReplace : "Nahradit aktuální obsah", // About Dialog DlgAboutAboutTab : "O aplikaci", DlgAboutBrowserInfoTab : "Informace o prohlížeči", DlgAboutLicenseTab : "Licence", DlgAboutVersion : "verze", DlgAboutInfo : "Více informací získáte na" };FCKeditor/editor/lang/et.js0000644000102600010270000004203011234071602015021 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Estonian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Voldi tööriistariba", ToolbarExpand : "Laienda tööriistariba", // Toolbar Items and Context Menu Save : "Salvesta", NewPage : "Uus leht", Preview : "Eelvaade", Cut : "Lõika", Copy : "Kopeeri", Paste : "Kleebi", PasteText : "Kleebi tavalise tekstina", PasteWord : "Kleebi Wordist", Print : "Prindi", SelectAll : "Vali kõik", RemoveFormat : "Eemalda vorming", InsertLinkLbl : "Link", InsertLink : "Sisesta/Muuda link", RemoveLink : "Eemalda link", Anchor : "Sisesta/Muuda ankur", InsertImageLbl : "Pilt", InsertImage : "Sisesta/Muuda pilt", InsertFlashLbl : "Flash", InsertFlash : "Sisesta/Muuda flash", InsertTableLbl : "Tabel", InsertTable : "Sisesta/Muuda tabel", InsertLineLbl : "Joon", InsertLine : "Sisesta horisontaaljoon", InsertSpecialCharLbl: "Erimärgid", InsertSpecialChar : "Sisesta erimärk", InsertSmileyLbl : "Emotikon", InsertSmiley : "Sisesta emotikon", About : "FCKeditor teave", Bold : "Rasvane kiri", Italic : "Kursiiv kiri", Underline : "Allajoonitud kiri", StrikeThrough : "Läbijoonitud kiri", Subscript : "Allindeks", Superscript : "Ülaindeks", LeftJustify : "Vasakjoondus", CenterJustify : "Keskjoondus", RightJustify : "Paremjoondus", BlockJustify : "Rööpjoondus", DecreaseIndent : "Vähenda taanet", IncreaseIndent : "Suurenda taanet", Undo : "Võta tagasi", Redo : "Korda toimingut", NumberedListLbl : "Nummerdatud loetelu", NumberedList : "Sisesta/Eemalda nummerdatud loetelu", BulletedListLbl : "Punktiseeritud loetelu", BulletedList : "Sisesta/Eemalda punktiseeritud loetelu", ShowTableBorders : "Näita tabeli jooni", ShowDetails : "Näita üksikasju", Style : "Laad", FontFormat : "Vorming", Font : "Kiri", FontSize : "Suurus", TextColor : "Teksti värv", BGColor : "Tausta värv", Source : "Lähtekood", Find : "Otsi", Replace : "Asenda", SpellCheck : "Kontrolli õigekirja", UniversalKeyboard : "Universaalne klaviatuur", PageBreakLbl : "Lehepiir", PageBreak : "Sisesta lehevahetus koht", Form : "Vorm", Checkbox : "Märkeruut", RadioButton : "Raadionupp", TextField : "Tekstilahter", Textarea : "Tekstiala", HiddenField : "Varjatud lahter", Button : "Nupp", SelectionField : "Valiklahter", ImageButton : "Piltnupp", FitWindow : "Maksimeeri redaktori mõõtmed", // Context Menu EditLink : "Muuda linki", CellCM : "Lahter", RowCM : "Rida", ColumnCM : "Veerg", InsertRow : "Lisa rida", DeleteRows : "Eemalda ridu", InsertColumn : "Lisa veerg", DeleteColumns : "Eemalda veerud", InsertCell : "Lisa lahter", DeleteCells : "Eemalda lahtrid", MergeCells : "Ühenda lahtrid", SplitCell : "Lahuta lahtrid", TableDelete : "Kustuta tabel", CellProperties : "Lahtri atribuudid", TableProperties : "Tabeli atribuudid", ImageProperties : "Pildi atribuudid", FlashProperties : "Flash omadused", AnchorProp : "Ankru omadused", ButtonProp : "Nupu omadused", CheckboxProp : "Märkeruudu omadused", HiddenFieldProp : "Varjatud lahtri omadused", RadioButtonProp : "Raadionupu omadused", ImageButtonProp : "Piltnupu omadused", TextFieldProp : "Tekstilahtri omadused", SelectionFieldProp : "Valiklahtri omadused", TextareaProp : "Tekstiala omadused", FormProp : "Vormi omadused", FontFormats : "Tavaline;Vormindatud;Aadress;Pealkiri 1;Pealkiri 2;Pealkiri 3;Pealkiri 4;Pealkiri 5;Pealkiri 6;Tavaline (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Töötlen XHTML. Palun oota...", Done : "Tehtud", PasteWordConfirm : "Tekst, mida soovid lisada paistab pärinevat Wordist. Kas soovid seda enne kleepimist puhastada?", NotCompatiblePaste : "See käsk on saadaval ainult Internet Explorer versioon 5.5 või uuema puhul. Kas soovid kleepida ilma puhastamata?", UnknownToolbarItem : "Tundmatu tööriistariba üksus \"%1\"", UnknownCommand : "Tundmatu käsunimi \"%1\"", NotImplemented : "Käsku ei täidetud", UnknownToolbarSet : "Tööriistariba \"%1\" ei eksisteeri", NoActiveX : "Sinu veebisirvija turvalisuse seaded võivad limiteerida mõningaid tekstirdaktori kasutus võimalusi. Sa peaksid võimaldama valiku \"Run ActiveX controls and plug-ins\" oma sirvija seadetes. Muidu võid sa täheldada vigu tekstiredaktori töös ja märgata puuduvaid funktsioone.", BrowseServerBlocked : "Ressursside sirvija avamine ebaõnnestus. Võimalda pop-up akende avanemine.", DialogBlocked : "Ei olenud võimalik avada dialoogi akent. Võimalda pop-up akende avanemine.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Loobu", DlgBtnClose : "Sulge", DlgBtnBrowseServer : "Sirvi serverit", DlgAdvancedTag : "Täpsemalt", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Palun sisesta URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Keele suund", DlgGenLangDirLtr : "Vasakult paremale (LTR)", DlgGenLangDirRtl : "Paremalt vasakule (RTL)", DlgGenLangCode : "Keele kood", DlgGenAccessKey : "Juurdepääsu võti", DlgGenName : "Nimi", DlgGenTabIndex : "Tab indeks", DlgGenLongDescr : "Pikk kirjeldus URL", DlgGenClass : "Stiilistiku klassid", DlgGenTitle : "Juhendav tiitel", DlgGenContType : "Juhendava sisu tüüp", DlgGenLinkCharset : "Lingitud ressurssi märgistik", DlgGenStyle : "Laad", // Image Dialog DlgImgTitle : "Pildi atribuudid", DlgImgInfoTab : "Pildi info", DlgImgBtnUpload : "Saada serverissee", DlgImgURL : "URL", DlgImgUpload : "Lae üles", DlgImgAlt : "Alternatiivne tekst", DlgImgWidth : "Laius", DlgImgHeight : "Kõrgus", DlgImgLockRatio : "Lukusta kuvasuhe", DlgBtnResetSize : "Lähtesta suurus", DlgImgBorder : "Joon", DlgImgHSpace : "H. vaheruum", DlgImgVSpace : "V. vaheruum", DlgImgAlign : "Joondus", DlgImgAlignLeft : "Vasak", DlgImgAlignAbsBottom: "Abs alla", DlgImgAlignAbsMiddle: "Abs keskele", DlgImgAlignBaseline : "Baasjoonele", DlgImgAlignBottom : "Alla", DlgImgAlignMiddle : "Keskele", DlgImgAlignRight : "Paremale", DlgImgAlignTextTop : "Tekstit üles", DlgImgAlignTop : "Üles", DlgImgPreview : "Eelvaade", DlgImgAlertUrl : "Palun kirjuta pildi URL", DlgImgLinkTab : "Link", // Flash Dialog DlgFlashTitle : "Flash omadused", DlgFlashChkPlay : "Automaatne start ", DlgFlashChkLoop : "Korduv", DlgFlashChkMenu : "Võimalda flash menüü", DlgFlashScale : "Mastaap", DlgFlashScaleAll : "Näita kõike", DlgFlashScaleNoBorder : "Äärist ei ole", DlgFlashScaleFit : "Täpne sobivus", // Link Dialog DlgLnkWindowTitle : "Link", DlgLnkInfoTab : "Lingi info", DlgLnkTargetTab : "Sihtkoht", DlgLnkType : "Lingi tüüp", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Ankur sellel lehel", DlgLnkTypeEMail : "E-post", DlgLnkProto : "Protokoll", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Vali ankur", DlgLnkAnchorByName : "Ankru nime järgi", DlgLnkAnchorById : "Elemendi id järgi", DlgLnkNoAnchors : "(Selles dokumendis ei ole ankruid)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-posti aadress", DlgLnkEMailSubject : "Sõnumi teema", DlgLnkEMailBody : "Sõnumi tekst", DlgLnkUpload : "Lae üles", DlgLnkBtnUpload : "Saada serverisse", DlgLnkTarget : "Sihtkoht", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Uus aken (_blank)", DlgLnkTargetParent : "Vanem aken (_parent)", DlgLnkTargetSelf : "Sama aken (_self)", DlgLnkTargetTop : "Pealmine aken (_top)", DlgLnkTargetFrameName : "Sihtmärk raami nimi", DlgLnkPopWinName : "Hüpikakna nimi", DlgLnkPopWinFeat : "Hüpikakna omadused", DlgLnkPopResize : "Suurendatav", DlgLnkPopLocation : "Aadressiriba", DlgLnkPopMenu : "Menüüriba", DlgLnkPopScroll : "Kerimisribad", DlgLnkPopStatus : "Olekuriba", DlgLnkPopToolbar : "Tööriistariba", DlgLnkPopFullScrn : "Täisekraan (IE)", DlgLnkPopDependent : "Sõltuv (Netscape)", DlgLnkPopWidth : "Laius", DlgLnkPopHeight : "Kõrgus", DlgLnkPopLeft : "Vasak asukoht", DlgLnkPopTop : "Ülemine asukoht", DlnLnkMsgNoUrl : "Palun kirjuta lingi URL", DlnLnkMsgNoEMail : "Palun kirjuta E-Posti aadress", DlnLnkMsgNoAnchor : "Palun vali ankur", DlnLnkMsgInvPopName : "Hüpikakna nimi peab algama alfabeetilise tähega ja ei tohi sisaldada tühikuid", // Color Dialog DlgColorTitle : "Vali värv", DlgColorBtnClear : "Tühjenda", DlgColorHighlight : "Märgi", DlgColorSelected : "Valitud", // Smiley Dialog DlgSmileyTitle : "Sisesta emotikon", // Special Character Dialog DlgSpecialCharTitle : "Vali erimärk", // Table Dialog DlgTableTitle : "Tabeli atribuudid", DlgTableRows : "Read", DlgTableColumns : "Veerud", DlgTableBorder : "Joone suurus", DlgTableAlign : "Joondus", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Vasak", DlgTableAlignCenter : "Kesk", DlgTableAlignRight : "Parem", DlgTableWidth : "Laius", DlgTableWidthPx : "pikslit", DlgTableWidthPc : "protsenti", DlgTableHeight : "Kõrgus", DlgTableCellSpace : "Lahtri vahe", DlgTableCellPad : "Lahtri täidis", DlgTableCaption : "Tabeli tiitel", DlgTableSummary : "Kokkuvõte", // Table Cell Dialog DlgCellTitle : "Lahtri atribuudid", DlgCellWidth : "Laius", DlgCellWidthPx : "pikslit", DlgCellWidthPc : "protsenti", DlgCellHeight : "Kõrgus", DlgCellWordWrap : "Sõna ülekanne", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Jah", DlgCellWordWrapNo : "Ei", DlgCellHorAlign : "Horisontaaljoondus", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Vasak", DlgCellHorAlignCenter : "Kesk", DlgCellHorAlignRight: "Parem", DlgCellVerAlign : "Vertikaaljoondus", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Üles", DlgCellVerAlignMiddle : "Keskele", DlgCellVerAlignBottom : "Alla", DlgCellVerAlignBaseline : "Baasjoonele", DlgCellRowSpan : "Reaulatus", DlgCellCollSpan : "Veeruulatus", DlgCellBackColor : "Tausta värv", DlgCellBorderColor : "Joone värv", DlgCellBtnSelect : "Vali...", // Find Dialog DlgFindTitle : "Otsi", DlgFindFindBtn : "Otsi", DlgFindNotFoundMsg : "Valitud teksti ei leitud.", // Replace Dialog DlgReplaceTitle : "Asenda", DlgReplaceFindLbl : "Leia mida:", DlgReplaceReplaceLbl : "Asenda millega:", DlgReplaceCaseChk : "Erista suur- ja väiketähti", DlgReplaceReplaceBtn : "Asenda", DlgReplaceReplAllBtn : "Asenda kõik", DlgReplaceWordChk : "Otsi terviklike sõnu", // Paste Operations / Dialog PasteErrorCut : "Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt lõigata. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+X).", PasteErrorCopy : "Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt kopeerida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+C).", PasteAsText : "Kleebi tavalise tekstina", PasteFromWord : "Kleebi Wordist", DlgPasteMsg2 : "Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (Ctrl+V) ja vajuta seejärel OK.", DlgPasteSec : "Sinu veebisirvija turvaseadete tõttu, ei oma redaktor otsest ligipääsu lõikelaua andmetele. Sa pead kleepima need uuesti siia aknasse.", DlgPasteIgnoreFont : "Ignoreeri kirja definitsioone", DlgPasteRemoveStyles : "Eemalda stiilide definitsioonid", DlgPasteCleanBox : "Puhasta ära kast", // Color Picker ColorAutomatic : "Automaatne", ColorMoreColors : "Rohkem värve...", // Document Properties DocProps : "Dokumendi omadused", // Anchor Dialog DlgAnchorTitle : "Ankru omadused", DlgAnchorName : "Ankru nimi", DlgAnchorErrorName : "Palun sisest ankru nimi", // Speller Pages Dialog DlgSpellNotInDic : "Puudub sõnastikust", DlgSpellChangeTo : "Muuda", DlgSpellBtnIgnore : "Ignoreeri", DlgSpellBtnIgnoreAll : "Ignoreeri kõiki", DlgSpellBtnReplace : "Asenda", DlgSpellBtnReplaceAll : "Asenda kõik", DlgSpellBtnUndo : "Võta tagasi", DlgSpellNoSuggestions : "- Soovitused puuduvad -", DlgSpellProgress : "Toimub õigekirja kontroll...", DlgSpellNoMispell : "Õigekirja kontroll sooritatud: õigekirjuvigu ei leitud", DlgSpellNoChanges : "Õigekirja kontroll sooritatud: ühtegi sõna ei muudetud", DlgSpellOneChange : "Õigekirja kontroll sooritatud: üks sõna muudeti", DlgSpellManyChanges : "Õigekirja kontroll sooritatud: %1 sõna muudetud", IeSpellDownload : "Õigekirja kontrollija ei ole installeeritud. Soovid sa selle alla laadida?", // Button Dialog DlgButtonText : "Tekst (väärtus)", DlgButtonType : "Tüüp", DlgButtonTypeBtn : "Nupp", DlgButtonTypeSbm : "Saada", DlgButtonTypeRst : "Lähtesta", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nimi", DlgCheckboxValue : "Väärtus", DlgCheckboxSelected : "Valitud", // Form Dialog DlgFormName : "Nimi", DlgFormAction : "Toiming", DlgFormMethod : "Meetod", // Select Field Dialog DlgSelectName : "Nimi", DlgSelectValue : "Väärtus", DlgSelectSize : "Suurus", DlgSelectLines : "ridu", DlgSelectChkMulti : "Võimalda mitu valikut", DlgSelectOpAvail : "Võimalikud valikud", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Väärtus", DlgSelectBtnAdd : "Lisa", DlgSelectBtnModify : "Muuda", DlgSelectBtnUp : "Üles", DlgSelectBtnDown : "Alla", DlgSelectBtnSetValue : "Sea valitud olekuna", DlgSelectBtnDelete : "Kustuta", // Textarea Dialog DlgTextareaName : "Nimi", DlgTextareaCols : "Veerge", DlgTextareaRows : "Ridu", // Text Field Dialog DlgTextName : "Nimi", DlgTextValue : "Väärtus", DlgTextCharWidth : "Laius (tähemärkides)", DlgTextMaxChars : "Maksimaalselt tähemärke", DlgTextType : "Tüüp", DlgTextTypeText : "Tekst", DlgTextTypePass : "Parool", // Hidden Field Dialog DlgHiddenName : "Nimi", DlgHiddenValue : "Väärtus", // Bulleted List Dialog BulletedListProp : "Täpitud loetelu omadused", NumberedListProp : "Nummerdatud loetelu omadused", DlgLstStart : "Alusta", DlgLstType : "Tüüp", DlgLstTypeCircle : "Ring", DlgLstTypeDisc : "Ketas", DlgLstTypeSquare : "Ruut", DlgLstTypeNumbers : "Numbrid (1, 2, 3)", DlgLstTypeLCase : "Väiketähed (a, b, c)", DlgLstTypeUCase : "Suurtähed (A, B, C)", DlgLstTypeSRoman : "Väiksed Rooma numbrid (i, ii, iii)", DlgLstTypeLRoman : "Suured Rooma numbrid (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Üldine", DlgDocBackTab : "Taust", DlgDocColorsTab : "Värvid ja veerised", DlgDocMetaTab : "Meta andmed", DlgDocPageTitle : "Lehekülje tiitel", DlgDocLangDir : "Kirja suund", DlgDocLangDirLTR : "Vasakult paremale (LTR)", DlgDocLangDirRTL : "Paremalt vasakule (RTL)", DlgDocLangCode : "Keele kood", DlgDocCharSet : "Märgistiku kodeering", DlgDocCharSetCE : "Kesk-Euroopa", DlgDocCharSetCT : "Hiina traditsiooniline (Big5)", DlgDocCharSetCR : "Kirillisa", DlgDocCharSetGR : "Kreeka", DlgDocCharSetJP : "Jaapani", DlgDocCharSetKR : "Korea", DlgDocCharSetTR : "Türgi", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Lääne-Euroopa", DlgDocCharSetOther : "Ülejäänud märgistike kodeeringud", DlgDocDocType : "Dokumendi tüüppäis", DlgDocDocTypeOther : "Teised dokumendi tüüppäised", DlgDocIncXHTML : "Arva kaasa XHTML deklaratsioonid", DlgDocBgColor : "Taustavärv", DlgDocBgImage : "Taustapildi URL", DlgDocBgNoScroll : "Mittekeritav tagataust", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Külastatud link", DlgDocCActive : "Aktiivne link", DlgDocMargins : "Lehekülje äärised", DlgDocMaTop : "Ülaserv", DlgDocMaLeft : "Vasakserv", DlgDocMaRight : "Paremserv", DlgDocMaBottom : "Alaserv", DlgDocMeIndex : "Dokumendi võtmesõnad (eraldatud komadega)", DlgDocMeDescr : "Dokumendi kirjeldus", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Autoriõigus", DlgDocPreview : "Eelvaade", // Templates Dialog Templates : "Šabloon", DlgTemplatesTitle : "Sisu šabloonid", DlgTemplatesSelMsg : "Palun vali šabloon, et avada see redaktoris
(praegune sisu läheb kaotsi):", DlgTemplatesLoading : "Laen šabloonide nimekirja. Palun oota...", DlgTemplatesNoTpl : "(Ühtegi šablooni ei ole defineeritud)", DlgTemplatesReplace : "Asenda tegelik sisu", // About Dialog DlgAboutAboutTab : "Teave", DlgAboutBrowserInfoTab : "Veebisirvija info", DlgAboutLicenseTab : "Litsents", DlgAboutVersion : "versioon", DlgAboutInfo : "Täpsema info saamiseks mine" };FCKeditor/editor/lang/he.js0000644000102600010270000004713211234071611015015 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Hebrew language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "rtl", ToolbarCollapse : "כיווץ סרגל הכלים", ToolbarExpand : "פתיחת סרגל הכלים", // Toolbar Items and Context Menu Save : "שמירה", NewPage : "דף חדש", Preview : "תצוגה מקדימה", Cut : "גזירה", Copy : "העתקה", Paste : "הדבקה", PasteText : "הדבקה כטקסט פשוט", PasteWord : "הדבקה מ-וורד", Print : "הדפסה", SelectAll : "בחירת הכל", RemoveFormat : "הסרת העיצוב", InsertLinkLbl : "קישור", InsertLink : "הוספת/עריכת קישור", RemoveLink : "הסרת הקישור", Anchor : "הוספת/עריכת נקודת עיגון", InsertImageLbl : "תמונה", InsertImage : "הוספת/עריכת תמונה", InsertFlashLbl : "פלאש", InsertFlash : "הוסף/ערוך פלאש", InsertTableLbl : "טבלה", InsertTable : "הוספת/עריכת טבלה", InsertLineLbl : "קו", InsertLine : "הוספת קו אופקי", InsertSpecialCharLbl: "תו מיוחד", InsertSpecialChar : "הוספת תו מיוחד", InsertSmileyLbl : "סמיילי", InsertSmiley : "הוספת סמיילי", About : "אודות FCKeditor", Bold : "מודגש", Italic : "נטוי", Underline : "קו תחתון", StrikeThrough : "כתיב מחוק", Subscript : "כתיב תחתון", Superscript : "כתיב עליון", LeftJustify : "יישור לשמאל", CenterJustify : "מרכוז", RightJustify : "יישור לימין", BlockJustify : "יישור לשוליים", DecreaseIndent : "הקטנת אינדנטציה", IncreaseIndent : "הגדלת אינדנטציה", Undo : "ביטול צעד אחרון", Redo : "חזרה על צעד אחרון", NumberedListLbl : "רשימה ממוספרת", NumberedList : "הוספת/הסרת רשימה ממוספרת", BulletedListLbl : "רשימת נקודות", BulletedList : "הוספת/הסרת רשימת נקודות", ShowTableBorders : "הצגת מסגרת הטבלה", ShowDetails : "הצגת פרטים", Style : "סגנון", FontFormat : "עיצוב", Font : "גופן", FontSize : "גודל", TextColor : "צבע טקסט", BGColor : "צבע רקע", Source : "מקור", Find : "חיפוש", Replace : "החלפה", SpellCheck : "בדיקת איות", UniversalKeyboard : "מקלדת אוניברסלית", PageBreakLbl : "שבירת דף", PageBreak : "הוסף שבירת דף", Form : "טופס", Checkbox : "תיבת סימון", RadioButton : "לחצן אפשרויות", TextField : "שדה טקסט", Textarea : "איזור טקסט", HiddenField : "שדה חבוי", Button : "כפתור", SelectionField : "שדה בחירה", ImageButton : "כפתור תמונה", FitWindow : "הגדל את גודל העורך", // Context Menu EditLink : "עריכת קישור", CellCM : "תא", RowCM : "שורה", ColumnCM : "עמודה", InsertRow : "הוספת שורה", DeleteRows : "מחיקת שורות", InsertColumn : "הוספת עמודה", DeleteColumns : "מחיקת עמודות", InsertCell : "הוספת תא", DeleteCells : "מחיקת תאים", MergeCells : "מיזוג תאים", SplitCell : "פיצול תאים", TableDelete : "מחק טבלה", CellProperties : "תכונות התא", TableProperties : "תכונות הטבלה", ImageProperties : "תכונות התמונה", FlashProperties : "מאפייני פלאש", AnchorProp : "מאפייני נקודת עיגון", ButtonProp : "מאפייני כפתור", CheckboxProp : "מאפייני תיבת סימון", HiddenFieldProp : "מאפיני שדה חבוי", RadioButtonProp : "מאפייני לחצן אפשרויות", ImageButtonProp : "מאפיני כפתור תמונה", TextFieldProp : "מאפייני שדה טקסט", SelectionFieldProp : "מאפייני שדה בחירה", TextareaProp : "מאפיני איזור טקסט", FormProp : "מאפיני טופס", FontFormats : "נורמלי;קוד;כתובת;כותרת;כותרת 2;כותרת 3;כותרת 4;כותרת 5;כותרת 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "מעבד XHTML, נא להמתין...", Done : "המשימה הושלמה", PasteWordConfirm : "נראה הטקסט שבכוונתך להדביק מקורו בקובץ וורד. האם ברצונך לנקות אותו טרם ההדבקה?", NotCompatiblePaste : "פעולה זו זמינה לדפדפן אינטרנט אקספלורר מגירסא 5.5 ומעלה. האם להמשיך בהדבקה ללא הניקוי?", UnknownToolbarItem : "פריט לא ידוע בסרגל הכלים \"%1\"", UnknownCommand : "שם פעולה לא ידוע \"%1\"", NotImplemented : "הפקודה לא מיושמת", UnknownToolbarSet : "ערכת סרגל הכלים \"%1\" לא קיימת", NoActiveX : "הגדרות אבטחה של הדפדפן עלולות לגביל את אפשרויות העריכה.יש לאפשר את האופציה \"הרץ פקדים פעילים ותוספות\". תוכל לחוות טעויות וחיווים של אפשרויות שחסרים.", BrowseServerBlocked : "לא ניתן לגשת לדפדפן משאבים.אנא וודא שחוסם חלונות הקופצים לא פעיל.", DialogBlocked : "לא היה ניתן לפתוח חלון דיאלוג. אנא וודא שחוסם חלונות קופצים לא פעיל.", // Dialogs DlgBtnOK : "אישור", DlgBtnCancel : "ביטול", DlgBtnClose : "סגירה", DlgBtnBrowseServer : "סייר השרת", DlgAdvancedTag : "אפשרויות מתקדמות", DlgOpOther : "<אחר>", DlgInfoTab : "מידע", DlgAlertUrl : "אנה הזן URL", // General Dialogs Labels DlgGenNotSet : "<לא נקבע>", DlgGenId : "זיהוי (Id)", DlgGenLangDir : "כיוון שפה", DlgGenLangDirLtr : "שמאל לימין (LTR)", DlgGenLangDirRtl : "ימין לשמאל (RTL)", DlgGenLangCode : "קוד שפה", DlgGenAccessKey : "מקש גישה", DlgGenName : "שם", DlgGenTabIndex : "מספר טאב", DlgGenLongDescr : "קישור לתיאור מפורט", DlgGenClass : "גיליונות עיצוב קבוצות", DlgGenTitle : "כותרת מוצעת", DlgGenContType : "Content Type מוצע", DlgGenLinkCharset : "קידוד המשאב המקושר", DlgGenStyle : "סגנון", // Image Dialog DlgImgTitle : "תכונות התמונה", DlgImgInfoTab : "מידע על התמונה", DlgImgBtnUpload : "שליחה לשרת", DlgImgURL : "כתובת (URL)", DlgImgUpload : "העלאה", DlgImgAlt : "טקסט חלופי", DlgImgWidth : "רוחב", DlgImgHeight : "גובה", DlgImgLockRatio : "נעילת היחס", DlgBtnResetSize : "איפוס הגודל", DlgImgBorder : "מסגרת", DlgImgHSpace : "מרווח אופקי", DlgImgVSpace : "מרווח אנכי", DlgImgAlign : "יישור", DlgImgAlignLeft : "לשמאל", DlgImgAlignAbsBottom: "לתחתית האבסולוטית", DlgImgAlignAbsMiddle: "מרכוז אבסולוטי", DlgImgAlignBaseline : "לקו התחתית", DlgImgAlignBottom : "לתחתית", DlgImgAlignMiddle : "לאמצע", DlgImgAlignRight : "לימין", DlgImgAlignTextTop : "לראש הטקסט", DlgImgAlignTop : "למעלה", DlgImgPreview : "תצוגה מקדימה", DlgImgAlertUrl : "נא להקליד את כתובת התמונה", DlgImgLinkTab : "קישור", // Flash Dialog DlgFlashTitle : "מאפיני פלאש", DlgFlashChkPlay : "נגן אוטומטי", DlgFlashChkLoop : "לולאה", DlgFlashChkMenu : "אפשר תפריט פלאש", DlgFlashScale : "גודל", DlgFlashScaleAll : "הצג הכל", DlgFlashScaleNoBorder : "ללא גבולות", DlgFlashScaleFit : "התאמה מושלמת", // Link Dialog DlgLnkWindowTitle : "קישור", DlgLnkInfoTab : "מידע על הקישור", DlgLnkTargetTab : "מטרה", DlgLnkType : "סוג קישור", DlgLnkTypeURL : "כתובת (URL)", DlgLnkTypeAnchor : "עוגן בעמוד זה", DlgLnkTypeEMail : "דוא''ל", DlgLnkProto : "פרוטוקול", DlgLnkProtoOther : "<אחר>", DlgLnkURL : "כתובת (URL)", DlgLnkAnchorSel : "בחירת עוגן", DlgLnkAnchorByName : "עפ''י שם העוגן", DlgLnkAnchorById : "עפ''י זיהוי (Id) הרכיב", DlgLnkNoAnchors : "(אין עוגנים זמינים בדף)", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "כתובת הדוא''ל", DlgLnkEMailSubject : "נושא ההודעה", DlgLnkEMailBody : "גוף ההודעה", DlgLnkUpload : "העלאה", DlgLnkBtnUpload : "שליחה לשרת", DlgLnkTarget : "מטרה", DlgLnkTargetFrame : "<מסגרת>", DlgLnkTargetPopup : "<חלון קופץ>", DlgLnkTargetBlank : "חלון חדש (_blank)", DlgLnkTargetParent : "חלון האב (_parent)", DlgLnkTargetSelf : "באותו החלון (_self)", DlgLnkTargetTop : "חלון ראשי (_top)", DlgLnkTargetFrameName : "שם מסגרת היעד", DlgLnkPopWinName : "שם החלון הקופץ", DlgLnkPopWinFeat : "תכונות החלון הקופץ", DlgLnkPopResize : "בעל גודל ניתן לשינוי", DlgLnkPopLocation : "סרגל כתובת", DlgLnkPopMenu : "סרגל תפריט", DlgLnkPopScroll : "ניתן לגלילה", DlgLnkPopStatus : "סרגל חיווי", DlgLnkPopToolbar : "סרגל הכלים", DlgLnkPopFullScrn : "מסך מלא (IE)", DlgLnkPopDependent : "תלוי (Netscape)", DlgLnkPopWidth : "רוחב", DlgLnkPopHeight : "גובה", DlgLnkPopLeft : "מיקום צד שמאל", DlgLnkPopTop : "מיקום צד עליון", DlnLnkMsgNoUrl : "נא להקליד את כתובת הקישור (URL)", DlnLnkMsgNoEMail : "נא להקליד את כתובת הדוא''ל", DlnLnkMsgNoAnchor : "נא לבחור עוגן במסמך", DlnLnkMsgInvPopName : "שם החלון הקופץ חייב להתחיל באותיות ואסור לכלול רווחים", // Color Dialog DlgColorTitle : "בחירת צבע", DlgColorBtnClear : "איפוס", DlgColorHighlight : "נוכחי", DlgColorSelected : "נבחר", // Smiley Dialog DlgSmileyTitle : "הוספת סמיילי", // Special Character Dialog DlgSpecialCharTitle : "בחירת תו מיוחד", // Table Dialog DlgTableTitle : "תכונות טבלה", DlgTableRows : "שורות", DlgTableColumns : "עמודות", DlgTableBorder : "גודל מסגרת", DlgTableAlign : "יישור", DlgTableAlignNotSet : "<לא נקבע>", DlgTableAlignLeft : "שמאל", DlgTableAlignCenter : "מרכז", DlgTableAlignRight : "ימין", DlgTableWidth : "רוחב", DlgTableWidthPx : "פיקסלים", DlgTableWidthPc : "אחוז", DlgTableHeight : "גובה", DlgTableCellSpace : "מרווח תא", DlgTableCellPad : "ריפוד תא", DlgTableCaption : "כיתוב", DlgTableSummary : "סיכום", // Table Cell Dialog DlgCellTitle : "תכונות תא", DlgCellWidth : "רוחב", DlgCellWidthPx : "פיקסלים", DlgCellWidthPc : "אחוז", DlgCellHeight : "גובה", DlgCellWordWrap : "גלילת שורות", DlgCellWordWrapNotSet : "<לא נקבע>", DlgCellWordWrapYes : "כן", DlgCellWordWrapNo : "לא", DlgCellHorAlign : "יישור אופקי", DlgCellHorAlignNotSet : "<לא נקבע>", DlgCellHorAlignLeft : "שמאל", DlgCellHorAlignCenter : "מרכז", DlgCellHorAlignRight: "ימין", DlgCellVerAlign : "יישור אנכי", DlgCellVerAlignNotSet : "<לא נקבע>", DlgCellVerAlignTop : "למעלה", DlgCellVerAlignMiddle : "לאמצע", DlgCellVerAlignBottom : "לתחתית", DlgCellVerAlignBaseline : "קו תחתית", DlgCellRowSpan : "טווח שורות", DlgCellCollSpan : "טווח עמודות", DlgCellBackColor : "צבע רקע", DlgCellBorderColor : "צבע מסגרת", DlgCellBtnSelect : "בחירה...", // Find Dialog DlgFindTitle : "חיפוש", DlgFindFindBtn : "חיפוש", DlgFindNotFoundMsg : "הטקסט המבוקש לא נמצא.", // Replace Dialog DlgReplaceTitle : "החלפה", DlgReplaceFindLbl : "חיפוש מחרוזת:", DlgReplaceReplaceLbl : "החלפה במחרוזת:", DlgReplaceCaseChk : "התאמת סוג אותיות (Case)", DlgReplaceReplaceBtn : "החלפה", DlgReplaceReplAllBtn : "החלפה בכל העמוד", DlgReplaceWordChk : "התאמה למילה המלאה", // Paste Operations / Dialog PasteErrorCut : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות גזירה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+X).", PasteErrorCopy : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות העתקה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+C).", PasteAsText : "הדבקה כטקסט פשוט", PasteFromWord : "הדבקה מ-וורד", DlgPasteMsg2 : "אנא הדבק בתוך הקופסה באמצעות (Ctrl+V) ולחץ על אישור.", DlgPasteSec : "עקב הגדרות אבטחה בדפדפן, לא ניתן לגשת אל לוח הגזירים (clipboard) בצורה ישירה.אנא בצע הדבק שוב בחלון זה.", DlgPasteIgnoreFont : "התעלם מהגדרות סוג פונט", DlgPasteRemoveStyles : "הסר הגדרות סגנון", DlgPasteCleanBox : "ניקוי קופסה", // Color Picker ColorAutomatic : "אוטומטי", ColorMoreColors : "צבעים נוספים...", // Document Properties DocProps : "מאפיני מסמך", // Anchor Dialog DlgAnchorTitle : "מאפיני נקודת עיגון", DlgAnchorName : "שם לנקודת עיגון", DlgAnchorErrorName : "אנא הזן שם לנקודת עיגון", // Speller Pages Dialog DlgSpellNotInDic : "לא נמצא במילון", DlgSpellChangeTo : "שנה ל", DlgSpellBtnIgnore : "התעלם", DlgSpellBtnIgnoreAll : "התעלם מהכל", DlgSpellBtnReplace : "החלף", DlgSpellBtnReplaceAll : "החלף הכל", DlgSpellBtnUndo : "החזר", DlgSpellNoSuggestions : "- אין הצעות -", DlgSpellProgress : "בדיקות איות בתהליך ....", DlgSpellNoMispell : "בדיקות איות הסתיימה: לא נמצאו שגיעות כתיב", DlgSpellNoChanges : "בדיקות איות הסתיימה: לא שונתה אף מילה", DlgSpellOneChange : "בדיקות איות הסתיימה: שונתה מילה אחת", DlgSpellManyChanges : "בדיקות איות הסתיימה: %1 מילים שונו", IeSpellDownload : "בודק האיות לא מותקן, האם אתה מעוניין להוריד?", // Button Dialog DlgButtonText : "טקסט (ערך)", DlgButtonType : "סוג", DlgButtonTypeBtn : "כפתור", DlgButtonTypeSbm : "שלח", DlgButtonTypeRst : "אפס", // Checkbox and Radio Button Dialogs DlgCheckboxName : "שם", DlgCheckboxValue : "ערך", DlgCheckboxSelected : "בחור", // Form Dialog DlgFormName : "שם", DlgFormAction : "שלח אל", DlgFormMethod : "סוג שליחה", // Select Field Dialog DlgSelectName : "שם", DlgSelectValue : "ערך", DlgSelectSize : "גודל", DlgSelectLines : "שורות", DlgSelectChkMulti : "אפשר בחירות מרובות", DlgSelectOpAvail : "אפשרויות זמינות", DlgSelectOpText : "טקסט", DlgSelectOpValue : "ערך", DlgSelectBtnAdd : "הוסף", DlgSelectBtnModify : "שנה", DlgSelectBtnUp : "למעלה", DlgSelectBtnDown : "למטה", DlgSelectBtnSetValue : "קבע כברירת מחדל", DlgSelectBtnDelete : "מחק", // Textarea Dialog DlgTextareaName : "שם", DlgTextareaCols : "עמודות", DlgTextareaRows : "שורות", // Text Field Dialog DlgTextName : "שם", DlgTextValue : "ערך", DlgTextCharWidth : "רוחב באותיות", DlgTextMaxChars : "מקסימות אותיות", DlgTextType : "סוג", DlgTextTypeText : "טקסט", DlgTextTypePass : "סיסמה", // Hidden Field Dialog DlgHiddenName : "שם", DlgHiddenValue : "ערך", // Bulleted List Dialog BulletedListProp : "מאפייני רשימה", NumberedListProp : "מאפייני רשימה ממוספרת", DlgLstStart : "התחלה", DlgLstType : "סוג", DlgLstTypeCircle : "עיגול", DlgLstTypeDisc : "דיסק", 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 : "כללי", DlgDocBackTab : "רקע", DlgDocColorsTab : "צבעים וגבולות", DlgDocMetaTab : "נתוני META", DlgDocPageTitle : "כותרת דף", DlgDocLangDir : "כיוון שפה", DlgDocLangDirLTR : "שמאל לימין (LTR)", DlgDocLangDirRTL : "ימין לשמאל (RTL)", DlgDocLangCode : "קוד שפה", DlgDocCharSet : "קידוד אותיות", DlgDocCharSetCE : "מרכז אירופה", DlgDocCharSetCT : "סיני מסורתי (Big5)", DlgDocCharSetCR : "קירילי", DlgDocCharSetGR : "יוונית", DlgDocCharSetJP : "יפנית", DlgDocCharSetKR : "קוראנית", DlgDocCharSetTR : "טורקית", DlgDocCharSetUN : "יוני קוד (UTF-8)", DlgDocCharSetWE : "מערב אירופה", DlgDocCharSetOther : "קידוד אותיות אחר", DlgDocDocType : "הגדרות סוג מסמך", DlgDocDocTypeOther : "הגדרות סוג מסמך אחרות", DlgDocIncXHTML : "כלול הגדרות XHTML", DlgDocBgColor : "צבע רקע", DlgDocBgImage : "URL לתמונת רקע", DlgDocBgNoScroll : "רגע ללא גלילה", DlgDocCText : "טקסט", DlgDocCLink : "קישור", DlgDocCVisited : "קישור שבוקר", DlgDocCActive : " קישור פעיל", DlgDocMargins : "גבולות דף", DlgDocMaTop : "למעלה", DlgDocMaLeft : "שמאלה", DlgDocMaRight : "ימינה", DlgDocMaBottom : "למטה", DlgDocMeIndex : "מפתח עניינים של המסמך )מופרד בפסיק(", DlgDocMeDescr : "תאור מסמך", DlgDocMeAuthor : "מחבר", DlgDocMeCopy : "זכויות יוצרים", DlgDocPreview : "תצוגה מקדימה", // Templates Dialog Templates : "תבניות", DlgTemplatesTitle : "תביות תוכן", DlgTemplatesSelMsg : "אנא בחר תבנית לפתיחה בעורך
התוכן המקורי ימחק:", DlgTemplatesLoading : "מעלה רשימת תבניות אנא המתן", DlgTemplatesNoTpl : "(לא הוגדרו תבניות)", DlgTemplatesReplace : "החלפת תוכן ממשי", // About Dialog DlgAboutAboutTab : "אודות", DlgAboutBrowserInfoTab : "גירסת דפדפן", DlgAboutLicenseTab : "רשיון", DlgAboutVersion : "גירסא", DlgAboutInfo : "מידע נוסף ניתן למצוא כאן:" };FCKeditor/editor/lang/ms.js0000644000102600010270000004317411234071626015050 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Malay language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Collapse Toolbar", ToolbarExpand : "Expand Toolbar", // Toolbar Items and Context Menu Save : "Simpan", NewPage : "Helaian Baru", Preview : "Prebiu", Cut : "Potong", Copy : "Salin", Paste : "Tampal", PasteText : "Tampal sebagai Text Biasa", PasteWord : "Tampal dari Word", Print : "Cetak", SelectAll : "Pilih Semua", RemoveFormat : "Buang Format", InsertLinkLbl : "Sambungan", InsertLink : "Masukkan/Sunting Sambungan", RemoveLink : "Buang Sambungan", Anchor : "Masukkan/Sunting Pautan", InsertImageLbl : "Gambar", InsertImage : "Masukkan/Sunting Gambar", InsertFlashLbl : "Flash", //MISSING InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Jadual", InsertTable : "Masukkan/Sunting Jadual", InsertLineLbl : "Garisan", InsertLine : "Masukkan Garisan Membujur", InsertSpecialCharLbl: "Huruf Istimewa", InsertSpecialChar : "Masukkan Huruf Istimewa", InsertSmileyLbl : "Smiley", InsertSmiley : "Masukkan Smiley", About : "Tentang FCKeditor", Bold : "Bold", Italic : "Italic", Underline : "Underline", StrikeThrough : "Strike Through", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Jajaran Kiri", CenterJustify : "Jajaran Tengah", RightJustify : "Jajaran Kanan", BlockJustify : "Jajaran Blok", DecreaseIndent : "Kurangkan Inden", IncreaseIndent : "Tambahkan Inden", Undo : "Batalkan", Redo : "Ulangkan", NumberedListLbl : "Senarai bernombor", NumberedList : "Masukkan/Sunting Senarai bernombor", BulletedListLbl : "Senarai tidak bernombor", BulletedList : "Masukkan/Sunting Senarai tidak bernombor", ShowTableBorders : "Tunjukkan Border Jadual", ShowDetails : "Tunjukkan Butiran", Style : "Stail", FontFormat : "Format", Font : "Font", FontSize : "Saiz", TextColor : "Warna Text", BGColor : "Warna Latarbelakang", Source : "Sumber", Find : "Cari", Replace : "Ganti", SpellCheck : "Semak Ejaan", UniversalKeyboard : "Papan Kekunci Universal", PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //MISSING Form : "Borang", Checkbox : "Checkbox", RadioButton : "Butang Radio", TextField : "Text Field", Textarea : "Textarea", HiddenField : "Field Tersembunyi", Button : "Butang", SelectionField : "Field Pilihan", ImageButton : "Butang Bergambar", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Sunting Sambungan", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Masukkan Baris", DeleteRows : "Buangkan Baris", InsertColumn : "Masukkan Lajur", DeleteColumns : "Buangkan Lajur", InsertCell : "Masukkan Sel", DeleteCells : "Buangkan Sel-sel", MergeCells : "Cantumkan Sel-sel", SplitCell : "Bahagikan Sel", TableDelete : "Delete Table", //MISSING CellProperties : "Ciri-ciri Sel", TableProperties : "Ciri-ciri Jadual", ImageProperties : "Ciri-ciri Gambar", FlashProperties : "Flash Properties", //MISSING AnchorProp : "Ciri-ciri Pautan", ButtonProp : "Ciri-ciri Butang", CheckboxProp : "Ciri-ciri Checkbox", HiddenFieldProp : "Ciri-ciri Field Tersembunyi", RadioButtonProp : "Ciri-ciri Butang Radio", ImageButtonProp : "Ciri-ciri Butang Bergambar", TextFieldProp : "Ciri-ciri Text Field", SelectionFieldProp : "Ciri-ciri Selection Field", TextareaProp : "Ciri-ciri Textarea", FormProp : "Ciri-ciri Borang", FontFormats : "Normal;Telah Diformat;Alamat;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Perenggan (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Memproses XHTML. Sila tunggu...", Done : "Siap", PasteWordConfirm : "Text yang anda hendak tampal adalah berasal dari Word. Adakah anda mahu membuang semua format Word sebelum tampal ke dalam text?", NotCompatiblePaste : "Arahan ini bole dilakukan jika anda mempuunyai Internet Explorer version 5.5 atau yang lebih tinggi. Adakah anda hendak tampal text tanpa membuang format Word?", UnknownToolbarItem : "Toolbar item tidak diketahui\"%1\"", UnknownCommand : "Arahan tidak diketahui \"%1\"", NotImplemented : "Arahan tidak terdapat didalam sistem", UnknownToolbarSet : "Set toolbar \"%1\" tidak wujud", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Batal", DlgBtnClose : "Tutup", DlgBtnBrowseServer : "Browse Server", DlgAdvancedTag : "Advanced", DlgOpOther : "", DlgInfoTab : "Info", //MISSING DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Arah Tulisan", DlgGenLangDirLtr : "Kiri ke Kanan (LTR)", DlgGenLangDirRtl : "Kanan ke Kiri (RTL)", DlgGenLangCode : "Kod Bahasa", DlgGenAccessKey : "Kunci Akses", DlgGenName : "Nama", DlgGenTabIndex : "Indeks Tab ", DlgGenLongDescr : "Butiran Panjang URL", DlgGenClass : "Kelas-kelas Stylesheet", DlgGenTitle : "Tajuk Makluman", DlgGenContType : "Jenis Kandungan Makluman", DlgGenLinkCharset : "Linked Resource Charset", DlgGenStyle : "Stail", // Image Dialog DlgImgTitle : "Ciri-ciri Imej", DlgImgInfoTab : "Info Imej", DlgImgBtnUpload : "Hantar ke Server", DlgImgURL : "URL", DlgImgUpload : "Muat Naik", DlgImgAlt : "Text Alternatif", DlgImgWidth : "Lebar", DlgImgHeight : "Tinggi", DlgImgLockRatio : "Tetapkan Nisbah", DlgBtnResetSize : "Saiz Set Semula", DlgImgBorder : "Border", DlgImgHSpace : "Ruang Melintang", DlgImgVSpace : "Ruang Menegak", DlgImgAlign : "Jajaran", DlgImgAlignLeft : "Kiri", DlgImgAlignAbsBottom: "Bawah Mutlak", DlgImgAlignAbsMiddle: "Pertengahan Mutlak", DlgImgAlignBaseline : "Garis Dasar", DlgImgAlignBottom : "Bawah", DlgImgAlignMiddle : "Pertengahan", DlgImgAlignRight : "Kanan", DlgImgAlignTextTop : "Atas Text", DlgImgAlignTop : "Atas", DlgImgPreview : "Prebiu", DlgImgAlertUrl : "Sila taip URL untuk fail gambar", DlgImgLinkTab : "Sambungan", // 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 : "Sambungan", DlgLnkInfoTab : "Butiran Sambungan", DlgLnkTargetTab : "Sasaran", DlgLnkType : "Jenis Sambungan", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Pautan dalam muka surat ini", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Sila pilih pautan", DlgLnkAnchorByName : "dengan menggunakan nama pautan", DlgLnkAnchorById : "dengan menggunakan ID elemen", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Alamat E-Mail", DlgLnkEMailSubject : "Subjek Mesej", DlgLnkEMailBody : "Isi Kandungan Mesej", DlgLnkUpload : "Muat Naik", DlgLnkBtnUpload : "Hantar ke Server", DlgLnkTarget : "Sasaran", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Tetingkap Baru (_blank)", DlgLnkTargetParent : "Tetingkap Parent (_parent)", DlgLnkTargetSelf : "Tetingkap yang Sama (_self)", DlgLnkTargetTop : "Tetingkap yang paling atas (_top)", DlgLnkTargetFrameName : "Nama Bingkai Sasaran", DlgLnkPopWinName : "Nama Tetingkap Popup", DlgLnkPopWinFeat : "Ciri Tetingkap Popup", DlgLnkPopResize : "Saiz bolehubah", DlgLnkPopLocation : "Bar Lokasi", DlgLnkPopMenu : "Bar Menu", DlgLnkPopScroll : "Bar-bar skrol", DlgLnkPopStatus : "Bar Status", DlgLnkPopToolbar : "Toolbar", DlgLnkPopFullScrn : "Skrin Penuh (IE)", DlgLnkPopDependent : "Bergantungan (Netscape)", DlgLnkPopWidth : "Lebar", DlgLnkPopHeight : "Tinggi", DlgLnkPopLeft : "Posisi Kiri", DlgLnkPopTop : "Posisi Atas", DlnLnkMsgNoUrl : "Sila taip sambungan URL", DlnLnkMsgNoEMail : "Sila taip alamat e-mail", DlnLnkMsgNoAnchor : "Sila pilih pautan berkenaaan", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Pilihan Warna", DlgColorBtnClear : "Nyahwarna", DlgColorHighlight : "Terang", DlgColorSelected : "Dipilih", // Smiley Dialog DlgSmileyTitle : "Masukkan Smiley", // Special Character Dialog DlgSpecialCharTitle : "Sila pilih huruf istimewa", // Table Dialog DlgTableTitle : "Ciri-ciri Jadual", DlgTableRows : "Barisan", DlgTableColumns : "Jaluran", DlgTableBorder : "Saiz Border", DlgTableAlign : "Penjajaran", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Kiri", DlgTableAlignCenter : "Tengah", DlgTableAlignRight : "Kanan", DlgTableWidth : "Lebar", DlgTableWidthPx : "piksel-piksel", DlgTableWidthPc : "peratus", DlgTableHeight : "Tinggi", DlgTableCellSpace : "Ruangan Antara Sel", DlgTableCellPad : "Tambahan Ruang Sel", DlgTableCaption : "Keterangan", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Ciri-ciri Sel", DlgCellWidth : "Lebar", DlgCellWidthPx : "piksel-piksel", DlgCellWidthPc : "peratus", DlgCellHeight : "Tinggi", DlgCellWordWrap : "Mengulung Perkataan", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Ya", DlgCellWordWrapNo : "Tidak", DlgCellHorAlign : "Jajaran Membujur", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Kiri", DlgCellHorAlignCenter : "Tengah", DlgCellHorAlignRight: "Kanan", DlgCellVerAlign : "Jajaran Menegak", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Atas", DlgCellVerAlignMiddle : "Tengah", DlgCellVerAlignBottom : "Bawah", DlgCellVerAlignBaseline : "Garis Dasar", DlgCellRowSpan : "Penggunaan Baris", DlgCellCollSpan : "Penggunaan Lajur", DlgCellBackColor : "Warna Latarbelakang", DlgCellBorderColor : "Warna Border", DlgCellBtnSelect : "Pilih...", // Find Dialog DlgFindTitle : "Carian", DlgFindFindBtn : "Cari", DlgFindNotFoundMsg : "Text yang dicari tidak dijumpai.", // Replace Dialog DlgReplaceTitle : "Gantian", DlgReplaceFindLbl : "Perkataan yang dicari:", DlgReplaceReplaceLbl : "Diganti dengan:", DlgReplaceCaseChk : "Padanan case huruf", DlgReplaceReplaceBtn : "Ganti", DlgReplaceReplAllBtn : "Ganti semua", DlgReplaceWordChk : "Padana Keseluruhan perkataan", // Paste Operations / Dialog PasteErrorCut : "Keselamatan perisian browser anda tidak membenarkan operasi suntingan text/imej. Sila gunakan papan kekunci (Ctrl+X).", PasteErrorCopy : "Keselamatan perisian browser anda tidak membenarkan operasi salinan text/imej. Sila gunakan papan kekunci (Ctrl+C).", PasteAsText : "Tampal sebagai text biasa", PasteFromWord : "Tampal dari perisian \"Word\"", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING DlgPasteCleanBox : "Clean Up Box", //MISSING // Color Picker ColorAutomatic : "Otomatik", ColorMoreColors : "Warna lain-lain...", // Document Properties DocProps : "Ciri-ciri dokumen", // Anchor Dialog DlgAnchorTitle : "Ciri-ciri Pautan", DlgAnchorName : "Nama Pautan", DlgAnchorErrorName : "Sila taip nama pautan", // Speller Pages Dialog DlgSpellNotInDic : "Tidak terdapat didalam kamus", DlgSpellChangeTo : "Tukarkan kepada", DlgSpellBtnIgnore : "Biar", DlgSpellBtnIgnoreAll : "Biarkan semua", DlgSpellBtnReplace : "Ganti", DlgSpellBtnReplaceAll : "Gantikan Semua", DlgSpellBtnUndo : "Batalkan", DlgSpellNoSuggestions : "- Tiada cadangan -", DlgSpellProgress : "Pemeriksaan ejaan sedang diproses...", DlgSpellNoMispell : "Pemeriksaan ejaan siap: Tiada salah ejaan", DlgSpellNoChanges : "Pemeriksaan ejaan siap: Tiada perkataan diubah", DlgSpellOneChange : "Pemeriksaan ejaan siap: Satu perkataan telah diubah", DlgSpellManyChanges : "Pemeriksaan ejaan siap: %1 perkataan diubah", IeSpellDownload : "Pemeriksa ejaan tidak dipasang. Adakah anda mahu muat turun sekarang?", // Button Dialog DlgButtonText : "Teks (Nilai)", DlgButtonType : "Jenis", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nama", DlgCheckboxValue : "Nilai", DlgCheckboxSelected : "Dipilih", // Form Dialog DlgFormName : "Nama", DlgFormAction : "Tindakan borang", DlgFormMethod : "Cara borang dihantar", // Select Field Dialog DlgSelectName : "Nama", DlgSelectValue : "Nilai", DlgSelectSize : "Saiz", DlgSelectLines : "garisan", DlgSelectChkMulti : "Benarkan pilihan pelbagai", DlgSelectOpAvail : "Pilihan sediada", DlgSelectOpText : "Teks", DlgSelectOpValue : "Nilai", DlgSelectBtnAdd : "Tambah Pilihan", DlgSelectBtnModify : "Ubah Pilihan", DlgSelectBtnUp : "Naik ke atas", DlgSelectBtnDown : "Turun ke bawah", DlgSelectBtnSetValue : "Set sebagai nilai terpilih", DlgSelectBtnDelete : "Padam", // Textarea Dialog DlgTextareaName : "Nama", DlgTextareaCols : "Lajur", DlgTextareaRows : "Baris", // Text Field Dialog DlgTextName : "Nama", DlgTextValue : "Nilai", DlgTextCharWidth : "Lebar isian", DlgTextMaxChars : "Isian Maksimum", DlgTextType : "Jenis", DlgTextTypeText : "Teks", DlgTextTypePass : "Kata Laluan", // Hidden Field Dialog DlgHiddenName : "Nama", DlgHiddenValue : "Nilai", // Bulleted List Dialog BulletedListProp : "Ciri-ciri senarai berpeluru", NumberedListProp : "Ciri-ciri senarai bernombor", DlgLstStart : "Start", //MISSING DlgLstType : "Jenis", DlgLstTypeCircle : "Circle", DlgLstTypeDisc : "Disc", //MISSING DlgLstTypeSquare : "Square", DlgLstTypeNumbers : "Nombor-nombor (1, 2, 3)", DlgLstTypeLCase : "Huruf-huruf kecil (a, b, c)", DlgLstTypeUCase : "Huruf-huruf besar (A, B, C)", DlgLstTypeSRoman : "Nombor Roman Kecil (i, ii, iii)", DlgLstTypeLRoman : "Nombor Roman Besar (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Umum", DlgDocBackTab : "Latarbelakang", DlgDocColorsTab : "Warna dan margin", DlgDocMetaTab : "Data Meta", DlgDocPageTitle : "Tajuk Muka Surat", DlgDocLangDir : "Arah Tulisan", DlgDocLangDirLTR : "Kiri ke Kanan (LTR)", DlgDocLangDirRTL : "Kanan ke Kiri (RTL)", DlgDocLangCode : "Kod Bahasa", DlgDocCharSet : "Enkod Set Huruf", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Enkod Set Huruf yang Lain", DlgDocDocType : "Jenis Kepala Dokumen", DlgDocDocTypeOther : "Jenis Kepala Dokumen yang Lain", DlgDocIncXHTML : "Masukkan pemula kod XHTML", DlgDocBgColor : "Warna Latarbelakang", DlgDocBgImage : "URL Gambar Latarbelakang", DlgDocBgNoScroll : "Imej Latarbelakang tanpa Skrol", DlgDocCText : "Teks", DlgDocCLink : "Sambungan", DlgDocCVisited : "Sambungan telah Dilawati", DlgDocCActive : "Sambungan Aktif", DlgDocMargins : "Margin Muka Surat", DlgDocMaTop : "Atas", DlgDocMaLeft : "Kiri", DlgDocMaRight : "Kanan", DlgDocMaBottom : "Bawah", DlgDocMeIndex : "Kata Kunci Indeks Dokumen (dipisahkan oleh koma)", DlgDocMeDescr : "Keterangan Dokumen", DlgDocMeAuthor : "Penulis", DlgDocMeCopy : "Hakcipta", DlgDocPreview : "Prebiu", // Templates Dialog Templates : "Templat", DlgTemplatesTitle : "Templat Kandungan", DlgTemplatesSelMsg : "Sila pilih templat untuk dibuka oleh editor
(kandungan sebenar akan hilang):", DlgTemplatesLoading : "Senarai Templat sedang diproses. Sila Tunggu...", DlgTemplatesNoTpl : "(Tiada Templat Disimpan)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Tentang", DlgAboutBrowserInfoTab : "Maklumat Perisian Browser", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "versi", DlgAboutInfo : "Untuk maklumat lanjut sila pergi ke" };FCKeditor/editor/lang/es.js0000644000102600010270000004410411234071600015022 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Spanish language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Contraer Barra", ToolbarExpand : "Expandir Barra", // Toolbar Items and Context Menu Save : "Guardar", NewPage : "Nueva Página", Preview : "Vista Previa", Cut : "Cortar", Copy : "Copiar", Paste : "Pegar", PasteText : "Pegar como texto plano", PasteWord : "Pegar desde Word", Print : "Imprimir", SelectAll : "Seleccionar Todo", RemoveFormat : "Eliminar Formato", InsertLinkLbl : "Vínculo", InsertLink : "Insertar/Editar Vínculo", RemoveLink : "Eliminar Vínculo", Anchor : "Referencia", InsertImageLbl : "Imagen", InsertImage : "Insertar/Editar Imagen", InsertFlashLbl : "Flash", InsertFlash : "Insertar/Editar Flash", InsertTableLbl : "Tabla", InsertTable : "Insertar/Editar Tabla", InsertLineLbl : "Línea", InsertLine : "Insertar Línea Horizontal", InsertSpecialCharLbl: "Caracter Especial", InsertSpecialChar : "Insertar Caracter Especial", InsertSmileyLbl : "Emoticons", InsertSmiley : "Insertar Emoticons", About : "Acerca de FCKeditor", Bold : "Negrita", Italic : "Cursiva", Underline : "Subrayado", StrikeThrough : "Tachado", Subscript : "Subíndice", Superscript : "Superíndice", LeftJustify : "Alinear a Izquierda", CenterJustify : "Centrar", RightJustify : "Alinear a Derecha", BlockJustify : "Justificado", DecreaseIndent : "Disminuir Sangría", IncreaseIndent : "Aumentar Sangría", Undo : "Deshacer", Redo : "Rehacer", NumberedListLbl : "Numeración", NumberedList : "Insertar/Eliminar Numeración", BulletedListLbl : "Viñetas", BulletedList : "Insertar/Eliminar Viñetas", ShowTableBorders : "Mostrar Bordes de Tablas", ShowDetails : "Mostrar saltos de Párrafo", Style : "Estilo", FontFormat : "Formato", Font : "Fuente", FontSize : "Tamaño", TextColor : "Color de Texto", BGColor : "Color de Fondo", Source : "Fuente HTML", Find : "Buscar", Replace : "Reemplazar", SpellCheck : "Ortografía", UniversalKeyboard : "Teclado Universal", PageBreakLbl : "Salto de Página", PageBreak : "Insertar Salto de Página", Form : "Formulario", Checkbox : "Casilla de Verificación", RadioButton : "Botones de Radio", TextField : "Campo de Texto", Textarea : "Area de Texto", HiddenField : "Campo Oculto", Button : "Botón", SelectionField : "Campo de Selección", ImageButton : "Botón Imagen", FitWindow : "Maximizar el tamaño del editor", // Context Menu EditLink : "Editar Vínculo", CellCM : "Celda", RowCM : "Fila", ColumnCM : "Columna", InsertRow : "Insertar Fila", DeleteRows : "Eliminar Filas", InsertColumn : "Insertar Columna", DeleteColumns : "Eliminar Columnas", InsertCell : "Insertar Celda", DeleteCells : "Eliminar Celdas", MergeCells : "Combinar Celdas", SplitCell : "Dividir Celda", TableDelete : "Eliminar Tabla", 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", CheckboxProp : "Propiedades de Casilla", HiddenFieldProp : "Propiedades de Campo Oculto", RadioButtonProp : "Propiedades de Botón de Radio", ImageButtonProp : "Propiedades de Botón de Imagen", TextFieldProp : "Propiedades de Campo de Texto", SelectionFieldProp : "Propiedades de Campo de Selección", TextareaProp : "Propiedades de Area de Texto", FormProp : "Propiedades de Formulario", FontFormats : "Normal;Con formato;Dirección;Encabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Procesando XHTML. Por favor, espere...", Done : "Hecho", PasteWordConfirm : "El texto que desea parece provenir de Word. Desea depurarlo antes de pegarlo?", NotCompatiblePaste : "Este comando está disponible sólo para Internet Explorer version 5.5 or superior. Desea pegar sin depurar?", UnknownToolbarItem : "Item de barra desconocido \"%1\"", UnknownCommand : "Nombre de comando desconocido \"%1\"", NotImplemented : "Comando no implementado", UnknownToolbarSet : "Nombre de barra \"%1\" no definido", NoActiveX : "La configuración de las opciones de seguridad de su navegador puede estar limitando algunas características del editor. Por favor active la opción \"Ejecutar controles y complementos de ActiveX \", de lo contrario puede experimentar errores o ausencia de funcionalidades.", BrowseServerBlocked : "La ventana de visualización del servidor no pudo ser abierta. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", DialogBlocked : "No se ha podido abrir la ventana de diálogo. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Cancelar", DlgBtnClose : "Cerrar", DlgBtnBrowseServer : "Ver Servidor", DlgAdvancedTag : "Avanzado", DlgOpOther : "", DlgInfoTab : "Información", DlgAlertUrl : "Inserte el URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Orientación de idioma", DlgGenLangDirLtr : "Izquierda a Derecha (LTR)", DlgGenLangDirRtl : "Derecha a Izquierda (RTL)", DlgGenLangCode : "Código de idioma", DlgGenAccessKey : "Clave de Acceso", DlgGenName : "Nombre", DlgGenTabIndex : "Indice de tabulación", DlgGenLongDescr : "Descripción larga URL", DlgGenClass : "Clases de hojas de estilo", DlgGenTitle : "Título", DlgGenContType : "Tipo de Contenido", DlgGenLinkCharset : "Fuente de caracteres vinculado", DlgGenStyle : "Estilo", // Image Dialog DlgImgTitle : "Propiedades de Imagen", DlgImgInfoTab : "Información de Imagen", DlgImgBtnUpload : "Enviar al Servidor", DlgImgURL : "URL", DlgImgUpload : "Cargar", DlgImgAlt : "Texto Alternativo", DlgImgWidth : "Anchura", DlgImgHeight : "Altura", DlgImgLockRatio : "Proporcional", DlgBtnResetSize : "Tamaño Original", DlgImgBorder : "Borde", DlgImgHSpace : "Esp.Horiz", DlgImgVSpace : "Esp.Vert", DlgImgAlign : "Alineación", DlgImgAlignLeft : "Izquierda", DlgImgAlignAbsBottom: "Abs inferior", DlgImgAlignAbsMiddle: "Abs centro", DlgImgAlignBaseline : "Línea de base", DlgImgAlignBottom : "Pie", DlgImgAlignMiddle : "Centro", DlgImgAlignRight : "Derecha", DlgImgAlignTextTop : "Tope del texto", DlgImgAlignTop : "Tope", DlgImgPreview : "Vista Previa", 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", DlgLnkTargetTab : "Destino", DlgLnkType : "Tipo de vínculo", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Referencia en esta página", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocolo", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Seleccionar una referencia", DlgLnkAnchorByName : "Por Nombre de Referencia", DlgLnkAnchorById : "Por ID de elemento", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Dirección de E-Mail", DlgLnkEMailSubject : "Título del Mensaje", DlgLnkEMailBody : "Cuerpo del Mensaje", DlgLnkUpload : "Cargar", DlgLnkBtnUpload : "Enviar al Servidor", DlgLnkTarget : "Destino", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Nueva Ventana(_blank)", DlgLnkTargetParent : "Ventana Padre (_parent)", DlgLnkTargetSelf : "Misma Ventana (_self)", DlgLnkTargetTop : "Ventana primaria (_top)", DlgLnkTargetFrameName : "Nombre del Marco Destino", DlgLnkPopWinName : "Nombre de Ventana Emergente", DlgLnkPopWinFeat : "Características de Ventana Emergente", DlgLnkPopResize : "Ajustable", DlgLnkPopLocation : "Barra de ubicación", DlgLnkPopMenu : "Barra de Menú", DlgLnkPopScroll : "Barras de desplazamiento", DlgLnkPopStatus : "Barra de Estado", DlgLnkPopToolbar : "Barra de Herramientas", DlgLnkPopFullScrn : "Pantalla Completa (IE)", DlgLnkPopDependent : "Dependiente (Netscape)", DlgLnkPopWidth : "Anchura", DlgLnkPopHeight : "Altura", DlgLnkPopLeft : "Posición Izquierda", DlgLnkPopTop : "Posición Derecha", DlnLnkMsgNoUrl : "Por favor tipee el vínculo URL", DlnLnkMsgNoEMail : "Por favor tipee la dirección de e-mail", DlnLnkMsgNoAnchor : "Por favor seleccione una referencia", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Seleccionar Color", DlgColorBtnClear : "Ninguno", DlgColorHighlight : "Resaltado", DlgColorSelected : "Seleccionado", // Smiley Dialog DlgSmileyTitle : "Insertar un Emoticon", // Special Character Dialog DlgSpecialCharTitle : "Seleccione un caracter especial", // Table Dialog DlgTableTitle : "Propiedades de Tabla", DlgTableRows : "Filas", DlgTableColumns : "Columnas", DlgTableBorder : "Tamaño de Borde", DlgTableAlign : "Alineación", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Izquierda", DlgTableAlignCenter : "Centrado", DlgTableAlignRight : "Derecha", DlgTableWidth : "Anchura", DlgTableWidthPx : "pixeles", DlgTableWidthPc : "porcentaje", DlgTableHeight : "Altura", DlgTableCellSpace : "Esp. e/celdas", DlgTableCellPad : "Esp. interior", DlgTableCaption : "Título", DlgTableSummary : "Síntesis", // Table Cell Dialog DlgCellTitle : "Propiedades de Celda", DlgCellWidth : "Anchura", DlgCellWidthPx : "pixeles", DlgCellWidthPc : "porcentaje", DlgCellHeight : "Altura", DlgCellWordWrap : "Cortar Línea", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Si", DlgCellWordWrapNo : "No", DlgCellHorAlign : "Alineación Horizontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Izquierda", DlgCellHorAlignCenter : "Centrado", DlgCellHorAlignRight: "Derecha", DlgCellVerAlign : "Alineación Vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Tope", DlgCellVerAlignMiddle : "Medio", DlgCellVerAlignBottom : "ie", DlgCellVerAlignBaseline : "Línea de Base", DlgCellRowSpan : "Abarcar Filas", DlgCellCollSpan : "Abarcar Columnas", DlgCellBackColor : "Color de Fondo", DlgCellBorderColor : "Color de Borde", DlgCellBtnSelect : "Seleccione...", // Find Dialog DlgFindTitle : "Buscar", DlgFindFindBtn : "Buscar", DlgFindNotFoundMsg : "El texto especificado no ha sido encontrado.", // Replace Dialog DlgReplaceTitle : "Reemplazar", DlgReplaceFindLbl : "Texto a buscar:", DlgReplaceReplaceLbl : "Reemplazar con:", DlgReplaceCaseChk : "Coincidir may/min", DlgReplaceReplaceBtn : "Reemplazar", DlgReplaceReplAllBtn : "Reemplazar Todo", DlgReplaceWordChk : "Coincidir toda la palabra", // Paste Operations / Dialog PasteErrorCut : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado. Por favor use el teclado (Ctrl+X).", PasteErrorCopy : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado. Por favor use el teclado (Ctrl+C).", PasteAsText : "Pegar como Texto Plano", PasteFromWord : "Pegar desde Word", DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (Ctrl+V); luego presione OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignorar definiciones de fuentes", DlgPasteRemoveStyles : "Remover definiciones de estilo", DlgPasteCleanBox : "Borrar el contenido del cuadro", // Color Picker ColorAutomatic : "Automático", ColorMoreColors : "Más Colores...", // Document Properties DocProps : "Propiedades del Documento", // Anchor Dialog DlgAnchorTitle : "Propiedades de la Referencia", DlgAnchorName : "Nombre de la Referencia", DlgAnchorErrorName : "Por favor, complete el nombre de la Referencia", // Speller Pages Dialog DlgSpellNotInDic : "No se encuentra en el Diccionario", DlgSpellChangeTo : "Cambiar a", DlgSpellBtnIgnore : "Ignorar", DlgSpellBtnIgnoreAll : "Ignorar Todo", DlgSpellBtnReplace : "Reemplazar", DlgSpellBtnReplaceAll : "Reemplazar Todo", DlgSpellBtnUndo : "Deshacer", DlgSpellNoSuggestions : "- No hay sugerencias -", DlgSpellProgress : "Control de Ortografía en progreso...", DlgSpellNoMispell : "Control finalizado: no se encontraron errores", DlgSpellNoChanges : "Control finalizado: no se ha cambiado ninguna palabra", DlgSpellOneChange : "Control finalizado: se ha cambiado una palabra", DlgSpellManyChanges : "Control finalizado: se ha cambiado %1 palabras", IeSpellDownload : "Módulo de Control de Ortografía no instalado. ¿Desea descargarlo ahora?", // Button Dialog DlgButtonText : "Texto (Valor)", DlgButtonType : "Tipo", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nombre", DlgCheckboxValue : "Valor", DlgCheckboxSelected : "Seleccionado", // Form Dialog DlgFormName : "Nombre", DlgFormAction : "Acción", DlgFormMethod : "Método", // Select Field Dialog DlgSelectName : "Nombre", DlgSelectValue : "Valor", DlgSelectSize : "Tamaño", DlgSelectLines : "Lineas", DlgSelectChkMulti : "Permitir múltiple selección", DlgSelectOpAvail : "Opciones disponibles", DlgSelectOpText : "Texto", DlgSelectOpValue : "Valor", DlgSelectBtnAdd : "Agregar", DlgSelectBtnModify : "Modificar", DlgSelectBtnUp : "Subir", DlgSelectBtnDown : "Bajar", DlgSelectBtnSetValue : "Establecer como predeterminado", DlgSelectBtnDelete : "Eliminar", // Textarea Dialog DlgTextareaName : "Nombre", DlgTextareaCols : "Columnas", DlgTextareaRows : "Filas", // Text Field Dialog DlgTextName : "Nombre", DlgTextValue : "Valor", DlgTextCharWidth : "Caracteres de ancho", DlgTextMaxChars : "Máximo caracteres", DlgTextType : "Tipo", DlgTextTypeText : "Texto", DlgTextTypePass : "Contraseña", // Hidden Field Dialog DlgHiddenName : "Nombre", DlgHiddenValue : "Valor", // Bulleted List Dialog BulletedListProp : "Propiedades de Viñetas", NumberedListProp : "Propiedades de Numeraciones", DlgLstStart : "Start", //MISSING DlgLstType : "Tipo", DlgLstTypeCircle : "Círculo", DlgLstTypeDisc : "Disco", DlgLstTypeSquare : "Cuadrado", DlgLstTypeNumbers : "Números (1, 2, 3)", DlgLstTypeLCase : "letras en minúsculas (a, b, c)", DlgLstTypeUCase : "letras en mayúsculas (A, B, C)", DlgLstTypeSRoman : "Números Romanos (i, ii, iii)", DlgLstTypeLRoman : "Números Romanos (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "General", DlgDocBackTab : "Fondo", DlgDocColorsTab : "Colores y Márgenes", DlgDocMetaTab : "Meta Información", DlgDocPageTitle : "Título de Página", DlgDocLangDir : "Orientación de idioma", DlgDocLangDirLTR : "Izq. a Derecha (LTR)", DlgDocLangDirRTL : "Der. a Izquierda (RTL)", DlgDocLangCode : "Código de Idioma", DlgDocCharSet : "Codif. de Conjunto de Caracteres", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Otra Codificación", DlgDocDocType : "Encabezado de Tipo de Documento", DlgDocDocTypeOther : "Otro Encabezado", DlgDocIncXHTML : "Incluir Declaraciones XHTML", DlgDocBgColor : "Color de Fondo", DlgDocBgImage : "URL de Imagen de Fondo", DlgDocBgNoScroll : "Fondo sin rolido", DlgDocCText : "Texto", DlgDocCLink : "Vínculo", DlgDocCVisited : "Vínculo Visitado", DlgDocCActive : "Vínculo Activo", DlgDocMargins : "Márgenes de Página", DlgDocMaTop : "Tope", DlgDocMaLeft : "Izquierda", DlgDocMaRight : "Derecha", DlgDocMaBottom : "Pie", DlgDocMeIndex : "Claves de indexación del Documento (separados por comas)", DlgDocMeDescr : "Descripción del Documento", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Copyright", DlgDocPreview : "Vista Previa", // Templates Dialog Templates : "Plantillas", DlgTemplatesTitle : "Contenido de Plantillas", DlgTemplatesSelMsg : "Por favor selecciona la plantilla a abrir en el editor
(el contenido actual se perderá):", DlgTemplatesLoading : "Cargando lista de Plantillas. Por favor, aguarde...", DlgTemplatesNoTpl : "(No hay plantillas definidas)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Acerca de", DlgAboutBrowserInfoTab : "Información de Navegador", DlgAboutLicenseTab : "Licencia", DlgAboutVersion : "versión", DlgAboutInfo : "Para mayor información por favor dirigirse a" };FCKeditor/editor/lang/hr.js0000644000102600010270000004200111234071614015023 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Croatian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Smanji trake s alatima", ToolbarExpand : "Proširi trake s alatima", // Toolbar Items and Context Menu Save : "Snimi", NewPage : "Nova stranica", Preview : "Pregledaj", Cut : "Izreži", Copy : "Kopiraj", Paste : "Zalijepi", PasteText : "Zalijepi kao čisti tekst", PasteWord : "Zalijepi iz Worda", Print : "Ispiši", SelectAll : "Odaberi sve", RemoveFormat : "Ukloni formatiranje", InsertLinkLbl : "Link", InsertLink : "Ubaci/promijeni link", RemoveLink : "Ukloni link", Anchor : "Ubaci/promijeni sidro", InsertImageLbl : "Slika", InsertImage : "Ubaci/promijeni sliku", InsertFlashLbl : "Flash", InsertFlash : "Ubaci/promijeni Flash", InsertTableLbl : "Tablica", InsertTable : "Ubaci/promijeni tablicu", InsertLineLbl : "Linija", InsertLine : "Ubaci vodoravnu liniju", InsertSpecialCharLbl: "Posebni karakteri", InsertSpecialChar : "Ubaci posebne znakove", InsertSmileyLbl : "Smješko", InsertSmiley : "Ubaci smješka", About : "O FCKeditoru", Bold : "Podebljaj", Italic : "Ukosi", Underline : "Potcrtano", StrikeThrough : "Precrtano", Subscript : "Subscript", Superscript : "Superscript", LeftJustify : "Lijevo poravnanje", CenterJustify : "Središnje poravnanje", RightJustify : "Desno poravnanje", BlockJustify : "Blok poravnanje", DecreaseIndent : "Pomakni ulijevo", IncreaseIndent : "Pomakni udesno", Undo : "Poništi", Redo : "Ponovi", NumberedListLbl : "Brojčana lista", NumberedList : "Ubaci/ukloni brojčanu listu", BulletedListLbl : "Obična lista", BulletedList : "Ubaci/ukloni običnu listu", ShowTableBorders : "Prikaži okvir tablice", ShowDetails : "Prikaži detalje", Style : "Stil", FontFormat : "Format", Font : "Font", FontSize : "Veličina", TextColor : "Boja teksta", BGColor : "Boja pozadine", Source : "Kôd", Find : "Pronađi", Replace : "Zamijeni", SpellCheck : "Provjeri pravopis", UniversalKeyboard : "Univerzalna tipkovnica", PageBreakLbl : "Prijelom stranice", PageBreak : "Ubaci prijelom stranice", Form : "Form", Checkbox : "Checkbox", RadioButton : "Radio Button", TextField : "Text Field", Textarea : "Textarea", HiddenField : "Hidden Field", Button : "Button", SelectionField : "Selection Field", ImageButton : "Image Button", FitWindow : "Povećaj veličinu editora", // Context Menu EditLink : "Promijeni link", CellCM : "Ćelija", RowCM : "Red", ColumnCM : "Kolona", InsertRow : "Ubaci red", DeleteRows : "Izbriši redove", InsertColumn : "Ubaci kolonu", DeleteColumns : "Izbriši kolone", InsertCell : "Ubaci ćelije", DeleteCells : "Izbriši ćelije", MergeCells : "Spoji ćelije", SplitCell : "Razdvoji ćelije", TableDelete : "Izbriši tablicu", CellProperties : "Svojstva ćelije", TableProperties : "Svojstva tablice", ImageProperties : "Svojstva slike", FlashProperties : "Flash svojstva", AnchorProp : "Svojstva sidra", ButtonProp : "Image Button svojstva", CheckboxProp : "Checkbox svojstva", HiddenFieldProp : "Hidden Field svojstva", RadioButtonProp : "Radio Button svojstva", ImageButtonProp : "Image Button svojstva", TextFieldProp : "Text Field svojstva", SelectionFieldProp : "Selection svojstva", TextareaProp : "Textarea svojstva", FormProp : "Form svojstva", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Obrađujem XHTML. Molimo pričekajte...", Done : "Završio", PasteWordConfirm : "Tekst koji želite zalijepiti čini se da je kopiran iz Worda. Želite li prije očistiti tekst?", NotCompatiblePaste : "Ova naredba je dostupna samo u Internet Exploreru 5.5 ili novijem. Želite li nastaviti bez čišćenja?", UnknownToolbarItem : "Nepoznati član trake s alatima \"%1\"", UnknownCommand : "Nepoznata naredba \"%1\"", NotImplemented : "Naredba nije implementirana", UnknownToolbarSet : "Traka s alatima \"%1\" ne postoji", NoActiveX : "Vaše postavke pretraživača mogle bi ograničiti neke od mogućnosti editora. Morate uključiti opciju \"Run ActiveX controls and plug-ins\" u postavkama. Ukoliko to ne učinite, moguće su razliite greške tijekom rada.", BrowseServerBlocked : "Pretraivač nije moguće otvoriti. Provjerite da li je uključeno blokiranje pop-up prozora.", DialogBlocked : "Nije moguće otvoriti novi prozor. Provjerite da li je uključeno blokiranje pop-up prozora.", // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Poništi", DlgBtnClose : "Zatvori", DlgBtnBrowseServer : "Pretraži server", DlgAdvancedTag : "Napredno", DlgOpOther : "", DlgInfoTab : "Info", DlgAlertUrl : "Molimo unesite URL", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Smjer jezika", DlgGenLangDirLtr : "S lijeva na desno (LTR)", DlgGenLangDirRtl : "S desna na lijevo (RTL)", DlgGenLangCode : "Kôd jezika", DlgGenAccessKey : "Pristupna tipka", DlgGenName : "Naziv", DlgGenTabIndex : "Tab Indeks", DlgGenLongDescr : "Dugački opis URL", DlgGenClass : "Stylesheet klase", DlgGenTitle : "Advisory naslov", DlgGenContType : "Advisory vrsta sadržaja", DlgGenLinkCharset : "Kodna stranica povezanih resursa", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Svojstva slika", DlgImgInfoTab : "Info slike", DlgImgBtnUpload : "Pošalji na server", DlgImgURL : "URL", DlgImgUpload : "Pošalji", DlgImgAlt : "Alternativni tekst", DlgImgWidth : "Širina", DlgImgHeight : "Visina", DlgImgLockRatio : "Zaključaj odnos", DlgBtnResetSize : "Obriši veličinu", DlgImgBorder : "Okvir", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Poravnaj", DlgImgAlignLeft : "Lijevo", DlgImgAlignAbsBottom: "Abs dolje", DlgImgAlignAbsMiddle: "Abs sredina", DlgImgAlignBaseline : "Bazno", DlgImgAlignBottom : "Dolje", DlgImgAlignMiddle : "Sredina", DlgImgAlignRight : "Desno", DlgImgAlignTextTop : "Vrh teksta", DlgImgAlignTop : "Vrh", DlgImgPreview : "Pregledaj", 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", DlgLnkTargetTab : "Meta", DlgLnkType : "Link vrsta", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Sidro na ovoj stranici", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Odaberi sidro", DlgLnkAnchorByName : "Po nazivu sidra", DlgLnkAnchorById : "Po Id elementa", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail adresa", DlgLnkEMailSubject : "Naslov", DlgLnkEMailBody : "Sadržaj poruke", DlgLnkUpload : "Pošalji", DlgLnkBtnUpload : "Pošalji na server", DlgLnkTarget : "Meta", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Novi prozor (_blank)", DlgLnkTargetParent : "Roditeljski prozor (_parent)", DlgLnkTargetSelf : "Isti prozor (_self)", DlgLnkTargetTop : "Vršni prozor (_top)", DlgLnkTargetFrameName : "Ime ciljnog okvira", DlgLnkPopWinName : "Naziv popup prozora", DlgLnkPopWinFeat : "Mogućnosti popup prozora", DlgLnkPopResize : "Promjenljive veličine", DlgLnkPopLocation : "Traka za lokaciju", DlgLnkPopMenu : "Izborna traka", DlgLnkPopScroll : "Scroll traka", DlgLnkPopStatus : "Statusna traka", DlgLnkPopToolbar : "Traka s alatima", DlgLnkPopFullScrn : "Cijeli ekran (IE)", DlgLnkPopDependent : "Ovisno (Netscape)", DlgLnkPopWidth : "Širina", DlgLnkPopHeight : "Visina", DlgLnkPopLeft : "Lijeva pozicija", DlgLnkPopTop : "Gornja pozicija", DlnLnkMsgNoUrl : "Molimo upišite URL link", DlnLnkMsgNoEMail : "Molimo upišite e-mail adresu", DlnLnkMsgNoAnchor : "Molimo odaberite sidro", DlnLnkMsgInvPopName : "Ime popup prozora mora početi sa slovom i ne smije sadržavati razmake", // Color Dialog DlgColorTitle : "Odaberite boju", DlgColorBtnClear : "Obriši", DlgColorHighlight : "Osvijetli", DlgColorSelected : "Odaberi", // Smiley Dialog DlgSmileyTitle : "Ubaci smješka", // Special Character Dialog DlgSpecialCharTitle : "Odaberite posebni karakter", // Table Dialog DlgTableTitle : "Svojstva tablice", DlgTableRows : "Redova", DlgTableColumns : "Kolona", DlgTableBorder : "Veličina okvira", DlgTableAlign : "Poravnanje", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Lijevo", DlgTableAlignCenter : "Središnje", DlgTableAlignRight : "Desno", DlgTableWidth : "Širina", DlgTableWidthPx : "piksela", DlgTableWidthPc : "postotaka", DlgTableHeight : "Visina", DlgTableCellSpace : "Prostornost ćelija", DlgTableCellPad : "Razmak ćelija", DlgTableCaption : "Naslov", DlgTableSummary : "Sažetak", // Table Cell Dialog DlgCellTitle : "Svojstva ćelije", DlgCellWidth : "Širina", DlgCellWidthPx : "piksela", DlgCellWidthPc : "postotaka", DlgCellHeight : "Visina", DlgCellWordWrap : "Word Wrap", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Da", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Vodoravno poravnanje", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Lijevo", DlgCellHorAlignCenter : "Središnje", DlgCellHorAlignRight: "Desno", DlgCellVerAlign : "Okomito poravnanje", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Gornje", DlgCellVerAlignMiddle : "Srednišnje", DlgCellVerAlignBottom : "Donje", DlgCellVerAlignBaseline : "Bazno", DlgCellRowSpan : "Spajanje redova", DlgCellCollSpan : "Spajanje kolona", DlgCellBackColor : "Boja pozadine", DlgCellBorderColor : "Boja okvira", DlgCellBtnSelect : "Odaberi...", // Find Dialog DlgFindTitle : "Pronađi", DlgFindFindBtn : "Pronađi", DlgFindNotFoundMsg : "Traženi tekst nije pronađen.", // Replace Dialog DlgReplaceTitle : "Zamijeni", DlgReplaceFindLbl : "Pronađi:", DlgReplaceReplaceLbl : "Zamijeni s:", DlgReplaceCaseChk : "Usporedi mala/velika slova", DlgReplaceReplaceBtn : "Zamijeni", DlgReplaceReplAllBtn : "Zamijeni sve", DlgReplaceWordChk : "Usporedi cijele riječi", // Paste Operations / Dialog PasteErrorCut : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog izrezivanja. Molimo koristite kraticu na tipkovnici (Ctrl+X).", PasteErrorCopy : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tipkovnici (Ctrl+C).", PasteAsText : "Zalijepi kao čisti tekst", PasteFromWord : "Zalijepi iz Worda", DlgPasteMsg2 : "Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (Ctrl+V) i kliknite OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Zanemari definiciju vrste fonta", DlgPasteRemoveStyles : "Ukloni definicije stilova", DlgPasteCleanBox : "Očisti okvir", // Color Picker ColorAutomatic : "Automatski", ColorMoreColors : "Više boja...", // Document Properties DocProps : "Svojstva dokumenta", // Anchor Dialog DlgAnchorTitle : "Svojstva sidra", DlgAnchorName : "Ime sidra", DlgAnchorErrorName : "Molimo unesite ime sidra", // Speller Pages Dialog DlgSpellNotInDic : "Nije u rječniku", DlgSpellChangeTo : "Promijeni u", DlgSpellBtnIgnore : "Zanemari", DlgSpellBtnIgnoreAll : "Zanemari sve", DlgSpellBtnReplace : "Zamijeni", DlgSpellBtnReplaceAll : "Zamijeni sve", DlgSpellBtnUndo : "Vrati", DlgSpellNoSuggestions : "-Nema preporuke-", DlgSpellProgress : "Provjera u tijeku...", 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: Promijenjeno %1 riječi", IeSpellDownload : "Provjera pravopisa nije instalirana. Želite li skinuti provjeru pravopisa?", // Button Dialog DlgButtonText : "Tekst (vrijednost)", DlgButtonType : "Vrsta", DlgButtonTypeBtn : "Gumb", DlgButtonTypeSbm : "Pošalji", DlgButtonTypeRst : "Poništi", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Ime", DlgCheckboxValue : "Vrijednost", DlgCheckboxSelected : "Odabrano", // Form Dialog DlgFormName : "Ime", DlgFormAction : "Akcija", DlgFormMethod : "Metoda", // Select Field Dialog DlgSelectName : "Ime", DlgSelectValue : "Vrijednost", DlgSelectSize : "Veličina", DlgSelectLines : "linija", DlgSelectChkMulti : "Dozvoli višestruki odabir", DlgSelectOpAvail : "Dostupne opcije", DlgSelectOpText : "Tekst", DlgSelectOpValue : "Vrijednost", DlgSelectBtnAdd : "Dodaj", DlgSelectBtnModify : "Promijeni", DlgSelectBtnUp : "Gore", DlgSelectBtnDown : "Dolje", DlgSelectBtnSetValue : "Postavi kao odabranu vrijednost", DlgSelectBtnDelete : "Obriši", // Textarea Dialog DlgTextareaName : "Ime", DlgTextareaCols : "Kolona", DlgTextareaRows : "Redova", // Text Field Dialog DlgTextName : "Ime", DlgTextValue : "Vrijednost", DlgTextCharWidth : "Širina", DlgTextMaxChars : "Najviše karaktera", DlgTextType : "Vrsta", DlgTextTypeText : "Tekst", DlgTextTypePass : "Šifra", // Hidden Field Dialog DlgHiddenName : "Ime", DlgHiddenValue : "Vrijednost", // Bulleted List Dialog BulletedListProp : "Svojstva liste", NumberedListProp : "Svojstva brojčane liste", DlgLstStart : "Početak", DlgLstType : "Vrsta", DlgLstTypeCircle : "Krug", DlgLstTypeDisc : "Disk", DlgLstTypeSquare : "Kvadrat", DlgLstTypeNumbers : "Brojevi (1, 2, 3)", DlgLstTypeLCase : "Mala slova (a, b, c)", DlgLstTypeUCase : "Velika slova (A, B, C)", DlgLstTypeSRoman : "Male rimske brojke (i, ii, iii)", DlgLstTypeLRoman : "Velike rimske brojke (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Općenito", DlgDocBackTab : "Pozadina", DlgDocColorsTab : "Boje i margine", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Naslov stranice", DlgDocLangDir : "Smjer jezika", DlgDocLangDirLTR : "S lijeva na desno", DlgDocLangDirRTL : "S desna na lijevo", DlgDocLangCode : "Kôd jezika", DlgDocCharSet : "Enkodiranje znakova", DlgDocCharSetCE : "Središnja Europa", DlgDocCharSetCT : "Tradicionalna kineska (Big5)", DlgDocCharSetCR : "Ćirilica", DlgDocCharSetGR : "Grčka", DlgDocCharSetJP : "Japanska", DlgDocCharSetKR : "Koreanska", DlgDocCharSetTR : "Turska", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Zapadna Europa", DlgDocCharSetOther : "Ostalo enkodiranje znakova", DlgDocDocType : "Zaglavlje vrste dokumenta", DlgDocDocTypeOther : "Ostalo zaglavlje vrste dokumenta", DlgDocIncXHTML : "Ubaci XHTML deklaracije", DlgDocBgColor : "Boja pozadine", DlgDocBgImage : "URL slike pozadine", DlgDocBgNoScroll : "Pozadine se ne pomiče", DlgDocCText : "Tekst", DlgDocCLink : "Link", DlgDocCVisited : "Posjećeni link", DlgDocCActive : "Aktivni link", DlgDocMargins : "Margine stranice", DlgDocMaTop : "Vrh", DlgDocMaLeft : "Lijevo", DlgDocMaRight : "Desno", DlgDocMaBottom : "Dolje", DlgDocMeIndex : "Ključne riječi dokumenta (odvojene zarezom)", DlgDocMeDescr : "Opis dokumenta", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Autorska prava", DlgDocPreview : "Pregledaj", // Templates Dialog Templates : "Predlošci", DlgTemplatesTitle : "Predlošci sadržaja", DlgTemplatesSelMsg : "Molimo odaberite predložak koji želite otvoriti
(stvarni sadržaj će biti izgubljen):", DlgTemplatesLoading : "Učitavam listu predložaka. Molimo pričekajte...", DlgTemplatesNoTpl : "(Nema definiranih predložaka)", DlgTemplatesReplace : "Zamijeni trenutne sadržaje", // About Dialog DlgAboutAboutTab : "O FCKEditoru", DlgAboutBrowserInfoTab : "Podaci o pretraživaču", DlgAboutLicenseTab : "Licenca", DlgAboutVersion : "inačica", DlgAboutInfo : "Za više informacija posjetite" };FCKeditor/editor/lang/bn.js0000644000102600010270000006446111234071563015032 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Bengali/Bangla language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "টূলবার গুটিয়ে দাও", ToolbarExpand : "টূলবার ছড়িয়ে দাও", // Toolbar Items and Context Menu Save : "সংরক্ষন কর", NewPage : "নতুন পেজ", Preview : "প্রিভিউ", Cut : "কাট", Copy : "কপি", Paste : "পেস্ট", PasteText : "পেস্ট (সাদা টেক্সট)", PasteWord : "পেস্ট (শব্দ)", Print : "প্রিন্ট", SelectAll : "সব সিলেক্ট কর", RemoveFormat : "ফরমেট সরাও", InsertLinkLbl : "লিংকের যুক্ত করার লেবেল", InsertLink : "লিংক যুক্ত কর", RemoveLink : "লিংক সরাও", Anchor : "নোঙ্গর", InsertImageLbl : "ছবির লেবেল যুক্ত কর", InsertImage : "ছবি যুক্ত কর", InsertFlashLbl : "ফ্লাশ লেবেল যুক্ত কর", InsertFlash : "ফ্লাশ যুক্ত কর", InsertTableLbl : "টেবিলের লেবেল যুক্ত কর", InsertTable : "টেবিল যুক্ত কর", InsertLineLbl : "রেখা যুক্ত কর", InsertLine : "রেখা যুক্ত কর", InsertSpecialCharLbl: "বিশেষ অক্ষরের লেবেল যুক্ত কর", InsertSpecialChar : "বিশেষ অক্ষর যুক্ত কর", InsertSmileyLbl : "স্মাইলী", InsertSmiley : "স্মাইলী যুক্ত কর", About : "FCKeditor কে বানিয়েছে", Bold : "বোল্ড", Italic : "ইটালিক", Underline : "আন্ডারলাইন", StrikeThrough : "স্ট্রাইক থ্রু", Subscript : "অধোলেখ", Superscript : "অভিলেখ", LeftJustify : "বা দিকে ঘেঁষা", CenterJustify : "মাঝ বরাবর ঘেষা", RightJustify : "ডান দিকে ঘেঁষা", BlockJustify : "ব্লক জাস্টিফাই", DecreaseIndent : "ইনডেন্ট কমাও", IncreaseIndent : "ইনডেন্ট বাড়াও", Undo : "আনডু", Redo : "রি-ডু", NumberedListLbl : "সাংখ্যিক লিস্টের লেবেল", NumberedList : "সাংখ্যিক লিস্ট", BulletedListLbl : "বুলেট লিস্ট লেবেল", BulletedList : "বুলেটেড লিস্ট", ShowTableBorders : "টেবিল বর্ডার", ShowDetails : "সবটুকু দেখাও", Style : "স্টাইল", FontFormat : "ফন্ট ফরমেট", Font : "ফন্ট", FontSize : "সাইজ", TextColor : "টেক্স্ট রং", BGColor : "বেকগ্রাউন্ড রং", Source : "সোর্স", Find : "খোজো", Replace : "রিপ্লেস", SpellCheck : "বানান চেক", UniversalKeyboard : "সার্বজনীন কিবোর্ড", PageBreakLbl : "পেজ ব্রেক লেবেল", PageBreak : "পেজ ব্রেক", Form : "ফর্ম", Checkbox : "চেক বাক্স", RadioButton : "রেডিও বাটন", TextField : "টেক্সট ফীল্ড", Textarea : "টেক্সট এরিয়া", HiddenField : "গুপ্ত ফীল্ড", Button : "বাটন", SelectionField : "বাছাই ফীল্ড", ImageButton : "ছবির বাটন", FitWindow : "উইন্ডো ফিট কর", // Context Menu EditLink : "লিংক সম্পাদন", CellCM : "সেল", RowCM : "রো", ColumnCM : "কলাম", InsertRow : "রো যুক্ত কর", DeleteRows : "রো মুছে দাও", InsertColumn : "কলাম যুক্ত কর", DeleteColumns : "কলাম মুছে দাও", InsertCell : "সেল যুক্ত কর", DeleteCells : "সেল মুছে দাও", MergeCells : "সেল জোড়া দাও", SplitCell : "সেল আলাদা কর", TableDelete : "টেবিল ডিলীট কর", CellProperties : "সেলের প্রোপার্টিজ", TableProperties : "টেবিল প্রোপার্টি", ImageProperties : "ছবি প্রোপার্টি", FlashProperties : "ফ্লাশ প্রোপার্টি", AnchorProp : "নোঙর প্রোপার্টি", ButtonProp : "বাটন প্রোপার্টি", CheckboxProp : "চেক বক্স প্রোপার্টি", HiddenFieldProp : "গুপ্ত ফীল্ড প্রোপার্টি", RadioButtonProp : "রেডিও বাটন প্রোপার্টি", ImageButtonProp : "ছবি বাটন প্রোপার্টি", TextFieldProp : "টেক্সট ফীল্ড প্রোপার্টি", SelectionFieldProp : "বাছাই ফীল্ড প্রোপার্টি", TextareaProp : "টেক্সট এরিয়া প্রোপার্টি", FormProp : "ফর্ম প্রোপার্টি", FontFormats : "সাধারণ;ফর্মেটেড;ঠিকানা;শীর্ষক ১;শীর্ষক ২;শীর্ষক ৩;শীর্ষক ৪;শীর্ষক ৫;শীর্ষক ৬;শীর্ষক (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML প্রসেস করা হচ্ছে", Done : "শেষ হয়েছে", PasteWordConfirm : "যে টেকস্টটি আপনি পেস্ট করতে চাচ্ছেন মনে হচ্ছে সেটি ওয়ার্ড থেকে কপি করা। আপনি কি পেস্ট করার আগে একে পরিষ্কার করতে চান?", NotCompatiblePaste : "এই কমান্ডটি শুধুমাত্র ইন্টারনেট এক্সপ্লোরার ৫.০ বা তার পরের ভার্সনে পাওয়া সম্ভব। আপনি কি পরিষ্কার না করেই পেস্ট করতে চান?", UnknownToolbarItem : "অজানা টুলবার আইটেম \"%1\"", UnknownCommand : "অজানা কমান্ড \"%1\"", NotImplemented : "কমান্ড ইমপ্লিমেন্ট করা হয়নি", UnknownToolbarSet : "টুলবার সেট \"%1\" এর অস্তিত্ব নেই", NoActiveX : "আপনার ব্রাউজারের সুরক্ষা সেটিংস কারনে এডিটরের কিছু ফিচার পাওয়া নাও যেতে পারে। আপনাকে অবশ্যই \"Run ActiveX controls and plug-ins\" এনাবেল করে নিতে হবে। আপনি ভুলভ্রান্তি কিছু কিছু ফিচারের অনুপস্থিতি উপলব্ধি করতে পারেন।", BrowseServerBlocked : "রিসোর্স ব্রাউজার খোলা গেল না। নিশ্চিত করুন যে সব পপআপ ব্লকার বন্ধ করা আছে।", DialogBlocked : "ডায়ালগ ইউন্ডো খোলা গেল না। নিশ্চিত করুন যে সব পপআপ ব্লকার বন্ধ করা আছে।", // Dialogs DlgBtnOK : "ওকে", DlgBtnCancel : "বাতিল", DlgBtnClose : "বন্ধ কর", DlgBtnBrowseServer : "ব্রাউজ সার্ভার", DlgAdvancedTag : "এডভান্সড", DlgOpOther : "<অন্য>", DlgInfoTab : "তথ্য", DlgAlertUrl : "দয়া করে URL যুক্ত করুন", // General Dialogs Labels DlgGenNotSet : "<সেট নেই>", DlgGenId : "আইডি", DlgGenLangDir : "ভাষা লেখার দিক", DlgGenLangDirLtr : "বাম থেকে ডান (LTR)", DlgGenLangDirRtl : "ডান থেকে বাম (RTL)", DlgGenLangCode : "ভাষা কোড", DlgGenAccessKey : "এক্সেস কী", DlgGenName : "নাম", DlgGenTabIndex : "ট্যাব ইন্ডেক্স", DlgGenLongDescr : "URL এর লম্বা বর্ণনা", DlgGenClass : "স্টাইল-শীট ক্লাস", DlgGenTitle : "পরামর্শ শীর্ষক", DlgGenContType : "পরামর্শ কন্টেন্টের প্রকার", DlgGenLinkCharset : "লিংক রিসোর্স ক্যারেক্টর সেট", DlgGenStyle : "স্টাইল", // Image Dialog DlgImgTitle : "ছবির প্রোপার্টি", DlgImgInfoTab : "ছবির তথ্য", DlgImgBtnUpload : "ইহাকে সার্ভারে প্রেরন কর", DlgImgURL : "URL", DlgImgUpload : "আপলোড", DlgImgAlt : "বিকল্প টেক্সট", DlgImgWidth : "প্রস্থ", DlgImgHeight : "দৈর্ঘ্য", DlgImgLockRatio : "অনুপাত লক কর", DlgBtnResetSize : "সাইজ পূর্বাবস্থায় ফিরিয়ে দাও", DlgImgBorder : "বর্ডার", DlgImgHSpace : "হরাইজন্টাল স্পেস", DlgImgVSpace : "ভার্টিকেল স্পেস", DlgImgAlign : "এলাইন", DlgImgAlignLeft : "বামে", DlgImgAlignAbsBottom: "Abs নীচে", DlgImgAlignAbsMiddle: "Abs উপর", DlgImgAlignBaseline : "মূল রেখা", DlgImgAlignBottom : "নীচে", DlgImgAlignMiddle : "মধ্য", DlgImgAlignRight : "ডানে", DlgImgAlignTextTop : "টেক্সট উপর", DlgImgAlignTop : "উপর", DlgImgPreview : "প্রীভিউ", DlgImgAlertUrl : "অনুগ্রহক করে ছবির URL টাইপ করুন", DlgImgLinkTab : "লিংক", // Flash Dialog DlgFlashTitle : "ফ্ল্যাশ প্রোপার্টি", DlgFlashChkPlay : "অটো প্লে", DlgFlashChkLoop : "লূপ", DlgFlashChkMenu : "ফ্ল্যাশ মেনু এনাবল কর", DlgFlashScale : "স্কেল", DlgFlashScaleAll : "সব দেখাও", DlgFlashScaleNoBorder : "কোনো বর্ডার নেই", DlgFlashScaleFit : "নিখুঁত ফিট", // Link Dialog DlgLnkWindowTitle : "লিংক", DlgLnkInfoTab : "লিংক তথ্য", DlgLnkTargetTab : "টার্গেট", DlgLnkType : "লিংক প্রকার", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "এই পেজে নোঙর কর", DlgLnkTypeEMail : "ইমেইল", DlgLnkProto : "প্রোটোকল", DlgLnkProtoOther : "<অন্য>", DlgLnkURL : "URL", DlgLnkAnchorSel : "নোঙর বাছাই", DlgLnkAnchorByName : "নোঙরের নাম দিয়ে", DlgLnkAnchorById : "নোঙরের আইডি দিয়ে", DlgLnkNoAnchors : "<ডকুমেন্টে আর কোন নোঙর নেই>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "ইমেইল ঠিকানা", DlgLnkEMailSubject : "মেসেজের বিষয়", DlgLnkEMailBody : "মেসেজের দেহ", DlgLnkUpload : "আপলোড", DlgLnkBtnUpload : "একে সার্ভারে পাঠাও", DlgLnkTarget : "টার্গেট", DlgLnkTargetFrame : "<ফ্রেম>", DlgLnkTargetPopup : "<পপআপ উইন্ডো>", DlgLnkTargetBlank : "নতুন উইন্ডো (_blank)", DlgLnkTargetParent : "মূল উইন্ডো (_parent)", DlgLnkTargetSelf : "এই উইন্ডো (_self)", DlgLnkTargetTop : "শীর্ষ উইন্ডো (_top)", DlgLnkTargetFrameName : "টার্গেট ফ্রেমের নাম", DlgLnkPopWinName : "পপআপ উইন্ডোর নাম", DlgLnkPopWinFeat : "পপআপ উইন্ডো ফীচার সমূহ", DlgLnkPopResize : "রিসাইজ করা সম্ভব", DlgLnkPopLocation : "লোকেশন বার", DlgLnkPopMenu : "মেন্যু বার", DlgLnkPopScroll : "স্ক্রল বার", DlgLnkPopStatus : "স্ট্যাটাস বার", DlgLnkPopToolbar : "টুল বার", DlgLnkPopFullScrn : "পূর্ণ পর্দা জুড়ে (IE)", DlgLnkPopDependent : "ডিপেন্ডেন্ট (Netscape)", DlgLnkPopWidth : "প্রস্থ", DlgLnkPopHeight : "দৈর্ঘ্য", DlgLnkPopLeft : "বামের পজিশন", DlgLnkPopTop : "ডানের পজিশন", DlnLnkMsgNoUrl : "অনুগ্রহ করে URL লিংক টাইপ করুন", DlnLnkMsgNoEMail : "অনুগ্রহ করে ইমেইল এড্রেস টাইপ করুন", DlnLnkMsgNoAnchor : "অনুগ্রহ করে নোঙর বাছাই করুন", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "রং বাছাই কর", DlgColorBtnClear : "পরিষ্কার কর", DlgColorHighlight : "হাইলাইট", DlgColorSelected : "সিলেক্টেড", // Smiley Dialog DlgSmileyTitle : "স্মাইলী যুক্ত কর", // Special Character Dialog DlgSpecialCharTitle : "বিশেষ ক্যারেক্টার বাছাই কর", // Table Dialog DlgTableTitle : "টেবিল প্রোপার্টি", DlgTableRows : "রো", DlgTableColumns : "কলাম", DlgTableBorder : "বর্ডার সাইজ", DlgTableAlign : "এলাইনমেন্ট", DlgTableAlignNotSet : "<সেট নেই>", DlgTableAlignLeft : "বামে", DlgTableAlignCenter : "মাঝখানে", DlgTableAlignRight : "ডানে", DlgTableWidth : "প্রস্থ", DlgTableWidthPx : "পিক্সেল", DlgTableWidthPc : "শতকরা", DlgTableHeight : "দৈর্ঘ্য", DlgTableCellSpace : "সেল স্পেস", DlgTableCellPad : "সেল প্যাডিং", DlgTableCaption : "শীর্ষক", DlgTableSummary : "সারাংশ", // Table Cell Dialog DlgCellTitle : "সেল প্রোপার্টি", DlgCellWidth : "প্রস্থ", DlgCellWidthPx : "পিক্সেল", DlgCellWidthPc : "শতকরা", DlgCellHeight : "দৈর্ঘ্য", DlgCellWordWrap : "ওয়ার্ড রেপ", DlgCellWordWrapNotSet : "<সেট নেই>", DlgCellWordWrapYes : "হাঁ", DlgCellWordWrapNo : "না", DlgCellHorAlign : "হরাইজন্টাল এলাইনমেন্ট", DlgCellHorAlignNotSet : "<সেট নেই>", DlgCellHorAlignLeft : "বামে", DlgCellHorAlignCenter : "মাঝখানে", DlgCellHorAlignRight: "ডানে", DlgCellVerAlign : "ভার্টিক্যাল এলাইনমেন্ট", DlgCellVerAlignNotSet : "<সেট নেই>", DlgCellVerAlignTop : "উপর", DlgCellVerAlignMiddle : "মধ্য", DlgCellVerAlignBottom : "নীচে", DlgCellVerAlignBaseline : "মূলরেখা", DlgCellRowSpan : "রো স্প্যান", DlgCellCollSpan : "কলাম স্প্যান", DlgCellBackColor : "ব্যাকগ্রাউন্ড রং", DlgCellBorderColor : "বর্ডারের রং", DlgCellBtnSelect : "বাছাই কর", // Find Dialog DlgFindTitle : "খোঁজো", DlgFindFindBtn : "খোঁজো", DlgFindNotFoundMsg : "আপনার উল্লেখিত টেকস্ট পাওয়া যায়নি", // Replace Dialog DlgReplaceTitle : "বদলে দাও", DlgReplaceFindLbl : "যা খুঁজতে হবে:", DlgReplaceReplaceLbl : "যার সাথে বদলাতে হবে:", DlgReplaceCaseChk : "কেস মিলাও", DlgReplaceReplaceBtn : "বদলে দাও", DlgReplaceReplAllBtn : "সব বদলে দাও", DlgReplaceWordChk : "পুরা শব্দ মেলাও", // Paste Operations / Dialog PasteErrorCut : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কাট করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+X)।", PasteErrorCopy : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কপি করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+C)।", PasteAsText : "সাদা টেক্সট হিসেবে পেস্ট কর", PasteFromWord : "ওয়ার্ড থেকে পেস্ট কর", DlgPasteMsg2 : "অনুগ্রহ করে নীচের বাক্সে কিবোর্ড ব্যবহার করে (Ctrl+V) পেস্ট করুন এবং OK চাপ দিন", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "ফন্ট ফেস ডেফিনেশন ইগনোর করুন", DlgPasteRemoveStyles : "স্টাইল ডেফিনেশন সরিয়ে দিন", DlgPasteCleanBox : "বাক্স পরিষ্কার করুন", // Color Picker ColorAutomatic : "অটোমেটিক", ColorMoreColors : "আরও রং...", // Document Properties DocProps : "ডক্যুমেন্ট প্রোপার্টি", // Anchor Dialog DlgAnchorTitle : "নোঙরের প্রোপার্টি", DlgAnchorName : "নোঙরের নাম", DlgAnchorErrorName : "নোঙরের নাম টাইপ করুন", // Speller Pages Dialog DlgSpellNotInDic : "শব্দকোষে নেই", DlgSpellChangeTo : "এতে বদলাও", DlgSpellBtnIgnore : "ইগনোর কর", DlgSpellBtnIgnoreAll : "সব ইগনোর কর", DlgSpellBtnReplace : "বদলে দাও", DlgSpellBtnReplaceAll : "সব বদলে দাও", DlgSpellBtnUndo : "আন্ডু", DlgSpellNoSuggestions : "- কোন সাজেশন নেই -", DlgSpellProgress : "বানান পরীক্ষা চলছে...", DlgSpellNoMispell : "বানান পরীক্ষা শেষ: কোন ভুল বানান পাওয়া যায়নি", DlgSpellNoChanges : "বানান পরীক্ষা শেষ: কোন শব্দ পরিবর্তন করা হয়নি", DlgSpellOneChange : "বানান পরীক্ষা শেষ: একটি মাত্র শব্দ পরিবর্তন করা হয়েছে", DlgSpellManyChanges : "বানান পরীক্ষা শেষ: %1 গুলো শব্দ বদলে গ্যাছে", IeSpellDownload : "বানান পরীক্ষক ইনস্টল করা নেই। আপনি কি এখনই এটা ডাউনলোড করতে চান?", // Button Dialog DlgButtonText : "টেক্সট (ভ্যালু)", DlgButtonType : "প্রকার", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "নাম", DlgCheckboxValue : "ভ্যালু", DlgCheckboxSelected : "সিলেক্টেড", // Form Dialog DlgFormName : "নাম", DlgFormAction : "একশ্যন", DlgFormMethod : "পদ্ধতি", // Select Field Dialog DlgSelectName : "নাম", DlgSelectValue : "ভ্যালু", DlgSelectSize : "সাইজ", DlgSelectLines : "লাইন সমূহ", DlgSelectChkMulti : "একাধিক সিলেকশন এলাউ কর", DlgSelectOpAvail : "অন্যান্য বিকল্প", DlgSelectOpText : "টেক্সট", DlgSelectOpValue : "ভ্যালু", DlgSelectBtnAdd : "যুক্ত", DlgSelectBtnModify : "বদলে দাও", DlgSelectBtnUp : "উপর", DlgSelectBtnDown : "নীচে", DlgSelectBtnSetValue : "বাছাই করা ভ্যালু হিসেবে সেট কর", DlgSelectBtnDelete : "ডিলীট", // Textarea Dialog DlgTextareaName : "নাম", DlgTextareaCols : "কলাম", DlgTextareaRows : "রো", // Text Field Dialog DlgTextName : "নাম", DlgTextValue : "ভ্যালু", DlgTextCharWidth : "ক্যারেক্টার প্রশস্ততা", DlgTextMaxChars : "সর্বাধিক ক্যারেক্টার", DlgTextType : "টাইপ", DlgTextTypeText : "টেক্সট", DlgTextTypePass : "পাসওয়ার্ড", // Hidden Field Dialog DlgHiddenName : "নাম", DlgHiddenValue : "ভ্যালু", // Bulleted List Dialog BulletedListProp : "বুলেটেড সূচী প্রোপার্টি", NumberedListProp : "সাংখ্যিক সূচী প্রোপার্টি", DlgLstStart : "Start", //MISSING DlgLstType : "প্রকার", DlgLstTypeCircle : "গোল", DlgLstTypeDisc : "ডিস্ক", 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 : "সাধারন", DlgDocBackTab : "ব্যাকগ্রাউন্ড", DlgDocColorsTab : "রং এবং মার্জিন", DlgDocMetaTab : "মেটাডেটা", DlgDocPageTitle : "পেজ শীর্ষক", DlgDocLangDir : "ভাষা লিখার দিক", DlgDocLangDirLTR : "বাম থেকে ডানে (LTR)", DlgDocLangDirRTL : "ডান থেকে বামে (RTL)", DlgDocLangCode : "ভাষা কোড", DlgDocCharSet : "ক্যারেক্টার সেট এনকোডিং", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "অন্য ক্যারেক্টার সেট এনকোডিং", DlgDocDocType : "ডক্যুমেন্ট টাইপ হেডিং", DlgDocDocTypeOther : "অন্য ডক্যুমেন্ট টাইপ হেডিং", DlgDocIncXHTML : "XHTML ডেক্লারেশন যুক্ত কর", DlgDocBgColor : "ব্যাকগ্রাউন্ড রং", DlgDocBgImage : "ব্যাকগ্রাউন্ড ছবির URL", DlgDocBgNoScroll : "স্ক্রলহীন ব্যাকগ্রাউন্ড", DlgDocCText : "টেক্সট", DlgDocCLink : "লিংক", DlgDocCVisited : "ভিজিট করা লিংক", DlgDocCActive : "সক্রিয় লিংক", DlgDocMargins : "পেজ মার্জিন", DlgDocMaTop : "উপর", DlgDocMaLeft : "বামে", DlgDocMaRight : "ডানে", DlgDocMaBottom : "নীচে", DlgDocMeIndex : "ডক্যুমেন্ট ইন্ডেক্স কিওয়ার্ড (কমা দ্বারা বিচ্ছিন্ন)", DlgDocMeDescr : "ডক্যূমেন্ট বর্ণনা", DlgDocMeAuthor : "লেখক", DlgDocMeCopy : "কপীরাইট", DlgDocPreview : "প্রীভিউ", // Templates Dialog Templates : "টেমপ্লেট", DlgTemplatesTitle : "কনটেন্ট টেমপ্লেট", DlgTemplatesSelMsg : "অনুগ্রহ করে এডিটরে ওপেন করার জন্য টেমপ্লেট বাছাই করুন
(আসল কনটেন্ট হারিয়ে যাবে):", DlgTemplatesLoading : "টেমপ্লেট লিস্ট হারিয়ে যাবে। অনুগ্রহ করে অপেক্ষা করুন...", DlgTemplatesNoTpl : "(কোন টেমপ্লেট ডিফাইন করা নেই)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "কে বানিয়েছে", DlgAboutBrowserInfoTab : "ব্রাউজারের ব্যাপারে তথ্য", DlgAboutLicenseTab : "লাইসেন্স", DlgAboutVersion : "ভার্সন", DlgAboutInfo : "আরও তথ্যের জন্য যান" };FCKeditor/editor/lang/sl.js0000644000102600010270000004266111234071641015044 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Slovenian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Zloži orodno vrstico", ToolbarExpand : "Razširi orodno vrstico", // Toolbar Items and Context Menu Save : "Shrani", NewPage : "Nova stran", Preview : "Predogled", Cut : "Izreži", Copy : "Kopiraj", Paste : "Prilepi", PasteText : "Prilepi kot golo besedilo", PasteWord : "Prilepi iz Worda", Print : "Natisni", SelectAll : "Izberi vse", RemoveFormat : "Odstrani oblikovanje", InsertLinkLbl : "Povezava", InsertLink : "Vstavi/uredi povezavo", RemoveLink : "Odstrani povezavo", Anchor : "Vstavi/uredi zaznamek", InsertImageLbl : "Slika", InsertImage : "Vstavi/uredi sliko", InsertFlashLbl : "Flash", InsertFlash : "Vstavi/Uredi Flash", InsertTableLbl : "Tabela", InsertTable : "Vstavi/uredi tabelo", InsertLineLbl : "Črta", InsertLine : "Vstavi vodoravno črto", InsertSpecialCharLbl: "Posebni znak", InsertSpecialChar : "Vstavi posebni znak", InsertSmileyLbl : "Smeško", InsertSmiley : "Vstavi smeška", About : "O FCKeditorju", Bold : "Krepko", Italic : "Ležeče", Underline : "Podčrtano", StrikeThrough : "Prečrtano", Subscript : "Podpisano", Superscript : "Nadpisano", LeftJustify : "Leva poravnava", CenterJustify : "Sredinska poravnava", RightJustify : "Desna poravnava", BlockJustify : "Obojestranska poravnava", DecreaseIndent : "Zmanjšaj zamik", IncreaseIndent : "Povečaj zamik", Undo : "Razveljavi", Redo : "Ponovi", NumberedListLbl : "Oštevilčen seznam", NumberedList : "Vstavi/odstrani oštevilčevanje", BulletedListLbl : "Označen seznam", BulletedList : "Vstavi/odstrani označevanje", ShowTableBorders : "Pokaži meje tabele", ShowDetails : "Pokaži podrobnosti", Style : "Slog", FontFormat : "Oblika", Font : "Pisava", FontSize : "Velikost", TextColor : "Barva besedila", BGColor : "Barva ozadja", Source : "Izvorna koda", Find : "Najdi", Replace : "Zamenjaj", SpellCheck : "Preveri črkovanje", UniversalKeyboard : "Večjezična tipkovnica", PageBreakLbl : "Prelom strani", PageBreak : "Vstavi prelom strani", Form : "Obrazec", Checkbox : "Potrditveno polje", RadioButton : "Izbirno polje", TextField : "Vnosno polje", Textarea : "Vnosno območje", HiddenField : "Skrito polje", Button : "Gumb", SelectionField : "Spustni seznam", ImageButton : "Gumb s sliko", FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Uredi povezavo", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Vstavi vrstico", DeleteRows : "Izbriši vrstice", InsertColumn : "Vstavi stolpec", DeleteColumns : "Izbriši stolpce", InsertCell : "Vstavi celico", DeleteCells : "Izbriši celice", MergeCells : "Združi celice", SplitCell : "Razdeli celico", TableDelete : "Izbriši tabelo", CellProperties : "Lastnosti celice", TableProperties : "Lastnosti tabele", ImageProperties : "Lastnosti slike", FlashProperties : "Lastnosti Flash", AnchorProp : "Lastnosti zaznamka", ButtonProp : "Lastnosti gumba", CheckboxProp : "Lastnosti potrditvenega polja", HiddenFieldProp : "Lastnosti skritega polja", RadioButtonProp : "Lastnosti izbirnega polja", ImageButtonProp : "Lastnosti gumba s sliko", TextFieldProp : "Lastnosti vnosnega polja", SelectionFieldProp : "Lastnosti spustnega seznama", TextareaProp : "Lastnosti vnosnega območja", FormProp : "Lastnosti obrazca", FontFormats : "Navaden;Oblikovan;Napis;Naslov 1;Naslov 2;Naslov 3;Naslov 4;Naslov 5;Naslov 6", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Obdelujem XHTML. Prosim počakajte...", Done : "Narejeno", PasteWordConfirm : "Izgleda, da želite prilepiti besedilo iz Worda. Ali ga želite očistiti, preden ga prilepite?", NotCompatiblePaste : "Ta ukaz deluje le v Internet Explorerje različice 5.5 ali višje. Ali želite prilepiti brez čiščenja?", UnknownToolbarItem : "Neznan element orodne vrstice \"%1\"", UnknownCommand : "Neznano ime ukaza \"%1\"", NotImplemented : "Ukaz ni izdelan", UnknownToolbarSet : "Skupina orodnih vrstic \"%1\" ne obstoja", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "V redu", DlgBtnCancel : "Prekliči", DlgBtnClose : "Zapri", DlgBtnBrowseServer : "Prebrskaj na strežniku", DlgAdvancedTag : "Napredno", DlgOpOther : "", DlgInfoTab : "Podatki", DlgAlertUrl : "Prosim vpiši spletni naslov", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Smer jezika", DlgGenLangDirLtr : "Od leve proti desni (LTR)", DlgGenLangDirRtl : "Od desne proti levi (RTL)", DlgGenLangCode : "Oznaka jezika", DlgGenAccessKey : "Vstopno geslo", DlgGenName : "Ime", DlgGenTabIndex : "Številka tabulatorja", DlgGenLongDescr : "Dolg opis URL-ja", DlgGenClass : "Razred stilne predloge", DlgGenTitle : "Predlagani naslov", DlgGenContType : "Predlagani tip vsebine (content-type)", DlgGenLinkCharset : "Kodna tabela povezanega vira", DlgGenStyle : "Slog", // Image Dialog DlgImgTitle : "Lastnosti slike", DlgImgInfoTab : "Podatki o sliki", DlgImgBtnUpload : "Pošlji na strežnik", DlgImgURL : "URL", DlgImgUpload : "Pošlji", DlgImgAlt : "Nadomestno besedilo", DlgImgWidth : "Širina", DlgImgHeight : "Višina", DlgImgLockRatio : "Zakleni razmerje", DlgBtnResetSize : "Ponastavi velikost", DlgImgBorder : "Obroba", DlgImgHSpace : "Vodoravni razmik", DlgImgVSpace : "Navpični razmik", DlgImgAlign : "Poravnava", DlgImgAlignLeft : "Levo", DlgImgAlignAbsBottom: "Popolnoma na dno", DlgImgAlignAbsMiddle: "Popolnoma v sredino", DlgImgAlignBaseline : "Na osnovno črto", DlgImgAlignBottom : "Na dno", DlgImgAlignMiddle : "V sredino", DlgImgAlignRight : "Desno", DlgImgAlignTextTop : "Besedilo na vrh", DlgImgAlignTop : "Na vrh", DlgImgPreview : "Predogled", DlgImgAlertUrl : "Vnesite URL slike", 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", DlgLnkTargetTab : "Cilj", DlgLnkType : "Vrsta povezave", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Zaznamek na tej strani", DlgLnkTypeEMail : "Elektronski naslov", DlgLnkProto : "Protokol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Izberi zaznamek", DlgLnkAnchorByName : "Po imenu zaznamka", DlgLnkAnchorById : "Po ID-ju elementa", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Elektronski naslov", DlgLnkEMailSubject : "Predmet sporočila", DlgLnkEMailBody : "Vsebina sporočila", DlgLnkUpload : "Prenesi", DlgLnkBtnUpload : "Pošlji na strežnik", DlgLnkTarget : "Cilj", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Novo okno (_blank)", DlgLnkTargetParent : "Starševsko okno (_parent)", DlgLnkTargetSelf : "Isto okno (_self)", DlgLnkTargetTop : "Najvišje okno (_top)", DlgLnkTargetFrameName : "Ime ciljnega okvirja", DlgLnkPopWinName : "Ime pojavnega okna", DlgLnkPopWinFeat : "Značilnosti pojavnega okna", DlgLnkPopResize : "Spremenljive velikosti", DlgLnkPopLocation : "Naslovna vrstica", DlgLnkPopMenu : "Menijska vrstica", DlgLnkPopScroll : "Drsniki", DlgLnkPopStatus : "Vrstica stanja", DlgLnkPopToolbar : "Orodna vrstica", DlgLnkPopFullScrn : "Celozaslonska slika (IE)", DlgLnkPopDependent : "Podokno (Netscape)", DlgLnkPopWidth : "Širina", DlgLnkPopHeight : "Višina", DlgLnkPopLeft : "Lega levo", DlgLnkPopTop : "Lega na vrhu", DlnLnkMsgNoUrl : "Vnesite URL povezave", DlnLnkMsgNoEMail : "Vnesite elektronski naslov", DlnLnkMsgNoAnchor : "Izberite zaznamek", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Izberite barvo", DlgColorBtnClear : "Počisti", DlgColorHighlight : "Označi", DlgColorSelected : "Izbrano", // Smiley Dialog DlgSmileyTitle : "Vstavi smeška", // Special Character Dialog DlgSpecialCharTitle : "Izberi posebni znak", // Table Dialog DlgTableTitle : "Lastnosti tabele", DlgTableRows : "Vrstice", DlgTableColumns : "Stolpci", DlgTableBorder : "Velikost obrobe", DlgTableAlign : "Poravnava", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Levo", DlgTableAlignCenter : "Sredinsko", DlgTableAlignRight : "Desno", DlgTableWidth : "Širina", DlgTableWidthPx : "pik", DlgTableWidthPc : "procentov", DlgTableHeight : "Višina", DlgTableCellSpace : "Razmik med celicami", DlgTableCellPad : "Polnilo med celicami", DlgTableCaption : "Naslov", DlgTableSummary : "Povzetek", // Table Cell Dialog DlgCellTitle : "Lastnosti celice", DlgCellWidth : "Širina", DlgCellWidthPx : "pik", DlgCellWidthPc : "procentov", DlgCellHeight : "Višina", DlgCellWordWrap : "Pomikanje besedila", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Da", DlgCellWordWrapNo : "Ne", DlgCellHorAlign : "Vodoravna poravnava", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Levo", DlgCellHorAlignCenter : "Sredinsko", DlgCellHorAlignRight: "Desno", DlgCellVerAlign : "Navpična poravnava", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Na vrh", DlgCellVerAlignMiddle : "V sredino", DlgCellVerAlignBottom : "Na dno", DlgCellVerAlignBaseline : "Na osnovno črto", DlgCellRowSpan : "Spojenih vrstic (row-span)", DlgCellCollSpan : "Spojenih stolpcev (col-span)", DlgCellBackColor : "Barva ozadja", DlgCellBorderColor : "Barva obrobe", DlgCellBtnSelect : "Izberi...", // Find Dialog DlgFindTitle : "Najdi", DlgFindFindBtn : "Najdi", DlgFindNotFoundMsg : "Navedeno besedilo ni bilo najdeno.", // Replace Dialog DlgReplaceTitle : "Zamenjaj", DlgReplaceFindLbl : "Najdi:", DlgReplaceReplaceLbl : "Zamenjaj z:", DlgReplaceCaseChk : "Razlikuj velike in male črke", DlgReplaceReplaceBtn : "Zamenjaj", DlgReplaceReplAllBtn : "Zamenjaj vse", DlgReplaceWordChk : "Samo cele besede", // Paste Operations / Dialog PasteErrorCut : "Varnostne nastavitve brskalnika ne dopuščajo samodejnega izrezovanja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+X).", PasteErrorCopy : "Varnostne nastavitve brskalnika ne dopuščajo samodejnega kopiranja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+C).", PasteAsText : "Prilepi kot golo besedilo", PasteFromWord : "Prilepi iz Worda", DlgPasteMsg2 : "Prosim prilepite v sleči okvir s pomočjo tipkovnice (Ctrl+V) in pritisnite V redu.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Prezri obliko pisave", DlgPasteRemoveStyles : "Odstrani nastavitve stila", DlgPasteCleanBox : "Počisti okvir", // Color Picker ColorAutomatic : "Samodejno", ColorMoreColors : "Več barv...", // Document Properties DocProps : "Lastnosti dokumenta", // Anchor Dialog DlgAnchorTitle : "Lastnosti zaznamka", DlgAnchorName : "Ime zaznamka", DlgAnchorErrorName : "Prosim vnesite ime zaznamka", // Speller Pages Dialog DlgSpellNotInDic : "Ni v slovarju", DlgSpellChangeTo : "Spremeni v", DlgSpellBtnIgnore : "Prezri", DlgSpellBtnIgnoreAll : "Prezri vse", DlgSpellBtnReplace : "Zamenjaj", DlgSpellBtnReplaceAll : "Zamenjaj vse", DlgSpellBtnUndo : "Razveljavi", DlgSpellNoSuggestions : "- Ni predlogov -", DlgSpellProgress : "Preverjanje črkovanja se izvaja...", DlgSpellNoMispell : "Črkovanje je končano: Brez napak", DlgSpellNoChanges : "Črkovanje je končano: Nobena beseda ni bila spremenjena", DlgSpellOneChange : "Črkovanje je končano: Spremenjena je bila ena beseda", DlgSpellManyChanges : "Črkovanje je končano: Spremenjenih je bilo %1 besed", IeSpellDownload : "Črkovalnik ni nameščen. Ali ga želite prenesti sedaj?", // Button Dialog DlgButtonText : "Besedilo (Vrednost)", DlgButtonType : "Tip", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Ime", DlgCheckboxValue : "Vrednost", DlgCheckboxSelected : "Izbrano", // Form Dialog DlgFormName : "Ime", DlgFormAction : "Akcija", DlgFormMethod : "Metoda", // Select Field Dialog DlgSelectName : "Ime", DlgSelectValue : "Vrednost", DlgSelectSize : "Velikost", DlgSelectLines : "vrstic", DlgSelectChkMulti : "Dovoli izbor večih vrstic", DlgSelectOpAvail : "Razpoložljive izbire", DlgSelectOpText : "Besedilo", DlgSelectOpValue : "Vrednost", DlgSelectBtnAdd : "Dodaj", DlgSelectBtnModify : "Spremeni", DlgSelectBtnUp : "Gor", DlgSelectBtnDown : "Dol", DlgSelectBtnSetValue : "Postavi kot privzeto izbiro", DlgSelectBtnDelete : "Izbriši", // Textarea Dialog DlgTextareaName : "Ime", DlgTextareaCols : "Stolpcev", DlgTextareaRows : "Vrstic", // Text Field Dialog DlgTextName : "Ime", DlgTextValue : "Vrednost", DlgTextCharWidth : "Dolžina", DlgTextMaxChars : "Največje število znakov", DlgTextType : "Tip", DlgTextTypeText : "Besedilo", DlgTextTypePass : "Geslo", // Hidden Field Dialog DlgHiddenName : "Ime", DlgHiddenValue : "Vrednost", // Bulleted List Dialog BulletedListProp : "Lastnosti označenega seznama", NumberedListProp : "Lastnosti oštevilčenega seznama", DlgLstStart : "Start", //MISSING DlgLstType : "Tip", DlgLstTypeCircle : "Pikica", DlgLstTypeDisc : "Kroglica", DlgLstTypeSquare : "Kvadratek", DlgLstTypeNumbers : "Številke (1, 2, 3)", DlgLstTypeLCase : "Male črke (a, b, c)", DlgLstTypeUCase : "Velike črke (A, B, C)", DlgLstTypeSRoman : "Male rimske številke (i, ii, iii)", DlgLstTypeLRoman : "Velike rimske številke (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Splošno", DlgDocBackTab : "Ozadje", DlgDocColorsTab : "Barve in zamiki", DlgDocMetaTab : "Meta podatki", DlgDocPageTitle : "Naslov strani", DlgDocLangDir : "Smer jezika", DlgDocLangDirLTR : "Od leve proti desni (LTR)", DlgDocLangDirRTL : "Od desne proti levi (RTL)", DlgDocLangCode : "Oznaka jezika", DlgDocCharSet : "Kodna tabela", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Druga kodna tabela", DlgDocDocType : "Glava tipa dokumenta", DlgDocDocTypeOther : "Druga glava tipa dokumenta", DlgDocIncXHTML : "Vstavi XHTML deklaracije", DlgDocBgColor : "Barva ozadja", DlgDocBgImage : "URL slike za ozadje", DlgDocBgNoScroll : "Nepremično ozadje", DlgDocCText : "Besedilo", DlgDocCLink : "Povezava", DlgDocCVisited : "Obiskana povezava", DlgDocCActive : "Aktivna povezava", DlgDocMargins : "Zamiki strani", DlgDocMaTop : "Na vrhu", DlgDocMaLeft : "Levo", DlgDocMaRight : "Desno", DlgDocMaBottom : "Spodaj", DlgDocMeIndex : "Ključne besede (ločene z vejicami)", DlgDocMeDescr : "Opis strani", DlgDocMeAuthor : "Avtor", DlgDocMeCopy : "Avtorske pravice", DlgDocPreview : "Predogled", // Templates Dialog 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)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Vizitka", DlgAboutBrowserInfoTab : "Informacije o brskalniku", DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "različica", DlgAboutInfo : "Za več informacij obiščite" };FCKeditor/editor/lang/mn.js0000644000102600010270000005223111234071625015034 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Mongolian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Багажны хэсэг эвдэх", ToolbarExpand : "Багажны хэсэг өргөтгөх", // Toolbar Items and Context Menu Save : "Хадгалах", NewPage : "Шинэ хуудас", Preview : "Уридчлан харах", Cut : "Хайчлах", Copy : "Хуулах", Paste : "Буулгах", PasteText : "plain text-ээс буулгах", PasteWord : "Word-оос буулгах", Print : "Хэвлэх", SelectAll : "Бүгдийг нь сонгох", RemoveFormat : "Формат авч хаях", InsertLinkLbl : "Линк", InsertLink : "Линк Оруулах/Засварлах", RemoveLink : "Линк авч хаях", Anchor : "Insert/Edit Anchor", //MISSING InsertImageLbl : "Зураг", InsertImage : "Зураг Оруулах/Засварлах", InsertFlashLbl : "Flash", //MISSING InsertFlash : "Insert/Edit Flash", //MISSING InsertTableLbl : "Хүснэгт", InsertTable : "Хүснэгт Оруулах/Засварлах", InsertLineLbl : "Зураас", InsertLine : "Хөндлөн зураас оруулах", InsertSpecialCharLbl: "Онцгой тэмдэгт", InsertSpecialChar : "Онцгой тэмдэгт оруулах", InsertSmileyLbl : "Тодорхойлолт", InsertSmiley : "Тодорхойлолт оруулах", About : "FCKeditor-н тухай", Bold : "Тод бүдүүн", Italic : "Налуу", Underline : "Доогуур нь зураастай болгох", StrikeThrough : "Дундуур нь зураастай болгох", Subscript : "Суурь болгох", Superscript : "Зэрэг болгох", LeftJustify : "Зүүн талд байрлуулах", CenterJustify : "Төвд байрлуулах", RightJustify : "Баруун талд байрлуулах", BlockJustify : "Блок хэлбэрээр байрлуулах", DecreaseIndent : "Догол мөр нэмэх", IncreaseIndent : "Догол мөр хасах", Undo : "Хүчингүй болгох", Redo : "Өмнөх үйлдлээ сэргээх", NumberedListLbl : "Дугаарлагдсан жагсаалт", NumberedList : "Дугаарлагдсан жагсаалт Оруулах/Авах", BulletedListLbl : "Цэгтэй жагсаалт", BulletedList : "Цэгтэй жагсаалт Оруулах/Авах", ShowTableBorders : "Хүснэгтийн хүрээг үзүүлэх", ShowDetails : "Деталчлан үзүүлэх", Style : "Загвар", FontFormat : "Формат", Font : "Фонт", FontSize : "Хэмжээ", TextColor : "Фонтны өнгө", BGColor : "Фонны өнгө", Source : "Код", Find : "Хайх", Replace : "Солих", SpellCheck : "Check Spelling", //MISSING UniversalKeyboard : "Universal Keyboard", //MISSING PageBreakLbl : "Page Break", //MISSING PageBreak : "Insert Page Break", //MISSING 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 FitWindow : "Maximize the editor size", //MISSING // Context Menu EditLink : "Холбоос засварлах", CellCM : "Cell", //MISSING RowCM : "Row", //MISSING ColumnCM : "Column", //MISSING InsertRow : "Мөр оруулах", DeleteRows : "Мөр устгах", InsertColumn : "Багана оруулах", DeleteColumns : "Багана устгах", InsertCell : "Нүх оруулах", DeleteCells : "Нүх устгах", MergeCells : "Нүх нэгтэх", SplitCell : "Нүх тусгайрлах", TableDelete : "Delete Table", //MISSING CellProperties : "Хоосон зайн шинж чанар", TableProperties : "Хүснэгт", ImageProperties : "Зураг", FlashProperties : "Flash Properties", //MISSING 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 FontFormats : "Хэвийн;Formatted;Хаяг;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML үйл явц явагдаж байна. Хүлээнэ үү...", Done : "Хийх", PasteWordConfirm : "Word-оос хуулсан текстээ санаж байгааг нь буулгахыг та хүсч байна уу. Та текст-ээ буулгахын өмнө цэвэрлэх үү?", NotCompatiblePaste : "Энэ комманд Internet Explorer-ын 5.5 буюу түүнээс дээш хувилбарт идвэхшинэ. Та цэвэрлэхгүйгээр буулгахыг хүсч байна?", UnknownToolbarItem : "Багажны хэсгийн \"%1\" item мэдэгдэхгүй байна", UnknownCommand : "\"%1\" комманд нэр мэдагдэхгүй байна", NotImplemented : "Зөвшөөрөгдөхгүй комманд", UnknownToolbarSet : "Багажны хэсэгт \"%1\" оноох, үүсээгүй байна", NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING // Dialogs DlgBtnOK : "OK", DlgBtnCancel : "Болих", DlgBtnClose : "Хаах", DlgBtnBrowseServer : "Browse Server", //MISSING DlgAdvancedTag : "Нэмэлт", DlgOpOther : "", //MISSING DlgInfoTab : "Info", //MISSING DlgAlertUrl : "Please insert the URL", //MISSING // General Dialogs Labels DlgGenNotSet : "<Оноохгүй>", DlgGenId : "Id", DlgGenLangDir : "Хэлний чиглэл", DlgGenLangDirLtr : "Зүүнээс баруун (LTR)", DlgGenLangDirRtl : "Баруунаас зүүн (RTL)", DlgGenLangCode : "Хэлний код", DlgGenAccessKey : "Холбох түлхүүр", DlgGenName : "Нэр", DlgGenTabIndex : "Tab индекс", DlgGenLongDescr : "URL-ын тайлбар", DlgGenClass : "Stylesheet классууд", DlgGenTitle : "Зөвлөлдөх гарчиг", DlgGenContType : "Зөвлөлдөх төрлийн агуулга", DlgGenLinkCharset : "Тэмдэгт оноох нөөцөд холбогдсон", DlgGenStyle : "Загвар", // Image Dialog DlgImgTitle : "Зураг", DlgImgInfoTab : "Зурагны мэдээлэл", DlgImgBtnUpload : "Үүнийг сервэррүү илгээ", DlgImgURL : "URL", DlgImgUpload : "Хуулах", DlgImgAlt : "Тайлбар текст", DlgImgWidth : "Өргөн", DlgImgHeight : "Өндөр", DlgImgLockRatio : "Lock Ratio", DlgBtnResetSize : "хэмжээ дахин оноох", DlgImgBorder : "Хүрээ", DlgImgHSpace : "Хөндлөн зай", DlgImgVSpace : "Босоо зай", DlgImgAlign : "Эгнээ", DlgImgAlignLeft : "Зүүн", DlgImgAlignAbsBottom: "Abs доод талд", DlgImgAlignAbsMiddle: "Abs Дунд талд", DlgImgAlignBaseline : "Baseline", DlgImgAlignBottom : "Доод талд", DlgImgAlignMiddle : "Дунд талд", DlgImgAlignRight : "Баруун", DlgImgAlignTextTop : "Текст дээр", DlgImgAlignTop : "Дээд талд", DlgImgPreview : "Уридчлан харах", 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 : "Линкийн мэдээлэл", DlgLnkTargetTab : "Байрлал", DlgLnkType : "Линкийн төрөл", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Энэ хуудасандах холбоос", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Протокол", DlgLnkProtoOther : "<бусад>", DlgLnkURL : "URL", DlgLnkAnchorSel : "Холбоос сонгох", DlgLnkAnchorByName : "Холбоосын нэрээр", DlgLnkAnchorById : "Элемэнт Id-гаар", DlgLnkNoAnchors : "<Баримт бичиг холбоосгүй байна>", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "E-Mail Хаяг", DlgLnkEMailSubject : "Message Subject", DlgLnkEMailBody : "Message-ийн агуулга", DlgLnkUpload : "Хуулах", DlgLnkBtnUpload : "Үүнийг серверрүү илгээ", DlgLnkTarget : "Байрлал", DlgLnkTargetFrame : "<Агуулах хүрээ>", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Шинэ цонх (_blank)", DlgLnkTargetParent : "Эцэг цонх (_parent)", DlgLnkTargetSelf : "Төстэй цонх (_self)", DlgLnkTargetTop : "Хамгийн түрүүн байх цонх (_top)", DlgLnkTargetFrameName : "Target Frame Name", //MISSING DlgLnkPopWinName : "Popup цонхны нэр", DlgLnkPopWinFeat : "Popup цонхны онцлог", DlgLnkPopResize : "Хэмжээ өөрчлөх", DlgLnkPopLocation : "Location хэсэг", DlgLnkPopMenu : "Meню хэсэг", DlgLnkPopScroll : "Скрол хэсэгүүд", DlgLnkPopStatus : "Статус хэсэг", DlgLnkPopToolbar : "Багажны хэсэг", DlgLnkPopFullScrn : "Цонх дүүргэх (IE)", DlgLnkPopDependent : "Хамаатай (Netscape)", DlgLnkPopWidth : "Өргөн", DlgLnkPopHeight : "Өндөр", DlgLnkPopLeft : "Зүүн байрлал", DlgLnkPopTop : "Дээд байрлал", DlnLnkMsgNoUrl : "Линк URL-ээ төрөлжүүлнэ үү", DlnLnkMsgNoEMail : "Е-mail хаягаа төрөлжүүлнэ үү", DlnLnkMsgNoAnchor : "Холбоосоо сонгоно уу", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Өнгө сонгох", DlgColorBtnClear : "Цэвэрлэх", DlgColorHighlight : "Өнгө", DlgColorSelected : "Сонгогдсон", // Smiley Dialog DlgSmileyTitle : "Тодорхойлолт оруулах", // Special Character Dialog DlgSpecialCharTitle : "Онцгой тэмдэгт сонгох", // Table Dialog DlgTableTitle : "Хүснэгт", DlgTableRows : "Мөр", DlgTableColumns : "Багана", DlgTableBorder : "Хүрээний хэмжээ", DlgTableAlign : "Эгнээ", DlgTableAlignNotSet : "<Оноохгүй>", DlgTableAlignLeft : "Зүүн талд", DlgTableAlignCenter : "Төвд", DlgTableAlignRight : "Баруун талд", DlgTableWidth : "Өргөн", DlgTableWidthPx : "цэг", DlgTableWidthPc : "хувь", DlgTableHeight : "Өндөр", DlgTableCellSpace : "Нүх хоорондын зай", DlgTableCellPad : "Нүх доторлох", DlgTableCaption : "Тайлбар", DlgTableSummary : "Summary", //MISSING // Table Cell Dialog DlgCellTitle : "Хоосон зайн шинж чанар", DlgCellWidth : "Өргөн", DlgCellWidthPx : "цэг", DlgCellWidthPc : "хувь", DlgCellHeight : "Өндөр", DlgCellWordWrap : "Үг таслах", DlgCellWordWrapNotSet : "<Оноохгүй>", DlgCellWordWrapYes : "Тийм", DlgCellWordWrapNo : "Үгүй", DlgCellHorAlign : "Босоо эгнээ", DlgCellHorAlignNotSet : "<Оноохгүй>", DlgCellHorAlignLeft : "Зүүн", DlgCellHorAlignCenter : "Төв", DlgCellHorAlignRight: "Баруун", DlgCellVerAlign : "Хөндлөн эгнээ", DlgCellVerAlignNotSet : "<Оноохгүй>", DlgCellVerAlignTop : "Дээд тал", DlgCellVerAlignMiddle : "Дунд", DlgCellVerAlignBottom : "Доод тал", DlgCellVerAlignBaseline : "Baseline", DlgCellRowSpan : "Нийт мөр", DlgCellCollSpan : "Нийт багана", DlgCellBackColor : "Фонны өнгө", DlgCellBorderColor : "Хүрээний өнгө", DlgCellBtnSelect : "Сонго...", // Find Dialog DlgFindTitle : "Хайх", DlgFindFindBtn : "Хайх", DlgFindNotFoundMsg : "Хайсан текст олсонгүй.", // Replace Dialog DlgReplaceTitle : "Солих", DlgReplaceFindLbl : "Хайх үг/үсэг:", DlgReplaceReplaceLbl : "Солих үг:", DlgReplaceCaseChk : "Тэнцэх төлөв", DlgReplaceReplaceBtn : "Солих", DlgReplaceReplAllBtn : "Бүгдийг нь Солих", DlgReplaceWordChk : "Тэнцэх бүтэн үг", // Paste Operations / Dialog PasteErrorCut : "Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хайчлах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+X) товчны хослолыг ашиглана уу.", PasteErrorCopy : "Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хуулах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+C) товчны хослолыг ашиглана уу.", PasteAsText : "Plain Text-ээс буулгах", PasteFromWord : "Word-оос буулгах", DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING DlgPasteCleanBox : "Clean Up Box", //MISSING // Color Picker ColorAutomatic : "Автоматаар", ColorMoreColors : "Нэмэлт өнгөнүүд...", // Document Properties DocProps : "Document Properties", //MISSING // Anchor Dialog DlgAnchorTitle : "Anchor Properties", //MISSING DlgAnchorName : "Anchor Name", //MISSING DlgAnchorErrorName : "Please type the anchor name", //MISSING // 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 IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING // Button Dialog DlgButtonText : "Text (Value)", //MISSING DlgButtonType : "Type", //MISSING DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Name", //MISSING DlgCheckboxValue : "Value", //MISSING DlgCheckboxSelected : "Selected", //MISSING // Form Dialog DlgFormName : "Name", //MISSING DlgFormAction : "Action", //MISSING DlgFormMethod : "Method", //MISSING // 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 // Textarea Dialog DlgTextareaName : "Name", //MISSING DlgTextareaCols : "Columns", //MISSING DlgTextareaRows : "Rows", //MISSING // 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 // Hidden Field Dialog DlgHiddenName : "Name", //MISSING DlgHiddenValue : "Value", //MISSING // Bulleted List Dialog BulletedListProp : "Bulleted List Properties", //MISSING NumberedListProp : "Numbered List Properties", //MISSING DlgLstStart : "Start", //MISSING DlgLstType : "Type", //MISSING DlgLstTypeCircle : "Circle", //MISSING DlgLstTypeDisc : "Disc", //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 // Document Properties Dialog DlgDocGeneralTab : "General", //MISSING DlgDocBackTab : "Background", //MISSING DlgDocColorsTab : "Colors and Margins", //MISSING DlgDocMetaTab : "Meta Data", //MISSING 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 DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Other Character Set Encoding", //MISSING 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 // 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 DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "About", //MISSING DlgAboutBrowserInfoTab : "Browser Info", //MISSING DlgAboutLicenseTab : "License", //MISSING DlgAboutVersion : "Хувилбар", DlgAboutInfo : "Мэдээллээр туслах" };FCKeditor/editor/lang/ro.js0000644000102600010270000004670011234071636015050 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Romanian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Ascunde bara cu opţiuni", ToolbarExpand : "Expandează bara cu opţiuni", // Toolbar Items and Context Menu Save : "Salvează", NewPage : "Pagină nouă", Preview : "Previzualizare", Cut : "Taie", Copy : "Copiază", Paste : "Adaugă", PasteText : "Adaugă ca text simplu", PasteWord : "Adaugă din Word", Print : "Printează", SelectAll : "Selectează tot", RemoveFormat : "Înlătură formatarea", InsertLinkLbl : "Link (Legătură web)", InsertLink : "Inserează/Editează link (legătură web)", RemoveLink : "Înlătură link (legătură web)", Anchor : "Inserează/Editează ancoră", InsertImageLbl : "Imagine", InsertImage : "Inserează/Editează imagine", InsertFlashLbl : "Flash", InsertFlash : "Inserează/Editează flash", InsertTableLbl : "Tabel", InsertTable : "Inserează/Editează tabel", InsertLineLbl : "Linie", InsertLine : "Inserează linie orizontă", InsertSpecialCharLbl: "Caracter special", InsertSpecialChar : "Inserează caracter special", InsertSmileyLbl : "Figură expresivă (Emoticon)", InsertSmiley : "Inserează Figură expresivă (Emoticon)", About : "Despre FCKeditor", Bold : "Îngroşat (bold)", Italic : "Înclinat (italic)", Underline : "Subliniat (underline)", StrikeThrough : "Tăiat (strike through)", Subscript : "Indice (subscript)", Superscript : "Putere (superscript)", LeftJustify : "Aliniere la stânga", CenterJustify : "Aliniere centrală", RightJustify : "Aliniere la dreapta", BlockJustify : "Aliniere în bloc (Block Justify)", DecreaseIndent : "Scade indentarea", IncreaseIndent : "Creşte indentarea", Undo : "Starea anterioară (undo)", Redo : "Starea ulterioară (redo)", NumberedListLbl : "Listă numerotată", NumberedList : "Inserează/Şterge listă numerotată", BulletedListLbl : "Listă cu puncte", BulletedList : "Inserează/Şterge listă cu puncte", ShowTableBorders : "Arată marginile tabelului", ShowDetails : "Arată detalii", Style : "Stil", FontFormat : "Formatare", Font : "Font", FontSize : "Mărime", TextColor : "Culoarea textului", BGColor : "Coloarea fundalului", Source : "Sursa", Find : "Găseşte", Replace : "Înlocuieşte", SpellCheck : "Verifică text", UniversalKeyboard : "Tastatură universală", PageBreakLbl : "Separator de pagină (Page Break)", PageBreak : "Inserează separator de pagină (Page Break)", Form : "Formular (Form)", Checkbox : "Bifă (Checkbox)", RadioButton : "Buton radio (RadioButton)", TextField : "Câmp text (TextField)", Textarea : "Suprafaţă text (Textarea)", HiddenField : "Câmp ascuns (HiddenField)", Button : "Buton", SelectionField : "Câmp selecţie (SelectionField)", ImageButton : "Buton imagine (ImageButton)", FitWindow : "Maximizează mărimea editorului", // Context Menu EditLink : "Editează Link", CellCM : "Celulă", RowCM : "Linie", ColumnCM : "Coloană", InsertRow : "Inserează linie", DeleteRows : "Şterge linii", InsertColumn : "Inserează coloană", DeleteColumns : "Şterge celule", InsertCell : "Inserează celulă", DeleteCells : "Şterge celule", MergeCells : "Uneşte celule", SplitCell : "Împarte celulă", TableDelete : "Şterge tabel", 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", CheckboxProp : "Proprietăţi bifă (Checkbox)", HiddenFieldProp : "Proprietăţi câmp ascuns (Hidden Field)", RadioButtonProp : "Proprietăţi buton radio (Radio Button)", ImageButtonProp : "Proprietăţi buton imagine (Image Button)", TextFieldProp : "Proprietăţi câmp text (Text Field)", SelectionFieldProp : "Proprietăţi câmp selecţie (Selection Field)", TextareaProp : "Proprietăţi suprafaţă text (Textarea)", FormProp : "Proprietăţi formular (Form)", FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", //REVIEW : Check _getfontformat.html //MISSING // Alerts and Messages ProcessingXHTML : "Procesăm XHTML. Vă rugăm aşteptaţi...", Done : "Am terminat", PasteWordConfirm : "Textul pe care doriţi să-l adăugaţi pare a fi formatat pentru Word. Doriţi să-l curăţaţi de această formatare înainte de a-l adăuga?", NotCompatiblePaste : "Această facilitate e disponibilă doar pentru Microsoft Internet Explorer, versiunea 5.5 sau ulterioară. Vreţi să-l adăugaţi fără a-i fi înlăturat formatarea?", UnknownToolbarItem : "Obiectul \"%1\" din bara cu opţiuni necunoscut", UnknownCommand : "Comanda \"%1\" necunoscută", NotImplemented : "Comandă neimplementată", UnknownToolbarSet : "Grupul din bara cu opţiuni \"%1\" nu există", NoActiveX : "Setările de securitate ale programului dvs. cu care navigaţi pe internet (browser) pot limita anumite funcţionalităţi ale editorului. Pentru a evita asta, trebuie să activaţi opţiunea \"Run ActiveX controls and plug-ins\". Poate veţi întâlni erori sau veţi observa funcţionalităţi lipsă.", BrowseServerBlocked : "The resources browser could not be opened. Asiguraţi-vă că nu e activ niciun \"popup blocker\" (funcţionalitate a programului de navigat (browser) sau a unui plug-in al acestuia de a bloca deschiderea unui noi ferestre).", DialogBlocked : "Nu a fost posibilă deschiderea unei ferestre de dialog. Asiguraţi-vă că nu e activ niciun \"popup blocker\" (funcţionalitate a programului de navigat (browser) sau a unui plug-in al acestuia de a bloca deschiderea unui noi ferestre).", // Dialogs DlgBtnOK : "Bine", DlgBtnCancel : "Anulare", DlgBtnClose : "Închidere", DlgBtnBrowseServer : "Răsfoieşte server", DlgAdvancedTag : "Avansat", DlgOpOther : "", DlgInfoTab : "Informaţii", DlgAlertUrl : "Vă rugăm să scrieţi URL-ul", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Direcţia cuvintelor", DlgGenLangDirLtr : "stânga-dreapta (LTR)", DlgGenLangDirRtl : "dreapta-stânga (RTL)", DlgGenLangCode : "Codul limbii", DlgGenAccessKey : "Tasta de acces", DlgGenName : "Nume", DlgGenTabIndex : "Indexul tabului", DlgGenLongDescr : "Descrierea lungă URL", DlgGenClass : "Clasele cu stilul paginii (CSS)", DlgGenTitle : "Titlul consultativ", DlgGenContType : "Tipul consultativ al titlului", DlgGenLinkCharset : "Setul de caractere al resursei legate", DlgGenStyle : "Stil", // Image Dialog DlgImgTitle : "Proprietăţile imaginii", DlgImgInfoTab : "Informaţii despre imagine", DlgImgBtnUpload : "Trimite la server", DlgImgURL : "URL", DlgImgUpload : "Încarcă", DlgImgAlt : "Text alternativ", DlgImgWidth : "Lăţime", DlgImgHeight : "Înălţime", DlgImgLockRatio : "Păstrează proporţiile", DlgBtnResetSize : "Resetează mărimea", DlgImgBorder : "Margine", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Aliniere", DlgImgAlignLeft : "Stânga", DlgImgAlignAbsBottom: "Jos absolut (Abs Bottom)", DlgImgAlignAbsMiddle: "Mijloc absolut (Abs Middle)", DlgImgAlignBaseline : "Linia de jos (Baseline)", DlgImgAlignBottom : "Jos", DlgImgAlignMiddle : "Mijloc", DlgImgAlignRight : "Dreapta", DlgImgAlignTextTop : "Text sus", DlgImgAlignTop : "Sus", DlgImgPreview : "Previzualizare", 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)", DlgLnkTargetTab : "Ţintă (Target)", DlgLnkType : "Tipul link-ului (al legăturii web)", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Ancoră în această pagină", DlgLnkTypeEMail : "E-Mail", DlgLnkProto : "Protocol", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Selectaţi o ancoră", DlgLnkAnchorByName : "după numele ancorei", DlgLnkAnchorById : "după Id-ul elementului", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "Adresă de e-mail", DlgLnkEMailSubject : "Subiectul mesajului", DlgLnkEMailBody : "Conţinutul mesajului", DlgLnkUpload : "Încarcă", DlgLnkBtnUpload : "Trimite la server", DlgLnkTarget : "Ţintă (Target)", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Fereastră nouă (_blank)", DlgLnkTargetParent : "Fereastra părinte (_parent)", DlgLnkTargetSelf : "Aceeaşi fereastră (_self)", DlgLnkTargetTop : "Fereastra din topul ierarhiei (_top)", DlgLnkTargetFrameName : "Numele frame-ului ţintă", DlgLnkPopWinName : "Numele ferestrei popup", DlgLnkPopWinFeat : "Proprietăţile ferestrei popup", DlgLnkPopResize : "Scalabilă", DlgLnkPopLocation : "Bara de locaţie", DlgLnkPopMenu : "Bara de meniu", DlgLnkPopScroll : "Scroll Bars", DlgLnkPopStatus : "Bara de status", DlgLnkPopToolbar : "Bara de opţiuni", DlgLnkPopFullScrn : "Tot ecranul (Full Screen)(IE)", DlgLnkPopDependent : "Dependent (Netscape)", DlgLnkPopWidth : "Lăţime", DlgLnkPopHeight : "Înălţime", DlgLnkPopLeft : "Poziţia la stânga", DlgLnkPopTop : "Poziţia la dreapta", DlnLnkMsgNoUrl : "Vă rugăm să scrieţi URL-ul", DlnLnkMsgNoEMail : "Vă rugăm să scrieţi adresa de e-mail", DlnLnkMsgNoAnchor : "Vă rugăm să selectaţi o ancoră", DlnLnkMsgInvPopName : "Numele 'popup'-ului trebuie să înceapă cu un caracter alfabetic şi trebuie să nu conţină spaţii", // Color Dialog DlgColorTitle : "Selectează culoare", DlgColorBtnClear : "Curăţă", DlgColorHighlight : "Subliniază (Highlight)", DlgColorSelected : "Selectat", // Smiley Dialog DlgSmileyTitle : "Inserează o figură expresivă (Emoticon)", // Special Character Dialog DlgSpecialCharTitle : "Selectează caracter special", // Table Dialog DlgTableTitle : "Proprietăţile tabelului", DlgTableRows : "Linii", DlgTableColumns : "Coloane", DlgTableBorder : "Mărimea marginii", DlgTableAlign : "Aliniament", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Stânga", DlgTableAlignCenter : "Centru", DlgTableAlignRight : "Dreapta", DlgTableWidth : "Lăţime", DlgTableWidthPx : "pixeli", DlgTableWidthPc : "procente", DlgTableHeight : "Înălţime", DlgTableCellSpace : "Spaţiu între celule", DlgTableCellPad : "Spaţiu în cadrul celulei", DlgTableCaption : "Titlu (Caption)", DlgTableSummary : "Rezumat", // Table Cell Dialog DlgCellTitle : "Proprietăţile celulei", DlgCellWidth : "Lăţime", DlgCellWidthPx : "pixeli", DlgCellWidthPc : "procente", DlgCellHeight : "Înălţime", DlgCellWordWrap : "Desparte cuvintele (Wrap)", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Da", DlgCellWordWrapNo : "Nu", DlgCellHorAlign : "Aliniament orizontal", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Stânga", DlgCellHorAlignCenter : "Centru", DlgCellHorAlignRight: "Dreapta", DlgCellVerAlign : "Aliniament vertical", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Sus", DlgCellVerAlignMiddle : "Mijloc", DlgCellVerAlignBottom : "Jos", DlgCellVerAlignBaseline : "Linia de jos (Baseline)", DlgCellRowSpan : "Lungimea în linii (Span)", DlgCellCollSpan : "Lungimea în coloane (Span)", DlgCellBackColor : "Culoarea fundalului", DlgCellBorderColor : "Culoarea marginii", DlgCellBtnSelect : "Selectaţi...", // Find Dialog DlgFindTitle : "Găseşte", DlgFindFindBtn : "Găseşte", DlgFindNotFoundMsg : "Textul specificat nu a fost găsit.", // Replace Dialog DlgReplaceTitle : "Replace", DlgReplaceFindLbl : "Găseşte:", DlgReplaceReplaceLbl : "Înlocuieşte cu:", DlgReplaceCaseChk : "Deosebeşte majuscule de minuscule (Match case)", DlgReplaceReplaceBtn : "Înlocuieşte", DlgReplaceReplAllBtn : "Înlocuieşte tot", DlgReplaceWordChk : "Doar cuvintele întregi", // Paste Operations / Dialog PasteErrorCut : "Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de tăiere. Vă rugăm folosiţi tastatura (Ctrl+X).", PasteErrorCopy : "Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de copiere. Vă rugăm folosiţi tastatura (Ctrl+C).", PasteAsText : "Adaugă ca text simplu (Plain Text)", PasteFromWord : "Adaugă din Word", DlgPasteMsg2 : "Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (Ctrl+V) şi apăsaţi OK.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Ignoră definiţiile Font Face", DlgPasteRemoveStyles : "Şterge definiţiile stilurilor", DlgPasteCleanBox : "Şterge căsuţa", // Color Picker ColorAutomatic : "Automatic", ColorMoreColors : "Mai multe culori...", // Document Properties DocProps : "Proprietăţile documentului", // Anchor Dialog DlgAnchorTitle : "Proprietăţile ancorei", DlgAnchorName : "Numele ancorei", DlgAnchorErrorName : "Vă rugăm scrieţi numele ancorei", // Speller Pages Dialog DlgSpellNotInDic : "Nu e în dicţionar", DlgSpellChangeTo : "Schimbă în", DlgSpellBtnIgnore : "Ignoră", DlgSpellBtnIgnoreAll : "Ignoră toate", DlgSpellBtnReplace : "Înlocuieşte", DlgSpellBtnReplaceAll : "Înlocuieşte tot", DlgSpellBtnUndo : "Starea anterioară (undo)", DlgSpellNoSuggestions : "- Fără sugestii -", DlgSpellProgress : "Verificarea textului în desfăşurare...", DlgSpellNoMispell : "Verificarea textului terminată: Nicio greşeală găsită", DlgSpellNoChanges : "Verificarea textului terminată: Niciun cuvânt modificat", DlgSpellOneChange : "Verificarea textului terminată: Un cuvânt modificat", DlgSpellManyChanges : "Verificarea textului terminată: 1% cuvinte modificate", IeSpellDownload : "Unealta pentru verificat textul (Spell checker) neinstalată. Doriţi să o descărcaţi acum?", // Button Dialog DlgButtonText : "Text (Valoare)", DlgButtonType : "Tip", DlgButtonTypeBtn : "Button", DlgButtonTypeSbm : "Submit", DlgButtonTypeRst : "Reset", // Checkbox and Radio Button Dialogs DlgCheckboxName : "Nume", DlgCheckboxValue : "Valoare", DlgCheckboxSelected : "Selectat", // Form Dialog DlgFormName : "Nume", DlgFormAction : "Acţiune", DlgFormMethod : "Metodă", // Select Field Dialog DlgSelectName : "Nume", DlgSelectValue : "Valoare", DlgSelectSize : "Mărime", DlgSelectLines : "linii", DlgSelectChkMulti : "Permite selecţii multiple", DlgSelectOpAvail : "Opţiuni disponibile", DlgSelectOpText : "Text", DlgSelectOpValue : "Valoare", DlgSelectBtnAdd : "Adaugă", DlgSelectBtnModify : "Modifică", DlgSelectBtnUp : "Sus", DlgSelectBtnDown : "Jos", DlgSelectBtnSetValue : "Setează ca valoare selectată", DlgSelectBtnDelete : "Şterge", // Textarea Dialog DlgTextareaName : "Nume", DlgTextareaCols : "Coloane", DlgTextareaRows : "Linii", // Text Field Dialog DlgTextName : "Nume", DlgTextValue : "Valoare", DlgTextCharWidth : "Lărgimea caracterului", DlgTextMaxChars : "Caractere maxime", DlgTextType : "Tip", DlgTextTypeText : "Text", DlgTextTypePass : "Parolă", // Hidden Field Dialog DlgHiddenName : "Nume", DlgHiddenValue : "Valoare", // Bulleted List Dialog BulletedListProp : "Proprietăţile listei punctate (Bulleted List)", NumberedListProp : "Proprietăţile listei numerotate (Numbered List)", DlgLstStart : "Start", DlgLstType : "Tip", DlgLstTypeCircle : "Cerc", DlgLstTypeDisc : "Disc", DlgLstTypeSquare : "Pătrat", DlgLstTypeNumbers : "Numere (1, 2, 3)", DlgLstTypeLCase : "Minuscule-litere mici (a, b, c)", DlgLstTypeUCase : "Majuscule (A, B, C)", DlgLstTypeSRoman : "Cifre romane mici (i, ii, iii)", DlgLstTypeLRoman : "Cifre romane mari (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "General", DlgDocBackTab : "Fundal", DlgDocColorsTab : "Culori si margini", DlgDocMetaTab : "Meta Data", DlgDocPageTitle : "Titlul paginii", DlgDocLangDir : "Descrierea limbii", DlgDocLangDirLTR : "stânga-dreapta (LTR)", DlgDocLangDirRTL : "dreapta-stânga (RTL)", DlgDocLangCode : "Codul limbii", DlgDocCharSet : "Encoding setului de caractere", DlgDocCharSetCE : "Central european", DlgDocCharSetCT : "Chinezesc tradiţional (Big5)", DlgDocCharSetCR : "Chirilic", DlgDocCharSetGR : "Grecesc", DlgDocCharSetJP : "Japonez", DlgDocCharSetKR : "Corean", DlgDocCharSetTR : "Turcesc", DlgDocCharSetUN : "Unicode (UTF-8)", DlgDocCharSetWE : "Vest european", DlgDocCharSetOther : "Alt encoding al setului de caractere", DlgDocDocType : "Document Type Heading", DlgDocDocTypeOther : "Alt Document Type Heading", DlgDocIncXHTML : "Include declaraţii XHTML", DlgDocBgColor : "Culoarea fundalului (Background Color)", DlgDocBgImage : "URL-ul imaginii din fundal (Background Image URL)", DlgDocBgNoScroll : "Fundal neflotant, fix (Nonscrolling Background)", DlgDocCText : "Text", DlgDocCLink : "Link (Legătură web)", DlgDocCVisited : "Link (Legătură web) vizitat", DlgDocCActive : "Link (Legătură web) activ", DlgDocMargins : "Marginile paginii", DlgDocMaTop : "Sus", DlgDocMaLeft : "Stânga", DlgDocMaRight : "Dreapta", DlgDocMaBottom : "Jos", DlgDocMeIndex : "Cuvinte cheie după care se va indexa documentul (separate prin virgulă)", DlgDocMeDescr : "Descrierea documentului", DlgDocMeAuthor : "Autor", DlgDocMeCopy : "Drepturi de autor", DlgDocPreview : "Previzualizare", // Templates Dialog Templates : "Template-uri (şabloane)", DlgTemplatesTitle : "Template-uri (şabloane) de conţinut", DlgTemplatesSelMsg : "Vă rugăm selectaţi template-ul (şablonul) ce se va deschide în editor
(conţinutul actual va fi pierdut):", DlgTemplatesLoading : "Se încarcă lista cu template-uri (şabloane). Vă rugăm aşteptaţi...", DlgTemplatesNoTpl : "(Niciun template (şablon) definit)", DlgTemplatesReplace : "Înlocuieşte cuprinsul actual", // About Dialog DlgAboutAboutTab : "Despre", DlgAboutBrowserInfoTab : "Informaţii browser", DlgAboutLicenseTab : "Licenţă", DlgAboutVersion : "versiune", DlgAboutInfo : "Pentru informaţii amănunţite, vizitaţi" };FCKeditor/editor/lang/eu.js0000644000102600010270000004351111234071603015030 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Basque language file. * Euskara hizkuntza fitxategia. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Estutu Tresna Barra", ToolbarExpand : "Hedatu Tresna Barra", // Toolbar Items and Context Menu Save : "Gorde", NewPage : "Orrialde Berria", Preview : "Aurrebista", Cut : "Ebaki", Copy : "Kopiatu", Paste : "Itsatsi", PasteText : "Itsatsi testu bezala", PasteWord : "Itsatsi Word-etik", Print : "Inprimatu", SelectAll : "Hautatu dena", RemoveFormat : "Kendu Formatoa", InsertLinkLbl : "Esteka", InsertLink : "Txertatu/Editatu Esteka", RemoveLink : "Kendu Esteka", Anchor : "Aingura", InsertImageLbl : "Irudia", InsertImage : "Txertatu/Editatu Irudia", InsertFlashLbl : "Flasha", InsertFlash : "Txertatu/Editatu Flasha", InsertTableLbl : "Taula", InsertTable : "Txertatu/Editatu Taula", InsertLineLbl : "Lerroa", InsertLine : "Txertatu Marra Horizontala", InsertSpecialCharLbl: "Karaktere Berezia", InsertSpecialChar : "Txertatu Karaktere Berezia", InsertSmileyLbl : "Aurpegierak", InsertSmiley : "Txertatu Aurpegierak", About : "FCKeditor-ri buruz", Bold : "Lodia", Italic : "Etzana", Underline : "Azpimarratu", StrikeThrough : "Marratua", Subscript : "Azpi-indize", Superscript : "Goi-indize", LeftJustify : "Lerrokatu Ezkerrean", CenterJustify : "Lerrokatu Erdian", RightJustify : "Lerrokatu Eskuman", BlockJustify : "Justifikatu", DecreaseIndent : "Txikitu Koska", IncreaseIndent : "Handitu Koska", Undo : "Desegin", Redo : "Berregin", NumberedListLbl : "Zenbakidun Zerrenda", NumberedList : "Txertatu/Kendu Zenbakidun zerrenda", BulletedListLbl : "Buletdun Zerrenda", BulletedList : "Txertatu/Kendu Buletdun zerrenda", ShowTableBorders : "Erakutsi Taularen Ertzak", ShowDetails : "Erakutsi Xehetasunak", Style : "Estiloa", FontFormat : "Formatoa", Font : "Letra-tipoa", FontSize : "Tamaina", TextColor : "Testu Kolorea", BGColor : "Atzeko kolorea", Source : "HTML Iturburua", Find : "Bilatu", Replace : "Ordezkatu", SpellCheck : "Ortografia", UniversalKeyboard : "Teklatu Unibertsala", PageBreakLbl : "Orrialde-jauzia", PageBreak : "Txertatu Orrialde-jauzia", Form : "Formularioa", Checkbox : "Kontrol-laukia", RadioButton : "Aukera-botoia", TextField : "Testu Eremua", Textarea : "Testu-area", HiddenField : "Ezkutuko Eremua", Button : "Botoia", SelectionField : "Hautespen Eremua", ImageButton : "Irudi Botoia", FitWindow : "Maximizatu editorearen tamaina", // Context Menu EditLink : "Aldatu Esteka", CellCM : "Gelaxka", RowCM : "Errenkada", ColumnCM : "Zutabea", InsertRow : "Txertatu Errenkada", DeleteRows : "Ezabatu Errenkadak", InsertColumn : "Txertatu Zutabea", DeleteColumns : "Ezabatu Zutabeak", InsertCell : "Txertatu Gelaxka", DeleteCells : "Kendu Gelaxkak", MergeCells : "Batu Gelaxkak", SplitCell : "Zatitu Gelaxka", TableDelete : "Ezabatu Taula", CellProperties : "Gelaxkaren Ezaugarriak", TableProperties : "Taularen Ezaugarriak", ImageProperties : "Irudiaren Ezaugarriak", FlashProperties : "Flasharen Ezaugarriak", AnchorProp : "Ainguraren Ezaugarriak", ButtonProp : "Botoiaren Ezaugarriak", CheckboxProp : "Kontrol-laukiko Ezaugarriak", HiddenFieldProp : "Ezkutuko Eremuaren Ezaugarriak", RadioButtonProp : "Aukera-botoiaren Ezaugarriak", ImageButtonProp : "Irudi Botoiaren Ezaugarriak", TextFieldProp : "Testu Eremuaren Ezaugarriak", SelectionFieldProp : "Hautespen Eremuaren Ezaugarriak", TextareaProp : "Testu-arearen Ezaugarriak", FormProp : "Formularioaren Ezaugarriak", FontFormats : "Arrunta;Formateatua;Helbidea;Izenburua 1;Izenburua 2;Izenburua 3;Izenburua 4;Izenburua 5;Izenburua 6;Paragrafoa (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "XHTML Prozesatzen. Itxaron mesedez...", Done : "Eginda", PasteWordConfirm : "Itsatsi nahi duzun textua Wordetik hartua dela dirudi. Itsatsi baino lehen garbitu nahi duzu?", NotCompatiblePaste : "Komando hau Internet Explorer 5.5 bertsiorako edo ondorengoentzako erabilgarria dago. Garbitu gabe itsatsi nahi duzu?", UnknownToolbarItem : "Ataza barrako elementu ezezaguna \"%1\"", UnknownCommand : "Komando izen ezezaguna \"%1\"", NotImplemented : "Komando ez inplementatua", UnknownToolbarSet : "Ataza barra \"%1\" taldea ez da existitzen", NoActiveX : "Zure nabigatzailearen segustasun hobespenak editore honen zenbait ezaugarri mugatu ditzake. \"ActiveX kontrolak eta plug-inak\" aktibatu beharko zenituzke, bestela erroreak eta ezaugarrietan mugak egon daitezke.", BrowseServerBlocked : "Baliabideen arakatzailea ezin da ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", DialogBlocked : "Ezin da elkarrizketa-leihoa ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", // Dialogs DlgBtnOK : "Ados", DlgBtnCancel : "Utzi", DlgBtnClose : "Itxi", DlgBtnBrowseServer : "Zerbitzaria arakatu", DlgAdvancedTag : "Aurreratua", DlgOpOther : "", DlgInfoTab : "Informazioa", DlgAlertUrl : "Mesedez URLa idatzi ezazu", // General Dialogs Labels DlgGenNotSet : "", DlgGenId : "Id", DlgGenLangDir : "Hizkuntzaren Norabidea", DlgGenLangDirLtr : "Ezkerretik Eskumara(LTR)", DlgGenLangDirRtl : "Eskumatik Ezkerrera (RTL)", DlgGenLangCode : "Hizkuntza Kodea", DlgGenAccessKey : "Sarbide-gakoa", DlgGenName : "Izena", DlgGenTabIndex : "Tabulazio Indizea", DlgGenLongDescr : "URL Deskribapen Luzea", DlgGenClass : "Estilo-orriko Klaseak", DlgGenTitle : "Izenburua", DlgGenContType : "Eduki Mota (Content Type)", DlgGenLinkCharset : "Estekatutako Karaktere Multzoa", DlgGenStyle : "Estiloa", // Image Dialog DlgImgTitle : "Irudi Ezaugarriak", DlgImgInfoTab : "Irudi informazioa", DlgImgBtnUpload : "Zerbitzarira bidalia", DlgImgURL : "URL", DlgImgUpload : "Gora Kargatu", DlgImgAlt : "Textu Alternatiboa", DlgImgWidth : "Zabalera", DlgImgHeight : "Altuera", DlgImgLockRatio : "Erlazioa Blokeatu", DlgBtnResetSize : "Tamaina Berrezarri", DlgImgBorder : "Ertza", DlgImgHSpace : "HSpace", DlgImgVSpace : "VSpace", DlgImgAlign : "Lerrokatu", DlgImgAlignLeft : "Ezkerrera", DlgImgAlignAbsBottom: "Abs Behean", DlgImgAlignAbsMiddle: "Abs Erdian", DlgImgAlignBaseline : "Oinan", DlgImgAlignBottom : "Behean", DlgImgAlignMiddle : "Erdian", DlgImgAlignRight : "Eskuman", DlgImgAlignTextTop : "Testua Goian", DlgImgAlignTop : "Goian", DlgImgPreview : "Aurrebista", 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", DlgLnkTargetTab : "Helburua", DlgLnkType : "Esteka Mota", DlgLnkTypeURL : "URL", DlgLnkTypeAnchor : "Aingura horrialde honentan", DlgLnkTypeEMail : "ePosta", DlgLnkProto : "Protokoloa", DlgLnkProtoOther : "", DlgLnkURL : "URL", DlgLnkAnchorSel : "Aingura bat hautatu", DlgLnkAnchorByName : "Aingura izenagatik", DlgLnkAnchorById : "Elementuaren ID-gatik", DlgLnkNoAnchors : "", //REVIEW : Change < and > with ( and ) DlgLnkEMail : "ePosta Helbidea", DlgLnkEMailSubject : "Mezuaren Gaia", DlgLnkEMailBody : "Mezuaren Gorputza", DlgLnkUpload : "Gora kargatu", DlgLnkBtnUpload : "Zerbitzarira bidali", DlgLnkTarget : "Target (Helburua)", DlgLnkTargetFrame : "", DlgLnkTargetPopup : "", DlgLnkTargetBlank : "Lehio Berria (_blank)", DlgLnkTargetParent : "Lehio Gurasoa (_parent)", DlgLnkTargetSelf : "Lehio Berdina (_self)", DlgLnkTargetTop : "Goiko Lehioa (_top)", DlgLnkTargetFrameName : "Marko Helburuaren Izena", DlgLnkPopWinName : "Popup Lehioaren Izena", DlgLnkPopWinFeat : "Popup Lehioaren Ezaugarriak", DlgLnkPopResize : "Tamaina Aldakorra", DlgLnkPopLocation : "Kokaleku Barra", DlgLnkPopMenu : "Menu Barra", DlgLnkPopScroll : "Korritze Barrak", DlgLnkPopStatus : "Egoera Barra", DlgLnkPopToolbar : "Tresna Barra", DlgLnkPopFullScrn : "Pantaila Osoa (IE)", DlgLnkPopDependent : "Menpekoa (Netscape)", DlgLnkPopWidth : "Zabalera", DlgLnkPopHeight : "Altuera", DlgLnkPopLeft : "Ezkerreko Posizioa", DlgLnkPopTop : "Goiko Posizioa", DlnLnkMsgNoUrl : "Mesedez URL esteka idatzi", DlnLnkMsgNoEMail : "Mesedez ePosta helbidea idatzi", DlnLnkMsgNoAnchor : "Mesedez aingura bat aukeratu", DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING // Color Dialog DlgColorTitle : "Kolore Aukeraketa", DlgColorBtnClear : "Garbitu", DlgColorHighlight : "Nabarmendu", DlgColorSelected : "Aukeratuta", // Smiley Dialog DlgSmileyTitle : "Aurpegiera Sartu", // Special Character Dialog DlgSpecialCharTitle : "Karaktere Berezia Aukeratu", // Table Dialog DlgTableTitle : "Taularen Ezaugarriak", DlgTableRows : "Lerroak", DlgTableColumns : "Zutabeak", DlgTableBorder : "Ertzaren Zabalera", DlgTableAlign : "Lerrokatu", DlgTableAlignNotSet : "", DlgTableAlignLeft : "Ezkerrean", DlgTableAlignCenter : "Erdian", DlgTableAlignRight : "Eskuman", DlgTableWidth : "Zabalera", DlgTableWidthPx : "pixel", DlgTableWidthPc : "ehuneko", DlgTableHeight : "Altuera", DlgTableCellSpace : "Gelaxka arteko tartea", DlgTableCellPad : "Gelaxken betegarria", DlgTableCaption : "Epigrafea", DlgTableSummary : "Laburpena", // Table Cell Dialog DlgCellTitle : "Gelaxken Ezaugarriak", DlgCellWidth : "Zabalera", DlgCellWidthPx : "pixel", DlgCellWidthPc : "ehuneko", DlgCellHeight : "Altuera", DlgCellWordWrap : "Itzulbira", DlgCellWordWrapNotSet : "", DlgCellWordWrapYes : "Bai", DlgCellWordWrapNo : "Ez", DlgCellHorAlign : "Horizontal Alignment", DlgCellHorAlignNotSet : "", DlgCellHorAlignLeft : "Ezkerrean", DlgCellHorAlignCenter : "Erdian", DlgCellHorAlignRight: "Eskuman", DlgCellVerAlign : "Lerrokatu Bertikalki", DlgCellVerAlignNotSet : "", DlgCellVerAlignTop : "Goian", DlgCellVerAlignMiddle : "Erdian", DlgCellVerAlignBottom : "Behean", DlgCellVerAlignBaseline : "Oinan", DlgCellRowSpan : "Lerroak Hedatu", DlgCellCollSpan : "Zutabeak Hedatu", DlgCellBackColor : "Atzeko Kolorea", DlgCellBorderColor : "Ertzako Kolorea", DlgCellBtnSelect : "Aukertau...", // Find Dialog DlgFindTitle : "Bilaketa", DlgFindFindBtn : "Bilatu", DlgFindNotFoundMsg : "Idatzitako testua ez da topatu.", // Replace Dialog DlgReplaceTitle : "Ordeztu", DlgReplaceFindLbl : "Zer bilatu:", DlgReplaceReplaceLbl : "Zerekin ordeztu:", DlgReplaceCaseChk : "Maiuskula/minuskula", DlgReplaceReplaceBtn : "Ordeztu", DlgReplaceReplAllBtn : "Ordeztu Guztiak", DlgReplaceWordChk : "Esaldi osoa bilatu", // Paste Operations / Dialog PasteErrorCut : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki moztea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+X).", PasteErrorCopy : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki kopiatzea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+C).", PasteAsText : "Testu Arrunta bezala Itsatsi", PasteFromWord : "Word-etik itsatsi", DlgPasteMsg2 : "Mesedez teklatua erabilita (Ctrl+V) ondorego eremuan testua itsatsi eta OK sakatu.", DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING DlgPasteIgnoreFont : "Letra Motaren definizioa ezikusi", DlgPasteRemoveStyles : "Estilo definizioak kendu", DlgPasteCleanBox : "Testu-eremua Garbitu", // Color Picker ColorAutomatic : "Automatikoa", ColorMoreColors : "Kolore gehiago...", // Document Properties DocProps : "Dokumentuaren Ezarpenak", // Anchor Dialog DlgAnchorTitle : "Ainguraren Ezaugarriak", DlgAnchorName : "Ainguraren Izena", DlgAnchorErrorName : "Idatzi ainguraren izena", // Speller Pages Dialog DlgSpellNotInDic : "Ez dago hiztegian", DlgSpellChangeTo : "Honekin ordezkatu", DlgSpellBtnIgnore : "Ezikusi", DlgSpellBtnIgnoreAll : "Denak Ezikusi", DlgSpellBtnReplace : "Ordezkatu", DlgSpellBtnReplaceAll : "Denak Ordezkatu", DlgSpellBtnUndo : "Desegin", DlgSpellNoSuggestions : "- Iradokizunik ez -", DlgSpellProgress : "Zuzenketa ortografikoa martxan...", DlgSpellNoMispell : "Zuzenketa ortografikoa bukatuta: Akatsik ez", DlgSpellNoChanges : "Zuzenketa ortografikoa bukatuta: Ez da ezer aldatu", DlgSpellOneChange : "Zuzenketa ortografikoa bukatuta: Hitz bat aldatu da", DlgSpellManyChanges : "Zuzenketa ortografikoa bukatuta: %1 hitz aldatu dira", IeSpellDownload : "Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu nahi duzu?", // Button Dialog DlgButtonText : "Testua (Balorea)", DlgButtonType : "Mota", DlgButtonTypeBtn : "Button", //MISSING DlgButtonTypeSbm : "Submit", //MISSING DlgButtonTypeRst : "Reset", //MISSING // Checkbox and Radio Button Dialogs DlgCheckboxName : "Izena", DlgCheckboxValue : "Balorea", DlgCheckboxSelected : "Hautatuta", // Form Dialog DlgFormName : "Izena", DlgFormAction : "Ekintza", DlgFormMethod : "Method", // Select Field Dialog DlgSelectName : "Izena", DlgSelectValue : "Balorea", DlgSelectSize : "Tamaina", DlgSelectLines : "lerro kopurura", DlgSelectChkMulti : "Hautaketa anitzak baimendu", DlgSelectOpAvail : "Aukera Eskuragarriak", DlgSelectOpText : "Testua", DlgSelectOpValue : "Balorea", DlgSelectBtnAdd : "Gehitu", DlgSelectBtnModify : "Aldatu", DlgSelectBtnUp : "Gora", DlgSelectBtnDown : "Behera", DlgSelectBtnSetValue : "Aukeratutako balorea ezarri", DlgSelectBtnDelete : "Ezabatu", // Textarea Dialog DlgTextareaName : "Izena", DlgTextareaCols : "Zutabeak", DlgTextareaRows : "Lerroak", // Text Field Dialog DlgTextName : "Izena", DlgTextValue : "Balorea", DlgTextCharWidth : "Zabalera", DlgTextMaxChars : "Zenbat karaktere gehienez", DlgTextType : "Mota", DlgTextTypeText : "Testua", DlgTextTypePass : "Pasahitza", // Hidden Field Dialog DlgHiddenName : "Izena", DlgHiddenValue : "Balorea", // Bulleted List Dialog BulletedListProp : "Buletdun Zerrendaren Ezarpenak", NumberedListProp : "Zenbakidun Zerrendaren Ezarpenak", DlgLstStart : "Start", //MISSING DlgLstType : "Mota", DlgLstTypeCircle : "Zirkulua", DlgLstTypeDisc : "Diskoa", DlgLstTypeSquare : "Karratua", DlgLstTypeNumbers : "Zenbakiak (1, 2, 3)", DlgLstTypeLCase : "Letra xeheak (a, b, c)", DlgLstTypeUCase : "Letra larriak (A, B, C)", DlgLstTypeSRoman : "Erromatar zenbaki zeheak (i, ii, iii)", DlgLstTypeLRoman : "Erromatar zenbaki larriak (I, II, III)", // Document Properties Dialog DlgDocGeneralTab : "Orokorra", DlgDocBackTab : "Atzekaldea", DlgDocColorsTab : "Koloreak eta Marjinak", DlgDocMetaTab : "Meta Informazioa", DlgDocPageTitle : "Orriaren Izenburua", DlgDocLangDir : "Hizkuntzaren Norabidea", DlgDocLangDirLTR : "Ezkerretik eskumara (LTR)", DlgDocLangDirRTL : "Eskumatik ezkerrera (RTL)", DlgDocLangCode : "Hizkuntzaren Kodea", DlgDocCharSet : "Karaktere Multzoaren Kodeketa", DlgDocCharSetCE : "Central European", //MISSING DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING DlgDocCharSetCR : "Cyrillic", //MISSING DlgDocCharSetGR : "Greek", //MISSING DlgDocCharSetJP : "Japanese", //MISSING DlgDocCharSetKR : "Korean", //MISSING DlgDocCharSetTR : "Turkish", //MISSING DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING DlgDocCharSetWE : "Western European", //MISSING DlgDocCharSetOther : "Beste Karaktere Multzoaren Kodeketa", DlgDocDocType : "Document Type Goiburua", DlgDocDocTypeOther : "Beste Document Type Goiburua", DlgDocIncXHTML : "XHTML Ezarpenak", DlgDocBgColor : "Atzeko Kolorea", DlgDocBgImage : "Atzeko Irudiaren URL-a", DlgDocBgNoScroll : "Korritze gabeko Atzekaldea", DlgDocCText : "Testua", DlgDocCLink : "Estekak", DlgDocCVisited : "Bisitatutako Estekak", DlgDocCActive : "Esteka Aktiboa", DlgDocMargins : "Orrialdearen marjinak", DlgDocMaTop : "Goian", DlgDocMaLeft : "Ezkerrean", DlgDocMaRight : "Eskuman", DlgDocMaBottom : "Behean", DlgDocMeIndex : "Dokumentuaren Gako-hitzak (komarekin bananduta)", DlgDocMeDescr : "Dokumentuaren Deskribapena", DlgDocMeAuthor : "Egilea", DlgDocMeCopy : "Copyright", DlgDocPreview : "Aurrebista", // Templates Dialog Templates : "Txantiloiak", DlgTemplatesTitle : "Eduki Txantiloiak", DlgTemplatesSelMsg : "Mesedez txantiloia aukeratu editorean kargatzeko
(orain dauden edukiak galduko dira):", DlgTemplatesLoading : "Txantiloiak kargatzen. Itxaron mesedez...", DlgTemplatesNoTpl : "(Ez dago definitutako txantiloirik)", DlgTemplatesReplace : "Replace actual contents", //MISSING // About Dialog DlgAboutAboutTab : "Honi buruz", DlgAboutBrowserInfoTab : "Nabigatzailearen Informazioa", DlgAboutLicenseTab : "Lizentzia", DlgAboutVersion : "bertsioa", DlgAboutInfo : "Informazio gehiago eskuratzeko hona joan" };FCKeditor/editor/lang/lv.js0000644000102600010270000004505411234071624015047 0ustar imarkimark/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Latvian language file. */ var FCKLang = { // Language direction : "ltr" (left to right) or "rtl" (right to left). Dir : "ltr", ToolbarCollapse : "Samazināt rīku joslu", ToolbarExpand : "Paplašināt rīku joslu", // Toolbar Items and Context Menu Save : "Saglabāt", NewPage : "Jauna lapa", Preview : "Pārskatīt", Cut : "Izgriezt", Copy : "Kopēt", Paste : "Ievietot", PasteText : "Ievietot kā vienkāršu tekstu", PasteWord : "Ievietot no Worda", Print : "Drukāt", SelectAll : "Iezīmēt visu", RemoveFormat : "Noņemt stilus", InsertLinkLbl : "Hipersaite", InsertLink : "Ievietot/Labot hipersaiti", RemoveLink : "Noņemt hipersaiti", Anchor : "Ievietot/Labot iezīmi", InsertImageLbl : "Attēls", InsertImage : "Ievietot/Labot Attēlu", InsertFlashLbl : "Flash", InsertFlash : "Ievietot/Labot Flash", InsertTableLbl : "Tabula", InsertTable : "Ievietot/Labot Tabulu", InsertLineLbl : "Atdalītājsvītra", InsertLine : "Ievietot horizontālu Atdalītājsvītru", InsertSpecialCharLbl: "Īpašs simbols", InsertSpecialChar : "Ievietot speciālo simbolu", InsertSmileyLbl : "Smaidiņi", InsertSmiley : "Ievietot smaidiņu", About : "Īsumā par FCKeditor", Bold : "Treknu šriftu", Italic : "Slīprakstā", Underline : "Apakšsvītra", StrikeThrough : "Pārsvītrots", Subscript : "Zemrakstā", Superscript : "Augšrakstā", LeftJustify : "Izlīdzināt pa kreisi", CenterJustify : "Izlīdzināt pret centru", RightJustify : "Izlīdzināt pa labi", BlockJustify : "Izlīdzināt malas", DecreaseIndent : "Samazināt atkāpi", IncreaseIndent : "Palielināt atkāpi", Undo : "Atcelt", Redo : "Atkārtot", NumberedListLbl : "Numurēts saraksts", NumberedList : "Ievietot/Noņemt numerēto sarakstu", BulletedListLbl : "Izcelts saraksts", BulletedList : "Ievietot/Noņemt izceltu sarakstu", ShowTableBorders : "Parādīt tabulas robežas", ShowDetails : "Parādīt sīkāku informāciju", Style : "Stils", FontFormat : "Formāts", Font : "Šrifts", FontSize : "Izmērs", TextColor : "Teksta krāsa", BGColor : "Fona krāsa", Source : "HTML kods", Find : "Meklēt", Replace : "Nomainīt", SpellCheck : "Pareizrakstības pārbaude", UniversalKeyboard : "Universāla klaviatūra", PageBreakLbl : "Lapas pārtraukums", PageBreak : "Ievietot lapas pārtraukumu", Form : "Forma", Checkbox : "Atzīmēšanas kastīte", RadioButton : "Izvēles poga", TextField : "Teksta rinda", Textarea : "Teksta laukums", HiddenField : "Paslēpta teksta rinda", Button : "Poga", SelectionField : "Iezīmēšanas lauks", ImageButton : "Attēlpoga", FitWindow : "Maksimizēt redaktora izmēru", // Context Menu EditLink : "Labot hipersaiti", CellCM : "Šūna", RowCM : "Rinda", ColumnCM : "Kolonna", InsertRow : "Ievietot rindu", DeleteRows : "Dzēst rindas", InsertColumn : "Ievietot kolonnu", DeleteColumns : "Dzēst kolonnas", InsertCell : "Ievietot rūtiņu", DeleteCells : "Dzēst rūtiņas", MergeCells : "Apvienot rūtiņas", SplitCell : "Sadalīt rūtiņu", TableDelete : "Dzēst tabulu", CellProperties : "Rūtiņas īpašības", TableProperties : "Tabulas īpašības", ImageProperties : "Attēla īpašības", FlashProperties : "Flash īpašības", AnchorProp : "Iezīmes īpašības", ButtonProp : "Pogas īpašības", CheckboxProp : "Atzīmēšanas kastītes īpašības", HiddenFieldProp : "Paslēptās teksta rindas īpašības", RadioButtonProp : "Izvēles poga īpašības", ImageButtonProp : "Attēlpogas īpašības", TextFieldProp : "Teksta rindas īpašības", SelectionFieldProp : "Iezīmēšanas lauka īpašības", TextareaProp : "Teksta laukuma īpašības", FormProp : "Formas īpašības", FontFormats : "Normāls teksts;Formatēts teksts;Adrese;Virsraksts 1;Virsraksts 2;Virsraksts 3;Virsraksts 4;Virsraksts 5;Virsraksts 6;Rindkopa (DIV)", //REVIEW : Check _getfontformat.html // Alerts and Messages ProcessingXHTML : "Tiek apstrādāts XHTML. Lūdzu uzgaidiet...", Done : "Darīts", PasteWordConfirm : "Teksta fragments, kas tiek ievietots, izskatās, ka būtu sagatavots Word'ā. Vai vēlaties to apstrādāt pirms ievietošanas?", NotCompatiblePaste : "Šī darbība ir pieejama Internet Explorer'ī, kas jaunāks par 5.5 versiju. Vai vēlaties ievietot bez apstrādes?", UnknownToolbarItem : "Nezināms rīku joslas objekts \"%1\"", UnknownCommand : "Nezināmas darbības nosaukums \"%1\"", NotImplemented : "Darbība netika paveikta", UnknownToolbarSet : "Rīku joslas komplekts \"%1\" neeksistē", NoActiveX : "Interneta pārlūkprogrammas drošības uzstādījumi varētu ietekmēt dažas no redaktora īpašībām. Jābūt aktivizētai sadaļai \"Run ActiveX controls and plug-ins\". Savādāk ir iespējamas kļūdas darbībā un kļūdu paziņojumu parādīšanās.", BrowseServerBlocked : "Resursu pārlūks nevar tikt atvērts. Pārliecinieties, ka uznirstošo logu bloķētāji ir atslēgti.", DialogBlocked : "Nav iespējams atvērt dialoglogu. Pārliecinieties, ka uznirstošo logu bloķētāji ir atslēgti.", // Dialogs DlgBtnOK : "Darīts!", DlgBtnCancel : "Atcelt", DlgBtnClose : "Aizvērt", DlgBtnBrowseServer : "Skatīt servera saturu", DlgAdvancedTag : "Izvērstais", DlgOpOther : "", DlgInfoTab : "Informācija", DlgAlertUrl : "Lūdzu, ievietojiet hipersaiti", // General Dialogs Labels DlgGenNotSet : "