forked from Wavyzz/dolibarr
New: Update ckeditor to version 4 (part 1)
This commit is contained in:
28
htdocs/includes/ckeditor/_source/plugins/wsc/LICENSE.md
Normal file
28
htdocs/includes/ckeditor/_source/plugins/wsc/LICENSE.md
Normal file
@@ -0,0 +1,28 @@
|
||||
Software License Agreement
|
||||
==========================
|
||||
|
||||
**CKEditor WSC Plugin**
|
||||
Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
|
||||
|
||||
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
|
||||
|
||||
You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
|
||||
|
||||
Sources of Intellectual Property Included in this plugin
|
||||
--------------------------------------------------------
|
||||
|
||||
Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
|
||||
|
||||
Trademarks
|
||||
----------
|
||||
|
||||
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
||||
25
htdocs/includes/ckeditor/_source/plugins/wsc/README.md
Normal file
25
htdocs/includes/ckeditor/_source/plugins/wsc/README.md
Normal file
@@ -0,0 +1,25 @@
|
||||
CKEditor WebSpellChecker Plugin
|
||||
===============================
|
||||
|
||||
This plugin brings Web Spell Checker (WSC) into CKEditor.
|
||||
|
||||
WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation.
|
||||
2. Enable the "wsc" plugin in the CKEditor configuration file (config.js):
|
||||
|
||||
config.extraPlugins = 'wsc';
|
||||
|
||||
That's all. WSC will appear on the editor toolbar and will be ready to use.
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
|
||||
|
||||
See LICENSE.md for more information.
|
||||
|
||||
Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
|
||||
@@ -1,49 +1,66 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<!--
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript">
|
||||
|
||||
function gup( name )
|
||||
{
|
||||
name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
|
||||
var regexS = '[\\?&]' + name + '=([^&#]*)' ;
|
||||
var regex = new RegExp( regexS ) ;
|
||||
var results = regex.exec( window.location.href ) ;
|
||||
|
||||
if ( results )
|
||||
return results[ 1 ] ;
|
||||
else
|
||||
return '' ;
|
||||
}
|
||||
|
||||
var interval;
|
||||
|
||||
function sendData2Master()
|
||||
{
|
||||
var destination = window.parent.parent ;
|
||||
try
|
||||
{
|
||||
if ( destination.XDTMaster )
|
||||
{
|
||||
var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
|
||||
window.clearInterval( interval ) ;
|
||||
}
|
||||
}
|
||||
catch (e) {}
|
||||
}
|
||||
|
||||
function onLoad()
|
||||
{
|
||||
interval = window.setInterval( sendData2Master, 100 );
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="onLoad()"><p></p></body>
|
||||
</html>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<!--
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript">
|
||||
|
||||
function gup( name )
|
||||
{
|
||||
name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
|
||||
var regexS = '[\\?&]' + name + '=([^&#]*)' ;
|
||||
var regex = new RegExp( regexS ) ;
|
||||
var results = regex.exec( window.location.href ) ;
|
||||
|
||||
if ( results )
|
||||
return results[ 1 ] ;
|
||||
else
|
||||
return '' ;
|
||||
}
|
||||
|
||||
var interval;
|
||||
|
||||
function sendData2Master()
|
||||
{
|
||||
var destination = window.parent.parent ;
|
||||
try
|
||||
{
|
||||
if ( destination.XDTMaster )
|
||||
{
|
||||
var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
|
||||
window.clearInterval( interval ) ;
|
||||
}
|
||||
}
|
||||
catch (e) {}
|
||||
}
|
||||
|
||||
function OnMessage (event) {
|
||||
var message = event.data;
|
||||
var destination = window.parent.parent;
|
||||
destination.XDTMaster.read( [ 'end', message, 'fpm' ] ) ;
|
||||
}
|
||||
|
||||
function listenPostMessage() {
|
||||
if (window.addEventListener) { // all browsers except IE before version 9
|
||||
window.addEventListener ("message", OnMessage, false);
|
||||
}else {
|
||||
if (window.attachEvent) { // IE before version 9
|
||||
window.attachEvent("onmessage", OnMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function onLoad()
|
||||
{
|
||||
interval = window.setInterval( sendData2Master, 100 );
|
||||
listenPostMessage();
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="onLoad()"><p></p></body>
|
||||
</html>
|
||||
|
||||
118
htdocs/includes/ckeditor/_source/plugins/wsc/dialogs/tmp.html
Normal file
118
htdocs/includes/ckeditor/_source/plugins/wsc/dialogs/tmp.html
Normal file
@@ -0,0 +1,118 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>iframe</title>
|
||||
|
||||
<style>
|
||||
html,body{
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
font: 13px/1.555 "Trebuchet MS", sans-serif;
|
||||
}
|
||||
a{
|
||||
color: #888;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px solid #888;
|
||||
}
|
||||
.main-box {
|
||||
color:#252525;
|
||||
padding: 3px 5px;
|
||||
text-align: justify;
|
||||
}
|
||||
.main-box p{margin: 0 0 14px;}
|
||||
.main-box .cerr{
|
||||
color: #f00000;
|
||||
border-bottom-color: #f00000;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content" class="main-box"></div>
|
||||
<iframe src="" frameborder="0" id="spelltext" name="spelltext" style="display:none; width: 100%" ></iframe>
|
||||
<iframe src="" frameborder="0" id="loadsuggestfirst" name="loadsuggestfirst" style="display:none; width: 100%" ></iframe>
|
||||
<iframe src="" frameborder="0" id="loadspellsuggestall" name="loadspellsuggestall" style="display:none; width: 100%" ></iframe>
|
||||
<iframe src="" frameborder="0" id="loadOptionsForm" name="loadOptionsForm" style="display:none; width: 100%" ></iframe>
|
||||
<script>
|
||||
(function(window) {
|
||||
// Constructor Manager PostMessage
|
||||
|
||||
var ManagerPostMessage = function() {
|
||||
var _init = function(handler) {
|
||||
if (document.addEventListener) {
|
||||
window.addEventListener('message', handler, false);
|
||||
} else {
|
||||
window.attachEvent("onmessage", handler);
|
||||
};
|
||||
};
|
||||
var _sendCmd = function(o) {
|
||||
var str,
|
||||
type = Object.prototype.toString,
|
||||
fn = o.fn || null,
|
||||
id = o.id || '',
|
||||
target = o.target || window,
|
||||
message = o.message || { 'id': id };
|
||||
|
||||
if (type.call(o.message) == "[object Object]") {
|
||||
(o.message['id']) ? o.message['id'] : o.message['id'] = id;
|
||||
message = o.message;
|
||||
};
|
||||
|
||||
str = JSON.stringify(message, fn);
|
||||
target.postMessage(str, '*');
|
||||
};
|
||||
|
||||
return {
|
||||
init: _init,
|
||||
send: _sendCmd
|
||||
};
|
||||
};
|
||||
|
||||
var manageMessageTmp = new ManagerPostMessage;
|
||||
|
||||
|
||||
var appString = (function(){
|
||||
var spell = parent.CKEDITOR.config.wsc.DefaultParams.scriptPath;
|
||||
var serverUrl = parent.CKEDITOR.config.wsc.DefaultParams.serviceHost;
|
||||
return serverUrl + spell;
|
||||
})();
|
||||
|
||||
function loadScript(src, callback) {
|
||||
var scriptTag = document.createElement("script");
|
||||
scriptTag.type = "text/javascript";
|
||||
callback ? callback : callback = function() {};
|
||||
if(scriptTag.readyState) {
|
||||
//IE
|
||||
scriptTag.onreadystatechange = function() {
|
||||
if (scriptTag.readyState == "loaded" ||
|
||||
scriptTag.readyState == "complete") {
|
||||
scriptTag.onreadystatechange = null;
|
||||
setTimeout(function(){scriptTag.parentNode.removeChild(scriptTag)},1)
|
||||
callback();
|
||||
}
|
||||
};
|
||||
}else{
|
||||
//Others
|
||||
scriptTag.onload = function() {
|
||||
setTimeout(function(){scriptTag.parentNode.removeChild(scriptTag)},1);
|
||||
callback();
|
||||
};
|
||||
};
|
||||
scriptTag.src = src;
|
||||
document.getElementsByTagName("head")[0].appendChild(scriptTag);
|
||||
};
|
||||
|
||||
|
||||
window.onload = function(){
|
||||
loadScript(appString, function(){
|
||||
manageMessageTmp.send({
|
||||
'id': 'iframeOnload',
|
||||
'target': window.parent
|
||||
});
|
||||
});
|
||||
}
|
||||
})(this);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,52 +1,52 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!--
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript">
|
||||
|
||||
function doLoadScript( url )
|
||||
{
|
||||
if ( !url )
|
||||
return false ;
|
||||
|
||||
var s = document.createElement( "script" ) ;
|
||||
s.type = "text/javascript" ;
|
||||
s.src = url ;
|
||||
document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
|
||||
|
||||
return true ;
|
||||
}
|
||||
|
||||
var opener;
|
||||
function tryLoad()
|
||||
{
|
||||
opener = window.parent;
|
||||
|
||||
// get access to global parameters
|
||||
var oParams = window.opener.oldFramesetPageParams;
|
||||
|
||||
// make frameset rows string prepare
|
||||
var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
|
||||
document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
|
||||
|
||||
// dynamic including init frames and crossdomain transport code
|
||||
// from config sproxy_js_frameset url
|
||||
var addScriptUrl = oParams.sproxy_js_frameset ;
|
||||
doLoadScript( addScriptUrl ) ;
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
|
||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
|
||||
<frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
|
||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
|
||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
|
||||
</frameset>
|
||||
</html>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!--
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script type="text/javascript">
|
||||
|
||||
function doLoadScript( url )
|
||||
{
|
||||
if ( !url )
|
||||
return false ;
|
||||
|
||||
var s = document.createElement( "script" ) ;
|
||||
s.type = "text/javascript" ;
|
||||
s.src = url ;
|
||||
document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
|
||||
|
||||
return true ;
|
||||
}
|
||||
|
||||
var opener;
|
||||
function tryLoad()
|
||||
{
|
||||
opener = window.parent;
|
||||
|
||||
// get access to global parameters
|
||||
var oParams = window.opener.oldFramesetPageParams;
|
||||
|
||||
// make frameset rows string prepare
|
||||
var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
|
||||
document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
|
||||
|
||||
// dynamic including init frames and crossdomain transport code
|
||||
// from config sproxy_js_frameset url
|
||||
var addScriptUrl = oParams.sproxy_js_frameset ;
|
||||
doLoadScript( addScriptUrl ) ;
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
|
||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
|
||||
<frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
|
||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
|
||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
|
||||
</frameset>
|
||||
</html>
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
html, body
|
||||
{
|
||||
background-color: transparent;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
body, td, input, select, textarea
|
||||
{
|
||||
font-size: 11px;
|
||||
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
||||
}
|
||||
|
||||
.midtext
|
||||
{
|
||||
padding:0px;
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.midtext p
|
||||
{
|
||||
padding:0px;
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.Button
|
||||
{
|
||||
border: #737357 1px solid;
|
||||
color: #3b3b1f;
|
||||
background-color: #c7c78f;
|
||||
}
|
||||
|
||||
.PopupTabArea
|
||||
{
|
||||
color: #737357;
|
||||
background-color: #e3e3c7;
|
||||
}
|
||||
|
||||
.PopupTitleBorder
|
||||
{
|
||||
border-bottom: #d5d59d 1px solid;
|
||||
}
|
||||
.PopupTabEmptyArea
|
||||
{
|
||||
padding-left: 10px;
|
||||
border-bottom: #d5d59d 1px solid;
|
||||
}
|
||||
|
||||
.PopupTab, .PopupTabSelected
|
||||
{
|
||||
border-right: #d5d59d 1px solid;
|
||||
border-top: #d5d59d 1px solid;
|
||||
border-left: #d5d59d 1px solid;
|
||||
padding: 3px 5px 3px 5px;
|
||||
color: #737357;
|
||||
}
|
||||
|
||||
.PopupTab
|
||||
{
|
||||
margin-top: 1px;
|
||||
border-bottom: #d5d59d 1px solid;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.PopupTabSelected
|
||||
{
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
padding-top: 4px;
|
||||
border-bottom: #f1f1e3 1px solid;
|
||||
background-color: #f1f1e3;
|
||||
}
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
html, body
|
||||
{
|
||||
background-color: transparent;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
body, td, input, select, textarea
|
||||
{
|
||||
font-size: 11px;
|
||||
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
||||
}
|
||||
|
||||
.midtext
|
||||
{
|
||||
padding:0px;
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.midtext p
|
||||
{
|
||||
padding:0px;
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
.Button
|
||||
{
|
||||
border: #737357 1px solid;
|
||||
color: #3b3b1f;
|
||||
background-color: #c7c78f;
|
||||
}
|
||||
|
||||
.PopupTabArea
|
||||
{
|
||||
color: #737357;
|
||||
background-color: #e3e3c7;
|
||||
}
|
||||
|
||||
.PopupTitleBorder
|
||||
{
|
||||
border-bottom: #d5d59d 1px solid;
|
||||
}
|
||||
.PopupTabEmptyArea
|
||||
{
|
||||
padding-left: 10px;
|
||||
border-bottom: #d5d59d 1px solid;
|
||||
}
|
||||
|
||||
.PopupTab, .PopupTabSelected
|
||||
{
|
||||
border-right: #d5d59d 1px solid;
|
||||
border-top: #d5d59d 1px solid;
|
||||
border-left: #d5d59d 1px solid;
|
||||
padding: 3px 5px 3px 5px;
|
||||
color: #737357;
|
||||
}
|
||||
|
||||
.PopupTab
|
||||
{
|
||||
margin-top: 1px;
|
||||
border-bottom: #d5d59d 1px solid;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.PopupTabSelected
|
||||
{
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
padding-top: 4px;
|
||||
border-bottom: #f1f1e3 1px solid;
|
||||
background-color: #f1f1e3;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
176
htdocs/includes/ckeditor/_source/plugins/wsc/dialogs/wsc_ie.js
Normal file
176
htdocs/includes/ckeditor/_source/plugins/wsc/dialogs/wsc_ie.js
Normal file
@@ -0,0 +1,176 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'checkspell', function( editor ) {
|
||||
var number = CKEDITOR.tools.getNextNumber(),
|
||||
iframeId = 'cke_frame_' + number,
|
||||
textareaId = 'cke_data_' + number,
|
||||
errorBoxId = 'cke_error_' + number,
|
||||
interval,
|
||||
protocol = document.location.protocol || 'http:',
|
||||
errorMsg = editor.lang.wsc.notAvailable;
|
||||
|
||||
var pasteArea =
|
||||
'<textarea' +
|
||||
' style="display: none"' +
|
||||
' id="' + textareaId + '"' +
|
||||
' rows="10"' +
|
||||
' cols="40">' +
|
||||
' </textarea><div' +
|
||||
' id="' + errorBoxId + '"' +
|
||||
' style="display:none;color:red;font-size:16px;font-weight:bold;padding-top:160px;text-align:center;z-index:11;">' +
|
||||
'</div><iframe' +
|
||||
' src=""' +
|
||||
' style="width:100%;background-color:#f1f1e3;"' +
|
||||
' frameborder="0"' +
|
||||
' name="' + iframeId + '"' +
|
||||
' id="' + iframeId + '"' +
|
||||
' allowtransparency="1">' +
|
||||
'</iframe>';
|
||||
|
||||
var wscCoreUrl = editor.config.wsc_customLoaderScript || ( protocol + '//loader.webspellchecker.net/sproxy_fck/sproxy.php' + '?plugin=fck2'
|
||||
+ '&customerid=' + editor.config.wsc_customerId
|
||||
+ '&cmd=script&doc=wsc&schema=22'
|
||||
);
|
||||
|
||||
if ( editor.config.wsc_customLoaderScript ) {
|
||||
errorMsg += '<p style="color:#000;font-size:11px;font-weight: normal;text-align:center;padding-top:10px">' +
|
||||
editor.lang.wsc.errorLoading.replace( /%s/g, editor.config.wsc_customLoaderScript ) + '</p>';
|
||||
}
|
||||
|
||||
function burnSpelling( dialog, errorMsg ) {
|
||||
var i = 0;
|
||||
return function() {
|
||||
if ( typeof( window.doSpell ) == 'function' ) {
|
||||
//Call from window.setInteval expected at once.
|
||||
if ( typeof( interval ) != 'undefined' )
|
||||
window.clearInterval( interval );
|
||||
|
||||
initAndSpell( dialog );
|
||||
} else if ( i++ == 180 ) // Timeout: 180 * 250ms = 45s.
|
||||
window._cancelOnError( errorMsg );
|
||||
};
|
||||
}
|
||||
|
||||
window._cancelOnError = function( m ) {
|
||||
if ( typeof( window.WSC_Error ) == 'undefined' ) {
|
||||
CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'none' );
|
||||
var errorBox = CKEDITOR.document.getById( errorBoxId );
|
||||
errorBox.setStyle( 'display', 'block' );
|
||||
errorBox.setHtml( m || editor.lang.wsc.notAvailable );
|
||||
}
|
||||
};
|
||||
|
||||
function initAndSpell( dialog ) {
|
||||
var LangComparer = new window._SP_FCK_LangCompare(),
|
||||
// Language abbr standarts comparer.
|
||||
pluginPath = CKEDITOR.getUrl( editor.plugins.wsc.path + 'dialogs/' ),
|
||||
// Service paths corecting/preparing.
|
||||
framesetPath = pluginPath + 'tmpFrameset.html';
|
||||
|
||||
// global var is used in FCK specific core
|
||||
// change on equal var used in fckplugin.js
|
||||
window.gFCKPluginName = 'wsc';
|
||||
|
||||
LangComparer.setDefaulLangCode( editor.config.defaultLanguage );
|
||||
|
||||
window.doSpell({
|
||||
ctrl: textareaId,
|
||||
|
||||
lang: editor.config.wsc_lang || LangComparer.getSPLangCode( editor.langCode ),
|
||||
intLang: editor.config.wsc_uiLang || LangComparer.getSPLangCode( editor.langCode ),
|
||||
winType: iframeId, // If not defined app will run on winpopup.
|
||||
|
||||
// Callback binding section.
|
||||
onCancel: function() {
|
||||
dialog.hide();
|
||||
},
|
||||
onFinish: function( dT ) {
|
||||
editor.focus();
|
||||
dialog.getParentEditor().setData( dT.value );
|
||||
dialog.hide();
|
||||
},
|
||||
|
||||
// Some manipulations with client static pages.
|
||||
staticFrame: framesetPath,
|
||||
framesetPath: framesetPath,
|
||||
iframePath: pluginPath + 'ciframe.html',
|
||||
|
||||
// Styles defining.
|
||||
schemaURI: pluginPath + 'wsc.css',
|
||||
|
||||
userDictionaryName: editor.config.wsc_userDictionaryName,
|
||||
customDictionaryName: editor.config.wsc_customDictionaryIds && editor.config.wsc_customDictionaryIds.split( "," ),
|
||||
domainName: editor.config.wsc_domainName
|
||||
|
||||
});
|
||||
|
||||
// Hide user message console (if application was loaded more then after timeout).
|
||||
CKEDITOR.document.getById( errorBoxId ).setStyle( 'display', 'none' );
|
||||
CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'block' );
|
||||
}
|
||||
|
||||
return {
|
||||
title: editor.config.wsc_dialogTitle || editor.lang.wsc.title,
|
||||
minWidth: 485,
|
||||
minHeight: 380,
|
||||
buttons: [ CKEDITOR.dialog.cancelButton ],
|
||||
onShow: function() {
|
||||
var contentArea = this.getContentElement( 'general', 'content' ).getElement();
|
||||
contentArea.setHtml( pasteArea );
|
||||
contentArea.getChild( 2 ).setStyle( 'height', this._.contentSize.height + 'px' );
|
||||
|
||||
if ( typeof( window.doSpell ) != 'function' ) {
|
||||
// Load script.
|
||||
CKEDITOR.document.getHead().append( CKEDITOR.document.createElement( 'script', {
|
||||
attributes: {
|
||||
type: 'text/javascript',
|
||||
src: wscCoreUrl
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
var sData = editor.getData(); // Get the data to be checked.
|
||||
|
||||
CKEDITOR.document.getById( textareaId ).setValue( sData );
|
||||
|
||||
interval = window.setInterval( burnSpelling( this, errorMsg ), 250 );
|
||||
},
|
||||
onHide: function() {
|
||||
window.ooo = undefined;
|
||||
window.int_framsetLoaded = undefined;
|
||||
window.framesetLoaded = undefined;
|
||||
window.is_window_opened = false;
|
||||
},
|
||||
contents: [
|
||||
{
|
||||
id: 'general',
|
||||
label: editor.config.wsc_dialogTitle || editor.lang.wsc.title,
|
||||
padding: 0,
|
||||
elements: [
|
||||
{
|
||||
type: 'html',
|
||||
id: 'content',
|
||||
html: ''
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
});
|
||||
|
||||
// Expand the spell-check frame when dialog resized. (#6829)
|
||||
CKEDITOR.dialog.on( 'resize', function( evt ) {
|
||||
var data = evt.data,
|
||||
dialog = data.dialog;
|
||||
|
||||
if ( dialog._.name == 'checkspell' ) {
|
||||
var content = dialog.getContentElement( 'general', 'content' ).getElement(),
|
||||
iframe = content && content.getChild( 2 );
|
||||
|
||||
iframe && iframe.setSize( 'height', data.height );
|
||||
iframe && iframe.setSize( 'width', data.width );
|
||||
}
|
||||
});
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 836 B |
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/af.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/af.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'af', {
|
||||
btnIgnore: 'Ignoreer',
|
||||
btnIgnoreAll: 'Ignoreer alles',
|
||||
btnReplace: 'Vervang',
|
||||
btnReplaceAll: 'vervang alles',
|
||||
btnUndo: 'Ontdoen',
|
||||
changeTo: 'Verander na',
|
||||
errorLoading: 'Fout by inlaai van diens: %s.',
|
||||
ieSpellDownload: 'Speltoetser is nie geïnstalleer nie. Wil u dit nou aflaai?',
|
||||
manyChanges: 'Klaar met speltoets: %1 woorde verander',
|
||||
noChanges: 'Klaar met speltoets: Geen woorde verander nie',
|
||||
noMispell: 'Klaar met speltoets: Geen foute nie',
|
||||
noSuggestions: '- Geen voorstel -',
|
||||
notAvailable: 'Jammer, hierdie diens is nie nou beskikbaar nie.',
|
||||
notInDic: 'Nie in woordeboek nie',
|
||||
oneChange: 'Klaar met speltoets: Een woord verander',
|
||||
progress: 'Spelling word getoets...',
|
||||
title: 'Speltoetser',
|
||||
toolbar: 'Speltoets'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ar.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ar.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ar', {
|
||||
btnIgnore: 'تجاهل',
|
||||
btnIgnoreAll: 'تجاهل الكل',
|
||||
btnReplace: 'تغيير',
|
||||
btnReplaceAll: 'تغيير الكل',
|
||||
btnUndo: 'تراجع',
|
||||
changeTo: 'التغيير إلى',
|
||||
errorLoading: 'خطأ في تحميل تطبيق خدمة الاستضافة: %s.',
|
||||
ieSpellDownload: 'المدقق الإملائي (الإنجليزي) غير مثبّت. هل تود تحميله الآن؟',
|
||||
manyChanges: 'تم إكمال التدقيق الإملائي: تم تغيير %1 من كلمات',
|
||||
noChanges: 'تم التدقيق الإملائي: لم يتم تغيير أي كلمة',
|
||||
noMispell: 'تم التدقيق الإملائي: لم يتم العثور على أي أخطاء إملائية',
|
||||
noSuggestions: '- لا توجد إقتراحات -',
|
||||
notAvailable: 'عفواً، ولكن هذه الخدمة غير متاحة الان',
|
||||
notInDic: 'ليست في القاموس',
|
||||
oneChange: 'تم التدقيق الإملائي: تم تغيير كلمة واحدة فقط',
|
||||
progress: 'جاري التدقيق الاملائى',
|
||||
title: 'التدقيق الإملائي',
|
||||
toolbar: 'تدقيق إملائي'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/bg.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/bg.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'bg', {
|
||||
btnIgnore: 'Игнорирай',
|
||||
btnIgnoreAll: 'Игнорирай всичко',
|
||||
btnReplace: 'Препокриване',
|
||||
btnReplaceAll: 'Препокрий всичко',
|
||||
btnUndo: 'Възтанови',
|
||||
changeTo: 'Промени на',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- Няма препоръчани -',
|
||||
notAvailable: 'Съжаляваме, но услугата не е достъпна за момента',
|
||||
notInDic: 'Не е в речника',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Проверява се правописа...',
|
||||
title: 'Проверка на правопис',
|
||||
toolbar: 'Проверка на правопис'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/bn.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/bn.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'bn', {
|
||||
btnIgnore: 'ইগনোর কর',
|
||||
btnIgnoreAll: 'সব ইগনোর কর',
|
||||
btnReplace: 'বদলে দাও',
|
||||
btnReplaceAll: 'সব বদলে দাও',
|
||||
btnUndo: 'আন্ডু',
|
||||
changeTo: 'এতে বদলাও',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'বানান পরীক্ষক ইনস্টল করা নেই। আপনি কি এখনই এটা ডাউনলোড করতে চান?',
|
||||
manyChanges: 'বানান পরীক্ষা শেষ: %1 গুলো শব্দ বদলে গ্যাছে',
|
||||
noChanges: 'বানান পরীক্ষা শেষ: কোন শব্দ পরিবর্তন করা হয়নি',
|
||||
noMispell: 'বানান পরীক্ষা শেষ: কোন ভুল বানান পাওয়া যায়নি',
|
||||
noSuggestions: '- কোন সাজেশন নেই -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'শব্দকোষে নেই',
|
||||
oneChange: 'বানান পরীক্ষা শেষ: একটি মাত্র শব্দ পরিবর্তন করা হয়েছে',
|
||||
progress: 'বানান পরীক্ষা চলছে...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'বানান চেক'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/bs.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/bs.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'bs', {
|
||||
btnIgnore: 'Ignore',
|
||||
btnIgnoreAll: 'Ignore All',
|
||||
btnReplace: 'Replace',
|
||||
btnReplaceAll: 'Replace All',
|
||||
btnUndo: 'Undo',
|
||||
changeTo: 'Change to',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- No suggestions -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Not in dictionary',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Spell check in progress...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Check Spelling'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ca.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ca.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ca', {
|
||||
btnIgnore: 'Ignora',
|
||||
btnIgnoreAll: 'Ignora-les totes',
|
||||
btnReplace: 'Canvia',
|
||||
btnReplaceAll: 'Canvia-les totes',
|
||||
btnUndo: 'Desfés',
|
||||
changeTo: 'Reemplaça amb',
|
||||
errorLoading: 'Error carregant el servidor: %s.',
|
||||
ieSpellDownload: 'Verificació ortogràfica no instal·lada. Voleu descarregar-ho ara?',
|
||||
manyChanges: 'Verificació ortogràfica: s\'han canviat %1 paraules',
|
||||
noChanges: 'Verificació ortogràfica: no s\'ha canviat cap paraula',
|
||||
noMispell: 'Verificació ortogràfica acabada: no hi ha cap paraula mal escrita',
|
||||
noSuggestions: 'Cap suggeriment',
|
||||
notAvailable: 'El servei no es troba disponible ara.',
|
||||
notInDic: 'No és al diccionari',
|
||||
oneChange: 'Verificació ortogràfica: s\'ha canviat una paraula',
|
||||
progress: 'Verificació ortogràfica en curs...',
|
||||
title: 'Comprova l\'ortografia',
|
||||
toolbar: 'Revisa l\'ortografia'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/cs.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/cs.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'cs', {
|
||||
btnIgnore: 'Přeskočit',
|
||||
btnIgnoreAll: 'Přeskakovat vše',
|
||||
btnReplace: 'Zaměnit',
|
||||
btnReplaceAll: 'Zaměňovat vše',
|
||||
btnUndo: 'Zpět',
|
||||
changeTo: 'Změnit na',
|
||||
errorLoading: 'Chyba nahrávání služby aplikace z: %s.',
|
||||
ieSpellDownload: 'Kontrola pravopisu není nainstalována. Chcete ji nyní stáhnout?',
|
||||
manyChanges: 'Kontrola pravopisu dokončena: %1 slov změněno',
|
||||
noChanges: 'Kontrola pravopisu dokončena: Beze změn',
|
||||
noMispell: 'Kontrola pravopisu dokončena: Žádné pravopisné chyby nenalezeny',
|
||||
noSuggestions: '- žádné návrhy -',
|
||||
notAvailable: 'Omlouváme se, ale služba nyní není dostupná.',
|
||||
notInDic: 'Není ve slovníku',
|
||||
oneChange: 'Kontrola pravopisu dokončena: Jedno slovo změněno',
|
||||
progress: 'Probíhá kontrola pravopisu...',
|
||||
title: 'Kontrola pravopisu',
|
||||
toolbar: 'Zkontrolovat pravopis'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/cy.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/cy.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'cy', {
|
||||
btnIgnore: 'Anwybyddu Un',
|
||||
btnIgnoreAll: 'Anwybyddu Pob',
|
||||
btnReplace: 'Amnewid Un',
|
||||
btnReplaceAll: 'Amnewid Pob',
|
||||
btnUndo: 'Dadwneud',
|
||||
changeTo: 'Newid i',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Gwirydd sillafu heb ei arsefydlu. A ydych am ei lawrlwytho nawr?',
|
||||
manyChanges: 'Gwirio sillafu wedi gorffen: Newidiwyd %1 gair',
|
||||
noChanges: 'Gwirio sillafu wedi gorffen: Dim newidiadau',
|
||||
noMispell: 'Gwirio sillafu wedi gorffen: Dim camsillaf.',
|
||||
noSuggestions: '- Dim awgrymiadau -',
|
||||
notAvailable: 'Nid yw\'r gwasanaeth hwn ar gael yn bresennol.',
|
||||
notInDic: 'Nid i\'w gael yn y geiriadur',
|
||||
oneChange: 'Gwirio sillafu wedi gorffen: Newidiwyd 1 gair',
|
||||
progress: 'Gwirio sillafu yn ar y gweill...',
|
||||
title: 'Gwirio Sillafu',
|
||||
toolbar: 'Gwirio Sillafu'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/da.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/da.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'da', {
|
||||
btnIgnore: 'Ignorér',
|
||||
btnIgnoreAll: 'Ignorér alle',
|
||||
btnReplace: 'Erstat',
|
||||
btnReplaceAll: 'Erstat alle',
|
||||
btnUndo: 'Tilbage',
|
||||
changeTo: 'Forslag',
|
||||
errorLoading: 'Fejl ved indlæsning af host: %s.',
|
||||
ieSpellDownload: 'Stavekontrol ikke installeret. Vil du installere den nu?',
|
||||
manyChanges: 'Stavekontrol færdig: %1 ord ændret',
|
||||
noChanges: 'Stavekontrol færdig: Ingen ord ændret',
|
||||
noMispell: 'Stavekontrol færdig: Ingen fejl fundet',
|
||||
noSuggestions: '(ingen forslag)',
|
||||
notAvailable: 'Stavekontrol er desværre ikke tilgængelig.',
|
||||
notInDic: 'Ikke i ordbogen',
|
||||
oneChange: 'Stavekontrol færdig: Et ord ændret',
|
||||
progress: 'Stavekontrollen arbejder...',
|
||||
title: 'Stavekontrol',
|
||||
toolbar: 'Stavekontrol'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/de.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/de.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'de', {
|
||||
btnIgnore: 'Ignorieren',
|
||||
btnIgnoreAll: 'Alle Ignorieren',
|
||||
btnReplace: 'Ersetzen',
|
||||
btnReplaceAll: 'Alle Ersetzen',
|
||||
btnUndo: 'Rückgängig',
|
||||
changeTo: 'Ändern in',
|
||||
errorLoading: 'Fehler beim laden des Dienstanbieters: %s.',
|
||||
ieSpellDownload: 'Rechtschreibprüfung nicht installiert. Möchten Sie sie jetzt herunterladen?',
|
||||
manyChanges: 'Rechtschreibprüfung abgeschlossen - %1 Wörter geändert',
|
||||
noChanges: 'Rechtschreibprüfung abgeschlossen - keine Worte geändert',
|
||||
noMispell: 'Rechtschreibprüfung abgeschlossen - keine Fehler gefunden',
|
||||
noSuggestions: ' - keine Vorschläge - ',
|
||||
notAvailable: 'Entschuldigung, aber dieser Dienst steht im Moment nicht zur Verfügung.',
|
||||
notInDic: 'Nicht im Wörterbuch',
|
||||
oneChange: 'Rechtschreibprüfung abgeschlossen - ein Wort geändert',
|
||||
progress: 'Rechtschreibprüfung läuft...',
|
||||
title: 'Rechtschreibprüfung',
|
||||
toolbar: 'Rechtschreibprüfung'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/el.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/el.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'el', {
|
||||
btnIgnore: 'Αγνόηση',
|
||||
btnIgnoreAll: 'Αγνόηση όλων',
|
||||
btnReplace: 'Αντικατάσταση',
|
||||
btnReplaceAll: 'Αντικατάσταση όλων',
|
||||
btnUndo: 'Αναίρεση',
|
||||
changeTo: 'Αλλαγή σε',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Δεν υπάρχει εγκατεστημένος ορθογράφος. Θέλετε να τον κατεβάσετε τώρα;',
|
||||
manyChanges: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Άλλαξαν %1 λέξεις',
|
||||
noChanges: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν άλλαξαν λέξεις',
|
||||
noMispell: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν βρέθηκαν λάθη',
|
||||
noSuggestions: '- Δεν υπάρχουν προτάσεις -',
|
||||
notAvailable: 'Η υπηρεσία δεν είναι διαθέσιμη αυτήν την στιγμή.',
|
||||
notInDic: 'Δεν υπάρχει στο λεξικό',
|
||||
oneChange: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Άλλαξε μια λέξη',
|
||||
progress: 'Γίνεται ορθογραφικός έλεγχος...',
|
||||
title: 'Ορθογραφικός Έλεγχος',
|
||||
toolbar: 'Ορθογραφικός Έλεγχος'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en-au.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en-au.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'en-au', {
|
||||
btnIgnore: 'Ignore',
|
||||
btnIgnoreAll: 'Ignore All',
|
||||
btnReplace: 'Replace',
|
||||
btnReplaceAll: 'Replace All',
|
||||
btnUndo: 'Undo',
|
||||
changeTo: 'Change to',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- No suggestions -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Not in dictionary',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Spell check in progress...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Check Spelling'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en-ca.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en-ca.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'en-ca', {
|
||||
btnIgnore: 'Ignore',
|
||||
btnIgnoreAll: 'Ignore All',
|
||||
btnReplace: 'Replace',
|
||||
btnReplaceAll: 'Replace All',
|
||||
btnUndo: 'Undo',
|
||||
changeTo: 'Change to',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- No suggestions -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Not in dictionary',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Spell check in progress...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Check Spelling'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en-gb.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en-gb.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'en-gb', {
|
||||
btnIgnore: 'Ignore',
|
||||
btnIgnoreAll: 'Ignore All',
|
||||
btnReplace: 'Replace',
|
||||
btnReplaceAll: 'Replace All',
|
||||
btnUndo: 'Undo',
|
||||
changeTo: 'Change to',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- No suggestions -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Not in dictionary',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Spell check in progress...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Check Spelling'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/en.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'en', {
|
||||
btnIgnore: 'Ignore',
|
||||
btnIgnoreAll: 'Ignore All',
|
||||
btnReplace: 'Replace',
|
||||
btnReplaceAll: 'Replace All',
|
||||
btnUndo: 'Undo',
|
||||
changeTo: 'Change to',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- No suggestions -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Not in dictionary',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Spell check in progress...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Check Spelling'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/eo.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/eo.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'eo', {
|
||||
btnIgnore: 'Ignori',
|
||||
btnIgnoreAll: 'Ignori Ĉion',
|
||||
btnReplace: 'Anstataŭigi',
|
||||
btnReplaceAll: 'Anstataŭigi Ĉion',
|
||||
btnUndo: 'Malfari',
|
||||
changeTo: 'Ŝanĝi al',
|
||||
errorLoading: 'Eraro en la servoelŝuto el la gastiga komputiko: %s.',
|
||||
ieSpellDownload: 'Ortografikontrolilo ne instalita. Ĉu vi volas elŝuti ĝin nun?',
|
||||
manyChanges: 'Ortografikontrolado finita: %1 vortoj korektitaj',
|
||||
noChanges: 'Ortografikontrolado finita: neniu vorto korektita',
|
||||
noMispell: 'Ortografikontrolado finita: neniu eraro trovita',
|
||||
noSuggestions: '- Neniu propono -',
|
||||
notAvailable: 'Bedaŭrinde la servo ne funkcias nuntempe.',
|
||||
notInDic: 'Ne trovita en la vortaro',
|
||||
oneChange: 'Ortografikontrolado finita: unu vorto korektita',
|
||||
progress: 'La ortografio estas kontrolata...',
|
||||
title: 'Kontroli la ortografion',
|
||||
toolbar: 'Kontroli la ortografion'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/es.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/es.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'es', {
|
||||
btnIgnore: 'Ignorar',
|
||||
btnIgnoreAll: 'Ignorar Todo',
|
||||
btnReplace: 'Reemplazar',
|
||||
btnReplaceAll: 'Reemplazar Todo',
|
||||
btnUndo: 'Deshacer',
|
||||
changeTo: 'Cambiar a',
|
||||
errorLoading: 'Error cargando la aplicación del servidor: %s.',
|
||||
ieSpellDownload: 'Módulo de Control de Ortografía no instalado.\r\n¿Desea descargarlo ahora?',
|
||||
manyChanges: 'Control finalizado: se ha cambiado %1 palabras',
|
||||
noChanges: 'Control finalizado: no se ha cambiado ninguna palabra',
|
||||
noMispell: 'Control finalizado: no se encontraron errores',
|
||||
noSuggestions: '- No hay sugerencias -',
|
||||
notAvailable: 'Lo sentimos pero el servicio no está disponible.',
|
||||
notInDic: 'No se encuentra en el Diccionario',
|
||||
oneChange: 'Control finalizado: se ha cambiado una palabra',
|
||||
progress: 'Control de Ortografía en progreso...',
|
||||
title: 'Comprobar ortografía',
|
||||
toolbar: 'Ortografía'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/et.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/et.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'et', {
|
||||
btnIgnore: 'Ignoreeri',
|
||||
btnIgnoreAll: 'Ignoreeri kõiki',
|
||||
btnReplace: 'Asenda',
|
||||
btnReplaceAll: 'Asenda kõik',
|
||||
btnUndo: 'Võta tagasi',
|
||||
changeTo: 'Muuda',
|
||||
errorLoading: 'Viga rakenduse teenushosti laadimisel: %s.',
|
||||
ieSpellDownload: 'Õigekirja kontrollija ei ole paigaldatud. Soovid sa selle alla laadida?',
|
||||
manyChanges: 'Õigekirja kontroll sooritatud: %1 sõna muudetud',
|
||||
noChanges: 'Õigekirja kontroll sooritatud: ühtegi sõna ei muudetud',
|
||||
noMispell: 'Õigekirja kontroll sooritatud: õigekirjuvigu ei leitud',
|
||||
noSuggestions: '- Soovitused puuduvad -',
|
||||
notAvailable: 'Kahjuks ei ole teenus praegu saadaval.',
|
||||
notInDic: 'Puudub sõnastikust',
|
||||
oneChange: 'Õigekirja kontroll sooritatud: üks sõna muudeti',
|
||||
progress: 'Toimub õigekirja kontroll...',
|
||||
title: 'Õigekirjakontroll',
|
||||
toolbar: 'Õigekirjakontroll'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/eu.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/eu.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'eu', {
|
||||
btnIgnore: 'Ezikusi',
|
||||
btnIgnoreAll: 'Denak Ezikusi',
|
||||
btnReplace: 'Ordezkatu',
|
||||
btnReplaceAll: 'Denak Ordezkatu',
|
||||
btnUndo: 'Desegin',
|
||||
changeTo: 'Honekin ordezkatu',
|
||||
errorLoading: 'Errorea gertatu da aplikazioa zerbitzaritik kargatzean: %s.',
|
||||
ieSpellDownload: 'Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu nahi duzu?',
|
||||
manyChanges: 'Zuzenketa ortografikoa bukatuta: %1 hitz aldatu dira',
|
||||
noChanges: 'Zuzenketa ortografikoa bukatuta: Ez da ezer aldatu',
|
||||
noMispell: 'Zuzenketa ortografikoa bukatuta: Akatsik ez',
|
||||
noSuggestions: '- Iradokizunik ez -',
|
||||
notAvailable: 'Barkatu baina momentu honetan zerbitzua ez dago erabilgarri.',
|
||||
notInDic: 'Ez dago hiztegian',
|
||||
oneChange: 'Zuzenketa ortografikoa bukatuta: Hitz bat aldatu da',
|
||||
progress: 'Zuzenketa ortografikoa martxan...',
|
||||
title: 'Ortografia zuzenketa',
|
||||
toolbar: 'Ortografia'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fa.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fa.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'fa', {
|
||||
btnIgnore: 'چشمپوشی',
|
||||
btnIgnoreAll: 'چشمپوشی همه',
|
||||
btnReplace: 'جایگزینی',
|
||||
btnReplaceAll: 'جایگزینی همه',
|
||||
btnUndo: 'واچینش',
|
||||
changeTo: 'تغییر به',
|
||||
errorLoading: 'خطا در بارگیری برنامه خدمات میزبان: %s.',
|
||||
ieSpellDownload: 'بررسی کنندهٴ املا نصب نشده است. آیا میخواهید آن را هماکنون دریافت کنید؟',
|
||||
manyChanges: 'بررسی املا انجام شد. %1 واژه تغییر یافت',
|
||||
noChanges: 'بررسی املا انجام شد. هیچ واژهای تغییر نیافت',
|
||||
noMispell: 'بررسی املا انجام شد. هیچ غلط املائی یافت نشد',
|
||||
noSuggestions: '- پیشنهادی نیست -',
|
||||
notAvailable: 'با عرض پوزش خدمات الان در دسترس نیستند.',
|
||||
notInDic: 'در واژه~نامه یافت نشد',
|
||||
oneChange: 'بررسی املا انجام شد. یک واژه تغییر یافت',
|
||||
progress: 'بررسی املا در حال انجام...',
|
||||
title: 'بررسی املا',
|
||||
toolbar: 'بررسی املا'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fi.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fi.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'fi', {
|
||||
btnIgnore: 'Jätä huomioimatta',
|
||||
btnIgnoreAll: 'Jätä kaikki huomioimatta',
|
||||
btnReplace: 'Korvaa',
|
||||
btnReplaceAll: 'Korvaa kaikki',
|
||||
btnUndo: 'Kumoa',
|
||||
changeTo: 'Vaihda',
|
||||
errorLoading: 'Virhe ladattaessa oikolukupalvelua isännältä: %s.',
|
||||
ieSpellDownload: 'Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?',
|
||||
manyChanges: 'Tarkistus valmis: %1 sanaa muutettiin',
|
||||
noChanges: 'Tarkistus valmis: Yhtään sanaa ei muutettu',
|
||||
noMispell: 'Tarkistus valmis: Ei virheitä',
|
||||
noSuggestions: 'Ei ehdotuksia',
|
||||
notAvailable: 'Valitettavasti oikoluku ei ole käytössä tällä hetkellä.',
|
||||
notInDic: 'Ei sanakirjassa',
|
||||
oneChange: 'Tarkistus valmis: Yksi sana muutettiin',
|
||||
progress: 'Tarkistus käynnissä...',
|
||||
title: 'Oikoluku',
|
||||
toolbar: 'Tarkista oikeinkirjoitus'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fo.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fo.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'fo', {
|
||||
btnIgnore: 'Forfjóna',
|
||||
btnIgnoreAll: 'Forfjóna alt',
|
||||
btnReplace: 'Yvirskriva',
|
||||
btnReplaceAll: 'Yvirskriva alt',
|
||||
btnUndo: 'Angra',
|
||||
changeTo: 'Broyt til',
|
||||
errorLoading: 'Feilur við innlesing av application service host: %s.',
|
||||
ieSpellDownload: 'Rættstavarin er ikki tøkur í tekstviðgeranum. Vilt tú heinta hann nú?',
|
||||
manyChanges: 'Rættstavarin liðugur: %1 orð broytt',
|
||||
noChanges: 'Rættstavarin liðugur: Einki orð varð broytt',
|
||||
noMispell: 'Rættstavarin liðugur: Eingin feilur funnin',
|
||||
noSuggestions: '- Einki uppskot -',
|
||||
notAvailable: 'Tíverri, ikki tøkt í løtuni.',
|
||||
notInDic: 'Finst ikki í orðabókini',
|
||||
oneChange: 'Rættstavarin liðugur: Eitt orð er broytt',
|
||||
progress: 'Rættstavarin arbeiðir...',
|
||||
title: 'Kanna stavseting',
|
||||
toolbar: 'Kanna stavseting'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fr-ca.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fr-ca.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'fr-ca', {
|
||||
btnIgnore: 'Ignorer',
|
||||
btnIgnoreAll: 'Ignorer tout',
|
||||
btnReplace: 'Remplacer',
|
||||
btnReplaceAll: 'Remplacer tout',
|
||||
btnUndo: 'Annuler',
|
||||
changeTo: 'Changer en',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Le Correcteur d\'orthographe n\'est pas installé. Souhaitez-vous le télécharger maintenant?',
|
||||
manyChanges: 'Vérification d\'orthographe terminée: %1 mots modifiés',
|
||||
noChanges: 'Vérification d\'orthographe terminée: Pas de modifications',
|
||||
noMispell: 'Vérification d\'orthographe terminée: pas d\'erreur trouvée',
|
||||
noSuggestions: '- Pas de suggestion -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Pas dans le dictionnaire',
|
||||
oneChange: 'Vérification d\'orthographe terminée: Un mot modifié',
|
||||
progress: 'Vérification d\'orthographe en cours...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Orthographe'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fr.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/fr.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'fr', {
|
||||
btnIgnore: 'Ignorer',
|
||||
btnIgnoreAll: 'Ignorer tout',
|
||||
btnReplace: 'Remplacer',
|
||||
btnReplaceAll: 'Remplacer tout',
|
||||
btnUndo: 'Annuler',
|
||||
changeTo: 'Modifier pour',
|
||||
errorLoading: 'Erreur du chargement du service depuis l\'hôte : %s.',
|
||||
ieSpellDownload: 'La vérification d\'orthographe n\'est pas installée. Voulez-vous la télécharger maintenant?',
|
||||
manyChanges: 'Vérification de l\'orthographe terminée : %1 mots corrigés.',
|
||||
noChanges: 'Vérification de l\'orthographe terminée : Aucun mot corrigé.',
|
||||
noMispell: 'Vérification de l\'orthographe terminée : aucune erreur trouvée.',
|
||||
noSuggestions: '- Aucune suggestion -',
|
||||
notAvailable: 'Désolé, le service est indisponible actuellement.',
|
||||
notInDic: 'N\'existe pas dans le dictionnaire.',
|
||||
oneChange: 'Vérification de l\'orthographe terminée : Un seul mot corrigé.',
|
||||
progress: 'Vérification de l\'orthographe en cours...',
|
||||
title: 'Vérifier l\'orthographe',
|
||||
toolbar: 'Vérifier l\'orthographe'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/gl.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/gl.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'gl', {
|
||||
btnIgnore: 'Ignorar',
|
||||
btnIgnoreAll: 'Ignorar Todas',
|
||||
btnReplace: 'Substituir',
|
||||
btnReplaceAll: 'Substituir Todas',
|
||||
btnUndo: 'Desfacer',
|
||||
changeTo: 'Cambiar a',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'O corrector ortográfico non está instalado. ¿Quere descargalo agora?',
|
||||
manyChanges: 'Corrección ortográfica rematada: %1 verbas substituidas',
|
||||
noChanges: 'Corrección ortográfica rematada: Non se substituiu nengunha verba',
|
||||
noMispell: 'Corrección ortográfica rematada: Non se atoparon erros',
|
||||
noSuggestions: '- Sen candidatos -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Non está no diccionario',
|
||||
oneChange: 'Corrección ortográfica rematada: Unha verba substituida',
|
||||
progress: 'Corrección ortográfica en progreso...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Corrección Ortográfica'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/gu.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/gu.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'gu', {
|
||||
btnIgnore: 'ઇગ્નોર/અવગણના કરવી',
|
||||
btnIgnoreAll: 'બધાની ઇગ્નોર/અવગણના કરવી',
|
||||
btnReplace: 'બદલવું',
|
||||
btnReplaceAll: 'બધા બદલી કરો',
|
||||
btnUndo: 'અન્ડૂ',
|
||||
changeTo: 'આનાથી બદલવું',
|
||||
errorLoading: 'સર્વિસ એપ્લીકેશન લોડ નથી થ: %s.',
|
||||
ieSpellDownload: 'સ્પેલ-ચેકર ઇન્સ્ટોલ નથી. શું તમે ડાઉનલોડ કરવા માંગો છો?',
|
||||
manyChanges: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: %1 શબ્દ બદલયા છે',
|
||||
noChanges: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એકપણ શબ્દ બદલયો નથી',
|
||||
noMispell: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: ખોટી જોડણી મળી નથી',
|
||||
noSuggestions: '- કઇ સજેશન નથી -',
|
||||
notAvailable: 'માફ કરશો, આ સુવિધા ઉપલબ્ધ નથી',
|
||||
notInDic: 'શબ્દકોશમાં નથી',
|
||||
oneChange: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એક શબ્દ બદલયો છે',
|
||||
progress: 'શબ્દની જોડણી/સ્પેલ ચેક ચાલુ છે...',
|
||||
title: 'સ્પેલ ',
|
||||
toolbar: 'જોડણી (સ્પેલિંગ) તપાસવી'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/he.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/he.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'he', {
|
||||
btnIgnore: 'התעלמות',
|
||||
btnIgnoreAll: 'התעלמות מהכל',
|
||||
btnReplace: 'החלפה',
|
||||
btnReplaceAll: 'החלפת הכל',
|
||||
btnUndo: 'החזרה',
|
||||
changeTo: 'שינוי ל',
|
||||
errorLoading: 'שגיאה בהעלאת השירות: %s.',
|
||||
ieSpellDownload: 'בודק האיות לא מותקן, האם להורידו?',
|
||||
manyChanges: 'בדיקות איות הסתיימה: %1 מילים שונו',
|
||||
noChanges: 'בדיקות איות הסתיימה: לא שונתה אף מילה',
|
||||
noMispell: 'בדיקות איות הסתיימה: לא נמצאו שגיאות כתיב',
|
||||
noSuggestions: '- אין הצעות -',
|
||||
notAvailable: 'לא נמצא שירות זמין.',
|
||||
notInDic: 'לא נמצא במילון',
|
||||
oneChange: 'בדיקות איות הסתיימה: שונתה מילה אחת',
|
||||
progress: 'בודק האיות בתהליך בדיקה....',
|
||||
title: 'בדיקת איות',
|
||||
toolbar: 'בדיקת איות'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/hi.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/hi.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'hi', {
|
||||
btnIgnore: 'इग्नोर',
|
||||
btnIgnoreAll: 'सभी इग्नोर करें',
|
||||
btnReplace: 'रिप्लेस',
|
||||
btnReplaceAll: 'सभी रिप्लेस करें',
|
||||
btnUndo: 'अन्डू',
|
||||
changeTo: 'इसमें बदलें',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'स्पॅल-चॅकर इन्स्टाल नहीं किया गया है। क्या आप इसे डाउनलोड करना चाहेंगे?',
|
||||
manyChanges: 'वर्तनी की जाँच : %1 शब्द बदले गये',
|
||||
noChanges: 'वर्तनी की जाँच :कोई शब्द नहीं बदला गया',
|
||||
noMispell: 'वर्तनी की जाँच : कोई गलत वर्तनी (स्पॅलिंग) नहीं पाई गई',
|
||||
noSuggestions: '- कोई सुझाव नहीं -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'शब्दकोश में नहीं',
|
||||
oneChange: 'वर्तनी की जाँच : एक शब्द बदला गया',
|
||||
progress: 'वर्तनी की जाँच (स्पॅल-चॅक) जारी है...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'वर्तनी (स्पेलिंग) जाँच'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/hr.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/hr.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'hr', {
|
||||
btnIgnore: 'Zanemari',
|
||||
btnIgnoreAll: 'Zanemari sve',
|
||||
btnReplace: 'Zamijeni',
|
||||
btnReplaceAll: 'Zamijeni sve',
|
||||
btnUndo: 'Vrati',
|
||||
changeTo: 'Promijeni u',
|
||||
errorLoading: 'Greška učitavanja aplikacije: %s.',
|
||||
ieSpellDownload: 'Provjera pravopisa nije instalirana. Želite li skinuti provjeru pravopisa?',
|
||||
manyChanges: 'Provjera završena: Promijenjeno %1 riječi',
|
||||
noChanges: 'Provjera završena: Nije napravljena promjena',
|
||||
noMispell: 'Provjera završena: Nema grešaka',
|
||||
noSuggestions: '-Nema preporuke-',
|
||||
notAvailable: 'Žao nam je, ali usluga trenutno nije dostupna.',
|
||||
notInDic: 'Nije u rječniku',
|
||||
oneChange: 'Provjera završena: Jedna riječ promjenjena',
|
||||
progress: 'Provjera u tijeku...',
|
||||
title: 'Provjera pravopisa',
|
||||
toolbar: 'Provjeri pravopis'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/hu.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/hu.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'hu', {
|
||||
btnIgnore: 'Kihagyja',
|
||||
btnIgnoreAll: 'Mindet kihagyja',
|
||||
btnReplace: 'Csere',
|
||||
btnReplaceAll: 'Összes cseréje',
|
||||
btnUndo: 'Visszavonás',
|
||||
changeTo: 'Módosítás',
|
||||
errorLoading: 'Hiba a szolgáltatás host betöltése közben: %s.',
|
||||
ieSpellDownload: 'A helyesírás-ellenőrző nincs telepítve. Szeretné letölteni most?',
|
||||
manyChanges: 'Helyesírás-ellenőrzés kész: %1 szó cserélve',
|
||||
noChanges: 'Helyesírás-ellenőrzés kész: Nincs változtatott szó',
|
||||
noMispell: 'Helyesírás-ellenőrzés kész: Nem találtam hibát',
|
||||
noSuggestions: 'Nincs javaslat',
|
||||
notAvailable: 'Sajnálom, de a szolgáltatás jelenleg nem elérhető.',
|
||||
notInDic: 'Nincs a szótárban',
|
||||
oneChange: 'Helyesírás-ellenőrzés kész: Egy szó cserélve',
|
||||
progress: 'Helyesírás-ellenőrzés folyamatban...',
|
||||
title: 'Helyesírás ellenörző',
|
||||
toolbar: 'Helyesírás-ellenőrzés'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/is.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/is.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'is', {
|
||||
btnIgnore: 'Hunsa',
|
||||
btnIgnoreAll: 'Hunsa allt',
|
||||
btnReplace: 'Skipta',
|
||||
btnReplaceAll: 'Skipta öllu',
|
||||
btnUndo: 'Til baka',
|
||||
changeTo: 'Tillaga',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Villuleit ekki sett upp.<br>Viltu setja hana upp?',
|
||||
manyChanges: 'Villuleit lokið: %1 orðum breytt',
|
||||
noChanges: 'Villuleit lokið: Engu orði breytt',
|
||||
noMispell: 'Villuleit lokið: Engin villa fannst',
|
||||
noSuggestions: '- engar tillögur -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Ekki í orðabókinni',
|
||||
oneChange: 'Villuleit lokið: Einu orði breytt',
|
||||
progress: 'Villuleit í gangi...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Villuleit'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/it.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/it.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'it', {
|
||||
btnIgnore: 'Ignora',
|
||||
btnIgnoreAll: 'Ignora tutto',
|
||||
btnReplace: 'Cambia',
|
||||
btnReplaceAll: 'Cambia tutto',
|
||||
btnUndo: 'Annulla',
|
||||
changeTo: 'Cambia in',
|
||||
errorLoading: 'Errore nel caricamento dell\'host col servizio applicativo: %s.',
|
||||
ieSpellDownload: 'Contollo ortografico non installato. Lo vuoi scaricare ora?',
|
||||
manyChanges: 'Controllo ortografico completato: %1 parole cambiate',
|
||||
noChanges: 'Controllo ortografico completato: nessuna parola cambiata',
|
||||
noMispell: 'Controllo ortografico completato: nessun errore trovato',
|
||||
noSuggestions: '- Nessun suggerimento -',
|
||||
notAvailable: 'Il servizio non è momentaneamente disponibile.',
|
||||
notInDic: 'Non nel dizionario',
|
||||
oneChange: 'Controllo ortografico completato: 1 parola cambiata',
|
||||
progress: 'Controllo ortografico in corso',
|
||||
title: 'Controllo ortografico',
|
||||
toolbar: 'Correttore ortografico'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ja.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ja.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ja', {
|
||||
btnIgnore: '無視',
|
||||
btnIgnoreAll: 'すべて無視',
|
||||
btnReplace: '置換',
|
||||
btnReplaceAll: 'すべて置換',
|
||||
btnUndo: 'やり直し',
|
||||
changeTo: '変更',
|
||||
errorLoading: 'アプリケーションサービスホスト読込みエラー: %s.',
|
||||
ieSpellDownload: 'スペルチェッカーがインストールされていません。今すぐダウンロードしますか?',
|
||||
manyChanges: 'スペルチェック完了: %1 語句変更されました',
|
||||
noChanges: 'スペルチェック完了: 語句は変更されませんでした',
|
||||
noMispell: 'スペルチェック完了: スペルの誤りはありませんでした',
|
||||
noSuggestions: '- 該当なし -',
|
||||
notAvailable: '申し訳ありません、現在サービスを利用することができません',
|
||||
notInDic: '辞書にありません',
|
||||
oneChange: 'スペルチェック完了: 1語句変更されました',
|
||||
progress: 'スペルチェック処理中...',
|
||||
title: 'スペルチェック',
|
||||
toolbar: 'スペルチェック'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ka.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ka.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ka', {
|
||||
btnIgnore: 'უგულებელყოფა',
|
||||
btnIgnoreAll: 'ყველას უგულებელყოფა',
|
||||
btnReplace: 'შეცვლა',
|
||||
btnReplaceAll: 'ყველას შეცვლა',
|
||||
btnUndo: 'გაუქმება',
|
||||
changeTo: 'შეცვლელი',
|
||||
errorLoading: 'სერვისის გამოძახების შეცდომა: %s.',
|
||||
ieSpellDownload: 'მართლწერის შემოწმება არაა დაინსტალირებული. ჩამოვქაჩოთ ინტერნეტიდან?',
|
||||
manyChanges: 'მართლწერის შემოწმება: %1 სიტყვა შეიცვალა',
|
||||
noChanges: 'მართლწერის შემოწმება: არაფერი შეცვლილა',
|
||||
noMispell: 'მართლწერის შემოწმება: შეცდომა არ მოიძებნა',
|
||||
noSuggestions: '- არაა შემოთავაზება -',
|
||||
notAvailable: 'უკაცრავად, ეს სერვისი ამჟამად მიუწვდომელია.',
|
||||
notInDic: 'არაა ლექსიკონში',
|
||||
oneChange: 'მართლწერის შემოწმება: ერთი სიტყვა შეიცვალა',
|
||||
progress: 'მიმდინარეობს მართლწერის შემოწმება...',
|
||||
title: 'მართლწერა',
|
||||
toolbar: 'მართლწერა'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/km.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/km.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'km', {
|
||||
btnIgnore: 'មិនផ្លាស់ប្តូរ',
|
||||
btnIgnoreAll: 'មិនផ្លាស់ប្តូរ ទាំងអស់',
|
||||
btnReplace: 'ជំនួស',
|
||||
btnReplaceAll: 'ជំនួសទាំងអស់',
|
||||
btnUndo: 'សារឡើងវិញ',
|
||||
changeTo: 'ផ្លាស់ប្តូរទៅ',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'ពុំមានកម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ ។ តើចង់ទាញយកពីណា?',
|
||||
manyChanges: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: %1 ពាក្យបានផ្លាស់ប្តូរ',
|
||||
noChanges: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពុំមានផ្លាស់ប្តូរ',
|
||||
noMispell: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: គ្មានកំហុស',
|
||||
noSuggestions: '- គ្មានសំណើរ -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'គ្មានក្នុងវចនានុក្រម',
|
||||
oneChange: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពាក្យមួយត្រូចបានផ្លាស់ប្តូរ',
|
||||
progress: 'កំពុងពិនិត្យអក្ខរាវិរុទ្ធ...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'ពិនិត្យអក្ខរាវិរុទ្ធ'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ko.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ko.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ko', {
|
||||
btnIgnore: '건너뜀',
|
||||
btnIgnoreAll: '모두 건너뜀',
|
||||
btnReplace: '변경',
|
||||
btnReplaceAll: '모두 변경',
|
||||
btnUndo: '취소',
|
||||
changeTo: '변경할 단어',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: '철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?',
|
||||
manyChanges: '철자검사 완료: %1 단어가 변경되었습니다.',
|
||||
noChanges: '철자검사 완료: 변경된 단어가 없습니다.',
|
||||
noMispell: '철자검사 완료: 잘못된 철자가 없습니다.',
|
||||
noSuggestions: '- 추천단어 없음 -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: '사전에 없는 단어',
|
||||
oneChange: '철자검사 완료: 단어가 변경되었습니다.',
|
||||
progress: '철자검사를 진행중입니다...',
|
||||
title: 'Spell Check',
|
||||
toolbar: '철자검사'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ku.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ku.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ku', {
|
||||
btnIgnore: 'پشتگوێ کردن',
|
||||
btnIgnoreAll: 'پشتگوێکردنی ههمووی',
|
||||
btnReplace: 'لهبریدانن',
|
||||
btnReplaceAll: 'لهبریدانانی ههمووی',
|
||||
btnUndo: 'پووچکردنهوه',
|
||||
changeTo: 'گۆڕینی بۆ',
|
||||
errorLoading: 'ههڵه لههێنانی داخوازینامهی خانهخۆێی ڕاژه: %s.',
|
||||
ieSpellDownload: 'پشکنینی ڕێنووس دانهمزراوه. دهتهوێت ئێستا دایبگریت?',
|
||||
manyChanges: 'پشکنینی ڕێنووس کۆتای هات: لهسهدا %1 ی وشهکان گۆڕدرا',
|
||||
noChanges: 'پشکنینی ڕێنووس کۆتای هات: هیچ وشهیهك نۆگۆڕدرا',
|
||||
noMispell: 'پشکنینی ڕێنووس کۆتای هات: هیچ ههڵهیهکی ڕێنووس نهدۆزراوه',
|
||||
noSuggestions: '- هیچ پێشنیارێك -',
|
||||
notAvailable: 'ببووره، لهمکاتهدا ڕاژهکه لهبهردهستا نیه.',
|
||||
notInDic: 'لهفهرههنگ دانیه',
|
||||
oneChange: 'پشکنینی ڕێنووس کۆتای هات: یهك وشه گۆڕدرا',
|
||||
progress: 'پشکنینی ڕێنووس لهبهردهوامبوون دایه...',
|
||||
title: 'پشکنینی ڕێنووس',
|
||||
toolbar: 'پشکنینی ڕێنووس'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/lt.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/lt.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'lt', {
|
||||
btnIgnore: 'Ignoruoti',
|
||||
btnIgnoreAll: 'Ignoruoti visus',
|
||||
btnReplace: 'Pakeisti',
|
||||
btnReplaceAll: 'Pakeisti visus',
|
||||
btnUndo: 'Atšaukti',
|
||||
changeTo: 'Pakeisti į',
|
||||
errorLoading: 'Klaida įkraunant servisą: %s.',
|
||||
ieSpellDownload: 'Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį dabar atsisiųsti?',
|
||||
manyChanges: 'Rašybos tikrinimas baigtas: Pakeista %1 žodžių',
|
||||
noChanges: 'Rašybos tikrinimas baigtas: Nėra pakeistų žodžių',
|
||||
noMispell: 'Rašybos tikrinimas baigtas: Nerasta rašybos klaidų',
|
||||
noSuggestions: '- Nėra pasiūlymų -',
|
||||
notAvailable: 'Atleiskite, šiuo metu servisas neprieinamas.',
|
||||
notInDic: 'Žodyne nerastas',
|
||||
oneChange: 'Rašybos tikrinimas baigtas: Vienas žodis pakeistas',
|
||||
progress: 'Vyksta rašybos tikrinimas...',
|
||||
title: 'Tikrinti klaidas',
|
||||
toolbar: 'Rašybos tikrinimas'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/lv.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/lv.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'lv', {
|
||||
btnIgnore: 'Ignorēt',
|
||||
btnIgnoreAll: 'Ignorēt visu',
|
||||
btnReplace: 'Aizvietot',
|
||||
btnReplaceAll: 'Aizvietot visu',
|
||||
btnUndo: 'Atcelt',
|
||||
changeTo: 'Nomainīt uz',
|
||||
errorLoading: 'Kļūda ielādējot aplikācijas servisa adresi: %s.',
|
||||
ieSpellDownload: 'Pareizrakstības pārbaudītājs nav pievienots. Vai vēlaties to lejupielādēt tagad?',
|
||||
manyChanges: 'Pareizrakstības pārbaude pabeigta: %1 vārdi tika mainīti',
|
||||
noChanges: 'Pareizrakstības pārbaude pabeigta: nekas netika labots',
|
||||
noMispell: 'Pareizrakstības pārbaude pabeigta: kļūdas netika atrastas',
|
||||
noSuggestions: '- Nav ieteikumu -',
|
||||
notAvailable: 'Atvainojiet, bet serviss šobrīd nav pieejams.',
|
||||
notInDic: 'Netika atrasts vārdnīcā',
|
||||
oneChange: 'Pareizrakstības pārbaude pabeigta: 1 vārds izmainīts',
|
||||
progress: 'Notiek pareizrakstības pārbaude...',
|
||||
title: 'Pārbaudīt gramatiku',
|
||||
toolbar: 'Pareizrakstības pārbaude'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/mk.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/mk.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'mk', {
|
||||
btnIgnore: 'Ignore',
|
||||
btnIgnoreAll: 'Ignore All',
|
||||
btnReplace: 'Replace',
|
||||
btnReplaceAll: 'Replace All',
|
||||
btnUndo: 'Undo',
|
||||
changeTo: 'Change to',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Spell checker not installed. Do you want to download it now?',
|
||||
manyChanges: 'Spell check complete: %1 words changed',
|
||||
noChanges: 'Spell check complete: No words changed',
|
||||
noMispell: 'Spell check complete: No misspellings found',
|
||||
noSuggestions: '- No suggestions -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Not in dictionary',
|
||||
oneChange: 'Spell check complete: One word changed',
|
||||
progress: 'Spell check in progress...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Check Spelling'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/mn.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/mn.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'mn', {
|
||||
btnIgnore: 'Зөвшөөрөх',
|
||||
btnIgnoreAll: 'Бүгдийг зөвшөөрөх',
|
||||
btnReplace: 'Солих',
|
||||
btnReplaceAll: 'Бүгдийг Дарж бичих',
|
||||
btnUndo: 'Буцаах',
|
||||
changeTo: 'Өөрчлөх',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Дүрэм шалгагч суугаагүй байна. Татаж авахыг хүсч байна уу?',
|
||||
manyChanges: 'Дүрэм шалгаад дууссан: %1 үг өөрчлөгдсөн',
|
||||
noChanges: 'Дүрэм шалгаад дууссан: үг өөрчлөгдөөгүй',
|
||||
noMispell: 'Дүрэм шалгаад дууссан: Алдаа олдсонгүй',
|
||||
noSuggestions: '- Тайлбаргүй -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Толь бичиггүй',
|
||||
oneChange: 'Дүрэм шалгаад дууссан: 1 үг өөрчлөгдсөн',
|
||||
progress: 'Дүрэм шалгаж байгаа үйл явц...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Үгийн дүрэх шалгах'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ms.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ms.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ms', {
|
||||
btnIgnore: 'Biar',
|
||||
btnIgnoreAll: 'Biarkan semua',
|
||||
btnReplace: 'Ganti',
|
||||
btnReplaceAll: 'Gantikan Semua',
|
||||
btnUndo: 'Batalkan',
|
||||
changeTo: 'Tukarkan kepada',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Pemeriksa ejaan tidak dipasang. Adakah anda mahu muat turun sekarang?',
|
||||
manyChanges: 'Pemeriksaan ejaan siap: %1 perkataan diubah',
|
||||
noChanges: 'Pemeriksaan ejaan siap: Tiada perkataan diubah',
|
||||
noMispell: 'Pemeriksaan ejaan siap: Tiada salah ejaan',
|
||||
noSuggestions: '- Tiada cadangan -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Tidak terdapat didalam kamus',
|
||||
oneChange: 'Pemeriksaan ejaan siap: Satu perkataan telah diubah',
|
||||
progress: 'Pemeriksaan ejaan sedang diproses...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Semak Ejaan'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/nb.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/nb.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'nb', {
|
||||
btnIgnore: 'Ignorer',
|
||||
btnIgnoreAll: 'Ignorer alle',
|
||||
btnReplace: 'Erstatt',
|
||||
btnReplaceAll: 'Erstatt alle',
|
||||
btnUndo: 'Angre',
|
||||
changeTo: 'Endre til',
|
||||
errorLoading: 'Feil under lasting av applikasjonstjenestetjener: %s.',
|
||||
ieSpellDownload: 'Stavekontroll er ikke installert. Vil du laste den ned nå?',
|
||||
manyChanges: 'Stavekontroll fullført: %1 ord endret',
|
||||
noChanges: 'Stavekontroll fullført: ingen ord endret',
|
||||
noMispell: 'Stavekontroll fullført: ingen feilstavinger funnet',
|
||||
noSuggestions: '- Ingen forslag -',
|
||||
notAvailable: 'Beklager, tjenesten er utilgjenglig nå.',
|
||||
notInDic: 'Ikke i ordboken',
|
||||
oneChange: 'Stavekontroll fullført: Ett ord endret',
|
||||
progress: 'Stavekontroll pågår...',
|
||||
title: 'Stavekontroll',
|
||||
toolbar: 'Stavekontroll'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/nl.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/nl.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'nl', {
|
||||
btnIgnore: 'Negeren',
|
||||
btnIgnoreAll: 'Alles negeren',
|
||||
btnReplace: 'Vervangen',
|
||||
btnReplaceAll: 'Alles vervangen',
|
||||
btnUndo: 'Ongedaan maken',
|
||||
changeTo: 'Wijzig in',
|
||||
errorLoading: 'Er is een fout opgetreden bij het laden van de dienst: %s.',
|
||||
ieSpellDownload: 'De spellingscontrole is niet geïnstalleerd. Wilt u deze nu downloaden?',
|
||||
manyChanges: 'Klaar met spellingscontrole: %1 woorden aangepast',
|
||||
noChanges: 'Klaar met spellingscontrole: geen woorden aangepast',
|
||||
noMispell: 'Klaar met spellingscontrole: geen fouten gevonden',
|
||||
noSuggestions: '- Geen suggesties -',
|
||||
notAvailable: 'Excuses, deze dienst is momenteel niet beschikbaar.',
|
||||
notInDic: 'Niet in het woordenboek',
|
||||
oneChange: 'Klaar met spellingscontrole: één woord aangepast',
|
||||
progress: 'Bezig met spellingscontrole...',
|
||||
title: 'Spellingscontrole',
|
||||
toolbar: 'Spellingscontrole'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/no.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/no.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'no', {
|
||||
btnIgnore: 'Ignorer',
|
||||
btnIgnoreAll: 'Ignorer alle',
|
||||
btnReplace: 'Erstatt',
|
||||
btnReplaceAll: 'Erstatt alle',
|
||||
btnUndo: 'Angre',
|
||||
changeTo: 'Endre til',
|
||||
errorLoading: 'Feil under lasting av applikasjonstjenestetjener: %s.',
|
||||
ieSpellDownload: 'Stavekontroll er ikke installert. Vil du laste den ned nå?',
|
||||
manyChanges: 'Stavekontroll fullført: %1 ord endret',
|
||||
noChanges: 'Stavekontroll fullført: ingen ord endret',
|
||||
noMispell: 'Stavekontroll fullført: ingen feilstavinger funnet',
|
||||
noSuggestions: '- Ingen forslag -',
|
||||
notAvailable: 'Beklager, tjenesten er utilgjenglig nå.',
|
||||
notInDic: 'Ikke i ordboken',
|
||||
oneChange: 'Stavekontroll fullført: Ett ord endret',
|
||||
progress: 'Stavekontroll pågår...',
|
||||
title: 'Stavekontroll',
|
||||
toolbar: 'Stavekontroll'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/pl.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/pl.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'pl', {
|
||||
btnIgnore: 'Ignoruj',
|
||||
btnIgnoreAll: 'Ignoruj wszystkie',
|
||||
btnReplace: 'Zmień',
|
||||
btnReplaceAll: 'Zmień wszystkie',
|
||||
btnUndo: 'Cofnij',
|
||||
changeTo: 'Zmień na',
|
||||
errorLoading: 'Błąd wczytywania hosta aplikacji usługi: %s.',
|
||||
ieSpellDownload: 'Słownik nie jest zainstalowany. Czy chcesz go pobrać?',
|
||||
manyChanges: 'Sprawdzanie zakończone: zmieniono %l słów',
|
||||
noChanges: 'Sprawdzanie zakończone: nie zmieniono żadnego słowa',
|
||||
noMispell: 'Sprawdzanie zakończone: nie znaleziono błędów',
|
||||
noSuggestions: '- Brak sugestii -',
|
||||
notAvailable: 'Przepraszamy, ale usługa jest obecnie niedostępna.',
|
||||
notInDic: 'Słowa nie ma w słowniku',
|
||||
oneChange: 'Sprawdzanie zakończone: zmieniono jedno słowo',
|
||||
progress: 'Trwa sprawdzanie...',
|
||||
title: 'Sprawdź pisownię',
|
||||
toolbar: 'Sprawdź pisownię'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/pt-br.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/pt-br.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'pt-br', {
|
||||
btnIgnore: 'Ignorar uma vez',
|
||||
btnIgnoreAll: 'Ignorar Todas',
|
||||
btnReplace: 'Alterar',
|
||||
btnReplaceAll: 'Alterar Todas',
|
||||
btnUndo: 'Desfazer',
|
||||
changeTo: 'Alterar para',
|
||||
errorLoading: 'Erro carregando servidor de aplicação: %s.',
|
||||
ieSpellDownload: 'A verificação ortográfica não foi instalada. Você gostaria de realizar o download agora?',
|
||||
manyChanges: 'Verificação ortográfica encerrada: %1 palavras foram alteradas',
|
||||
noChanges: 'Verificação ortográfica encerrada: Não houve alterações',
|
||||
noMispell: 'Verificação encerrada: Não foram encontrados erros de ortografia',
|
||||
noSuggestions: '-sem sugestões de ortografia-',
|
||||
notAvailable: 'Desculpe, o serviço não está disponível no momento.',
|
||||
notInDic: 'Não encontrada',
|
||||
oneChange: 'Verificação ortográfica encerrada: Uma palavra foi alterada',
|
||||
progress: 'Verificação ortográfica em andamento...',
|
||||
title: 'Corretor Ortográfico',
|
||||
toolbar: 'Verificar Ortografia'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/pt.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/pt.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'pt', {
|
||||
btnIgnore: 'Ignorar',
|
||||
btnIgnoreAll: 'Ignorar Tudo',
|
||||
btnReplace: 'Substituir',
|
||||
btnReplaceAll: 'Substituir Tudo',
|
||||
btnUndo: 'Anular',
|
||||
changeTo: 'Mudar para',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: ' Verificação ortográfica não instalada. Quer descarregar agora?',
|
||||
manyChanges: 'Verificação ortográfica completa: %1 palavras alteradas',
|
||||
noChanges: 'Verificação ortográfica completa: não houve alteração de palavras',
|
||||
noMispell: 'Verificação ortográfica completa: não foram encontrados erros',
|
||||
noSuggestions: '- Sem sugestões -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Não está num directório',
|
||||
oneChange: 'Verificação ortográfica completa: uma palavra alterada',
|
||||
progress: 'Verificação ortográfica em progresso…',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Verificação Ortográfica'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ro.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ro.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ro', {
|
||||
btnIgnore: 'Ignoră',
|
||||
btnIgnoreAll: 'Ignoră toate',
|
||||
btnReplace: 'Înlocuieşte',
|
||||
btnReplaceAll: 'Înlocuieşte tot',
|
||||
btnUndo: 'Starea anterioară (undo)',
|
||||
changeTo: 'Schimbă în',
|
||||
errorLoading: 'Eroare în lansarea aplicației service host %s.',
|
||||
ieSpellDownload: 'Unealta pentru verificat textul (Spell checker) neinstalată. Doriţi să o descărcaţi acum?',
|
||||
manyChanges: 'Verificarea textului terminată: 1% cuvinte modificate',
|
||||
noChanges: 'Verificarea textului terminată: Niciun cuvânt modificat',
|
||||
noMispell: 'Verificarea textului terminată: Nicio greşeală găsită',
|
||||
noSuggestions: '- Fără sugestii -',
|
||||
notAvailable: 'Scuzați, dar serviciul nu este disponibil momentan.',
|
||||
notInDic: 'Nu e în dicţionar',
|
||||
oneChange: 'Verificarea textului terminată: Un cuvânt modificat',
|
||||
progress: 'Verificarea textului în desfăşurare...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Verifică scrierea textului'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ru.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ru.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ru', {
|
||||
btnIgnore: 'Пропустить',
|
||||
btnIgnoreAll: 'Пропустить всё',
|
||||
btnReplace: 'Заменить',
|
||||
btnReplaceAll: 'Заменить всё',
|
||||
btnUndo: 'Отменить',
|
||||
changeTo: 'Изменить на',
|
||||
errorLoading: 'Произошла ошибка при подключении к серверу проверки орфографии: %s.',
|
||||
ieSpellDownload: 'Модуль проверки орфографии не установлен. Хотите скачать его?',
|
||||
manyChanges: 'Проверка орфографии завершена. Изменено слов: %1',
|
||||
noChanges: 'Проверка орфографии завершена. Не изменено ни одного слова',
|
||||
noMispell: 'Проверка орфографии завершена. Ошибок не найдено',
|
||||
noSuggestions: '- Варианты отсутствуют -',
|
||||
notAvailable: 'Извините, но в данный момент сервис недоступен.',
|
||||
notInDic: 'Отсутствует в словаре',
|
||||
oneChange: 'Проверка орфографии завершена. Изменено одно слово',
|
||||
progress: 'Орфография проверяется...',
|
||||
title: 'Проверка орфографии',
|
||||
toolbar: 'Проверить орфографию'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sk.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sk.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'sk', {
|
||||
btnIgnore: 'Ignorovať',
|
||||
btnIgnoreAll: 'Ignorovať všetko',
|
||||
btnReplace: 'Prepísat',
|
||||
btnReplaceAll: 'Prepísat všetko',
|
||||
btnUndo: 'Späť',
|
||||
changeTo: 'Zmeniť na',
|
||||
errorLoading: 'Chyba pri načítaní slovníka z adresy: %s.',
|
||||
ieSpellDownload: 'Kontrola pravopisu nie je naištalovaná. Chcete ju teraz stiahnuť?',
|
||||
manyChanges: 'Kontrola pravopisu dokončená: Bolo zmenených %1 slov',
|
||||
noChanges: 'Kontrola pravopisu dokončená: Neboli zmenené žiadne slová',
|
||||
noMispell: 'Kontrola pravopisu dokončená: Neboli nájdené žiadne chyby pravopisu',
|
||||
noSuggestions: '- Žiadny návrh -',
|
||||
notAvailable: 'Prepáčte, ale služba je momentálne nedostupná.',
|
||||
notInDic: 'Nie je v slovníku',
|
||||
oneChange: 'Kontrola pravopisu dokončená: Bolo zmenené jedno slovo',
|
||||
progress: 'Prebieha kontrola pravopisu...',
|
||||
title: 'Skontrolovať pravopis',
|
||||
toolbar: 'Kontrola pravopisu'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sl.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sl.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'sl', {
|
||||
btnIgnore: 'Prezri',
|
||||
btnIgnoreAll: 'Prezri vse',
|
||||
btnReplace: 'Zamenjaj',
|
||||
btnReplaceAll: 'Zamenjaj vse',
|
||||
btnUndo: 'Razveljavi',
|
||||
changeTo: 'Spremeni v',
|
||||
errorLoading: 'Napaka pri nalaganju storitve programa na naslovu %s.',
|
||||
ieSpellDownload: 'Črkovalnik ni nameščen. Ali ga želite prenesti sedaj?',
|
||||
manyChanges: 'Črkovanje je končano: Spremenjenih je bilo %1 besed',
|
||||
noChanges: 'Črkovanje je končano: Nobena beseda ni bila spremenjena',
|
||||
noMispell: 'Črkovanje je končano: Brez napak',
|
||||
noSuggestions: '- Ni predlogov -',
|
||||
notAvailable: 'Oprostite, storitev trenutno ni dosegljiva.',
|
||||
notInDic: 'Ni v slovarju',
|
||||
oneChange: 'Črkovanje je končano: Spremenjena je bila ena beseda',
|
||||
progress: 'Preverjanje črkovanja se izvaja...',
|
||||
title: 'Črkovalnik',
|
||||
toolbar: 'Preveri črkovanje'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sr-latn.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sr-latn.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'sr-latn', {
|
||||
btnIgnore: 'Ignoriši',
|
||||
btnIgnoreAll: 'Ignoriši sve',
|
||||
btnReplace: 'Zameni',
|
||||
btnReplaceAll: 'Zameni sve',
|
||||
btnUndo: 'Vrati akciju',
|
||||
changeTo: 'Izmeni',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Provera spelovanja nije instalirana. Da li želite da je skinete sa Interneta?',
|
||||
manyChanges: 'Provera spelovanja završena: %1 reč(i) je izmenjeno',
|
||||
noChanges: 'Provera spelovanja završena: Nije izmenjena nijedna rec',
|
||||
noMispell: 'Provera spelovanja završena: greške nisu pronadene',
|
||||
noSuggestions: '- Bez sugestija -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Nije u rečniku',
|
||||
oneChange: 'Provera spelovanja završena: Izmenjena je jedna reč',
|
||||
progress: 'Provera spelovanja u toku...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Proveri spelovanje'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sr.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sr.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'sr', {
|
||||
btnIgnore: 'Игнориши',
|
||||
btnIgnoreAll: 'Игнориши све',
|
||||
btnReplace: 'Замени',
|
||||
btnReplaceAll: 'Замени све',
|
||||
btnUndo: 'Врати акцију',
|
||||
changeTo: 'Измени',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'Провера спеловања није инсталирана. Да ли желите да је скинете са Интернета?',
|
||||
manyChanges: 'Провера спеловања завршена: %1 реч(и) је измењено',
|
||||
noChanges: 'Провера спеловања завршена: Није измењена ниједна реч',
|
||||
noMispell: 'Провера спеловања завршена: грешке нису пронађене',
|
||||
noSuggestions: '- Без сугестија -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'Није у речнику',
|
||||
oneChange: 'Провера спеловања завршена: Измењена је једна реч',
|
||||
progress: 'Провера спеловања у току...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'Провери спеловање'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sv.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/sv.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'sv', {
|
||||
btnIgnore: 'Ignorera',
|
||||
btnIgnoreAll: 'Ignorera alla',
|
||||
btnReplace: 'Ersätt',
|
||||
btnReplaceAll: 'Ersätt alla',
|
||||
btnUndo: 'Ångra',
|
||||
changeTo: 'Ändra till',
|
||||
errorLoading: 'Tjänsten är ej tillgänglig: %s.',
|
||||
ieSpellDownload: 'Stavningskontrollen är ej installerad. Vill du göra det nu?',
|
||||
manyChanges: 'Stavningskontroll slutförd: %1 ord rättades.',
|
||||
noChanges: 'Stavningskontroll slutförd: Inga ord rättades.',
|
||||
noMispell: 'Stavningskontroll slutförd: Inga stavfel påträffades.',
|
||||
noSuggestions: '- Förslag saknas -',
|
||||
notAvailable: 'Tyvärr är tjänsten ej tillgänglig nu',
|
||||
notInDic: 'Saknas i ordlistan',
|
||||
oneChange: 'Stavningskontroll slutförd: Ett ord rättades.',
|
||||
progress: 'Stavningskontroll pågår...',
|
||||
title: 'Kontrollera stavning',
|
||||
toolbar: 'Stavningskontroll'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/th.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/th.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'th', {
|
||||
btnIgnore: 'ยกเว้น',
|
||||
btnIgnoreAll: 'ยกเว้นทั้งหมด',
|
||||
btnReplace: 'แทนที่',
|
||||
btnReplaceAll: 'แทนที่ทั้งหมด',
|
||||
btnUndo: 'ยกเลิก',
|
||||
changeTo: 'แก้ไขเป็น',
|
||||
errorLoading: 'Error loading application service host: %s.',
|
||||
ieSpellDownload: 'ไม่ได้ติดตั้งระบบตรวจสอบคำสะกด. ต้องการติดตั้งไหมครับ?',
|
||||
manyChanges: 'ตรวจสอบคำสะกดเสร็จสิ้น:: แก้ไข %1 คำ',
|
||||
noChanges: 'ตรวจสอบคำสะกดเสร็จสิ้น: ไม่มีการแก้คำใดๆ',
|
||||
noMispell: 'ตรวจสอบคำสะกดเสร็จสิ้น: ไม่พบคำสะกดผิด',
|
||||
noSuggestions: '- ไม่มีคำแนะนำใดๆ -',
|
||||
notAvailable: 'Sorry, but service is unavailable now.',
|
||||
notInDic: 'ไม่พบในดิกชันนารี',
|
||||
oneChange: 'ตรวจสอบคำสะกดเสร็จสิ้น: แก้ไข1คำ',
|
||||
progress: 'กำลังตรวจสอบคำสะกด...',
|
||||
title: 'Spell Check',
|
||||
toolbar: 'ตรวจการสะกดคำ'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/tr.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/tr.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'tr', {
|
||||
btnIgnore: 'Yoksay',
|
||||
btnIgnoreAll: 'Tümünü Yoksay',
|
||||
btnReplace: 'Değiştir',
|
||||
btnReplaceAll: 'Tümünü Değiştir',
|
||||
btnUndo: 'Geri Al',
|
||||
changeTo: 'Şuna değiştir:',
|
||||
errorLoading: 'Uygulamada yüklerken hata oluştu: %s.',
|
||||
ieSpellDownload: 'Yazım denetimi yüklenmemiş. Şimdi yüklemek ister misiniz?',
|
||||
manyChanges: 'Yazım denetimi tamamlandı: %1 kelime değiştirildi',
|
||||
noChanges: 'Yazım denetimi tamamlandı: Hiçbir kelime değiştirilmedi',
|
||||
noMispell: 'Yazım denetimi tamamlandı: Yanlış yazıma rastlanmadı',
|
||||
noSuggestions: '- Öneri Yok -',
|
||||
notAvailable: 'Üzügünüz, bu servis şuanda hizmet dışıdır.',
|
||||
notInDic: 'Sözlükte Yok',
|
||||
oneChange: 'Yazım denetimi tamamlandı: Bir kelime değiştirildi',
|
||||
progress: 'Yazım denetimi işlemde...',
|
||||
title: 'Yazımı Denetle',
|
||||
toolbar: 'Yazım Denetimi'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ug.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/ug.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'ug', {
|
||||
btnIgnore: 'پەرۋا قىلما',
|
||||
btnIgnoreAll: 'ھەممىگە پەرۋا قىلما',
|
||||
btnReplace: 'ئالماشتۇر',
|
||||
btnReplaceAll: 'ھەممىنى ئالماشتۇر',
|
||||
btnUndo: 'يېنىۋال',
|
||||
changeTo: 'ئۆزگەرت',
|
||||
errorLoading: 'لازىملىق مۇلازىمېتىرنى يۈكلىگەندە خاتالىق كۆرۈلدى: %s.',
|
||||
ieSpellDownload: 'ئىملا تەكشۈرۈش قىستۇرمىسى تېخى ئورنىتىلمىغان، ھازىرلا چۈشۈرەمسىز؟',
|
||||
manyChanges: 'ئىملا تەكشۈرۈش تامام: %1 سۆزنى ئۆزگەرتتى',
|
||||
noChanges: 'ئىملا تەكشۈرۈش تامام: ھېچقانداق سۆزنى ئۆزگەرتمىدى',
|
||||
noMispell: 'ئىملا تەكشۈرۈش تامام: ئىملا خاتالىقى بايقالمىدى',
|
||||
noSuggestions: '-تەكلىپ يوق-',
|
||||
notAvailable: 'كەچۈرۈڭ، مۇلازىمېتىرنى ۋاقتىنچە ئىشلەتكىلى بولمايدۇ',
|
||||
notInDic: 'لۇغەتتە يوق',
|
||||
oneChange: 'ئىملا تەكشۈرۈش تامام: بىر سۆزنى ئۆزگەرتتى',
|
||||
progress: 'ئىملا تەكشۈرۈۋاتىدۇ…',
|
||||
title: 'ئىملا تەكشۈر',
|
||||
toolbar: 'ئىملا تەكشۈر'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/uk.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/uk.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'uk', {
|
||||
btnIgnore: 'Пропустити',
|
||||
btnIgnoreAll: 'Пропустити все',
|
||||
btnReplace: 'Замінити',
|
||||
btnReplaceAll: 'Замінити все',
|
||||
btnUndo: 'Назад',
|
||||
changeTo: 'Замінити на',
|
||||
errorLoading: 'Помилка завантаження : %s.',
|
||||
ieSpellDownload: 'Модуль перевірки орфографії не встановлено. Бажаєте завантажити його зараз?',
|
||||
manyChanges: 'Перевірку орфографії завершено: 1% слів(ова) змінено',
|
||||
noChanges: 'Перевірку орфографії завершено: жодне слово не змінено',
|
||||
noMispell: 'Перевірку орфографії завершено: помилок не знайдено',
|
||||
noSuggestions: '- немає варіантів -',
|
||||
notAvailable: 'Вибачте, але сервіс наразі недоступний.',
|
||||
notInDic: 'Немає в словнику',
|
||||
oneChange: 'Перевірку орфографії завершено: змінено одне слово',
|
||||
progress: 'Виконується перевірка орфографії...',
|
||||
title: 'Перевірка орфографії',
|
||||
toolbar: 'Перевірити орфографію'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/vi.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/vi.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'vi', {
|
||||
btnIgnore: 'Bỏ qua',
|
||||
btnIgnoreAll: 'Bỏ qua tất cả',
|
||||
btnReplace: 'Thay thế',
|
||||
btnReplaceAll: 'Thay thế tất cả',
|
||||
btnUndo: 'Phục hồi lại',
|
||||
changeTo: 'Chuyển thành',
|
||||
errorLoading: 'Lỗi khi đang nạp dịch vụ ứng dụng: %s.',
|
||||
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ờ?',
|
||||
manyChanges: 'Hoàn tất kiểm tra chính tả: %1 từ đã được thay đổi',
|
||||
noChanges: 'Hoàn tất kiểm tra chính tả: Không có từ nào được thay đổi',
|
||||
noMispell: 'Hoàn tất kiểm tra chính tả: Không có lỗi chính tả',
|
||||
noSuggestions: '- Không đưa ra gợi ý về từ -',
|
||||
notAvailable: 'Xin lỗi, dịch vụ này hiện tại không có.',
|
||||
notInDic: 'Không có trong từ điển',
|
||||
oneChange: 'Hoàn tất kiểm tra chính tả: Một từ đã được thay đổi',
|
||||
progress: 'Đang tiến hành kiểm tra chính tả...',
|
||||
title: 'Kiểm tra chính tả',
|
||||
toolbar: 'Kiểm tra chính tả'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/zh-cn.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/zh-cn.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'zh-cn', {
|
||||
btnIgnore: '忽略',
|
||||
btnIgnoreAll: '全部忽略',
|
||||
btnReplace: '替换',
|
||||
btnReplaceAll: '全部替换',
|
||||
btnUndo: '撤消',
|
||||
changeTo: '更改为',
|
||||
errorLoading: '加载应该服务主机时出错: %s.',
|
||||
ieSpellDownload: '拼写检查插件还没安装, 您是否想现在就下载?',
|
||||
manyChanges: '拼写检查完成: 更改了 %1 个单词',
|
||||
noChanges: '拼写检查完成: 没有更改任何单词',
|
||||
noMispell: '拼写检查完成: 没有发现拼写错误',
|
||||
noSuggestions: '- 没有建议 -',
|
||||
notAvailable: '抱歉, 服务目前暂不可用',
|
||||
notInDic: '没有在字典里',
|
||||
oneChange: '拼写检查完成: 更改了一个单词',
|
||||
progress: '正在进行拼写检查...',
|
||||
title: '拼写检查',
|
||||
toolbar: '拼写检查'
|
||||
});
|
||||
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/zh.js
Normal file
24
htdocs/includes/ckeditor/_source/plugins/wsc/lang/zh.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
CKEDITOR.plugins.setLang( 'wsc', 'zh', {
|
||||
btnIgnore: '忽略',
|
||||
btnIgnoreAll: '全部忽略',
|
||||
btnReplace: '取代',
|
||||
btnReplaceAll: '全部取代',
|
||||
btnUndo: '復原',
|
||||
changeTo: '更改為',
|
||||
errorLoading: '無法聯系侍服器: %s.',
|
||||
ieSpellDownload: '尚未安裝拼字檢查元件。您是否想要現在下載?',
|
||||
manyChanges: '拼字檢查完成:更改了 %1 個單字',
|
||||
noChanges: '拼字檢查完成:未更改任何單字',
|
||||
noMispell: '拼字檢查完成:未發現拼字錯誤',
|
||||
noSuggestions: '- 無建議值 -',
|
||||
notAvailable: '抱歉,服務目前暫不可用',
|
||||
notInDic: '不在字典中',
|
||||
oneChange: '拼字檢查完成:更改了 1 個單字',
|
||||
progress: '進行拼字檢查中…',
|
||||
title: '拼字檢查',
|
||||
toolbar: '拼字檢查'
|
||||
});
|
||||
@@ -1,33 +1,65 @@
|
||||
/*
|
||||
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file Spell checker
|
||||
*/
|
||||
|
||||
// Register a plugin named "wsc".
|
||||
CKEDITOR.plugins.add( 'wsc',
|
||||
{
|
||||
requires : [ 'dialog' ],
|
||||
init : function( editor )
|
||||
{
|
||||
var commandName = 'checkspell';
|
||||
|
||||
var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
|
||||
|
||||
// SpellChecker doesn't work in Opera and with custom domain
|
||||
command.modes = { wysiwyg : ( !CKEDITOR.env.opera && !CKEDITOR.env.air && document.domain == window.location.hostname ) };
|
||||
|
||||
editor.ui.addButton( 'SpellChecker',
|
||||
{
|
||||
label : editor.lang.spellCheck.toolbar,
|
||||
command : commandName
|
||||
});
|
||||
CKEDITOR.dialog.add( commandName, this.path + 'dialogs/wsc.js' );
|
||||
}
|
||||
});
|
||||
|
||||
CKEDITOR.config.wsc_customerId = CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk' ;
|
||||
CKEDITOR.config.wsc_customLoaderScript = CKEDITOR.config.wsc_customLoaderScript || null;
|
||||
/**
|
||||
* @license Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileOverview Spell checker.
|
||||
*/
|
||||
CKEDITOR.config.wsc_removeGlobalVariable = true;
|
||||
|
||||
// Register a plugin named "wsc".
|
||||
CKEDITOR.plugins.add( 'wsc', {
|
||||
requires: 'dialog',
|
||||
lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en-au,en-ca,en-gb,en,eo,es,et,eu,fa,fi,fo,fr-ca,fr,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,lt,lv,mk,mn,ms,nb,nl,no,pl,pt-br,pt,ro,ru,sk,sl,sr-latn,sr,sv,th,tr,ug,uk,vi,zh-cn,zh', // %REMOVE_LINE_CORE%
|
||||
icons: 'spellchecker', // %REMOVE_LINE_CORE%
|
||||
hidpi: true, // %REMOVE_LINE_CORE%
|
||||
parseApi: function(editor) {
|
||||
editor.config.wsc_onFinish = (typeof editor.config.wsc_onFinish === 'function') ? editor.config.wsc_onFinish : function() {};
|
||||
editor.config.wsc_onClose = (typeof editor.config.wsc_onClose === 'function') ? editor.config.wsc_onClose : function() {};
|
||||
},
|
||||
parseConfig: function(editor) {
|
||||
editor.config.wsc_customerId = editor.config.wsc_customerId || CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk';
|
||||
editor.config.wsc_customDictionaryIds = editor.config.wsc_customDictionaryIds || CKEDITOR.config.wsc_customDictionaryIds || '';
|
||||
editor.config.wsc_userDictionaryName = editor.config.wsc_userDictionaryName || CKEDITOR.config.wsc_userDictionaryName || '';
|
||||
editor.config.wsc_customLoaderScript = editor.config.wsc_customLoaderScript || CKEDITOR.config.wsc_customLoaderScript;
|
||||
|
||||
CKEDITOR.config.wsc_cmd = editor.config.wsc_cmd || CKEDITOR.config.wsc_cmd || 'spell'; // spell, thes or grammar. default tab
|
||||
CKEDITOR.config.wsc_version="v4.3.0-1e748a6";
|
||||
},
|
||||
init: function( editor ) {
|
||||
var commandName = 'checkspell';
|
||||
|
||||
var strNormalDialog = 'dialogs/wsc.js',
|
||||
strIeDialog = 'dialogs/wsc_ie.js',
|
||||
strDialog,
|
||||
self = this;
|
||||
self.parseConfig(editor);
|
||||
self.parseApi(editor);
|
||||
var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
|
||||
|
||||
// SpellChecker doesn't work in Opera and with custom domain
|
||||
command.modes = { wysiwyg: ( !CKEDITOR.env.opera && !CKEDITOR.env.air && document.domain == window.location.hostname ) };
|
||||
|
||||
if(typeof editor.plugins.scayt == 'undefined'){
|
||||
editor.ui.addButton && editor.ui.addButton( 'SpellChecker', {
|
||||
label: editor.lang.wsc.toolbar,
|
||||
command: commandName,
|
||||
toolbar: 'spellchecker,10'
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
if ( CKEDITOR.env.ie && CKEDITOR.env.version <= 8 ){
|
||||
strDialog = strIeDialog;
|
||||
} else {
|
||||
if (!window.postMessage) {
|
||||
strDialog = strIeDialog;
|
||||
} else {
|
||||
strDialog = strNormalDialog;
|
||||
}
|
||||
}
|
||||
CKEDITOR.dialog.add( commandName, this.path + strDialog );
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user