TinyMCE 5
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"author": "TinyMCE",
|
"author": "TinyMCE5",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://www.tinymce.com",
|
"website": "https://www.tinymce.com",
|
||||||
"version": "4.9.2",
|
"version": "5.0.3",
|
||||||
"releaseDate": "2018-12-17",
|
"releaseDate": "2018-12-17",
|
||||||
"license": "GPL v2",
|
"license": "GPL v2",
|
||||||
"compatible": "3.8.1",
|
"compatible": "3.8.1",
|
||||||
|
|
|
@ -10,9 +10,9 @@ class pluginTinymce extends Plugin {
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->dbFields = array(
|
$this->dbFields = array(
|
||||||
'toolbar1'=>'formatselect bold italic bullist numlist | blockquote alignleft aligncenter alignright | link unlink pagebreak image removeformat code',
|
'toolbar1'=>'formatselect bold italic forecolor backcolor removeformat | bullist numlist table | blockquote alignleft aligncenter alignright | link unlink pagebreak image code',
|
||||||
'toolbar2'=>'',
|
'toolbar2'=>'',
|
||||||
'plugins'=>'code autolink image link pagebreak advlist lists textcolor colorpicker textpattern autoheight'
|
'plugins'=>'code autolink image link pagebreak advlist lists textpattern table'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,8 +92,6 @@ $html = <<<EOF
|
||||||
tinymce.init({
|
tinymce.init({
|
||||||
selector: "#jseditor",
|
selector: "#jseditor",
|
||||||
auto_focus: "jseditor",
|
auto_focus: "jseditor",
|
||||||
theme: "modern",
|
|
||||||
skin: "bludit",
|
|
||||||
element_format : "html",
|
element_format : "html",
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
schema: "html5",
|
schema: "html5",
|
||||||
|
@ -112,8 +110,7 @@ $html = <<<EOF
|
||||||
toolbar1: "$toolbar1",
|
toolbar1: "$toolbar1",
|
||||||
toolbar2: "$toolbar2",
|
toolbar2: "$toolbar2",
|
||||||
language: "$lang",
|
language: "$lang",
|
||||||
content_css : "$content_css",
|
content_css : "$content_css"
|
||||||
height: "200px"
|
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -0,0 +1,92 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Jquery integration plugin.
|
||||||
|
*
|
||||||
|
* @class tinymce.core.JqueryIntegration
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
!function(){var f,c,u,p,d,s=[];d="undefined"!=typeof global?global:window,p=d.jQuery;var v=function(){
|
||||||
|
// Reference to tinymce needs to be lazily evaluated since tinymce
|
||||||
|
// might be loaded through the compressor or other means
|
||||||
|
return d.tinymce};p.fn.tinymce=function(o){var e,t,i,l=this,r="";
|
||||||
|
// No match then just ignore the call
|
||||||
|
if(!l.length)return l;
|
||||||
|
// Get editor instance
|
||||||
|
if(!o)return v()?v().get(l[0].id):null;l.css("visibility","hidden");// Hide textarea to avoid flicker
|
||||||
|
var n=function(){var a=[],c=0;
|
||||||
|
// Apply patches to the jQuery object, only once
|
||||||
|
u||(m(),u=!0),
|
||||||
|
// Create an editor instance for each matched node
|
||||||
|
l.each(function(e,t){var n,i=t.id,r=o.oninit;
|
||||||
|
// Generate unique id for target element if needed
|
||||||
|
i||(t.id=i=v().DOM.uniqueId()),
|
||||||
|
// Only init the editor once
|
||||||
|
v().get(i)||(
|
||||||
|
// Create editor instance and render it
|
||||||
|
n=v().createEditor(i,o),a.push(n),n.on("init",function(){var e,t=r;l.css("visibility",""),
|
||||||
|
// Run this if the oninit setting is defined
|
||||||
|
// this logic will fire the oninit callback ones each
|
||||||
|
// matched editor instance is initialized
|
||||||
|
r&&++c==a.length&&("string"==typeof t&&(e=-1===t.indexOf(".")?null:v().resolve(t.replace(/\.\w+$/,"")),t=v().resolve(t)),
|
||||||
|
// Call the oninit function with the object
|
||||||
|
t.apply(e||v(),a))}))}),
|
||||||
|
// Render the editor instances in a separate loop since we
|
||||||
|
// need to have the full editors array used in the onInit calls
|
||||||
|
p.each(a,function(e,t){t.render()})};
|
||||||
|
// Load TinyMCE on demand, if we need to
|
||||||
|
if(d.tinymce||c||!(e=o.script_url))
|
||||||
|
// Delay the init call until tinymce is loaded
|
||||||
|
1===c?s.push(n):n();else{c=1,t=e.substring(0,e.lastIndexOf("/")),
|
||||||
|
// Check if it's a dev/src version they want to load then
|
||||||
|
// make sure that all plugins, themes etc are loaded in source mode as well
|
||||||
|
-1!=e.indexOf(".min")&&(r=".min"),
|
||||||
|
// Setup tinyMCEPreInit object this will later be used by the TinyMCE
|
||||||
|
// core script to locate other resources like CSS files, dialogs etc
|
||||||
|
// You can also predefined a tinyMCEPreInit object and then it will use that instead
|
||||||
|
d.tinymce=d.tinyMCEPreInit||{base:t,suffix:r},
|
||||||
|
// url contains gzip then we assume it's a compressor
|
||||||
|
-1!=e.indexOf("gzip")&&(i=o.language||"en",e=e+(/\?/.test(e)?"&":"?")+"js=true&core=true&suffix="+escape(r)+"&themes="+escape(o.theme||"modern")+"&plugins="+escape(o.plugins||"")+"&languages="+(i||""),
|
||||||
|
// Check if compressor script is already loaded otherwise setup a basic one
|
||||||
|
d.tinyMCE_GZ||(d.tinyMCE_GZ={start:function(){var n=function(e){v().ScriptLoader.markDone(v().baseURI.toAbsolute(e))};
|
||||||
|
// Add core languages
|
||||||
|
n("langs/"+i+".js"),
|
||||||
|
// Add themes with languages
|
||||||
|
n("themes/"+o.theme+"/theme"+r+".js"),n("themes/"+o.theme+"/langs/"+i+".js"),
|
||||||
|
// Add plugins with languages
|
||||||
|
p.each(o.plugins.split(","),function(e,t){t&&(n("plugins/"+t+"/plugin"+r+".js"),n("plugins/"+t+"/langs/"+i+".js"))})},end:function(){}}));var a=document.createElement("script");a.type="text/javascript",a.onload=a.onreadystatechange=function(e){e=e||window.event,2===c||"load"!=e.type&&!/complete|loaded/.test(a.readyState)||(v().dom.Event.domLoaded=1,c=2,
|
||||||
|
// Execute callback after mainscript has been loaded and before the initialization occurs
|
||||||
|
o.script_loaded&&o.script_loaded(),n(),p.each(s,function(e,t){t()}))},a.src=e,document.body.appendChild(a)}return l},
|
||||||
|
// Add :tinymce pseudo selector this will select elements that has been converted into editor instances
|
||||||
|
// it's now possible to use things like $('*:tinymce') to get all TinyMCE bound elements.
|
||||||
|
p.extend(p.expr[":"],{tinymce:function(e){var t;return!!(e.id&&"tinymce"in d&&(t=v().get(e.id))&&t.editorManager===v())}});
|
||||||
|
// This function patches internal jQuery functions so that if
|
||||||
|
// you for example remove an div element containing an editor it's
|
||||||
|
// automatically destroyed by the TinyMCE API
|
||||||
|
var m=function(){
|
||||||
|
// Removes any child editor instances by looking for editor wrapper elements
|
||||||
|
var r=function(e){
|
||||||
|
// If the function is remove
|
||||||
|
"remove"===e&&this.each(function(e,t){var n=l(t);n&&n.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(e,t){var n=v().get(t.id.replace(/_parent$/,""));n&&n.remove()})},o=function(i){var e,t=this;
|
||||||
|
// Handle set value
|
||||||
|
/*jshint eqnull:true */if(null!=i)r.call(t),
|
||||||
|
// Saves the contents before get/set value of textarea/div
|
||||||
|
t.each(function(e,t){var n;(n=v().get(t.id))&&n.setContent(i)});else if(0<t.length&&(e=v().get(t[0].id)))return e.getContent()},l=function(e){var t=null;return e&&e.id&&d.tinymce&&(t=v().get(e.id)),t},u=function(e){return!!(e&&e.length&&d.tinymce&&e.is(":tinymce"))},s={};
|
||||||
|
// Loads or saves contents from/to textarea if the value
|
||||||
|
// argument is defined it will set the TinyMCE internal contents
|
||||||
|
// Patch some setter/getter functions these will
|
||||||
|
// now be able to set/get the contents of editor instances for
|
||||||
|
// example $('#editorid').html('Content'); will update the TinyMCE iframe instance
|
||||||
|
p.each(["text","html","val"],function(e,t){var a=s[t]=p.fn[t],c="text"===t;p.fn[t]=function(e){var t=this;if(!u(t))return a.apply(t,arguments);if(e!==f)return o.call(t.filter(":tinymce"),e),a.apply(t.not(":tinymce"),arguments),t;// return original set for chaining
|
||||||
|
var i="",r=arguments;return(c?t:t.eq(0)).each(function(e,t){var n=l(t);i+=n?c?n.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):n.getContent({save:!0}):a.apply(p(t),r)}),i}}),
|
||||||
|
// Makes it possible to use $('#id').append("content"); to append contents to the TinyMCE editor iframe
|
||||||
|
p.each(["append","prepend"],function(e,t){var n=s[t]=p.fn[t],r="prepend"===t;p.fn[t]=function(i){var e=this;return u(e)?i!==f?("string"==typeof i&&e.filter(":tinymce").each(function(e,t){var n=l(t);n&&n.setContent(r?i+n.getContent():n.getContent()+i)}),n.apply(e.not(":tinymce"),arguments),e):void 0:n.apply(e,arguments)}}),
|
||||||
|
// Makes sure that the editor instance gets properly destroyed when the parent element is removed
|
||||||
|
p.each(["remove","replaceWith","replaceAll","empty"],function(e,t){var n=s[t]=p.fn[t];p.fn[t]=function(){return r.call(this,t),n.apply(this,arguments)}}),s.attr=p.fn.attr,
|
||||||
|
// Makes sure that $('#tinymce_id').attr('value') gets the editors current HTML contents
|
||||||
|
p.fn.attr=function(e,t){var n=this,i=arguments;if(!e||"value"!==e||!u(n))return s.attr.apply(n,i);if(t!==f)return o.call(n.filter(":tinymce"),t),s.attr.apply(n.not(":tinymce"),i),n;// return original set for chaining
|
||||||
|
var r=n[0],a=l(r);return a?a.getContent({save:!0}):s.attr.apply(p(r),i)}}}();
|
|
@ -1,253 +0,0 @@
|
||||||
tinymce.addI18n('bg_BG',{
|
|
||||||
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438",
|
|
||||||
"Undo": "\u0412\u044a\u0440\u043d\u0438",
|
|
||||||
"Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
|
||||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435",
|
|
||||||
"Paste": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435",
|
|
||||||
"Select all": "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
|
||||||
"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
|
||||||
"Ok": "\u0414\u043e\u0431\u0440\u0435",
|
|
||||||
"Cancel": "\u041e\u0442\u043a\u0430\u0437",
|
|
||||||
"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u043d\u043e \u043e\u0442\u043a\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0438 \u0431\u0435\u0437 \u043a\u0430\u043d\u0442\u043e\u0432\u0435 (\u0440\u0430\u043c\u043a\u0438)",
|
|
||||||
"Bold": "\u0423\u0434\u0435\u0431\u0435\u043b\u0435\u043d (\u043f\u043e\u043b\u0443\u0447\u0435\u0440)",
|
|
||||||
"Italic": "\u041d\u0430\u043a\u043b\u043e\u043d\u0435\u043d (\u043a\u0443\u0440\u0441\u0438\u0432)",
|
|
||||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u043d",
|
|
||||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435",
|
|
||||||
"Superscript": "\u0413\u043e\u0440\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
|
||||||
"Subscript": "\u0414\u043e\u043b\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
|
||||||
"Clear formatting": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e",
|
|
||||||
"Align left": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u043b\u044f\u0432\u043e",
|
|
||||||
"Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
|
||||||
"Align right": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u0434\u044f\u0441\u043d\u043e",
|
|
||||||
"Justify": "\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
|
||||||
"Bullet list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u043e\u0434\u0430\u0447\u0438",
|
|
||||||
"Numbered list": "\u041d\u043e\u043c\u0435\u0440\u0438\u0440\u0430\u043d \u0441\u043f\u0438\u0441\u044a\u043a",
|
|
||||||
"Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
|
||||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
|
||||||
"Close": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435",
|
|
||||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435",
|
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u044f\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 Ctrl+X (\u0437\u0430 \u0438\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435), Ctrl+C (\u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435) \u0438 Ctrl+V (\u0437\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435).",
|
|
||||||
"Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
|
||||||
"Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
|
||||||
"Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
|
||||||
"Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
|
||||||
"Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
|
||||||
"Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
|
||||||
"Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
|
||||||
"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
|
||||||
"Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
|
||||||
"Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
|
||||||
"Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
|
||||||
"Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
|
||||||
"Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
|
||||||
"Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
|
||||||
"Div": "\u0411\u043b\u043e\u043a",
|
|
||||||
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0444\u043e\u0440\u043c\u0435\u043d \u0442\u0435\u043a\u0441\u0442",
|
|
||||||
"Code": "\u041a\u043e\u0434",
|
|
||||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
|
||||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442",
|
|
||||||
"Inline": "\u041d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434",
|
|
||||||
"Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0435",
|
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0432 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0440\u0435\u0436\u0438\u043c. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043a\u0430\u0442\u043e \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0430\u0437\u0438 \u043e\u043f\u0446\u0438\u044f.",
|
|
||||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
|
||||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
|
||||||
"Class": "\u041a\u043b\u0430\u0441",
|
|
||||||
"Browse for an image": "\u041f\u043e\u0442\u044a\u0440\u0441\u0438 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
|
||||||
"OR": "\u0418\u041b\u0418",
|
|
||||||
"Drop an image here": "\u041f\u0443\u0441\u043d\u0435\u0442\u0435 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430\u0442\u0430 \u0442\u0443\u043a",
|
|
||||||
"Upload": "\u041a\u0430\u0447\u0438",
|
|
||||||
"Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
|
||||||
"Circle": "\u041e\u043a\u0440\u044a\u0436\u043d\u043e\u0441\u0442\u0438",
|
|
||||||
"Disc": "\u041a\u0440\u044a\u0433\u0447\u0435\u0442\u0430",
|
|
||||||
"Square": "\u0417\u0430\u043f\u044a\u043b\u043d\u0435\u043d\u0438 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438",
|
|
||||||
"Lower Alpha": "\u041c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
|
||||||
"Lower Greek": "\u041c\u0430\u043b\u043a\u0438 \u0433\u0440\u044a\u0446\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
|
||||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
|
||||||
"Upper Alpha": "\u0413\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
|
||||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
|
||||||
"Anchor": "\u041a\u043e\u0442\u0432\u0430 (\u0432\u0440\u044a\u0437\u043a\u0430 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430)",
|
|
||||||
"Name": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
|
||||||
"Id": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 (id)",
|
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 (id) \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441 \u0431\u0443\u043a\u0432\u0430, \u043f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u043d \u043e\u0442 \u0431\u0443\u043a\u0432\u0438, \u0447\u0438\u0444\u0440\u0438, \u0442\u0438\u0440\u0435\u0442\u0430, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u0435 \u0438 \u0434\u043e\u043b\u043d\u043e \u0442\u0438\u0440\u0435.",
|
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "\u0412 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 \u043d\u0435\u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0429\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u043b\u0438?",
|
|
||||||
"Restore last draft": "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0430",
|
|
||||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0437\u043d\u0430\u043a",
|
|
||||||
"Source code": "\u0418\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 HTML",
|
|
||||||
"Insert\/Edit code sample": "\u0412\u043c\u044a\u043a\u043d\u0438\/ \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043f\u0440\u0438\u043c\u0435\u0440\u0435\u043d \u043a\u043e\u0434",
|
|
||||||
"Language": "\u0415\u0437\u0438\u043a",
|
|
||||||
"Color": "\u0426\u0432\u044f\u0442",
|
|
||||||
"R": "R",
|
|
||||||
"G": "G",
|
|
||||||
"B": "B",
|
|
||||||
"Left to right": "\u041e\u0442\u043b\u044f\u0432\u043e \u043d\u0430\u0434\u044f\u0441\u043d\u043e",
|
|
||||||
"Right to left": "\u041e\u0442\u0434\u044f\u0441\u043d\u043e \u043d\u0430\u043b\u044f\u0432\u043e",
|
|
||||||
"Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438",
|
|
||||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
|
||||||
"Title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
|
||||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0438 \u0434\u0443\u043c\u0438",
|
|
||||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
|
||||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438 \u043d\u0430 \u0443\u0435\u0431 \u0442\u044a\u0440\u0441\u0430\u0447\u043a\u0438",
|
|
||||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
|
||||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u043d\u0430\u0446\u0438\u0442\u0435",
|
|
||||||
"Fullscreen": "\u041d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d",
|
|
||||||
"Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
|
|
||||||
"Shortcut": "\u0411\u044a\u0440\u0437 \u043a\u043b\u0430\u0432\u0438\u0448",
|
|
||||||
"Help": "\u041f\u043e\u043c\u043e\u0449",
|
|
||||||
"Address": "\u0410\u0434\u0440\u0435\u0441",
|
|
||||||
"Focus to menubar": "Focus to menubar",
|
|
||||||
"Focus to toolbar": "Focus to toolbar",
|
|
||||||
"Focus to element path": "Focus to element path",
|
|
||||||
"Focus to contextual toolbar": "Focus to contextual toolbar",
|
|
||||||
"Insert link (if link plugin activated)": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u0432\u0440\u044a\u0437\u043a\u0430 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0438 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)",
|
|
||||||
"Save (if save plugin activated)": "\u0417\u0430\u043f\u0438\u0448\u0438 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0437\u0430\u043f\u0438\u0441 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)",
|
|
||||||
"Find (if searchreplace plugin activated)": "\u041d\u0430\u043c\u0435\u0440\u0438 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0442\u044a\u0440\u0441\u0435\u043d\u0435\/\u0437\u0430\u043c\u044f\u043d\u0430 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)",
|
|
||||||
"Plugins installed ({0}):": "\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u043f\u043b\u044a\u0433\u0438\u043d\u0438 ({0}):",
|
|
||||||
"Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0439\u043d\u0438 \u043f\u043b\u044a\u0433\u0438\u043d\u0438:",
|
|
||||||
"Learn more...": "\u041d\u0430\u0443\u0447\u0435\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435...",
|
|
||||||
"You are using {0}": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 {0}",
|
|
||||||
"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u0447\u0435\u0440\u0442\u0430",
|
|
||||||
"Insert\/edit image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
|
||||||
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
|
||||||
"Source": "\u0410\u0434\u0440\u0435\u0441",
|
|
||||||
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
|
||||||
"Constrain proportions": "\u0417\u0430\u0432\u0430\u0437\u043d\u0430\u0432\u0435 \u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438\u0442\u0435",
|
|
||||||
"General": "\u041e\u0431\u0449\u043e",
|
|
||||||
"Advanced": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e",
|
|
||||||
"Style": "\u0421\u0442\u0438\u043b",
|
|
||||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
|
||||||
"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
|
||||||
"Border": "\u041a\u0430\u043d\u0442 (\u0440\u0430\u043c\u043a\u0430)",
|
|
||||||
"Insert image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
|
||||||
"Image": "\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
|
||||||
"Image list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438",
|
|
||||||
"Rotate counterclockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
|
||||||
"Rotate clockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
|
||||||
"Flip vertically": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e",
|
|
||||||
"Flip horizontally": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e",
|
|
||||||
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
|
||||||
"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
|
||||||
"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0436\u0438",
|
|
||||||
"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0438",
|
|
||||||
"Crop": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
|
||||||
"Resize": "\u041f\u0440\u0435\u043e\u0440\u0430\u0437\u043c\u0435\u0440\u044f\u0432\u0430\u043d\u0435",
|
|
||||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
|
||||||
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442",
|
|
||||||
"Sharpen": "\u0418\u0437\u043e\u0441\u0442\u0440\u044f\u043d\u0435",
|
|
||||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
|
||||||
"Color levels": "\u0426\u0432\u0435\u0442\u043d\u0438 \u043d\u0438\u0432\u0430",
|
|
||||||
"Gamma": "\u0413\u0430\u043c\u0430",
|
|
||||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f",
|
|
||||||
"Apply": "\u041f\u0440\u0438\u043b\u043e\u0436\u0438",
|
|
||||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
|
||||||
"Insert date\/time": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
|
||||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
|
||||||
"Insert link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
|
||||||
"Insert\/edit link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
|
||||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442",
|
|
||||||
"Url": "\u0410\u0434\u0440\u0435\u0441 (URL)",
|
|
||||||
"Target": "\u0426\u0435\u043b \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
|
||||||
"None": "\u0411\u0435\u0437",
|
|
||||||
"New window": "\u0412 \u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 (\u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)",
|
|
||||||
"Remove link": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430",
|
|
||||||
"Anchors": "\u041a\u043e\u0442\u0432\u0438",
|
|
||||||
"Link": "\u0412\u0440\u044a\u0437\u043a\u0430(\u043b\u0438\u043d\u043a)",
|
|
||||||
"Paste or type a link": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0430(\u043b\u0438\u043d\u043a)",
|
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u043d\u0430 \u0435-\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
|
||||||
"Link list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u0440\u044a\u0437\u043a\u0438",
|
|
||||||
"Insert video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
|
||||||
"Insert\/edit video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
|
||||||
"Insert\/edit media": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f",
|
|
||||||
"Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
|
|
||||||
"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
|
||||||
"Paste your embed code below:": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u0434\u0430 \u0437\u0430 \u0432\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043f\u043e-\u0434\u043e\u043b\u0443:",
|
|
||||||
"Embed": "\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435",
|
|
||||||
"Media": "\u041c\u0435\u0434\u0438\u044f",
|
|
||||||
"Nonbreaking space": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
|
||||||
"Page break": "\u041d\u043e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
|
|
||||||
"Paste as text": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u0442\u043e \u0442\u0435\u043a\u0441\u0442",
|
|
||||||
"Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434",
|
|
||||||
"Print": "\u041f\u0435\u0447\u0430\u0442",
|
|
||||||
"Save": "\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435",
|
|
||||||
"Find": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0437\u0430",
|
|
||||||
"Replace with": "\u0417\u0430\u043c\u044f\u043d\u0430 \u0441",
|
|
||||||
"Replace": "\u0417\u0430\u043c\u044f\u043d\u0430",
|
|
||||||
"Replace all": "\u0417\u0430\u043c\u044f\u043d\u0430 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0440\u0435\u0449\u0430\u043d\u0438\u044f",
|
|
||||||
"Prev": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
|
||||||
"Next": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
|
||||||
"Find and replace": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430",
|
|
||||||
"Could not find the specified string.": "\u0422\u044a\u0440\u0441\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.",
|
|
||||||
"Match case": "\u0421\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u044a\u0440\u0430 (\u043c\u0430\u043b\u043a\u0438\/\u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438)",
|
|
||||||
"Whole words": "\u0421\u0430\u043c\u043e \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438",
|
|
||||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430",
|
|
||||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435",
|
|
||||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e",
|
|
||||||
"Finish": "\u041a\u0440\u0430\u0439",
|
|
||||||
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u0440\u0435\u0447\u043d\u0438\u043a\u0430",
|
|
||||||
"Insert table": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430",
|
|
||||||
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
|
||||||
"Delete table": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
|
||||||
"Cell": "\u041a\u043b\u0435\u0442\u043a\u0430",
|
|
||||||
"Row": "\u0420\u0435\u0434",
|
|
||||||
"Column": "\u041a\u043e\u043b\u043e\u043d\u0430",
|
|
||||||
"Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
|
||||||
"Merge cells": "\u0421\u043b\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
|
||||||
"Split cell": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430",
|
|
||||||
"Insert row before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
|
||||||
"Insert row after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
|
||||||
"Delete row": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
|
||||||
"Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
|
||||||
"Cut row": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
|
||||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
|
||||||
"Paste row before": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
|
||||||
"Paste row after": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
|
||||||
"Insert column before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434\u0438",
|
|
||||||
"Insert column after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u0441\u043b\u0435\u0434",
|
|
||||||
"Delete column": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430\u0442\u0430",
|
|
||||||
"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438",
|
|
||||||
"Rows": "\u0420\u0435\u0434\u043e\u0432\u0435",
|
|
||||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
|
||||||
"Height": "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430",
|
|
||||||
"Cell spacing": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
|
||||||
"Cell padding": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e",
|
|
||||||
"Caption": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043f\u0440\u0435\u0434\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
|
||||||
"Left": "\u041b\u044f\u0432\u043e",
|
|
||||||
"Center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
|
||||||
"Right": "\u0414\u044f\u0441\u043d\u043e",
|
|
||||||
"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
|
||||||
"Scope": "\u041e\u0431\u0445\u0432\u0430\u0442",
|
|
||||||
"Alignment": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
|
||||||
"H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
|
||||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
|
||||||
"Top": "\u0413\u043e\u0440\u0435",
|
|
||||||
"Middle": "\u041f\u043e \u0441\u0440\u0435\u0434\u0430\u0442\u0430",
|
|
||||||
"Bottom": "\u0414\u043e\u043b\u0443",
|
|
||||||
"Header cell": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 (\u0430\u043d\u0442\u0435\u0442\u043a\u0430)",
|
|
||||||
"Row group": "Row group",
|
|
||||||
"Column group": "Column group",
|
|
||||||
"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434\u0430",
|
|
||||||
"Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)",
|
|
||||||
"Body": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 (body)",
|
|
||||||
"Footer": "\u0414\u043e\u043b\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (footer)",
|
|
||||||
"Border color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430",
|
|
||||||
"Insert template": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d",
|
|
||||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
|
||||||
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
|
||||||
"Text color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
|
||||||
"Background color": "\u0424\u043e\u043d\u043e\u0432 \u0446\u0432\u044f\u0442",
|
|
||||||
"Custom...": "\u0418\u0437\u0431\u0440\u0430\u043d...",
|
|
||||||
"Custom color": "\u0426\u0432\u044f\u0442 \u043f\u043e \u0438\u0437\u0431\u043e\u0440",
|
|
||||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u044f\u0442",
|
|
||||||
"Table of Contents": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
|
||||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435",
|
|
||||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u043f\u0435\u0447\u0430\u0442\u0430\u0435\u043c\u0438 \u0437\u043d\u0430\u0446\u0438",
|
|
||||||
"Words: {0}": "\u0411\u0440\u043e\u0439 \u0434\u0443\u043c\u0438: {0}",
|
|
||||||
"File": "\u0424\u0430\u0439\u043b",
|
|
||||||
"Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435",
|
|
||||||
"Insert": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435",
|
|
||||||
"View": "\u0418\u0437\u0433\u043b\u0435\u0434",
|
|
||||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435",
|
|
||||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
|
||||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Alt+F9 \u0437\u0430 \u043c\u0435\u043d\u044e; Alt+F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438; Alt+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449."
|
|
||||||
});
|
|
|
@ -1,260 +0,0 @@
|
||||||
tinymce.addI18n('cs_CZ',{
|
|
||||||
"Redo": "Znovu",
|
|
||||||
"Undo": "Zp\u011bt",
|
|
||||||
"Cut": "Vyjmout",
|
|
||||||
"Copy": "Kop\u00edrovat",
|
|
||||||
"Paste": "Vlo\u017eit",
|
|
||||||
"Select all": "Vybrat v\u0161e",
|
|
||||||
"New document": "Nov\u00fd dokument",
|
|
||||||
"Ok": "Ok",
|
|
||||||
"Cancel": "Zru\u0161it",
|
|
||||||
"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky",
|
|
||||||
"Bold": "Tu\u010dn\u011b",
|
|
||||||
"Italic": "Kurz\u00edva",
|
|
||||||
"Underline": "Podtr\u017een\u00e9",
|
|
||||||
"Strikethrough": "P\u0159e\u0161krtnut\u00e9",
|
|
||||||
"Superscript": "Horn\u00ed index",
|
|
||||||
"Subscript": "Doln\u00ed index",
|
|
||||||
"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
|
|
||||||
"Align left": "Vlevo",
|
|
||||||
"Align center": "Na st\u0159ed",
|
|
||||||
"Align right": "Vpravo",
|
|
||||||
"Justify": "Zarovnat do bloku",
|
|
||||||
"Bullet list": "Odr\u00e1\u017eky",
|
|
||||||
"Numbered list": "\u010c\u00edslov\u00e1n\u00ed",
|
|
||||||
"Decrease indent": "Zmen\u0161it odsazen\u00ed",
|
|
||||||
"Increase indent": "Zv\u011b\u0161it odsazen\u00ed",
|
|
||||||
"Close": "Zav\u0159\u00edt",
|
|
||||||
"Formats": "Form\u00e1ty",
|
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.",
|
|
||||||
"Headers": "Nadpisy",
|
|
||||||
"Header 1": "Nadpis 1",
|
|
||||||
"Header 2": "Nadpis 2",
|
|
||||||
"Header 3": "Nadpis 3",
|
|
||||||
"Header 4": "Nadpis 4",
|
|
||||||
"Header 5": "Nadpis 5",
|
|
||||||
"Header 6": "Nadpis 6",
|
|
||||||
"Headings": "Nadpisy",
|
|
||||||
"Heading 1": "Nadpis 1",
|
|
||||||
"Heading 2": "Nadpis 2",
|
|
||||||
"Heading 3": "Nadpis 3",
|
|
||||||
"Heading 4": "Nadpis 4",
|
|
||||||
"Heading 5": "Nadpis 5",
|
|
||||||
"Heading 6": "Nadpis 6",
|
|
||||||
"Div": "Div (blok)",
|
|
||||||
"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)",
|
|
||||||
"Code": "Code (k\u00f3d)",
|
|
||||||
"Paragraph": "Odstavec",
|
|
||||||
"Blockquote": "Citace",
|
|
||||||
"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)",
|
|
||||||
"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)",
|
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.",
|
|
||||||
"Font Family": "Rodina p\u00edsma",
|
|
||||||
"Font Sizes": "Velikost p\u00edsma",
|
|
||||||
"Class": "T\u0159\u00edda",
|
|
||||||
"Browse for an image": "Vybrat obr\u00e1zek",
|
|
||||||
"OR": "NEBO",
|
|
||||||
"Drop an image here": "P\u0159et\u00e1hn\u011bte obr\u00e1zek sem",
|
|
||||||
"Upload": "Nahr\u00e1t",
|
|
||||||
"Block": "Blok",
|
|
||||||
"Align": "Zarovnat",
|
|
||||||
"Default": "V\u00fdchoz\u00ed",
|
|
||||||
"Circle": "Kole\u010dko",
|
|
||||||
"Disc": "Punt\u00edk",
|
|
||||||
"Square": "\u010ctvere\u010dek",
|
|
||||||
"Lower Alpha": "Mal\u00e1 p\u00edsmena",
|
|
||||||
"Lower Greek": "\u0158eck\u00e1 p\u00edsmena",
|
|
||||||
"Lower Roman": "Mal\u00e9 \u0159\u00edmsl\u00e9 \u010d\u00edslice",
|
|
||||||
"Upper Alpha": "Velk\u00e1 p\u00edsmena",
|
|
||||||
"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice",
|
|
||||||
"Anchor": "Kotva",
|
|
||||||
"Name": "N\u00e1zev",
|
|
||||||
"Id": "ID",
|
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID by m\u011blo za\u010d\u00ednat p\u00edsmenem, n\u00e1sledovan\u00fdm pouze p\u00edsmeny, \u010d\u00edsly, poml\u010dkami, te\u010dkami, \u010d\u00e1rkami a nebo podtr\u017e\u00edtky.",
|
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?",
|
|
||||||
"Restore last draft": "Obnovit posledn\u00ed koncept.",
|
|
||||||
"Special character": "Speci\u00e1ln\u00ed znak",
|
|
||||||
"Source code": "Zdrojov\u00fd k\u00f3d",
|
|
||||||
"Insert\/Edit code sample": "Vlo\u017eit\/Upravit uk\u00e1zku k\u00f3du",
|
|
||||||
"Language": "Jazyk",
|
|
||||||
"Code sample": "Uk\u00e1zka k\u00f3du",
|
|
||||||
"Color": "Barva",
|
|
||||||
"R": "R",
|
|
||||||
"G": "G",
|
|
||||||
"B": "B",
|
|
||||||
"Left to right": "Zleva doprava",
|
|
||||||
"Right to left": "Zprava doleva",
|
|
||||||
"Emoticons": "Emotikony",
|
|
||||||
"Document properties": "Vlastnosti dokumentu",
|
|
||||||
"Title": "Titulek",
|
|
||||||
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
|
||||||
"Description": "Popis",
|
|
||||||
"Robots": "Roboti",
|
|
||||||
"Author": "Autor",
|
|
||||||
"Encoding": "K\u00f3dov\u00e1n\u00ed",
|
|
||||||
"Fullscreen": "Celk\u00e1 obrazovka",
|
|
||||||
"Action": "Akce",
|
|
||||||
"Shortcut": "Kl\u00e1vesov\u00e1 zkratka",
|
|
||||||
"Help": "N\u00e1pov\u011bda",
|
|
||||||
"Address": "Blok s po\u0161tovn\u00ed adresou",
|
|
||||||
"Focus to menubar": "P\u0159ej\u00edt do menu",
|
|
||||||
"Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f",
|
|
||||||
"Focus to element path": "Focus to element path",
|
|
||||||
"Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f",
|
|
||||||
"Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)",
|
|
||||||
"Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)",
|
|
||||||
"Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)",
|
|
||||||
"Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):",
|
|
||||||
"Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:",
|
|
||||||
"Learn more...": "Zjistit v\u00edce...",
|
|
||||||
"You are using {0}": "Pou\u017e\u00edv\u00e1te {0}",
|
|
||||||
"Plugins": "Pluginy",
|
|
||||||
"Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky",
|
|
||||||
"Horizontal line": "Vodorovn\u00e1 linka",
|
|
||||||
"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek",
|
|
||||||
"Image description": "Popis obr\u00e1zku",
|
|
||||||
"Source": "URL",
|
|
||||||
"Dimensions": "Rozm\u011bry",
|
|
||||||
"Constrain proportions": "Zachovat proporce",
|
|
||||||
"General": "Obecn\u00e9",
|
|
||||||
"Advanced": "Pokro\u010dil\u00e9",
|
|
||||||
"Style": "Styl",
|
|
||||||
"Vertical space": "Vertik\u00e1ln\u00ed mezera",
|
|
||||||
"Horizontal space": "Horizont\u00e1ln\u00ed mezera",
|
|
||||||
"Border": "R\u00e1me\u010dek",
|
|
||||||
"Insert image": "Vlo\u017eit obr\u00e1zek",
|
|
||||||
"Image": "Obr\u00e1zek",
|
|
||||||
"Image list": "Seznam obr\u00e1zk\u016f",
|
|
||||||
"Rotate counterclockwise": "Oto\u010dit doleva",
|
|
||||||
"Rotate clockwise": "Oto\u010dit doprava",
|
|
||||||
"Flip vertically": "P\u0159evr\u00e1tit svisle",
|
|
||||||
"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b",
|
|
||||||
"Edit image": "Upravit obr\u00e1zek",
|
|
||||||
"Image options": "Vlastnosti obr\u00e1zku",
|
|
||||||
"Zoom in": "P\u0159ibl\u00ed\u017eit",
|
|
||||||
"Zoom out": "Odd\u00e1lit",
|
|
||||||
"Crop": "O\u0159\u00edznout",
|
|
||||||
"Resize": "Zm\u011bnit velikost",
|
|
||||||
"Orientation": "Orientace",
|
|
||||||
"Brightness": "Jas",
|
|
||||||
"Sharpen": "Ostrost",
|
|
||||||
"Contrast": "Kontrast",
|
|
||||||
"Color levels": "\u00darovn\u011b barev",
|
|
||||||
"Gamma": "Gama",
|
|
||||||
"Invert": "Invertovat",
|
|
||||||
"Apply": "Pou\u017e\u00edt",
|
|
||||||
"Back": "Zp\u011bt",
|
|
||||||
"Insert date\/time": "Vlo\u017eit datum \/ \u010das",
|
|
||||||
"Date\/time": "Datum\/\u010das",
|
|
||||||
"Insert link": "Vlo\u017eit odkaz",
|
|
||||||
"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz",
|
|
||||||
"Text to display": "Text odkazu",
|
|
||||||
"Url": "URL",
|
|
||||||
"Target": "C\u00edl",
|
|
||||||
"None": "\u017d\u00e1dn\u00fd",
|
|
||||||
"New window": "Nov\u00e9 okno",
|
|
||||||
"Remove link": "Odstranit odkaz",
|
|
||||||
"Anchors": "Kotvy",
|
|
||||||
"Link": "Odkaz",
|
|
||||||
"Paste or type a link": "Vlo\u017ete nebo napi\u0161te adresu odkazu",
|
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?",
|
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?",
|
|
||||||
"Link list": "Seznam odkaz\u016f",
|
|
||||||
"Insert video": "Vlo\u017eit video",
|
|
||||||
"Insert\/edit video": "Vlo\u017eit \/ upravit video",
|
|
||||||
"Insert\/edit media": "Vlo\u017eit\/upravit m\u00e9dia",
|
|
||||||
"Alternative source": "Alternativn\u00ed zdroj",
|
|
||||||
"Poster": "Poster",
|
|
||||||
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed",
|
|
||||||
"Embed": "Vlo\u017een\u00fd",
|
|
||||||
"Media": "M\u00e9dia",
|
|
||||||
"Nonbreaking space": "Pevn\u00e1 mezera",
|
|
||||||
"Page break": "Konec str\u00e1nky",
|
|
||||||
"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text",
|
|
||||||
"Preview": "N\u00e1hled",
|
|
||||||
"Print": "Tisk",
|
|
||||||
"Save": "Ulo\u017eit",
|
|
||||||
"Find": "Naj\u00edt",
|
|
||||||
"Replace with": "Nahradit za",
|
|
||||||
"Replace": "Nahradit",
|
|
||||||
"Replace all": "Nahradit v\u0161e",
|
|
||||||
"Prev": "P\u0159edchoz\u00ed",
|
|
||||||
"Next": "Dal\u0161\u00ed",
|
|
||||||
"Find and replace": "Naj\u00edt a nahradit",
|
|
||||||
"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.",
|
|
||||||
"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena",
|
|
||||||
"Whole words": "Pouze cel\u00e1 slova",
|
|
||||||
"Spellcheck": "Kontrola pravopisu",
|
|
||||||
"Ignore": "Ignorovat",
|
|
||||||
"Ignore all": "Ignorovat v\u0161e",
|
|
||||||
"Finish": "Dokon\u010dit",
|
|
||||||
"Add to Dictionary": "P\u0159idat do slovn\u00edku",
|
|
||||||
"Insert table": "Vlo\u017eit tabulku",
|
|
||||||
"Table properties": "Vlastnosti tabulky",
|
|
||||||
"Delete table": "Smazat tabulku",
|
|
||||||
"Cell": "Bu\u0148ka",
|
|
||||||
"Row": "\u0158\u00e1dek",
|
|
||||||
"Column": "Sloupec",
|
|
||||||
"Cell properties": "Vlastnosti bu\u0148ky",
|
|
||||||
"Merge cells": "Slou\u010dit bu\u0148ky",
|
|
||||||
"Split cell": "Rozd\u011blit bu\u0148ku",
|
|
||||||
"Insert row before": "Vlo\u017eit \u0159\u00e1dek p\u0159ed",
|
|
||||||
"Insert row after": "Vlo\u017eit \u0159\u00e1dek za",
|
|
||||||
"Delete row": "Smazat \u0159\u00e1dek",
|
|
||||||
"Row properties": "Vlastnosti \u0159\u00e1dku",
|
|
||||||
"Cut row": "Vyjmout \u0159\u00e1dek",
|
|
||||||
"Copy row": "Kop\u00edrovat \u0159\u00e1dek",
|
|
||||||
"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
|
||||||
"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
|
||||||
"Insert column before": "Vlo\u017eit sloupec vlevo",
|
|
||||||
"Insert column after": "Vlo\u017eit sloupec vpravo",
|
|
||||||
"Delete column": "Smazat sloupec",
|
|
||||||
"Cols": "Sloupce",
|
|
||||||
"Rows": "\u0158\u00e1dky",
|
|
||||||
"Width": "\u0160\u00ed\u0159ka",
|
|
||||||
"Height": "V\u00fd\u0161ka",
|
|
||||||
"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk",
|
|
||||||
"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk",
|
|
||||||
"Caption": "Titulek",
|
|
||||||
"Left": "Vlevo",
|
|
||||||
"Center": "Na st\u0159ed",
|
|
||||||
"Right": "Vpravo",
|
|
||||||
"Cell type": "Typ bu\u0148ky",
|
|
||||||
"Scope": "Rozsah",
|
|
||||||
"Alignment": "Zarovn\u00e1n\u00ed",
|
|
||||||
"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
|
||||||
"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
|
||||||
"Top": "Nahoru",
|
|
||||||
"Middle": "Na st\u0159ed",
|
|
||||||
"Bottom": "Dol\u016f",
|
|
||||||
"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka",
|
|
||||||
"Row group": "Skupina \u0159\u00e1dk\u016f",
|
|
||||||
"Column group": "Skupina sloupc\u016f",
|
|
||||||
"Row type": "Typ \u0159\u00e1dku",
|
|
||||||
"Header": "Hlavi\u010dka",
|
|
||||||
"Body": "T\u011blo",
|
|
||||||
"Footer": "Pati\u010dka",
|
|
||||||
"Border color": "Barva r\u00e1me\u010dku",
|
|
||||||
"Insert template": "Vlo\u017eit ze \u0161ablony",
|
|
||||||
"Templates": "\u0160ablony",
|
|
||||||
"Template": "\u0160ablona",
|
|
||||||
"Text color": "Barva p\u00edsma",
|
|
||||||
"Background color": "Barva pozad\u00ed",
|
|
||||||
"Custom...": "Vlastn\u00ed",
|
|
||||||
"Custom color": "Vlastn\u00ed barva",
|
|
||||||
"No color": "Bez barvy",
|
|
||||||
"Table of Contents": "Generovat obsah",
|
|
||||||
"Show blocks": "Uk\u00e1zat bloky",
|
|
||||||
"Show invisible characters": "Uk\u00e1zat skryt\u00e9 znaky",
|
|
||||||
"Words: {0}": "Slova: {0}",
|
|
||||||
"{0} words": "{0} slov",
|
|
||||||
"File": "Soubor",
|
|
||||||
"Edit": "\u00dapravy",
|
|
||||||
"Insert": "Vlo\u017eit",
|
|
||||||
"View": "Zobrazit",
|
|
||||||
"Format": "Form\u00e1t",
|
|
||||||
"Table": "Tabulka",
|
|
||||||
"Tools": "N\u00e1stroje",
|
|
||||||
"Powered by {0}": "Powered by {0}",
|
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "RTF dokument. Stikn\u011bte ALT-F9 pro zobrazen\u00ed menu, ALT-F10 pro zobrazen\u00ed n\u00e1strojov\u00e9 li\u0161ty, ALT-0 pro n\u00e1pov\u011bdu."
|
|
||||||
});
|
|
|
@ -41,7 +41,7 @@ tinymce.addI18n('de',{
|
||||||
"Heading 4": "\u00dcberschrift 4",
|
"Heading 4": "\u00dcberschrift 4",
|
||||||
"Heading 5": "\u00dcberschrift 5",
|
"Heading 5": "\u00dcberschrift 5",
|
||||||
"Heading 6": "\u00dcberschrift 6",
|
"Heading 6": "\u00dcberschrift 6",
|
||||||
"Preformatted": "Preformatted",
|
"Preformatted": "Vorformatiert",
|
||||||
"Div": "Textblock",
|
"Div": "Textblock",
|
||||||
"Pre": "Vorformatierter Text",
|
"Pre": "Vorformatierter Text",
|
||||||
"Code": "Quelltext",
|
"Code": "Quelltext",
|
||||||
|
@ -50,7 +50,7 @@ tinymce.addI18n('de',{
|
||||||
"Inline": "Zeichenformate",
|
"Inline": "Zeichenformate",
|
||||||
"Blocks": "Absatzformate",
|
"Blocks": "Absatzformate",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
|
||||||
"Font Family": "Schriftart",
|
"Fonts": "Schriftarten",
|
||||||
"Font Sizes": "Schriftgr\u00f6\u00dfe",
|
"Font Sizes": "Schriftgr\u00f6\u00dfe",
|
||||||
"Class": "Klasse",
|
"Class": "Klasse",
|
||||||
"Browse for an image": "Bild...",
|
"Browse for an image": "Bild...",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('de',{
|
||||||
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
||||||
"Upper Alpha": "Gro\u00dfbuchstaben",
|
"Upper Alpha": "Gro\u00dfbuchstaben",
|
||||||
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
||||||
"Anchor": "Textmarke",
|
"Anchor...": "Textmarke",
|
||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
"Id": "Kennung",
|
"Id": "Kennung",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
||||||
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
||||||
"Special character": "Sonderzeichen",
|
"Special characters...": "Sonderzeichen",
|
||||||
"Source code": "Quelltext",
|
"Source code": "Quelltext",
|
||||||
"Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten",
|
"Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten",
|
||||||
"Language": "Sprache",
|
"Language": "Sprache",
|
||||||
"Code sample": "Codebeispiel",
|
"Code sample...": "Code Beispiel",
|
||||||
"Color": "Farbe",
|
"Color Picker": "Farbauswahl",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "Von links nach rechts",
|
"Left to right": "Von links nach rechts",
|
||||||
"Right to left": "Von rechts nach links",
|
"Right to left": "Von rechts nach links",
|
||||||
"Emoticons": "Emoticons",
|
"Emoticons...": "Emoticons",
|
||||||
"Document properties": "Dokumenteigenschaften",
|
"Metadata and Document Properties": "Dokument-Eigenschaften und -Metadaten",
|
||||||
"Title": "Titel",
|
"Title": "Titel",
|
||||||
"Keywords": "Sch\u00fcsselw\u00f6rter",
|
"Keywords": "Sch\u00fcsselw\u00f6rter",
|
||||||
"Description": "Beschreibung",
|
"Description": "Beschreibung",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('de',{
|
||||||
"Horizontal space": "Horizontaler Abstand",
|
"Horizontal space": "Horizontaler Abstand",
|
||||||
"Border": "Rahmen",
|
"Border": "Rahmen",
|
||||||
"Insert image": "Bild einf\u00fcgen",
|
"Insert image": "Bild einf\u00fcgen",
|
||||||
"Image": "Bild",
|
"Image...": "Bild",
|
||||||
"Image list": "Bildliste",
|
"Image list": "Bildliste",
|
||||||
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
||||||
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('de',{
|
||||||
"Back": "Zur\u00fcck",
|
"Back": "Zur\u00fcck",
|
||||||
"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
|
"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
|
||||||
"Date\/time": "Datum\/Uhrzeit",
|
"Date\/time": "Datum\/Uhrzeit",
|
||||||
"Insert link": "Link einf\u00fcgen",
|
"Insert\/Edit Link": "Verlinkung Einf\u00fcgen\/Bearbeiten",
|
||||||
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
||||||
"Text to display": "Anzuzeigender Text",
|
"Text to display": "Anzuzeigender Text",
|
||||||
"Url": "URL",
|
"Url": "URL",
|
||||||
"Target": "Ziel",
|
"Open link in...": "Verlinkung \u00f6ffnen in...",
|
||||||
|
"Current window": "Aktuelles Fenster",
|
||||||
"None": "Keine",
|
"None": "Keine",
|
||||||
"New window": "Neues Fenster",
|
"New window": "Neues Fenster",
|
||||||
"Remove link": "Link entfernen",
|
"Remove link": "Link entfernen",
|
||||||
"Anchors": "Textmarken",
|
"Anchors": "Textmarken",
|
||||||
"Link": "Link",
|
"Link...": "Verkn\u00fcpfung...",
|
||||||
"Paste or type a link": "Link einf\u00fcgen oder eintippen",
|
"Paste or type a link": "Link einf\u00fcgen oder eintippen",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
|
||||||
|
@ -165,27 +166,28 @@ tinymce.addI18n('de',{
|
||||||
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
||||||
"Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten",
|
"Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten",
|
||||||
"Alternative source": "Alternative Quelle",
|
"Alternative source": "Alternative Quelle",
|
||||||
"Poster": "Poster",
|
"Alternative source URL": "URL der alternativen Quelle",
|
||||||
|
"Media poster (Image URL)": "Vorschaubild (URL)",
|
||||||
"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
|
"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
|
||||||
"Embed": "Einbetten",
|
"Embed": "Einbetten",
|
||||||
"Media": "Medium",
|
"Media...": "Medien...",
|
||||||
"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
|
"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
|
||||||
"Page break": "Seitenumbruch",
|
"Page break": "Seitenumbruch",
|
||||||
"Paste as text": "Als Text einf\u00fcgen",
|
"Paste as text": "Als Text einf\u00fcgen",
|
||||||
"Preview": "Vorschau",
|
"Preview": "Vorschau",
|
||||||
"Print": "Drucken",
|
"Print...": "Drucken",
|
||||||
"Save": "Speichern",
|
"Save": "Speichern",
|
||||||
"Find": "Suchen",
|
"Find": "Suchen",
|
||||||
"Replace with": "Ersetzen durch",
|
"Replace with": "Ersetzen durch",
|
||||||
"Replace": "Ersetzen",
|
"Replace": "Ersetzen",
|
||||||
"Replace all": "Alles ersetzen",
|
"Replace all": "Alles ersetzen",
|
||||||
"Prev": "Zur\u00fcck",
|
"Previous": "Vorheriges",
|
||||||
"Next": "Weiter",
|
"Next": "Weiter",
|
||||||
"Find and replace": "Suchen und ersetzen",
|
"Find and replace...": "Suchen und ersetzen",
|
||||||
"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
|
"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
|
||||||
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
||||||
"Whole words": "Nur ganze W\u00f6rter",
|
"Find whole words only": "Nur ganze W\u00f6rter suchen",
|
||||||
"Spellcheck": "Rechtschreibpr\u00fcfung",
|
"Spell check": "Rechschreibpr\u00fcfung",
|
||||||
"Ignore": "Ignorieren",
|
"Ignore": "Ignorieren",
|
||||||
"Ignore all": "Alles Ignorieren",
|
"Ignore all": "Alles Ignorieren",
|
||||||
"Finish": "Ende",
|
"Finish": "Ende",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('de',{
|
||||||
"Height": "H\u00f6he",
|
"Height": "H\u00f6he",
|
||||||
"Cell spacing": "Zellenabstand",
|
"Cell spacing": "Zellenabstand",
|
||||||
"Cell padding": "Zelleninnenabstand",
|
"Cell padding": "Zelleninnenabstand",
|
||||||
"Caption": "Beschriftung",
|
"Show caption": "Beschriftung anzeigen",
|
||||||
"Left": "Linksb\u00fcndig",
|
"Left": "Linksb\u00fcndig",
|
||||||
"Center": "Zentriert",
|
"Center": "Zentriert",
|
||||||
"Right": "Rechtsb\u00fcndig",
|
"Right": "Rechtsb\u00fcndig",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('de',{
|
||||||
"Body": "Inhalt",
|
"Body": "Inhalt",
|
||||||
"Footer": "Fu\u00dfzeile",
|
"Footer": "Fu\u00dfzeile",
|
||||||
"Border color": "Rahmenfarbe",
|
"Border color": "Rahmenfarbe",
|
||||||
"Insert template": "Vorlage einf\u00fcgen ",
|
"Insert template...": "Vorlage einf\u00fcgen",
|
||||||
"Templates": "Vorlagen",
|
"Templates": "Vorlagen",
|
||||||
"Template": "Vorlage",
|
"Template": "Vorlage",
|
||||||
"Text color": "Textfarbe",
|
"Text color": "Textfarbe",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('de',{
|
||||||
"Custom...": "Benutzerdefiniert...",
|
"Custom...": "Benutzerdefiniert...",
|
||||||
"Custom color": "Benutzerdefinierte Farbe",
|
"Custom color": "Benutzerdefinierte Farbe",
|
||||||
"No color": "Keine Farbe",
|
"No color": "Keine Farbe",
|
||||||
|
"Remove color": "Farbauswahl aufheben",
|
||||||
"Table of Contents": "Inhaltsverzeichnis",
|
"Table of Contents": "Inhaltsverzeichnis",
|
||||||
"Show blocks": "Bl\u00f6cke anzeigen",
|
"Show blocks": "Bl\u00f6cke anzeigen",
|
||||||
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
||||||
|
"Word count": "Anzahl der W\u00f6rter",
|
||||||
"Words: {0}": "W\u00f6rter: {0}",
|
"Words: {0}": "W\u00f6rter: {0}",
|
||||||
"{0} words": "{0} W\u00f6rter",
|
"{0} words": "{0} W\u00f6rter",
|
||||||
"File": "Datei",
|
"File": "Datei",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('de',{
|
||||||
"Table": "Tabelle",
|
"Table": "Tabelle",
|
||||||
"Tools": "Werkzeuge",
|
"Tools": "Werkzeuge",
|
||||||
"Powered by {0}": "Betrieben von {0}",
|
"Powered by {0}": "Betrieben von {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe"
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe",
|
||||||
|
"Image title": "Bild Titel",
|
||||||
|
"Border width": "Rahmenbreite",
|
||||||
|
"Border style": "Rahmenstil",
|
||||||
|
"Error": "Fehler",
|
||||||
|
"Warn": "Warnung",
|
||||||
|
"Valid": "G\u00fcltig",
|
||||||
|
"To open the popup, press Shift+Enter": "Dr\u00fccken Sie Shift+Enter, um das Popup-Fenster zu \u00f6ffnen.",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Rich-Text-Bereich. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe.",
|
||||||
|
"System Font": "Betriebssystemschriftart",
|
||||||
|
"Failed to upload image: {0}": "Bild konnte nicht hochgeladen werden: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Plugin konnte nicht initialisiert werden: {0} von {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Plugin konnte nicht initialisiert werden: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Plugin konnte nicht initialisiert werden",
|
||||||
|
"example": "Beispiel",
|
||||||
|
"Search": "Suchen",
|
||||||
|
"All": "Alles",
|
||||||
|
"Currency": "W\u00e4hrung",
|
||||||
|
"Text": "Text",
|
||||||
|
"Quotations": "Anf\u00fchrungszeichen",
|
||||||
|
"Mathematical": "Mathematisch",
|
||||||
|
"Extended Latin": "Erweitertes Latein",
|
||||||
|
"Symbols": "Symbole",
|
||||||
|
"Arrows": "Pfeile",
|
||||||
|
"User Defined": "Benutzerdefiniert",
|
||||||
|
"dollar sign": "Dollarzeichen",
|
||||||
|
"currency sign": "W\u00e4hrungssymbol",
|
||||||
|
"euro-currency sign": "Eurozeichen",
|
||||||
|
"colon sign": "Doppelpunkt",
|
||||||
|
"cruzeiro sign": "Cruzeirozeichen",
|
||||||
|
"french franc sign": "Franczeichen",
|
||||||
|
"lira sign": "Lirezeichen",
|
||||||
|
"mill sign": "Millzeichen",
|
||||||
|
"naira sign": "Nairazeichen",
|
||||||
|
"peseta sign": "Pesetazeichen",
|
||||||
|
"rupee sign": "Rupiezeichen",
|
||||||
|
"won sign": "Wonzeichen",
|
||||||
|
"new sheqel sign": "Schekelzeichen",
|
||||||
|
"dong sign": "Dongzeichen",
|
||||||
|
"kip sign": "Kipzeichen",
|
||||||
|
"tugrik sign": "Tugrikzeichen",
|
||||||
|
"drachma sign": "Drachmezeichen",
|
||||||
|
"german penny symbol": "Pfennigzeichen",
|
||||||
|
"peso sign": "Pesozeichen",
|
||||||
|
"guarani sign": "Guaranizeichen",
|
||||||
|
"austral sign": "Australzeichen",
|
||||||
|
"hryvnia sign": "Hrywnjazeichen",
|
||||||
|
"cedi sign": "Cedizeichen",
|
||||||
|
"livre tournois sign": "Livrezeichen",
|
||||||
|
"spesmilo sign": "Spesmilozeichen",
|
||||||
|
"tenge sign": "Tengezeichen",
|
||||||
|
"indian rupee sign": "Indisches Rupiezeichen",
|
||||||
|
"turkish lira sign": "T\u00fcrkisches Lirazeichen",
|
||||||
|
"nordic mark sign": "Zeichen nordische Mark",
|
||||||
|
"manat sign": "Manatzeichen",
|
||||||
|
"ruble sign": "Rubelzeichen",
|
||||||
|
"yen character": "Yenzeichen",
|
||||||
|
"yuan character": "Yuanzeichen",
|
||||||
|
"yuan character, in hong kong and taiwan": "Yuanzeichen in Hongkong und Taiwan",
|
||||||
|
"yen\/yuan character variant one": "Yen-\/Yuanzeichen Variante 1",
|
||||||
|
"Loading emoticons...": "Lade Emoticons...",
|
||||||
|
"Could not load emoticons": "Emoticons konnten nicht geladen werden",
|
||||||
|
"People": "Menschen",
|
||||||
|
"Animals and Nature": "Tiere und Natur",
|
||||||
|
"Food and Drink": "Essen und Trinken",
|
||||||
|
"Activity": "Aktivit\u00e4t",
|
||||||
|
"Travel and Places": "Reisen und Orte",
|
||||||
|
"Objects": "Objekte",
|
||||||
|
"Flags": "Flaggen",
|
||||||
|
"Characters": "Zeichen",
|
||||||
|
"Characters (no spaces)": "Zeichen (ohne Leerzeichen)",
|
||||||
|
"Error: Form submit field collision.": "Fehler: Kollision der Formularbest\u00e4tigungsfelder.",
|
||||||
|
"Error: No form element found.": "Fehler: Kein Formularfeld gefunden.",
|
||||||
|
"Update": "Aktualisieren",
|
||||||
|
"Color swatch": "Farbpalette",
|
||||||
|
"Turquoise": "T\u00fcrkis",
|
||||||
|
"Green": "Gr\u00fcn",
|
||||||
|
"Blue": "Blau",
|
||||||
|
"Purple": "Violett",
|
||||||
|
"Navy Blue": "Marineblau",
|
||||||
|
"Dark Turquoise": "Dunkelt\u00fcrkis",
|
||||||
|
"Dark Green": "Dunkelgr\u00fcn",
|
||||||
|
"Medium Blue": "Mittelblau",
|
||||||
|
"Medium Purple": "Mittelviolett",
|
||||||
|
"Midnight Blue": "Mitternachtsblau",
|
||||||
|
"Yellow": "Gelb",
|
||||||
|
"Orange": "Orange",
|
||||||
|
"Red": "Rot",
|
||||||
|
"Light Gray": "Hellgrau",
|
||||||
|
"Gray": "Grau",
|
||||||
|
"Dark Yellow": "Dunkelgelb",
|
||||||
|
"Dark Orange": "Dunkelorange",
|
||||||
|
"Dark Red": "Dunkelrot",
|
||||||
|
"Medium Gray": "Mittelgrau",
|
||||||
|
"Dark Gray": "Dunkelgrau",
|
||||||
|
"Black": "Schwarz",
|
||||||
|
"White": "Weiss",
|
||||||
|
"Switch to or from fullscreen mode": "Vollbildmodus umschalten",
|
||||||
|
"Open help dialog": "Hilfe-Dialog \u00f6ffnen",
|
||||||
|
"history": "Historie",
|
||||||
|
"styles": "Stil",
|
||||||
|
"formatting": "Formatierung",
|
||||||
|
"alignment": "Ausrichtung",
|
||||||
|
"indentation": "Einr\u00fcckungen",
|
||||||
|
"permanent pen": "Textmarker",
|
||||||
|
"comments": "Anmerkungen",
|
||||||
|
"Anchor": "Textmarke",
|
||||||
|
"Special character": "Sonderzeichen",
|
||||||
|
"Code sample": "Codebeispiel",
|
||||||
|
"Color": "Farbe",
|
||||||
|
"Emoticons": "Emoticons",
|
||||||
|
"Document properties": "Dokumenteigenschaften",
|
||||||
|
"Image": "Bild",
|
||||||
|
"Insert link": "Link einf\u00fcgen",
|
||||||
|
"Target": "Ziel",
|
||||||
|
"Link": "Link",
|
||||||
|
"Poster": "Poster",
|
||||||
|
"Media": "Medium",
|
||||||
|
"Print": "Drucken",
|
||||||
|
"Prev": "Zur\u00fcck",
|
||||||
|
"Find and replace": "Suchen und ersetzen",
|
||||||
|
"Whole words": "Nur ganze W\u00f6rter",
|
||||||
|
"Spellcheck": "Rechtschreibpr\u00fcfung",
|
||||||
|
"Caption": "Beschriftung",
|
||||||
|
"Insert template": "Vorlage einf\u00fcgen "
|
||||||
});
|
});
|
|
@ -1,33 +1,33 @@
|
||||||
tinymce.addI18n('es',{
|
tinymce.addI18n('es',{
|
||||||
"Redo": "Rehacer",
|
"Redo": "Deshacer",
|
||||||
"Undo": "Deshacer",
|
"Undo": "Rehacer",
|
||||||
"Cut": "Cortar",
|
"Cut": "Cortar",
|
||||||
"Copy": "Copiar",
|
"Copy": "Copiar",
|
||||||
"Paste": "Pegar",
|
"Paste": "Pegar",
|
||||||
"Select all": "Seleccionar todo",
|
"Select all": "Seleccionar todo",
|
||||||
"New document": "Nuevo documento",
|
"New document": "Nuevo documento",
|
||||||
"Ok": "Ok",
|
"Ok": "Aceptar",
|
||||||
"Cancel": "Cancelar",
|
"Cancel": "Cancelar",
|
||||||
"Visual aids": "Ayudas visuales",
|
"Visual aids": "Ayuda visual",
|
||||||
"Bold": "Negrita",
|
"Bold": "Negrita",
|
||||||
"Italic": "It\u00e1lica",
|
"Italic": "Cursiva",
|
||||||
"Underline": "Subrayado",
|
"Underline": "Subrayado",
|
||||||
"Strikethrough": "Tachado",
|
"Strikethrough": "Tachado",
|
||||||
"Superscript": "Super\u00edndice",
|
"Superscript": "\u00cdndice",
|
||||||
"Subscript": "Sub\u00edndice",
|
"Subscript": "Sub\u00edndice",
|
||||||
"Clear formatting": "Limpiar formato",
|
"Clear formatting": "Limpiar formato",
|
||||||
"Align left": "Alinear a la izquierda",
|
"Align left": "Alinear a la izquierda",
|
||||||
"Align center": "Alinear al centro",
|
"Align center": "Centrar",
|
||||||
"Align right": "Alinear a la derecha",
|
"Align right": "Alinear a la derecha",
|
||||||
"Justify": "Justificar",
|
"Justify": "Justificar",
|
||||||
"Bullet list": "Lista de vi\u00f1etas",
|
"Bullet list": "Lista de vi\u00f1eta",
|
||||||
"Numbered list": "Lista numerada",
|
"Numbered list": "Lista numerada",
|
||||||
"Decrease indent": "Disminuir sangr\u00eda",
|
"Decrease indent": "Decrementar identado",
|
||||||
"Increase indent": "Incrementar sangr\u00eda",
|
"Increase indent": "Incrementar identado",
|
||||||
"Close": "Cerrar",
|
"Close": "Cerrar",
|
||||||
"Formats": "Formatos",
|
"Formats": "Formato",
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado",
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no soporta acceso directo al portapapeles. Por favor haga uso de la combinaci\u00f3n de teclas Ctrl+X para cortar, Ctrl+C para copiar y Ctrl+V para pegar con el teclado. ",
|
||||||
"Headers": "Encabezados",
|
"Headers": "Encabezado",
|
||||||
"Header 1": "Encabezado 1",
|
"Header 1": "Encabezado 1",
|
||||||
"Header 2": "Encabezado 2",
|
"Header 2": "Encabezado 2",
|
||||||
"Header 3": "Encabezado 3",
|
"Header 3": "Encabezado 3",
|
||||||
|
@ -35,58 +35,58 @@ tinymce.addI18n('es',{
|
||||||
"Header 5": "Encabezado 5",
|
"Header 5": "Encabezado 5",
|
||||||
"Header 6": "Encabezado 6",
|
"Header 6": "Encabezado 6",
|
||||||
"Headings": "Encabezados",
|
"Headings": "Encabezados",
|
||||||
"Heading 1": "Encabezado 1",
|
"Heading 1": "Encabezados 1",
|
||||||
"Heading 2": "Encabezado 2",
|
"Heading 2": "Encabezados 2",
|
||||||
"Heading 3": "Encabezado 3",
|
"Heading 3": "Encabezados 3",
|
||||||
"Heading 4": "Encabezado 4",
|
"Heading 4": "Encabezados 4",
|
||||||
"Heading 5": "Encabezado 5",
|
"Heading 5": "Encabezados 5",
|
||||||
"Heading 6": "Encabezado 6",
|
"Heading 6": "Encabezados 6",
|
||||||
"Preformatted": "Preformateado",
|
"Preformatted": "Pre-formateado",
|
||||||
"Div": "Capa",
|
"Div": "Div",
|
||||||
"Pre": "Pre",
|
"Pre": "Pre",
|
||||||
"Code": "C\u00f3digo",
|
"Code": "C\u00f3digo",
|
||||||
"Paragraph": "P\u00e1rrafo",
|
"Paragraph": "P\u00e1rrafo",
|
||||||
"Blockquote": "Bloque de cita",
|
"Blockquote": "Blockquote",
|
||||||
"Inline": "en l\u00ednea",
|
"Inline": "En l\u00ednea",
|
||||||
"Blocks": "Bloques",
|
"Blocks": "Bloque",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Se pegar\u00e1 en texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
||||||
"Font Family": "Familia de fuentes",
|
"Fonts": "Fuentes",
|
||||||
"Font Sizes": "Tama\u00f1os de fuente",
|
"Font Sizes": "Tama\u00f1o de letra",
|
||||||
"Class": "Clase",
|
"Class": "Clase",
|
||||||
"Browse for an image": "Exporador de imagenes",
|
"Browse for an image": "Ver por imagen",
|
||||||
"OR": "O",
|
"OR": "OR",
|
||||||
"Drop an image here": "Arrastre una imagen aqu\u00ed",
|
"Drop an image here": "Arrastra una imagen aqu\u00ed",
|
||||||
"Upload": "Subir",
|
"Upload": "Subir",
|
||||||
"Block": "Bloque",
|
"Block": "Bloque",
|
||||||
"Align": "Alinear",
|
"Align": "Alineaci\u00f3n",
|
||||||
"Default": "Por defecto",
|
"Default": "Por defecto",
|
||||||
"Circle": "C\u00edrculo",
|
"Circle": "Circulo",
|
||||||
"Disc": "Disco",
|
"Disc": "Disco",
|
||||||
"Square": "Cuadrado",
|
"Square": "Cuadro",
|
||||||
"Lower Alpha": "Inferior Alfa",
|
"Lower Alpha": "Alfa min\u00fascula",
|
||||||
"Lower Greek": "Inferior Griega",
|
"Lower Greek": "Griega min\u00fascula",
|
||||||
"Lower Roman": "Inferior Romana",
|
"Lower Roman": "Romano min\u00fascula",
|
||||||
"Upper Alpha": "Superior Alfa",
|
"Upper Alpha": "Alfa may\u00fascula",
|
||||||
"Upper Roman": "Superior Romana",
|
"Upper Roman": "May\u00fascula Romana",
|
||||||
"Anchor": "Ancla",
|
"Anchor...": "Separador...",
|
||||||
"Name": "Nombre",
|
"Name": "Nombre",
|
||||||
"Id": "Id",
|
"Id": "Identificador",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Deber\u00eda comenzar por una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "El Identificador debe comenzar con una letra, seguido solo por letras, n\u00fameros, puntos, guiones medios o guiones bajos. ",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?",
|
"You have unsaved changes are you sure you want to navigate away?": "No se han guardado los cambios. \u00bfSeguro que desea abandonar la p\u00e1gina?",
|
||||||
"Restore last draft": "Restaurar el \u00faltimo borrador",
|
"Restore last draft": "Restaurar el \u00faltimo borrador",
|
||||||
"Special character": "Car\u00e1cter especial",
|
"Special characters...": "Caracteres especiales...",
|
||||||
"Source code": "C\u00f3digo fuente",
|
"Source code": "C\u00f3digo fuente",
|
||||||
"Insert\/Edit code sample": "Insertar\/editar c\u00f3digo de prueba",
|
"Insert\/Edit code sample": "Insertar\/Editar c\u00f3digo muestra",
|
||||||
"Language": "Idioma",
|
"Language": "idioma",
|
||||||
"Code sample": "Ejemplo de c\u00f3digo",
|
"Code sample...": "C\u00f3digo de muestra...",
|
||||||
"Color": "Color",
|
"Color Picker": "Selector de color",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "V",
|
"G": "G",
|
||||||
"B": "A",
|
"B": "B",
|
||||||
"Left to right": "De izquierda a derecha",
|
"Left to right": "Izquierda a derecha",
|
||||||
"Right to left": "De derecha a izquierda",
|
"Right to left": "Derecha a Izquierda",
|
||||||
"Emoticons": "Emoticonos",
|
"Emoticons...": "Emoticons...",
|
||||||
"Document properties": "Propiedades del documento",
|
"Metadata and Document Properties": "Metadatos y propiedades del documento",
|
||||||
"Title": "T\u00edtulo",
|
"Title": "T\u00edtulo",
|
||||||
"Keywords": "Palabras clave",
|
"Keywords": "Palabras clave",
|
||||||
"Description": "Descripci\u00f3n ",
|
"Description": "Descripci\u00f3n ",
|
||||||
|
@ -98,23 +98,23 @@ tinymce.addI18n('es',{
|
||||||
"Shortcut": "Atajo",
|
"Shortcut": "Atajo",
|
||||||
"Help": "Ayuda",
|
"Help": "Ayuda",
|
||||||
"Address": "Direcci\u00f3n",
|
"Address": "Direcci\u00f3n",
|
||||||
"Focus to menubar": "Enfocar la barra del men\u00fa",
|
"Focus to menubar": "Enfocar en barra de menu",
|
||||||
"Focus to toolbar": "Enfocar la barra de herramientas",
|
"Focus to toolbar": "Enfocar en barra de herramientas",
|
||||||
"Focus to element path": "Enfocar la ruta del elemento",
|
"Focus to element path": "Enfocar ruta del elemento",
|
||||||
"Focus to contextual toolbar": "Enfocar la barra de herramientas contextual",
|
"Focus to contextual toolbar": "Enfocar en barra de herramientas contextual",
|
||||||
"Insert link (if link plugin activated)": "Insertar enlace (si el complemento de enlace est\u00e1 activado)",
|
"Insert link (if link plugin activated)": "Insertar enlace (si enlace del plugin est\u00e1 activo)",
|
||||||
"Save (if save plugin activated)": "Guardar (si el componente de salvar est\u00e1 activado)",
|
"Save (if save plugin activated)": "Guardar (si el plugin guardar est\u00e1 activo)",
|
||||||
"Find (if searchreplace plugin activated)": "Buscar (si el complemento buscar-remplazar est\u00e1 activado)",
|
"Find (if searchreplace plugin activated)": "Buscar (si el plugin buscar\/reemplazar est\u00e1 activo)",
|
||||||
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
||||||
"Premium plugins:": "Complementos premium:",
|
"Premium plugins:": "Plugins premium:",
|
||||||
"Learn more...": "Aprende m\u00e1s...",
|
"Learn more...": "Aprende m\u00e1s...",
|
||||||
"You are using {0}": "Estas usando {0}",
|
"You are using {0}": "est\u00e1s usando {0}",
|
||||||
"Plugins": "Complementos",
|
"Plugins": "Plugins",
|
||||||
"Handy Shortcuts": "Accesos directos",
|
"Handy Shortcuts": "Atajos \u00fatiles",
|
||||||
"Horizontal line": "L\u00ednea horizontal",
|
"Horizontal line": "L\u00ednea Horizontal",
|
||||||
"Insert\/edit image": "Insertar\/editar imagen",
|
"Insert\/edit image": "Insertar\/editar imagen",
|
||||||
"Image description": "Descripci\u00f3n de la imagen",
|
"Image description": "Descripci\u00f3n de imagen",
|
||||||
"Source": "Enlace",
|
"Source": "Origen",
|
||||||
"Dimensions": "Dimensiones",
|
"Dimensions": "Dimensiones",
|
||||||
"Constrain proportions": "Restringir proporciones",
|
"Constrain proportions": "Restringir proporciones",
|
||||||
"General": "General",
|
"General": "General",
|
||||||
|
@ -124,138 +124,266 @@ tinymce.addI18n('es',{
|
||||||
"Horizontal space": "Espacio horizontal",
|
"Horizontal space": "Espacio horizontal",
|
||||||
"Border": "Borde",
|
"Border": "Borde",
|
||||||
"Insert image": "Insertar imagen",
|
"Insert image": "Insertar imagen",
|
||||||
"Image": "Imagen",
|
"Image...": "Imagen...",
|
||||||
"Image list": "Lista de im\u00e1genes",
|
"Image list": "Lista de im\u00e1genes",
|
||||||
"Rotate counterclockwise": "Girar a la izquierda",
|
"Rotate counterclockwise": "Rotar en sentido contrario a las manecillas",
|
||||||
"Rotate clockwise": "Girar a la derecha",
|
"Rotate clockwise": "Rotar en sentido de las manecillas",
|
||||||
"Flip vertically": "Invertir verticalmente",
|
"Flip vertically": "Voltear verticalmente",
|
||||||
"Flip horizontally": "Invertir horizontalmente",
|
"Flip horizontally": "Volter horizontalmente",
|
||||||
"Edit image": "Editar imagen",
|
"Edit image": "Editar imagen",
|
||||||
"Image options": "Opciones de imagen",
|
"Image options": "Opciones de la imagen",
|
||||||
"Zoom in": "Acercar",
|
"Zoom in": "Acercar",
|
||||||
"Zoom out": "Alejar",
|
"Zoom out": "Alejar",
|
||||||
"Crop": "Recortar",
|
"Crop": "Recortar",
|
||||||
"Resize": "Redimensionar",
|
"Resize": "Cambiar tama\u00f1o",
|
||||||
"Orientation": "Orientaci\u00f3n",
|
"Orientation": "Orientaci\u00f3n",
|
||||||
"Brightness": "Brillo",
|
"Brightness": "Brillo",
|
||||||
"Sharpen": "Forma",
|
"Sharpen": "Nitidez",
|
||||||
"Contrast": "Contraste",
|
"Contrast": "Contraste",
|
||||||
"Color levels": "Niveles de color",
|
"Color levels": "Niveles de Color",
|
||||||
"Gamma": "Gamma",
|
"Gamma": "Gamma",
|
||||||
"Invert": "Invertir",
|
"Invert": "Invertir",
|
||||||
"Apply": "Aplicar",
|
"Apply": "Aplicar",
|
||||||
"Back": "Atr\u00e1s",
|
"Back": "Regresar",
|
||||||
"Insert date\/time": "Insertar fecha\/hora",
|
"Insert date\/time": "Insertar fecha\/hora",
|
||||||
"Date\/time": "Fecha\/hora",
|
"Date\/time": "Fecha\/hora",
|
||||||
"Insert link": "Insertar enlace",
|
"Insert\/Edit Link": "Insertar\/editar v\u00ednculo",
|
||||||
"Insert\/edit link": "Insertar\/editar enlace",
|
"Insert\/edit link": "Inserta\/editar enlace",
|
||||||
"Text to display": "Texto para mostrar",
|
"Text to display": "Texto a mostrar",
|
||||||
"Url": "URL",
|
"Url": "Url",
|
||||||
"Target": "Destino",
|
"Open link in...": "Abrir link en...",
|
||||||
|
"Current window": "Ventana actual",
|
||||||
"None": "Ninguno",
|
"None": "Ninguno",
|
||||||
"New window": "Nueva ventana",
|
"New window": "Nueva ventana",
|
||||||
"Remove link": "Quitar enlace",
|
"Remove link": "Eliminar elnace",
|
||||||
"Anchors": "Anclas",
|
"Anchors": "Anclas",
|
||||||
"Link": "Enlace",
|
"Link...": "V\u00ednculo...",
|
||||||
"Paste or type a link": "Pega o introduce un enlace",
|
"Paste or type a link": "Pega o escribe un enlace",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El URL que ha insertado tiene formato de correo electr\u00f3nico. \u00bfDesea agregar con prefijo \"mailto:\"?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El URL que ha ingresado es un enlace externo. \u00bfDesea agregar el prefijo \"http:\/\/\"?",
|
||||||
"Link list": "Lista de enlaces",
|
"Link list": "Lista de enlaces",
|
||||||
"Insert video": "Insertar video",
|
"Insert video": "Insertar video",
|
||||||
"Insert\/edit video": "Insertar\/editar video",
|
"Insert\/edit video": "Insertar\/editar video",
|
||||||
"Insert\/edit media": "Insertar\/editar medio",
|
"Insert\/edit media": "Insertar\/editar multimedia",
|
||||||
"Alternative source": "Enlace alternativo",
|
"Alternative source": "Fuente alternativa",
|
||||||
"Poster": "Miniatura",
|
"Alternative source URL": "URL fuente alternativa",
|
||||||
"Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo",
|
"Media poster (Image URL)": "Imagen (URL)",
|
||||||
"Embed": "Incrustado",
|
"Paste your embed code below:": "Pegue su c\u00f3digo de inserci\u00f3n abajo:",
|
||||||
"Media": "Media",
|
"Embed": "Incrustar",
|
||||||
"Nonbreaking space": "Espacio fijo",
|
"Media...": "Video...",
|
||||||
|
"Nonbreaking space": "Espacio de no separaci\u00f3n",
|
||||||
"Page break": "Salto de p\u00e1gina ",
|
"Page break": "Salto de p\u00e1gina ",
|
||||||
"Paste as text": "Pegar como texto",
|
"Paste as text": "Copiar como texto",
|
||||||
"Preview": "Previsualizar",
|
"Preview": "Vista previa ",
|
||||||
"Print": "Imprimir",
|
"Print...": "Imprimir...",
|
||||||
"Save": "Guardar",
|
"Save": "Guardar",
|
||||||
"Find": "Buscar",
|
"Find": "Buscar",
|
||||||
"Replace with": "Reemplazar con",
|
"Replace with": "Remplazar con",
|
||||||
"Replace": "Reemplazar",
|
"Replace": "Remplazar",
|
||||||
"Replace all": "Reemplazar todo",
|
"Replace all": "Remplazar todo",
|
||||||
"Prev": "Anterior",
|
"Previous": "Anterior",
|
||||||
"Next": "Siguiente",
|
"Next": "Siguiente",
|
||||||
"Find and replace": "Buscar y reemplazar",
|
"Find and replace...": "Buscar y reemplazar...",
|
||||||
"Could not find the specified string.": "No se encuentra la cadena de texto especificada",
|
"Could not find the specified string.": "No se ha encontrado la cadena especificada.",
|
||||||
"Match case": "Coincidencia exacta",
|
"Match case": "Coincidencia",
|
||||||
"Whole words": "Palabras completas",
|
"Find whole words only": "Buscar solo palabras completas",
|
||||||
"Spellcheck": "Corrector ortogr\u00e1fico",
|
"Spell check": "Verificaci\u00f3n de ortograf\u00eda",
|
||||||
"Ignore": "Ignorar",
|
"Ignore": "Ignorar",
|
||||||
"Ignore all": "Ignorar todos",
|
"Ignore all": "Ignorar todo",
|
||||||
"Finish": "Finalizar",
|
"Finish": "Terminar",
|
||||||
"Add to Dictionary": "A\u00f1adir al Diccionario",
|
"Add to Dictionary": "Agregar al diccionario ",
|
||||||
"Insert table": "Insertar tabla",
|
"Insert table": "Insertar tabla",
|
||||||
"Table properties": "Propiedades de la tabla",
|
"Table properties": "Propiedades de tabla",
|
||||||
"Delete table": "Eliminar tabla",
|
"Delete table": "Eliminar tabla",
|
||||||
"Cell": "Celda",
|
"Cell": "Celda",
|
||||||
"Row": "Fila",
|
"Row": "Rengl\u00f3n ",
|
||||||
"Column": "Columna",
|
"Column": "Columna",
|
||||||
"Cell properties": "Propiedades de la celda",
|
"Cell properties": "Propiedades de celda",
|
||||||
"Merge cells": "Combinar celdas",
|
"Merge cells": "Unir celdas",
|
||||||
"Split cell": "Dividir celdas",
|
"Split cell": "Dividir celdas",
|
||||||
"Insert row before": "Insertar fila antes",
|
"Insert row before": "Insertar rengl\u00f3n antes",
|
||||||
"Insert row after": "Insertar fila despu\u00e9s ",
|
"Insert row after": "Insertar rengl\u00f3n despu\u00e9s",
|
||||||
"Delete row": "Eliminar fila",
|
"Delete row": "Eliminar rengl\u00f3n ",
|
||||||
"Row properties": "Propiedades de la fila",
|
"Row properties": "Propiedades del rengl\u00f3n ",
|
||||||
"Cut row": "Cortar fila",
|
"Cut row": "Cortar renglon",
|
||||||
"Copy row": "Copiar fila",
|
"Copy row": "Copiar rengl\u00f3n ",
|
||||||
"Paste row before": "Pegar la fila antes",
|
"Paste row before": "Pegar rengl\u00f3n antes",
|
||||||
"Paste row after": "Pegar la fila despu\u00e9s",
|
"Paste row after": "Pegar rengl\u00f3n despu\u00e9s",
|
||||||
"Insert column before": "Insertar columna antes",
|
"Insert column before": "Insertar columna antes",
|
||||||
"Insert column after": "Insertar columna despu\u00e9s",
|
"Insert column after": "Insertar columna despu\u00e9s",
|
||||||
"Delete column": "Eliminar columna",
|
"Delete column": "Eliminar columna",
|
||||||
"Cols": "Columnas",
|
"Cols": "Columnas",
|
||||||
"Rows": "Filas",
|
"Rows": "Renglones ",
|
||||||
"Width": "Ancho",
|
"Width": "Ancho",
|
||||||
"Height": "Alto",
|
"Height": "Alto",
|
||||||
"Cell spacing": "Espacio entre celdas",
|
"Cell spacing": "Espacio entre celdas",
|
||||||
"Cell padding": "Relleno de celda",
|
"Cell padding": "Relleno de la celda",
|
||||||
"Caption": "Subt\u00edtulo",
|
"Show caption": "Mostrar titulo",
|
||||||
"Left": "Izquierda",
|
"Left": "Izquierda",
|
||||||
"Center": "Centrado",
|
"Center": "Centro",
|
||||||
"Right": "Derecha",
|
"Right": "Derecha",
|
||||||
"Cell type": "Tipo de celda",
|
"Cell type": "Tipo de celda",
|
||||||
"Scope": "\u00c1mbito",
|
"Scope": "Alcance",
|
||||||
"Alignment": "Alineaci\u00f3n ",
|
"Alignment": "Alineaci\u00f3n ",
|
||||||
"H Align": "Alineamiento Horizontal",
|
"H Align": "Alineaci\u00f3n Horizontal",
|
||||||
"V Align": "Alineamiento Vertical",
|
"V Align": "Alineaci\u00f3n Vertical",
|
||||||
"Top": "Arriba",
|
"Top": "Arriba",
|
||||||
"Middle": "Centro",
|
"Middle": "Centrado",
|
||||||
"Bottom": "Abajo",
|
"Bottom": "Abajo",
|
||||||
"Header cell": "Celda de la cebecera",
|
"Header cell": "Celda de encabezado",
|
||||||
"Row group": "Grupo de filas",
|
"Row group": "Grupo de renglones",
|
||||||
"Column group": "Grupo de columnas",
|
"Column group": "Grupo de columnas",
|
||||||
"Row type": "Tipo de fila",
|
"Row type": "Tipo de rengl\u00f3n ",
|
||||||
"Header": "Cabecera",
|
"Header": "Encabezado",
|
||||||
"Body": "Cuerpo",
|
"Body": "Cuerpo",
|
||||||
"Footer": "Pie de p\u00e1gina",
|
"Footer": "Pie",
|
||||||
"Border color": "Color del borde",
|
"Border color": "Color del borde",
|
||||||
"Insert template": "Insertar plantilla",
|
"Insert template...": "Insertar plantilla...",
|
||||||
"Templates": "Plantillas",
|
"Templates": "Plantilla",
|
||||||
"Template": "Plantilla",
|
"Template": "Plantilla",
|
||||||
"Text color": "Color del texto",
|
"Text color": "Color de letra",
|
||||||
"Background color": "Color de fondo",
|
"Background color": "Color de fondo",
|
||||||
"Custom...": "Personalizar...",
|
"Custom...": "Personalizar",
|
||||||
"Custom color": "Color personalizado",
|
"Custom color": "Perzonalizar color",
|
||||||
"No color": "Sin color",
|
"No color": "Sin color",
|
||||||
"Table of Contents": "Tabla de contenidos",
|
"Remove color": "Quitar color",
|
||||||
|
"Table of Contents": "Tabla de Contenidos",
|
||||||
"Show blocks": "Mostrar bloques",
|
"Show blocks": "Mostrar bloques",
|
||||||
"Show invisible characters": "Mostrar caracteres invisibles",
|
"Show invisible characters": "Mostrar caracteres invisibles",
|
||||||
|
"Word count": "Conteo de palabras",
|
||||||
"Words: {0}": "Palabras:{0}",
|
"Words: {0}": "Palabras:{0}",
|
||||||
"{0} words": "{0} palabras",
|
"{0} words": "{0} palabras",
|
||||||
"File": "Archivo",
|
"File": "Archivo",
|
||||||
"Edit": "Editar",
|
"Edit": "Editar",
|
||||||
"Insert": "Insertar",
|
"Insert": "Insertar",
|
||||||
"View": "Ver",
|
"View": "Vistas",
|
||||||
"Format": "Formato",
|
"Format": "Formato",
|
||||||
"Table": "Tabla",
|
"Table": "Tabla",
|
||||||
"Tools": "Herramientas",
|
"Tools": "Herramientas",
|
||||||
"Powered by {0}": "Desarrollado por {0}",
|
"Powered by {0}": "Creado con {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda"
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Presione dentro del \u00e1rea de texto ALT-F9 para invocar el men\u00fa, ALT-F10 para la barra de herramientas y ALT-0 para la ayuda.",
|
||||||
|
"Image title": "T\u00edtulo de la imagen",
|
||||||
|
"Border width": "Grosor del borde",
|
||||||
|
"Border style": "Estilo del borde",
|
||||||
|
"Error": "Error",
|
||||||
|
"Warn": "Advertencia",
|
||||||
|
"Valid": "V\u00e1lido",
|
||||||
|
"To open the popup, press Shift+Enter": "Para abrir el cuadro emergente, presiona Shift+Enter",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Cuadro de texto enriquecido. Presiona ALT-0 para ayuda.",
|
||||||
|
"System Font": "Fuente del sistema",
|
||||||
|
"Failed to upload image: {0}": "Fallo al subir la imagen: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Fallo al cargar el complemento: {0} de la URL: {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Fallo al cargar la URL del complemento: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Fallo en iniciar el complemento: {0}",
|
||||||
|
"example": "ejemplo",
|
||||||
|
"Search": "Buscar",
|
||||||
|
"All": "Todo",
|
||||||
|
"Currency": "Moneda",
|
||||||
|
"Text": "Texto",
|
||||||
|
"Quotations": "Marcas de texto",
|
||||||
|
"Mathematical": "Matematicas",
|
||||||
|
"Extended Latin": "Latin extendido",
|
||||||
|
"Symbols": "S\u00edmbolos",
|
||||||
|
"Arrows": "Flechas",
|
||||||
|
"User Defined": "Definido por el usuario",
|
||||||
|
"dollar sign": "signo de dolares",
|
||||||
|
"currency sign": "signo de moneda",
|
||||||
|
"euro-currency sign": "signo de monera euro",
|
||||||
|
"colon sign": "signo de colones",
|
||||||
|
"cruzeiro sign": "signo de cruzeiros",
|
||||||
|
"french franc sign": "signo de francos",
|
||||||
|
"lira sign": "signo de liras",
|
||||||
|
"mill sign": "signo de mills",
|
||||||
|
"naira sign": "signo de nairas",
|
||||||
|
"peseta sign": "signo de pesetas",
|
||||||
|
"rupee sign": "signo de rupias",
|
||||||
|
"won sign": "signo de won",
|
||||||
|
"new sheqel sign": "signo de nuevo s\u00e9quel",
|
||||||
|
"dong sign": "signo de dong",
|
||||||
|
"kip sign": "signo de kips",
|
||||||
|
"tugrik sign": "signo de tugrik",
|
||||||
|
"drachma sign": "signo de dracma",
|
||||||
|
"german penny symbol": "simbolo de moneda aleman",
|
||||||
|
"peso sign": "signo de pesos",
|
||||||
|
"guarani sign": "signo de guaranis",
|
||||||
|
"austral sign": "signo austral",
|
||||||
|
"hryvnia sign": "signo de grivna",
|
||||||
|
"cedi sign": "signo de cedi",
|
||||||
|
"livre tournois sign": "signo de libra francesa",
|
||||||
|
"spesmilo sign": "signo de spesmilo",
|
||||||
|
"tenge sign": "signo de tenges",
|
||||||
|
"indian rupee sign": "signo de rupias",
|
||||||
|
"turkish lira sign": "signo de liras turcas",
|
||||||
|
"nordic mark sign": "signo de marks nordicos",
|
||||||
|
"manat sign": "signo de manat",
|
||||||
|
"ruble sign": "signo de rublos",
|
||||||
|
"yen character": "Caracter yen",
|
||||||
|
"yuan character": "Caracter yuan",
|
||||||
|
"yuan character, in hong kong and taiwan": "caracter yuan, en Hong Kong y Taiwan",
|
||||||
|
"yen\/yuan character variant one": "variante de caracter yen\/yuan",
|
||||||
|
"Loading emoticons...": "Cargando emoticons",
|
||||||
|
"Could not load emoticons": "No se pudieron cargar los emoticons",
|
||||||
|
"People": "Gente",
|
||||||
|
"Animals and Nature": "Animales y naturaleza",
|
||||||
|
"Food and Drink": "Comida y bebida",
|
||||||
|
"Activity": "Actividad",
|
||||||
|
"Travel and Places": "Viaje y lugares",
|
||||||
|
"Objects": "Objetos",
|
||||||
|
"Flags": "Banderas",
|
||||||
|
"Characters": "Caracteres",
|
||||||
|
"Characters (no spaces)": "Caracteres (no espacios)",
|
||||||
|
"Error: Form submit field collision.": "Error: Colisi\u00f3n del envi\u00f3 del campo de la forma.",
|
||||||
|
"Error: No form element found.": "Error: No se encontr\u00f3 el elemento en la forma.",
|
||||||
|
"Update": "Actualizar",
|
||||||
|
"Color swatch": "Muestra de color",
|
||||||
|
"Turquoise": "Turqueza",
|
||||||
|
"Green": "Verde",
|
||||||
|
"Blue": "Azul",
|
||||||
|
"Purple": "Morado",
|
||||||
|
"Navy Blue": "Azul navy",
|
||||||
|
"Dark Turquoise": "Turqueza oscuro",
|
||||||
|
"Dark Green": "Verde oscuro",
|
||||||
|
"Medium Blue": "Azul claro",
|
||||||
|
"Medium Purple": "Morado claro",
|
||||||
|
"Midnight Blue": "Azul medianoche",
|
||||||
|
"Yellow": "Amarillo",
|
||||||
|
"Orange": "Anaranjado",
|
||||||
|
"Red": "Rojo",
|
||||||
|
"Light Gray": "Gris claro",
|
||||||
|
"Gray": "Gris",
|
||||||
|
"Dark Yellow": "Amarillo oscuro",
|
||||||
|
"Dark Orange": "Anaranjado oscuro",
|
||||||
|
"Dark Red": "Rojo oscuro",
|
||||||
|
"Medium Gray": "Gris medio",
|
||||||
|
"Dark Gray": "Gris oscuro",
|
||||||
|
"Black": "Negro",
|
||||||
|
"White": "Blanco",
|
||||||
|
"Switch to or from fullscreen mode": "Cambiar a modo pantalla completa",
|
||||||
|
"Open help dialog": "Abrir dialogo de ayuda",
|
||||||
|
"history": "historial",
|
||||||
|
"styles": "estilos",
|
||||||
|
"formatting": "formateando",
|
||||||
|
"alignment": "alineaci\u00f3n",
|
||||||
|
"indentation": "alineaci\u00f3n",
|
||||||
|
"permanent pen": "pluma permanente",
|
||||||
|
"comments": "commentarios",
|
||||||
|
"Anchor": "Anclar",
|
||||||
|
"Special character": "Caracter especial",
|
||||||
|
"Code sample": "C\u00f3digo muestra",
|
||||||
|
"Color": "Color",
|
||||||
|
"Emoticons": "Emoticones",
|
||||||
|
"Document properties": "Propiedades del documento",
|
||||||
|
"Image": "Imagen",
|
||||||
|
"Insert link": "Insertar enlace",
|
||||||
|
"Target": "Objetivo",
|
||||||
|
"Link": "Enlace",
|
||||||
|
"Poster": "Cartel",
|
||||||
|
"Media": "Multimedia",
|
||||||
|
"Print": "Imprimir",
|
||||||
|
"Prev": "Anterior",
|
||||||
|
"Find and replace": "Buscar y reemplazar",
|
||||||
|
"Whole words": "Palabras completas",
|
||||||
|
"Spellcheck": "Revisi\u00f3n ortogr\u00e1fica",
|
||||||
|
"Caption": "Subt\u00edtulo",
|
||||||
|
"Insert template": "Insertar plantilla"
|
||||||
});
|
});
|
|
@ -0,0 +1,390 @@
|
||||||
|
tinymce.addI18n('fa',{
|
||||||
|
"Redo": "\u0628\u0627\u0632 \u0646\u0634\u0627\u0646",
|
||||||
|
"Undo": "\u0628\u0627\u0632 \u06af\u0631\u062f\u0627\u0646",
|
||||||
|
"Cut": "\u0628\u0631\u0634",
|
||||||
|
"Copy": "\u0631\u0648\u0646\u0648\u06cc\u0633\u06cc",
|
||||||
|
"Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646",
|
||||||
|
"Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647",
|
||||||
|
"New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f",
|
||||||
|
"Ok": "\u062a\u0627\u06cc\u06cc\u062f",
|
||||||
|
"Cancel": "\u0627\u0646\u0635\u0631\u0627\u0641",
|
||||||
|
"Visual aids": "\u06a9\u0645\u06a9 \u0628\u0635\u0631\u06cc",
|
||||||
|
"Bold": "\u062f\u0631\u0634\u062a",
|
||||||
|
"Italic": "\u06a9\u062c",
|
||||||
|
"Underline": "\u0632\u06cc\u0631 \u062e\u0637",
|
||||||
|
"Strikethrough": "\u062e\u0637 \u062e\u0648\u0631\u062f\u0647",
|
||||||
|
"Superscript": "\u0646\u0645\u0627",
|
||||||
|
"Subscript": "\u067e\u0627\u06cc\u0647",
|
||||||
|
"Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc",
|
||||||
|
"Align left": "\u0686\u067e \u0686\u06cc\u0646",
|
||||||
|
"Align center": "\u0648\u0633\u0637 \u0686\u06cc\u0646",
|
||||||
|
"Align right": "\u0631\u0627\u0633\u062a \u0686\u06cc\u0646",
|
||||||
|
"Justify": "\u062a\u0631\u0627\u0632 \u062f\u0648 \u0637\u0631\u0641\u0647",
|
||||||
|
"Bullet list": "\u0641\u0647\u0631\u0633\u062a \u0646\u0634\u0627\u0646\u0647 \u062f\u0627\u0631",
|
||||||
|
"Numbered list": "\u0641\u0647\u0631\u0633\u062a \u0634\u0645\u0627\u0631\u0647 \u062f\u0627\u0631",
|
||||||
|
"Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc",
|
||||||
|
"Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc",
|
||||||
|
"Close": "\u0628\u0633\u062a\u0646",
|
||||||
|
"Formats": "\u0642\u0627\u0644\u0628 \u0647\u0627",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u06a9\u0644\u06cc\u067e \u0628\u0648\u0631\u062f \u0631\u0627 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc \u06a9\u0646\u062f\u060c \u0644\u0637\u0641\u0627 \u0627\u0632 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc Ctrl+X\/C\/V \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f . ",
|
||||||
|
"Headers": "\u0633\u0631 \u0622\u0645\u062f\u0647\u0627",
|
||||||
|
"Header 1": "\u0633\u0631 \u0622\u0645\u062f 1",
|
||||||
|
"Header 2": "\u0633\u0631 \u0622\u0645\u062f 2",
|
||||||
|
"Header 3": "\u0633\u0631 \u0622\u0645\u062f 3",
|
||||||
|
"Header 4": "\u0633\u0631 \u0622\u0645\u062f 4",
|
||||||
|
"Header 5": "\u0633\u0631 \u0622\u0645\u062f 5",
|
||||||
|
"Header 6": "\u0633\u0631 \u0622\u0645\u062f 6",
|
||||||
|
"Headings": "\u0639\u0646\u0627\u0648\u06cc\u0646",
|
||||||
|
"Heading 1": "\u0639\u0646\u0648\u0627\u0646 1",
|
||||||
|
"Heading 2": "\u0639\u0646\u0648\u0627\u0646 2",
|
||||||
|
"Heading 3": "\u0639\u0646\u0648\u0627\u0646 3",
|
||||||
|
"Heading 4": "\u0639\u0646\u0648\u0627\u0646 4",
|
||||||
|
"Heading 5": "\u0639\u0646\u0648\u0627\u0646 5",
|
||||||
|
"Heading 6": "\u0639\u0646\u0648\u0627\u0646 6",
|
||||||
|
"Preformatted": "\u0627\u0632 \u067e\u06cc\u0634 \u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc \u0634\u062f\u0647",
|
||||||
|
"Div": "\u0628\u0644\u0648\u06a9 \u062c\u062f\u0627 \u0633\u0627\u0632 (\u062a\u06af Div)",
|
||||||
|
"Pre": "\u0628\u0644\u0648\u06a9 \u0645\u062a\u0646 \u0642\u0627\u0644\u0628 \u062f\u0627\u0631 (\u062a\u06af Pre)",
|
||||||
|
"Code": "\u0628\u0644\u0648\u06a9 \u06a9\u062f\u0646\u0648\u06cc\u0633\u06cc (\u062a\u06a9 Code)",
|
||||||
|
"Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641 (\u062a\u06af P)",
|
||||||
|
"Blockquote": "\u0628\u0644\u0648\u06a9 \u0646\u0642\u0644 \u0642\u0648\u0644 (\u062a\u06af BlockQuote)",
|
||||||
|
"Inline": "\u0631\u0648 \u062e\u0637",
|
||||||
|
"Blocks": "\u0628\u0644\u0648\u06a9 \u0647\u0627",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0627\u0645\u06a9\u0627\u0646 \u0686\u0633\u0628\u0627\u0646\u062f\u0646\u060c \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u062e\u0627\u0644\u0635 \u062a\u0646\u0638\u06cc\u0645 \u06af\u0634\u062a\u0647. \u062a\u0627 \u0632\u0645\u0627\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a\u060c \u0645\u062d\u062a\u0648\u0627\u06cc \u0645\u0648\u0631\u062f \u0686\u0633\u0628\u0627\u0646\u062f\u0646\u060c \u0628\u0647 \u0635\u0648\u0631\u062a \u0645\u062a\u0646 \u062e\u0627\u0644\u0635 \u062e\u0648\u0627\u0647\u062f \u0686\u0633\u0628\u06cc\u062f.",
|
||||||
|
"Fonts": "\u0642\u0644\u0645 \u0647\u0627",
|
||||||
|
"Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647\u0621 \u0642\u0644\u0645",
|
||||||
|
"Class": "\u0631\u062f\u0647",
|
||||||
|
"Browse for an image": "\u06cc\u0627\u0641\u062a\u0646 \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"OR": "\u00ab\u06cc\u0627\u00bb",
|
||||||
|
"Drop an image here": "\u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u0627\u06cc\u0646\u062c\u0627 \u0631\u0647\u0627 \u06a9\u0646\u06cc\u062f",
|
||||||
|
"Upload": "\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc",
|
||||||
|
"Block": "\u0628\u0644\u0648\u06a9",
|
||||||
|
"Align": "\u0686\u06cc\u062f\u0645\u0627\u0646",
|
||||||
|
"Default": "\u067e\u06cc\u0634 \u0641\u0631\u0636",
|
||||||
|
"Circle": "\u062f\u0627\u06cc\u0631\u0647",
|
||||||
|
"Disc": "\u062f\u0627\u06cc\u0631\u0647\u0621 \u062a\u0648\u067e\u0631",
|
||||||
|
"Square": "\u0686\u0647\u0627\u0631 \u06af\u0648\u0634",
|
||||||
|
"Lower Alpha": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9",
|
||||||
|
"Lower Greek": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u06cc\u0648\u0646\u0627\u0646\u06cc",
|
||||||
|
"Lower Roman": "\u0627\u0631\u0642\u0627\u0645 \u06a9\u0648\u0686\u06a9 \u0631\u0648\u0645\u06cc",
|
||||||
|
"Upper Alpha": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af",
|
||||||
|
"Upper Roman": "\u0627\u0631\u0642\u0627\u0645 \u0628\u0632\u0631\u06af \u0631\u0648\u0645\u06cc",
|
||||||
|
"Anchor...": "\u0642\u0644\u0627\u0628...",
|
||||||
|
"Name": "\u0646\u0627\u0645",
|
||||||
|
"Id": "\u0634\u0646\u0627\u0633\u0647",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0634\u0646\u0627\u0633\u0647 \u0645\u06cc \u0628\u0627\u06cc\u0633\u062a \u0628\u0627 \u06cc\u06a9 \u062d\u0631\u0641 \u0627\u0644\u0641\u0628\u0627 \u0622\u063a\u0627\u0632 \u0648 \u0628\u0627 \u062f\u0646\u0628\u0627\u0644\u0647 \u0627\u06cc \u0627\u0632 \u062d\u0631\u0648\u0641\u060c \u0627\u0639\u062f\u0627\u062f\u060c \u0639\u0644\u0627\u0645\u062a \u0645\u0650\u0646\u0647\u0627\u060c \u0646\u0642\u0637\u0647\u060c \u062f\u0648 \u0646\u0642\u0637\u0647 \u06cc\u0627 \u062e\u0637 \u062a\u06cc\u0631\u0647 \u0627\u062f\u0627\u0645\u0647 \u06cc\u0627\u0628\u062f.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u0646\u062f\u060c \u0622\u06cc\u0627 \u062c\u0647\u062a \u062e\u0631\u0648\u062c \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062f\u0627\u0631\u06cc\u062f\u061f",
|
||||||
|
"Restore last draft": "\u0628\u0627\u0632\u06cc\u0627\u0628\u06cc \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633",
|
||||||
|
"Special characters...": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u0648\u06cc\u0698\u0647...",
|
||||||
|
"Source code": "\u0645\u062a\u0646 \u06a9\u062f \u0645\u0646\u0628\u0639",
|
||||||
|
"Insert\/Edit code sample": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0645\u0648\u0646\u0647\u0621 \u06a9\u062f",
|
||||||
|
"Language": "\u0632\u0628\u0627\u0646",
|
||||||
|
"Code sample...": "\u0646\u0645\u0648\u0646\u0647 \u06a9\u062f...",
|
||||||
|
"Color Picker": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0646\u06af",
|
||||||
|
"R": "\u0642\u0631\u0645\u0632",
|
||||||
|
"G": "\u0633\u0628\u0632",
|
||||||
|
"B": "\u0622\u0628\u06cc",
|
||||||
|
"Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a",
|
||||||
|
"Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e",
|
||||||
|
"Emoticons...": "\u0635\u0648\u0631\u062a\u06a9 \u0647\u0627...",
|
||||||
|
"Metadata and Document Properties": "\u0641\u0631\u0627\u062f\u0627\u062f\u0647 \u0648 \u0645\u062a\u0639\u0644\u0642\u0627\u062a \u0633\u0646\u062f",
|
||||||
|
"Title": "\u0639\u0646\u0648\u0627\u0646",
|
||||||
|
"Keywords": "\u0648\u0627\u0698\u06af\u0627\u0646 \u06a9\u0644\u06cc\u062f\u06cc",
|
||||||
|
"Description": "\u062a\u0648\u0636\u06cc\u062d",
|
||||||
|
"Robots": "\u0631\u0648\u0628\u0627\u062a\u0647\u0627",
|
||||||
|
"Author": "\u0645\u0648\u0644\u0641",
|
||||||
|
"Encoding": "\u06a9\u062f\u06af\u0632\u0627\u0631\u06cc \u0645\u062a\u0646",
|
||||||
|
"Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647",
|
||||||
|
"Action": "\u0639\u0645\u0644",
|
||||||
|
"Shortcut": "\u0645\u06cc\u0627\u0646\u0628\u064f\u0631",
|
||||||
|
"Help": "\u0631\u0627\u0647\u0646\u0645\u0627",
|
||||||
|
"Address": "\u0646\u0634\u0627\u0646\u06cc",
|
||||||
|
"Focus to menubar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0645\u0646\u0648",
|
||||||
|
"Focus to toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631",
|
||||||
|
"Focus to element path": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0645\u0633\u06cc\u0631 \u0627\u0650\u0644\u0650\u0645\u0627\u0646",
|
||||||
|
"Focus to contextual toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0645\u062a\u0646\u06cc",
|
||||||
|
"Insert link (if link plugin activated)": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f (\u0627\u06af\u0631 \u0627\u0641\u0632\u0648\u0646\u0647\u0621 \u067e\u06cc\u0648\u0646\u062f \u0641\u0639\u0627\u0644 \u0634\u062f)",
|
||||||
|
"Save (if save plugin activated)": "\u062b\u0628\u062a\u00a0(\u0627\u06af\u0631 \u0627\u0641\u0632\u0648\u0646\u0647\u0621 \u0630\u062e\u06cc\u0631\u0647 \u0633\u0627\u0632\u06cc \u0641\u0639\u0627\u0644 \u0634\u062f)",
|
||||||
|
"Find (if searchreplace plugin activated)": "\u06cc\u0627\u0641\u062a\u0646 (\u0627\u06af\u0631 \u0627\u0641\u0632\u0648\u0646\u0647\u0621 \u062c\u0633\u062a\u062c\u0648\/\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0641\u0639\u0627\u0644 \u0634\u062f)",
|
||||||
|
"Plugins installed ({0}):": "\u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0646\u0635\u0628 \u0634\u062f\u0646\u062f ({0}):",
|
||||||
|
"Premium plugins:": "\u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627\u06cc \u0645\u062e\u0635\u0648\u0635:",
|
||||||
|
"Learn more...": "\u06cc\u0627\u062f\u06af\u06cc\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631...",
|
||||||
|
"You are using {0}": "\u0634\u0645\u0627 \u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 {0} \u0645\u06cc \u0628\u0627\u0634\u06cc\u062f",
|
||||||
|
"Plugins": "\u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627",
|
||||||
|
"Handy Shortcuts": "\u0645\u06cc\u0627\u0646\u0628\u064f\u0631\u0647\u0627\u06cc \u0633\u0648\u062f\u0645\u0646\u062f",
|
||||||
|
"Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc",
|
||||||
|
"Insert\/edit image": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Image description": "\u062a\u0648\u0635\u06cc\u0641 \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Source": "\u0645\u0646\u0628\u0639",
|
||||||
|
"Dimensions": "\u0627\u0628\u0639\u0627\u062f",
|
||||||
|
"Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628",
|
||||||
|
"General": "\u0639\u0645\u0648\u0645\u06cc",
|
||||||
|
"Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647",
|
||||||
|
"Style": "\u0633\u0628\u06a9",
|
||||||
|
"Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc",
|
||||||
|
"Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc",
|
||||||
|
"Border": "\u0644\u0628\u0647",
|
||||||
|
"Insert image": "\u062f\u0631\u062c \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Image...": "\u062a\u0635\u0648\u06cc\u0631...",
|
||||||
|
"Image list": "\u0641\u0647\u0631\u0633\u062a \u062a\u0635\u0648\u06cc\u0631\u06cc",
|
||||||
|
"Rotate counterclockwise": "\u062f\u064e\u0648\u064e\u0631\u0627\u0646 \u067e\u0627\u062f \u0633\u0627\u0639\u062a \u06af\u0631\u062f",
|
||||||
|
"Rotate clockwise": "\u062f\u064e\u0648\u064e\u0631\u0627\u0646 \u0633\u0627\u0639\u062a \u06af\u0631\u062f",
|
||||||
|
"Flip vertically": "\u0642\u0631\u06cc\u0646\u0647 \u0639\u0645\u0648\u062f\u06cc",
|
||||||
|
"Flip horizontally": "\u0642\u0631\u06cc\u0646\u0647 \u0627\u0641\u0642\u06cc",
|
||||||
|
"Edit image": "\u0648\u06cc\u0631\u0627\u0633\u062a \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Image options": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Zoom in": "\u0628\u0632\u0631\u06af \u0646\u0645\u0627\u06cc\u06cc",
|
||||||
|
"Zoom out": "\u06a9\u0648\u0686\u06a9 \u0646\u0645\u0627\u06cc\u06cc",
|
||||||
|
"Crop": "\u0628\u064f\u0631\u0634 \u062f\u064f\u0648\u0631",
|
||||||
|
"Resize": "\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0646\u062f\u0627\u0632\u0647",
|
||||||
|
"Orientation": "\u06af\u0650\u0631\u0627",
|
||||||
|
"Brightness": "\u0631\u0648\u0634\u0646\u0627\u06cc\u06cc",
|
||||||
|
"Sharpen": "\u0628\u0647\u0628\u0648\u062f \u0644\u0628\u0647",
|
||||||
|
"Contrast": "\u062a\u0636\u0627\u062f \u0631\u0646\u06af",
|
||||||
|
"Color levels": "\u0633\u0637\u0648\u062d \u0631\u0646\u06af",
|
||||||
|
"Gamma": "\u06af\u0627\u0645\u0627",
|
||||||
|
"Invert": "\u0628\u0631\u06af\u0634\u062a \u0631\u0646\u06af",
|
||||||
|
"Apply": "\u0627\u0650\u0639\u0645\u0627\u0644",
|
||||||
|
"Back": "\u0628\u0627\u0632\u06af\u0634\u062a",
|
||||||
|
"Insert date\/time": "\u062f\u0631\u062c \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646",
|
||||||
|
"Date\/time": "\u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646",
|
||||||
|
"Insert\/Edit Link": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"Insert\/edit link": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"Text to display": "\u0645\u062a\u0646 \u0646\u0645\u0627\u06cc\u0634\u06cc",
|
||||||
|
"Url": "\u0622\u062f\u0631\u0633",
|
||||||
|
"Open link in...": "\u06af\u0634\u0648\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f \u062f\u0631...",
|
||||||
|
"Current window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u0627\u0631\u06cc",
|
||||||
|
"None": "\u0647\u06cc\u0686",
|
||||||
|
"New window": "\u067e\u0646\u062c\u0631\u0647\u0621 \u062c\u062f\u06cc\u062f",
|
||||||
|
"Remove link": "\u062d\u0630\u0641 \u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"Anchors": "\u0642\u0644\u0627\u0628 \u0647\u0627",
|
||||||
|
"Link...": "\u067e\u06cc\u0648\u0646\u062f...",
|
||||||
|
"Paste or type a link": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u06cc\u0627 \u062a\u0627\u06cc\u067e \u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u0622\u062f\u0631\u0633 \u0648\u0631\u0648\u062f\u06cc \u06cc\u06a9 \u0631\u0627\u06cc\u0627\u0646\u0627\u0645\u0647 \u0628\u0627\u0634\u062f. \u0622\u06cc\u0627 \u062a\u0645\u0627\u06cc\u0644 \u0628\u0647 \u0627\u0641\u0632\u0648\u0631\u062f\u0646 \u067e\u06cc\u0634\u0648\u0646\u062f mailto: \u062f\u0627\u0631\u06cc\u062f\u061f",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u0622\u062f\u0631\u0633 \u0648\u0631\u0648\u062f\u06cc \u0627\u0631\u062c\u0627\u0639\u06cc \u0628\u0647 \u062e\u0627\u0631\u062c \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0645\u06cc \u0628\u0627\u0634\u062f. \u0622\u06cc\u0627 \u062a\u0645\u0627\u06cc\u0644 \u0628\u0647 \u0627\u0641\u0632\u0648\u0631\u062f\u0646 \u067e\u06cc\u0634\u0648\u0646\u062f http:\/\/ \u062f\u0627\u0631\u06cc\u062f\u061f",
|
||||||
|
"Link list": "\u0641\u0647\u0631\u0633\u062a \u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"Insert video": "\u062f\u0631\u062c \u0648\u06cc\u062f\u06cc\u0648",
|
||||||
|
"Insert\/edit video": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0648\u06cc\u062f\u06cc\u0648",
|
||||||
|
"Insert\/edit media": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0633\u0627\u0646\u0647",
|
||||||
|
"Alternative source": "\u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646",
|
||||||
|
"Alternative source URL": "Alternative source URL",
|
||||||
|
"Media poster (Image URL)": "\u067e\u064f\u0633\u062a\u0650\u0631 \u0631\u0633\u0627\u0646\u0647 (\u0622\u062f\u0631\u0633 \u062a\u0635\u0648\u06cc\u0631)",
|
||||||
|
"Paste your embed code below:": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u06a9\u062f \u062c\u0627\u0633\u0627\u0632\u06cc \u0634\u0645\u0627 \u062f\u0631 \u0632\u06cc\u0631: ",
|
||||||
|
"Embed": "\u062c\u0627\u0633\u0627\u0632\u06cc",
|
||||||
|
"Media...": "\u0631\u0633\u0627\u0646\u0647...",
|
||||||
|
"Nonbreaking space": "\u0641\u0636\u0627\u06cc \u062e\u0627\u0644\u06cc \u0628\u0631\u0634 \u0646\u0627\u067e\u0630\u06cc\u0631",
|
||||||
|
"Page break": "\u0628\u0631\u0634 \u0635\u0641\u062d\u0647",
|
||||||
|
"Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0645\u062a\u0646",
|
||||||
|
"Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634",
|
||||||
|
"Print...": "\u0686\u0627\u067e...",
|
||||||
|
"Save": "\u0630\u062e\u06cc\u0631\u0647",
|
||||||
|
"Find": "\u062c\u0633\u062a\u062c\u0648",
|
||||||
|
"Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0628\u0627",
|
||||||
|
"Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc",
|
||||||
|
"Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0647\u0645\u0647",
|
||||||
|
"Previous": "\u067e\u06cc\u0634\u06cc\u0646",
|
||||||
|
"Next": "\u0628\u0639\u062f\u06cc",
|
||||||
|
"Find and replace...": "\u06a9\u0634\u0641 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc...",
|
||||||
|
"Could not find the specified string.": "\u0631\u0634\u062a\u0647\u0621 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u06cc\u0627\u0641\u062a \u0646\u06af\u0631\u062f\u06cc\u062f.",
|
||||||
|
"Match case": "\u062a\u0637\u0627\u0628\u0642 \u062d\u0631\u0648\u0641",
|
||||||
|
"Find whole words only": "\u0641\u0642\u0637 \u06a9\u0634\u0641 \u062a\u0645\u0627\u0645 \u0648\u0627\u0698\u06af\u0627\u0646",
|
||||||
|
"Spell check": "\u0628\u0631\u0631\u0633\u06cc \u0646\u0648\u0634\u062a\u0627\u0631\u06cc",
|
||||||
|
"Ignore": "\u0628\u06cc \u062e\u06cc\u0627\u0644",
|
||||||
|
"Ignore all": "\u0628\u06cc \u062e\u06cc\u0627\u0644 \u0647\u0645\u0647",
|
||||||
|
"Finish": "\u0627\u062a\u0645\u0627\u0645",
|
||||||
|
"Add to Dictionary": "\u0628\u0647 \u0648\u0627\u0698\u0647 \u0646\u0627\u0645\u0647 \u0628\u06cc \u0627\u0641\u0632\u0627",
|
||||||
|
"Insert table": "\u062f\u0631\u062c \u062c\u062f\u0648\u0644",
|
||||||
|
"Table properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062c\u062f\u0648\u0644",
|
||||||
|
"Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644",
|
||||||
|
"Cell": "\u0633\u0644\u0648\u0644",
|
||||||
|
"Row": "\u0633\u0637\u0631",
|
||||||
|
"Column": "\u0633\u062a\u0648\u0646",
|
||||||
|
"Cell properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0644\u0648\u0644",
|
||||||
|
"Merge cells": "\u067e\u06cc\u0648\u0646\u062f \u0633\u0644\u0648\u0644 \u0647\u0627",
|
||||||
|
"Split cell": "\u062c\u062f\u0627 \u0633\u0627\u0632\u06cc \u0633\u0644\u0648\u0644",
|
||||||
|
"Insert row before": "\u062f\u0631\u062c \u0633\u0637\u0631 \u062f\u0631 \u0628\u0627\u0644\u0627",
|
||||||
|
"Insert row after": "\u062f\u0631\u062c \u0633\u0637\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646",
|
||||||
|
"Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631",
|
||||||
|
"Row properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0637\u0631",
|
||||||
|
"Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631",
|
||||||
|
"Copy row": "\u0631\u0648\u0646\u0648\u06cc\u0633\u06cc \u0633\u0637\u0631",
|
||||||
|
"Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631 \u062f\u0631 \u0628\u0627\u0644\u0627",
|
||||||
|
"Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646",
|
||||||
|
"Insert column before": "\u062f\u0631\u062c \u0633\u062a\u0648\u0646 \u0642\u0628\u0644",
|
||||||
|
"Insert column after": "\u062f\u0631\u062c \u0633\u062a\u0648\u0646 \u0628\u0639\u062f",
|
||||||
|
"Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646",
|
||||||
|
"Cols": "\u0633\u062a\u0648\u0646 \u0647\u0627",
|
||||||
|
"Rows": "\u0633\u0637\u0631 \u0647\u0627",
|
||||||
|
"Width": "\u0639\u0631\u0636",
|
||||||
|
"Height": "\u0627\u0631\u062a\u0641\u0627\u0639",
|
||||||
|
"Cell spacing": "\u0641\u0627\u0635\u0644\u0647 \u0645\u06cc\u0627\u0646 \u0633\u0644\u0648\u0644\u06cc",
|
||||||
|
"Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u062f\u0631\u0648\u0646 \u0633\u0644\u0648\u0644\u06cc",
|
||||||
|
"Show caption": "\u0646\u0645\u0627\u06cc\u0634 \u0639\u0646\u0648\u0627\u0646",
|
||||||
|
"Left": "\u0686\u067e",
|
||||||
|
"Center": "\u0645\u06cc\u0627\u0646\u0647",
|
||||||
|
"Right": "\u0631\u0627\u0633\u062a",
|
||||||
|
"Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644",
|
||||||
|
"Scope": "\u062d\u0648\u0632\u0647",
|
||||||
|
"Alignment": "\u0647\u0645 \u062a\u0631\u0627\u0632\u06cc",
|
||||||
|
"H Align": "\u062a\u0631\u0627\u0632 \u0627\u0641\u0642\u06cc",
|
||||||
|
"V Align": "\u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc",
|
||||||
|
"Top": "\u0628\u0627\u0644\u0627",
|
||||||
|
"Middle": "\u0645\u06cc\u0627\u0646\u0647",
|
||||||
|
"Bottom": "\u067e\u0627\u06cc\u06cc\u0646",
|
||||||
|
"Header cell": "\u0633\u0644\u0648\u0644 \u0633\u0631 \u0633\u062a\u0648\u0646",
|
||||||
|
"Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631\u06cc",
|
||||||
|
"Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646\u06cc",
|
||||||
|
"Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631",
|
||||||
|
"Header": "\u0633\u0631 \u0622\u0645\u062f",
|
||||||
|
"Body": "\u0628\u062f\u0646\u0647",
|
||||||
|
"Footer": "\u067e\u0627 \u0646\u0648\u0634\u062a",
|
||||||
|
"Border color": "\u0631\u0646\u06af \u0644\u0628\u0647",
|
||||||
|
"Insert template...": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648...",
|
||||||
|
"Templates": "\u0627\u0644\u06af\u0648\u0647\u0627",
|
||||||
|
"Template": "\u0627\u0644\u06af\u0648",
|
||||||
|
"Text color": "\u0631\u0646\u06af \u0645\u062a\u0646",
|
||||||
|
"Background color": "\u0631\u0646\u06af \u067e\u0633 \u0632\u0645\u06cc\u0646\u0647",
|
||||||
|
"Custom...": "\u062f\u0644\u062e\u0648\u0627\u0647...",
|
||||||
|
"Custom color": "\u0631\u0646\u06af \u062f\u0644\u062e\u0648\u0627\u0647",
|
||||||
|
"No color": "\u0628\u062f\u0648\u0646 \u0631\u0646\u06af",
|
||||||
|
"Remove color": "\u062d\u0630\u0641 \u0631\u0646\u06af",
|
||||||
|
"Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u0639\u0646\u0627\u0648\u06cc\u0646",
|
||||||
|
"Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u0644\u0648\u06a9 \u0647\u0627",
|
||||||
|
"Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u0646\u0627\u067e\u06cc\u062f\u0627",
|
||||||
|
"Word count": "\u062a\u0639\u062f\u0627\u062f \u0648\u0627\u0698\u06af\u0627\u0646",
|
||||||
|
"Words: {0}": "\u0648\u0627\u0698\u0647 \u0647\u0627: {0}",
|
||||||
|
"{0} words": "{0} \u0648\u0627\u0698\u0647",
|
||||||
|
"File": "\u067e\u0631\u0648\u0646\u062f\u0647",
|
||||||
|
"Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634",
|
||||||
|
"Insert": "\u062f\u0631\u062c",
|
||||||
|
"View": "\u0646\u0645\u0627\u06cc\u0634",
|
||||||
|
"Format": "\u0642\u0627\u0644\u0628",
|
||||||
|
"Table": "\u062c\u062f\u0648\u0644",
|
||||||
|
"Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627",
|
||||||
|
"Powered by {0}": "\u062a\u0648\u0627\u0646 \u06af\u0631\u0641\u062a\u0647 \u0627\u0632 {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0646\u0627\u062d\u06cc\u0647 \u0645\u062a\u0646 \u063a\u0646\u06cc.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0645\u0646\u0648 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + F9 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + F10 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0631\u0627\u0647\u0646\u0645\u0627 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + 0 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.",
|
||||||
|
"Image title": "\u0639\u0646\u0648\u0627\u0646 \u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Border width": "\u0636\u062e\u0627\u0645\u062a \u0644\u0628\u0647",
|
||||||
|
"Border style": "\u0628\u0627\u0641\u062a \u0644\u0628\u0647",
|
||||||
|
"Error": "\u062e\u0637\u0627",
|
||||||
|
"Warn": "\u0647\u0634\u062f\u0627\u0631",
|
||||||
|
"Valid": "\u0645\u0639\u062a\u0628\u0631",
|
||||||
|
"To open the popup, press Shift+Enter": "\u062c\u0647\u062a \u06af\u0634\u0627\u06cc\u0634 \u067e\u0646\u062c\u0631\u0647 \u0631\u0648\u0646\u0645\u0627\u060c \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc Shift \u0648 Enter \u0631\u0627 \u0628\u0641\u0634\u0627\u0631\u06cc\u062f",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "\u0646\u0627\u062d\u06cc\u0647\u0621 \u0645\u062a\u0646 \u063a\u0646\u06cc. \u062c\u0647\u062a \u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT \u0648 0 (\u0635\u0641\u0631) \u0631\u0627 \u0628\u0641\u0634\u0627\u0631\u06cc\u062f",
|
||||||
|
"System Font": "\u0642\u0644\u0645 \u0633\u06cc\u0633\u062a\u0645\u06cc",
|
||||||
|
"Failed to upload image: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u062a\u0635\u0648\u06cc\u0631: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0641\u0632\u0648\u0646\u0647\u0621 {0} \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0622\u062f\u0631\u0633 {1}",
|
||||||
|
"Failed to load plugin url: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0627\u062c\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0}",
|
||||||
|
"example": "\u0645\u062b\u0627\u0644",
|
||||||
|
"Search": "\u062c\u0633\u062a\u062c\u0648",
|
||||||
|
"All": "\u0647\u0645\u0647",
|
||||||
|
"Currency": "\u067e\u0648\u0644\/\u0627\u0631\u0632",
|
||||||
|
"Text": "\u0645\u062a\u0646",
|
||||||
|
"Quotations": "\u0646\u0642\u0644 \u0642\u0648\u0644 \u0647\u0627",
|
||||||
|
"Mathematical": "\u0631\u06cc\u0627\u0636\u06cc",
|
||||||
|
"Extended Latin": "\u0644\u0627\u062a\u06cc\u0646 \u062a\u0648\u0633\u0639\u0647 \u06cc\u0627\u0641\u062a\u0647",
|
||||||
|
"Symbols": "\u0639\u0644\u0627\u0645\u0627\u062a",
|
||||||
|
"Arrows": "\u062c\u0647\u0627\u062a",
|
||||||
|
"User Defined": "\u0628\u0647 \u062e\u0648\u0627\u0633\u062a \u06a9\u0627\u0631\u0628\u0631",
|
||||||
|
"dollar sign": "\u0646\u0645\u0627\u062f \u062f\u0644\u0627\u0631",
|
||||||
|
"currency sign": "\u0646\u0645\u0627\u062f \u067e\u0648\u0644\/\u0627\u0631\u0632",
|
||||||
|
"euro-currency sign": "\u0646\u0645\u0627\u062f \u06cc\u0648\u0631\u0648",
|
||||||
|
"colon sign": "\u0646\u0645\u0627\u062f \u06a9\u064f\u0644\u064f\u0646",
|
||||||
|
"cruzeiro sign": "\u0646\u0645\u0627\u062f \u06a9\u064f\u0631\u0648\u0632\u0650\u0631\u0648",
|
||||||
|
"french franc sign": "\u0646\u0645\u0627\u062f \u0641\u0631\u0627\u0646\u06a9 \u0641\u0631\u0627\u0646\u0633\u0647",
|
||||||
|
"lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647",
|
||||||
|
"mill sign": "\u0646\u0645\u0627\u062f \u0645\u06cc\u0644",
|
||||||
|
"naira sign": "\u0646\u0645\u0627\u062f \u0646\u0627\u06cc\u0631\u0627",
|
||||||
|
"peseta sign": "\u0646\u0645\u0627\u062f \u067e\u0650\u0632\u0650\u062a\u0627",
|
||||||
|
"rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647",
|
||||||
|
"won sign": "\u0646\u0645\u0627\u062f \u0648\u0627\u0646",
|
||||||
|
"new sheqel sign": "\u0646\u0645\u0627\u062f \u0634\u0650\u06a9\u0650\u0644",
|
||||||
|
"dong sign": "\u0646\u0645\u0627\u062f \u062f\u0627\u0646\u06af",
|
||||||
|
"kip sign": "\u0646\u0645\u0627\u062f \u06a9\u06cc\u067e",
|
||||||
|
"tugrik sign": "\u0646\u0645\u0627\u062f \u062a\u0648\u06af\u0631\u06cc\u06a9",
|
||||||
|
"drachma sign": "\u0646\u0645\u0627\u062f \u062f\u0631\u0627\u062e\u0645\u0627",
|
||||||
|
"german penny symbol": "\u0646\u0645\u0627\u062f \u067e\u0646\u06cc \u0622\u0644\u0645\u0627\u0646\u06cc",
|
||||||
|
"peso sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u0648",
|
||||||
|
"guarani sign": "\u0646\u0645\u0627\u062f \u06af\u0648\u0627\u0631\u0627\u0646\u06cc",
|
||||||
|
"austral sign": "\u0646\u0645\u0627\u062f \u0627\u064f\u0633\u062a\u0631\u0627\u0644",
|
||||||
|
"hryvnia sign": "\u0646\u0645\u0627\u062f \u0647\u0650\u0631\u06cc\u0648\u0646\u0627",
|
||||||
|
"cedi sign": "\u0646\u0645\u0627\u062f \u0633\u062f\u06cc",
|
||||||
|
"livre tournois sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0648\u0631\u0647 \u062a\u0648\u0631\u0646\u0648\u0627",
|
||||||
|
"spesmilo sign": "\u0646\u0645\u0627\u062f \u0627\u0650\u0633\u067e\u0650\u0633\u0645\u06cc\u0644\u0648",
|
||||||
|
"tenge sign": "\u0646\u0645\u0627\u062f \u062a\u0650\u0646\u06af\u0647",
|
||||||
|
"indian rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647\u0621 \u0647\u0646\u062f\u06cc",
|
||||||
|
"turkish lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647 \u062a\u0631\u06a9\u06cc",
|
||||||
|
"nordic mark sign": "\u0646\u0645\u0627\u062f \u0645\u0627\u0631\u06a9 \u0646\u0631\u0648\u0698",
|
||||||
|
"manat sign": "\u0646\u0645\u0627\u062f \u0645\u0646\u0627\u062a",
|
||||||
|
"ruble sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u0628\u0644",
|
||||||
|
"yen character": "\u0646\u0648\u06cc\u0633\u0647\u0621 \u06cc\u0650\u0646",
|
||||||
|
"yuan character": "\u0646\u0648\u06cc\u0633\u0647\u0621 \u06cc\u0648\u0622\u0646",
|
||||||
|
"yuan character, in hong kong and taiwan": "\u0646\u0648\u06cc\u0633\u0647\u0621 \u06cc\u0648\u0622\u0646\u060c \u062f\u0631 \u0647\u0646\u06af \u06a9\u0646\u06af \u0648 \u062a\u0627\u06cc\u0648\u0627\u0646",
|
||||||
|
"yen\/yuan character variant one": "\u0646\u0648\u06cc\u0633\u0647\u0621 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06cc\u0650\u0646\/\u06cc\u0648\u0622\u0646",
|
||||||
|
"Loading emoticons...": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0634\u06a9\u0644\u06a9 \u0647\u0627...",
|
||||||
|
"Could not load emoticons": "\u0634\u06a9\u0644\u06a9 \u0647\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u062f\u0646\u062f",
|
||||||
|
"People": "\u0627\u0641\u0631\u0627\u062f",
|
||||||
|
"Animals and Nature": "\u0645\u0648\u062c\u0648\u062f\u0627\u062a \u0648 \u0637\u0628\u06cc\u0639\u062a",
|
||||||
|
"Food and Drink": "\u062e\u0648\u0631\u0627\u06a9 \u0648 \u0646\u0648\u0634\u06cc\u062f\u0646\u06cc",
|
||||||
|
"Activity": "\u0641\u0639\u0627\u0644\u06cc\u062a",
|
||||||
|
"Travel and Places": "\u0633\u0641\u0631 \u0648 \u0627\u0645\u0627\u06a9\u0646",
|
||||||
|
"Objects": "\u0627\u0634\u06cc\u0627\u0621",
|
||||||
|
"Flags": "\u067e\u0631\u0686\u0645 \u0647\u0627",
|
||||||
|
"Characters": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627",
|
||||||
|
"Characters (no spaces)": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627 (\u0628\u0644\u0627\u0641\u0627\u0635\u0644\u0647)",
|
||||||
|
"Error: Form submit field collision.": "\u062e\u0637\u0627: \u062a\u062f\u0627\u062e\u0644 \u062f\u0631 \u0627\u0631\u0633\u0627\u0644\u06af\u0631 \u0641\u064f\u0631\u0645.",
|
||||||
|
"Error: No form element found.": "\u062e\u0637\u0627: \u0647\u06cc\u0686 \u0627\u0650\u0644\u0645\u0627\u0646 \u0641\u064f\u0631\u0645\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.",
|
||||||
|
"Update": "\u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc",
|
||||||
|
"Color swatch": "\u0686\u0631\u062e\u0647\u0621 \u0631\u0646\u06af",
|
||||||
|
"Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647 \u0627\u06cc",
|
||||||
|
"Green": "\u0633\u0628\u0632",
|
||||||
|
"Blue": "\u0622\u0628\u06cc",
|
||||||
|
"Purple": "\u0628\u0646\u0641\u0634",
|
||||||
|
"Navy Blue": "\u0622\u0628\u06cc \u062a\u06cc\u0631\u0647",
|
||||||
|
"Dark Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647 \u0627\u06cc \u062a\u06cc\u0631\u0647",
|
||||||
|
"Dark Green": "\u0633\u0628\u0632 \u062a\u06cc\u0631\u0647",
|
||||||
|
"Medium Blue": "\u0622\u0628\u06cc \u0646\u06cc\u0645\u0647 \u062a\u06cc\u0631\u0647\/\u0631\u0648\u0634\u0646",
|
||||||
|
"Medium Purple": "\u0628\u0646\u0641\u0634 \u0646\u06cc\u0645\u0647 \u062a\u06cc\u0631\u0647\/\u0631\u0648\u0634\u0646",
|
||||||
|
"Midnight Blue": "\u0622\u0628\u06cc \u0628\u0633\u06cc\u0627\u0631 \u062a\u06cc\u0631\u0647",
|
||||||
|
"Yellow": "\u0632\u0631\u062f",
|
||||||
|
"Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc",
|
||||||
|
"Red": "\u0642\u0631\u0645\u0632",
|
||||||
|
"Light Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc",
|
||||||
|
"Gray": "\u0637\u0648\u0633\u06cc",
|
||||||
|
"Dark Yellow": "\u0632\u0631\u062f \u067e\u0631\u0631\u0646\u06af",
|
||||||
|
"Dark Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc \u067e\u0631\u0631\u0646\u06af",
|
||||||
|
"Dark Red": "\u0642\u0631\u0645\u0632 \u062a\u06cc\u0631\u0647",
|
||||||
|
"Medium Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u062a\u06cc\u0631\u0647",
|
||||||
|
"Dark Gray": "\u0637\u0648\u0633\u06cc \u062a\u06cc\u0631\u0647",
|
||||||
|
"Black": "\u0633\u06cc\u0627\u0647",
|
||||||
|
"White": "\u0633\u0641\u06cc\u062f",
|
||||||
|
"Switch to or from fullscreen mode": "\u062a\u063a\u06cc\u06cc\u0631 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647",
|
||||||
|
"Open help dialog": "\u06af\u0634\u0648\u062f\u0646 \u0635\u0641\u062d\u0647 \u0631\u0627\u0647\u0646\u0645\u0627",
|
||||||
|
"history": "\u067e\u06cc\u0634\u06cc\u0646\u0647",
|
||||||
|
"styles": "\u0633\u0628\u06a9 \u0647\u0627",
|
||||||
|
"formatting": "\u0642\u0627\u0644\u0628 \u0628\u0646\u062f\u06cc",
|
||||||
|
"alignment": "\u062a\u0631\u0627\u0632\u0645\u0646\u062f\u06cc",
|
||||||
|
"indentation": "\u067e\u06cc\u0634 \u0627\u0646\u062f\u0627\u0632\u06cc",
|
||||||
|
"permanent pen": "\u0642\u0644\u0645 \u067e\u0627\u06cc\u062f\u0627\u0631",
|
||||||
|
"comments": "\u0646\u0638\u0631\u0627\u062a",
|
||||||
|
"Anchor": "\u0642\u0644\u0627\u0628",
|
||||||
|
"Special character": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u062e\u0627\u0635",
|
||||||
|
"Code sample": "\u0646\u0645\u0648\u0646\u0647 \u06a9\u064f\u062f",
|
||||||
|
"Color": "\u0631\u0646\u06af",
|
||||||
|
"Emoticons": "\u0635\u0648\u0631\u062a\u06a9 \u0647\u0627",
|
||||||
|
"Document properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0646\u062f",
|
||||||
|
"Image": "\u062a\u0635\u0648\u06cc\u0631",
|
||||||
|
"Insert link": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"Target": "\u0645\u0642\u0635\u062f",
|
||||||
|
"Link": "\u067e\u06cc\u0648\u0646\u062f",
|
||||||
|
"Poster": "\u067e\u0648\u0633\u062a\u0631",
|
||||||
|
"Media": "\u0631\u0633\u0627\u0646\u0647",
|
||||||
|
"Print": "\u0686\u0627\u067e",
|
||||||
|
"Prev": "\u0642\u0628\u0644\u06cc",
|
||||||
|
"Find and replace": "\u062c\u0633\u062a\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc",
|
||||||
|
"Whole words": "\u062a\u0645\u0627\u0645 \u0648\u0627\u0698\u06af\u0627\u0646",
|
||||||
|
"Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u0621",
|
||||||
|
"Caption": "\u0639\u0646\u0648\u0627\u0646",
|
||||||
|
"Insert template": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648",
|
||||||
|
"_dir": "rtl"
|
||||||
|
});
|
|
@ -1,4 +1,4 @@
|
||||||
tinymce.addI18n('fr_FR',{
|
tinymce.addI18n('fr',{
|
||||||
"Redo": "R\u00e9tablir",
|
"Redo": "R\u00e9tablir",
|
||||||
"Undo": "Annuler",
|
"Undo": "Annuler",
|
||||||
"Cut": "Couper",
|
"Cut": "Couper",
|
||||||
|
@ -50,7 +50,7 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Inline": "En ligne",
|
"Inline": "En ligne",
|
||||||
"Blocks": "Blocs",
|
"Blocks": "Blocs",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
|
||||||
"Font Family": "Police",
|
"Fonts": "Polices",
|
||||||
"Font Sizes": "Taille de police",
|
"Font Sizes": "Taille de police",
|
||||||
"Class": "Classe",
|
"Class": "Classe",
|
||||||
"Browse for an image": "Parcourir pour s\u00e9lectionner une image",
|
"Browse for an image": "Parcourir pour s\u00e9lectionner une image",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Lower Roman": "Romain minuscule",
|
"Lower Roman": "Romain minuscule",
|
||||||
"Upper Alpha": "Alpha majuscule",
|
"Upper Alpha": "Alpha majuscule",
|
||||||
"Upper Roman": "Romain majuscule",
|
"Upper Roman": "Romain majuscule",
|
||||||
"Anchor": "Ancre",
|
"Anchor...": "Ancre...",
|
||||||
"Name": "Nom",
|
"Name": "Nom",
|
||||||
"Id": "Id",
|
"Id": "Id",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id doit commencer par une lettre suivi par des lettres, nombres, tirets, points, deux-points ou underscores",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id doit commencer par une lettre suivi par des lettres, nombres, tirets, points, deux-points ou underscores",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
|
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
|
||||||
"Restore last draft": "Restaurer le dernier brouillon",
|
"Restore last draft": "Restaurer le dernier brouillon",
|
||||||
"Special character": "Caract\u00e8res sp\u00e9ciaux",
|
"Special characters...": "Caract\u00e8res sp\u00e9ciaux...",
|
||||||
"Source code": "Code source",
|
"Source code": "Code source",
|
||||||
"Insert\/Edit code sample": "Ins\u00e9rer \/ modifier une exemple de code",
|
"Insert\/Edit code sample": "Ins\u00e9rer \/ modifier une exemple de code",
|
||||||
"Language": "Langue",
|
"Language": "Langue",
|
||||||
"Code sample": "Extrait de code",
|
"Code sample...": "Extrait de code...",
|
||||||
"Color": "Couleur",
|
"Color Picker": "S\u00e9lecteur de couleur",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "V",
|
"G": "V",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "Gauche \u00e0 droite",
|
"Left to right": "Gauche \u00e0 droite",
|
||||||
"Right to left": "Droite \u00e0 gauche",
|
"Right to left": "Droite \u00e0 gauche",
|
||||||
"Emoticons": "Emotic\u00f4nes",
|
"Emoticons...": "\u00c9motic\u00f4nes...",
|
||||||
"Document properties": "Propri\u00e9t\u00e9 du document",
|
"Metadata and Document Properties": "M\u00e9tadonn\u00e9es et propri\u00e9t\u00e9s du document",
|
||||||
"Title": "Titre",
|
"Title": "Titre",
|
||||||
"Keywords": "Mots-cl\u00e9s",
|
"Keywords": "Mots-cl\u00e9s",
|
||||||
"Description": "Description",
|
"Description": "Description",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Horizontal space": "Espacement horizontal",
|
"Horizontal space": "Espacement horizontal",
|
||||||
"Border": "Bordure",
|
"Border": "Bordure",
|
||||||
"Insert image": "Ins\u00e9rer une image",
|
"Insert image": "Ins\u00e9rer une image",
|
||||||
"Image": "Image",
|
"Image...": "Image...",
|
||||||
"Image list": "Liste d'images",
|
"Image list": "Liste d'images",
|
||||||
"Rotate counterclockwise": "Rotation anti-horaire",
|
"Rotate counterclockwise": "Rotation anti-horaire",
|
||||||
"Rotate clockwise": "Rotation horaire",
|
"Rotate clockwise": "Rotation horaire",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Back": "Retour",
|
"Back": "Retour",
|
||||||
"Insert date\/time": "Ins\u00e9rer date\/heure",
|
"Insert date\/time": "Ins\u00e9rer date\/heure",
|
||||||
"Date\/time": "Date\/heure",
|
"Date\/time": "Date\/heure",
|
||||||
"Insert link": "Ins\u00e9rer un lien",
|
"Insert\/Edit Link": "Ins\u00e9rer\/Modifier un lien",
|
||||||
"Insert\/edit link": "Ins\u00e9rer\/modifier un lien",
|
"Insert\/edit link": "Ins\u00e9rer\/modifier un lien",
|
||||||
"Text to display": "Texte \u00e0 afficher",
|
"Text to display": "Texte \u00e0 afficher",
|
||||||
"Url": "Url",
|
"Url": "Url",
|
||||||
"Target": "Cible",
|
"Open link in...": "Ouvrir le lien dans...",
|
||||||
|
"Current window": "Fen\u00eatre courante",
|
||||||
"None": "n\/a",
|
"None": "n\/a",
|
||||||
"New window": "Nouvelle fen\u00eatre",
|
"New window": "Nouvelle fen\u00eatre",
|
||||||
"Remove link": "Enlever le lien",
|
"Remove link": "Enlever le lien",
|
||||||
"Anchors": "Ancres",
|
"Anchors": "Ancres",
|
||||||
"Link": "Lien",
|
"Link...": "Lien...",
|
||||||
"Paste or type a link": "Coller ou taper un lien",
|
"Paste or type a link": "Coller ou taper un lien",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
|
||||||
|
@ -165,27 +166,28 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
|
"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
|
||||||
"Insert\/edit media": "Ins\u00e9rer\/modifier un m\u00e9dia",
|
"Insert\/edit media": "Ins\u00e9rer\/modifier un m\u00e9dia",
|
||||||
"Alternative source": "Source alternative",
|
"Alternative source": "Source alternative",
|
||||||
"Poster": "Publier",
|
"Alternative source URL": "Source alternative",
|
||||||
|
"Media poster (Image URL)": "Affiche de m\u00e9dia (URL d'image)",
|
||||||
"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
|
"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
|
||||||
"Embed": "Int\u00e9grer",
|
"Embed": "Int\u00e9grer",
|
||||||
"Media": "M\u00e9dia",
|
"Media...": "M\u00e9dia...",
|
||||||
"Nonbreaking space": "Espace ins\u00e9cable",
|
"Nonbreaking space": "Espace ins\u00e9cable",
|
||||||
"Page break": "Saut de page",
|
"Page break": "Saut de page",
|
||||||
"Paste as text": "Coller comme texte",
|
"Paste as text": "Coller comme texte",
|
||||||
"Preview": "Pr\u00e9visualiser",
|
"Preview": "Pr\u00e9visualiser",
|
||||||
"Print": "Imprimer",
|
"Print...": "Imprimer...",
|
||||||
"Save": "Enregistrer",
|
"Save": "Enregistrer",
|
||||||
"Find": "Chercher",
|
"Find": "Chercher",
|
||||||
"Replace with": "Remplacer par",
|
"Replace with": "Remplacer par",
|
||||||
"Replace": "Remplacer",
|
"Replace": "Remplacer",
|
||||||
"Replace all": "Tout remplacer",
|
"Replace all": "Tout remplacer",
|
||||||
"Prev": "Pr\u00e9c ",
|
"Previous": "Pr\u00e9c\u00e9dent",
|
||||||
"Next": "Suiv",
|
"Next": "Suiv",
|
||||||
"Find and replace": "Trouver et remplacer",
|
"Find and replace...": "Chercher et remplacer...",
|
||||||
"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
|
"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
|
||||||
"Match case": "Respecter la casse",
|
"Match case": "Respecter la casse",
|
||||||
"Whole words": "Mots entiers",
|
"Find whole words only": "Chercher uniquement les mots entiers",
|
||||||
"Spellcheck": "V\u00e9rification orthographique",
|
"Spell check": "Lancer la correction orthographique",
|
||||||
"Ignore": "Ignorer",
|
"Ignore": "Ignorer",
|
||||||
"Ignore all": "Tout ignorer",
|
"Ignore all": "Tout ignorer",
|
||||||
"Finish": "Finie",
|
"Finish": "Finie",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Height": "Hauteur",
|
"Height": "Hauteur",
|
||||||
"Cell spacing": "Espacement inter-cellulles",
|
"Cell spacing": "Espacement inter-cellulles",
|
||||||
"Cell padding": "Espacement interne cellule",
|
"Cell padding": "Espacement interne cellule",
|
||||||
"Caption": "Titre",
|
"Show caption": "Afficher le sous-titre",
|
||||||
"Left": "Gauche",
|
"Left": "Gauche",
|
||||||
"Center": "Centr\u00e9",
|
"Center": "Centr\u00e9",
|
||||||
"Right": "Droite",
|
"Right": "Droite",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Body": "Corps",
|
"Body": "Corps",
|
||||||
"Footer": "Pied",
|
"Footer": "Pied",
|
||||||
"Border color": "Couleur de la bordure",
|
"Border color": "Couleur de la bordure",
|
||||||
"Insert template": "Ajouter un th\u00e8me",
|
"Insert template...": "Ins\u00e9rer un mod\u00e8le...",
|
||||||
"Templates": "Th\u00e8mes",
|
"Templates": "Th\u00e8mes",
|
||||||
"Template": "Mod\u00e8le",
|
"Template": "Mod\u00e8le",
|
||||||
"Text color": "Couleur du texte",
|
"Text color": "Couleur du texte",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Custom...": "Personnalis\u00e9...",
|
"Custom...": "Personnalis\u00e9...",
|
||||||
"Custom color": "Couleur personnalis\u00e9e",
|
"Custom color": "Couleur personnalis\u00e9e",
|
||||||
"No color": "Aucune couleur",
|
"No color": "Aucune couleur",
|
||||||
|
"Remove color": "Supprimer la couleur",
|
||||||
"Table of Contents": "Table des mati\u00e8res",
|
"Table of Contents": "Table des mati\u00e8res",
|
||||||
"Show blocks": "Afficher les blocs",
|
"Show blocks": "Afficher les blocs",
|
||||||
"Show invisible characters": "Afficher les caract\u00e8res invisibles",
|
"Show invisible characters": "Afficher les caract\u00e8res invisibles",
|
||||||
|
"Word count": "Nombre de mots",
|
||||||
"Words: {0}": "Mots : {0}",
|
"Words: {0}": "Mots : {0}",
|
||||||
"{0} words": "{0} mots",
|
"{0} words": "{0} mots",
|
||||||
"File": "Fichier",
|
"File": "Fichier",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('fr_FR',{
|
||||||
"Table": "Tableau",
|
"Table": "Tableau",
|
||||||
"Tools": "Outils",
|
"Tools": "Outils",
|
||||||
"Powered by {0}": "Propuls\u00e9 par {0}",
|
"Powered by {0}": "Propuls\u00e9 par {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide."
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.",
|
||||||
|
"Image title": "Titre d'image",
|
||||||
|
"Border width": "\u00c9paisseur de la bordure",
|
||||||
|
"Border style": "Style de la bordure",
|
||||||
|
"Error": "\u00c9rreur",
|
||||||
|
"Warn": "Avertissement",
|
||||||
|
"Valid": "Valide",
|
||||||
|
"To open the popup, press Shift+Enter": "Pour ouvrir la popup, presser Shift+Entr\u00e9e",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Zone de texte riche. Presser ALT-0 pour l'aide.",
|
||||||
|
"System Font": "Police syst\u00e8me",
|
||||||
|
"Failed to upload image: {0}": "\u00c9chec d'envoi de l'image : {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "\u00c9chec de chargement du module : {0} \u00e0 partir de l'URL {1}",
|
||||||
|
"Failed to load plugin url: {0}": "\u00c9chec de chargement de l'URL de module : {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "\u00c9chec d'initialisation du module : {0}",
|
||||||
|
"example": "exemple",
|
||||||
|
"Search": "Rechercher",
|
||||||
|
"All": "Tous",
|
||||||
|
"Currency": "Mon\u00e9taire",
|
||||||
|
"Text": "Texte",
|
||||||
|
"Quotations": "Citations",
|
||||||
|
"Mathematical": "Math\u00e9matique",
|
||||||
|
"Extended Latin": "Latin \u00e9tendu",
|
||||||
|
"Symbols": "Symboles",
|
||||||
|
"Arrows": "Fl\u00e8ches",
|
||||||
|
"User Defined": "D\u00e9fini par l'utilisateur",
|
||||||
|
"dollar sign": "Symbole dollar",
|
||||||
|
"currency sign": "Symbole devise",
|
||||||
|
"euro-currency sign": "Symbole euro",
|
||||||
|
"colon sign": "Symbole col\u00f3n",
|
||||||
|
"cruzeiro sign": "Symbole cruzeiro",
|
||||||
|
"french franc sign": "Symbole franc fran\u00e7ais",
|
||||||
|
"lira sign": "Symbole lire",
|
||||||
|
"mill sign": "Symbole milli\u00e8me",
|
||||||
|
"naira sign": "Symbole naira",
|
||||||
|
"peseta sign": "Symbole peseta",
|
||||||
|
"rupee sign": "Symbole roupie",
|
||||||
|
"won sign": "Symbole won",
|
||||||
|
"new sheqel sign": "Symbole nouveau ch\u00e9kel",
|
||||||
|
"dong sign": "Symbole dong",
|
||||||
|
"kip sign": "Symbole kip",
|
||||||
|
"tugrik sign": "Symbole tougrik",
|
||||||
|
"drachma sign": "Symbole drachme",
|
||||||
|
"german penny symbol": "Symbole pfennig",
|
||||||
|
"peso sign": "Symbole peso",
|
||||||
|
"guarani sign": "Symbole guarani",
|
||||||
|
"austral sign": "Symbole austral",
|
||||||
|
"hryvnia sign": "Symbole hryvnia",
|
||||||
|
"cedi sign": "Symbole cedi",
|
||||||
|
"livre tournois sign": "Symbole livre tournois",
|
||||||
|
"spesmilo sign": "Symbole spesmilo",
|
||||||
|
"tenge sign": "Symbole tenge",
|
||||||
|
"indian rupee sign": "Symbole roupie indienne",
|
||||||
|
"turkish lira sign": "Symbole lire turque",
|
||||||
|
"nordic mark sign": "Symbole du mark nordique",
|
||||||
|
"manat sign": "Symbole manat",
|
||||||
|
"ruble sign": "Symbole rouble",
|
||||||
|
"yen character": "Sinogramme Yen",
|
||||||
|
"yuan character": "Sinogramme Yuan",
|
||||||
|
"yuan character, in hong kong and taiwan": "Sinogramme Yuan, Hong Kong et Taiwan",
|
||||||
|
"yen\/yuan character variant one": "Symbole Yen\/Yuan",
|
||||||
|
"Loading emoticons...": "Chargement des \u00e9motic\u00f4nes...",
|
||||||
|
"Could not load emoticons": "\u00c9chec de chargement des \u00e9motic\u00f4nes",
|
||||||
|
"People": "Smileys et personnes",
|
||||||
|
"Animals and Nature": "Animaux & nature",
|
||||||
|
"Food and Drink": "Nourriture & boisson",
|
||||||
|
"Activity": "Activit\u00e9",
|
||||||
|
"Travel and Places": "Voyages & lieux",
|
||||||
|
"Objects": "Objets",
|
||||||
|
"Flags": "Drapeaux",
|
||||||
|
"Characters": "Caract\u00e8res",
|
||||||
|
"Characters (no spaces)": "Caract\u00e8res (espaces non compris)",
|
||||||
|
"Error: Form submit field collision.": "Erreur : conflit de champ lors de la soumission du formulaire",
|
||||||
|
"Error: No form element found.": "Erreur : aucun \u00e9l\u00e9ment de formulaire trouv\u00e9.",
|
||||||
|
"Update": "Mettre \u00e0 jour",
|
||||||
|
"Color swatch": "Palette de couleurs",
|
||||||
|
"Turquoise": "Turquoise",
|
||||||
|
"Green": "Vert",
|
||||||
|
"Blue": "Bleu",
|
||||||
|
"Purple": "Violet",
|
||||||
|
"Navy Blue": "Bleu oc\u00e9an",
|
||||||
|
"Dark Turquoise": "Turquoise fonc\u00e9",
|
||||||
|
"Dark Green": "Vert fonc\u00e9",
|
||||||
|
"Medium Blue": "Bleu moyen",
|
||||||
|
"Medium Purple": "Violet moyen",
|
||||||
|
"Midnight Blue": "Bleu nuit",
|
||||||
|
"Yellow": "Jaune",
|
||||||
|
"Orange": "Orange",
|
||||||
|
"Red": "Rouge",
|
||||||
|
"Light Gray": "Gris clair",
|
||||||
|
"Gray": "Gris",
|
||||||
|
"Dark Yellow": "Jaune fonc\u00e9",
|
||||||
|
"Dark Orange": "Orange fonc\u00e9",
|
||||||
|
"Dark Red": "Rouge fonc\u00e9",
|
||||||
|
"Medium Gray": "Gris moyen",
|
||||||
|
"Dark Gray": "Gris fonc\u00e9",
|
||||||
|
"Black": "Noir",
|
||||||
|
"White": "Blanc",
|
||||||
|
"Switch to or from fullscreen mode": "Activer ou quitter le mode plein \u00e9cran",
|
||||||
|
"Open help dialog": "Ouvrir l'aide",
|
||||||
|
"history": "historique",
|
||||||
|
"styles": "styles",
|
||||||
|
"formatting": "mise en forme",
|
||||||
|
"alignment": "alignement",
|
||||||
|
"indentation": "indentation",
|
||||||
|
"permanent pen": "crayon ind\u00e9l\u00e9bile",
|
||||||
|
"comments": "commentaires",
|
||||||
|
"Anchor": "Ancre",
|
||||||
|
"Special character": "Caract\u00e8res sp\u00e9ciaux",
|
||||||
|
"Code sample": "Extrait de code",
|
||||||
|
"Color": "Couleur",
|
||||||
|
"Emoticons": "Emotic\u00f4nes",
|
||||||
|
"Document properties": "Propri\u00e9t\u00e9 du document",
|
||||||
|
"Image": "Image",
|
||||||
|
"Insert link": "Ins\u00e9rer un lien",
|
||||||
|
"Target": "Cible",
|
||||||
|
"Link": "Lien",
|
||||||
|
"Poster": "Publier",
|
||||||
|
"Media": "M\u00e9dia",
|
||||||
|
"Print": "Imprimer",
|
||||||
|
"Prev": "Pr\u00e9c ",
|
||||||
|
"Find and replace": "Trouver et remplacer",
|
||||||
|
"Whole words": "Mots entiers",
|
||||||
|
"Spellcheck": "V\u00e9rification orthographique",
|
||||||
|
"Caption": "Titre",
|
||||||
|
"Insert template": "Ajouter un th\u00e8me"
|
||||||
});
|
});
|
|
@ -0,0 +1,389 @@
|
||||||
|
tinymce.addI18n('hu',{
|
||||||
|
"Redo": "Ism\u00e9t",
|
||||||
|
"Undo": "Visszavon\u00e1s",
|
||||||
|
"Cut": "Kiv\u00e1g\u00e1s",
|
||||||
|
"Copy": "M\u00e1sol\u00e1s",
|
||||||
|
"Paste": "Beilleszt\u00e9s",
|
||||||
|
"Select all": "Minden kijel\u00f6l\u00e9se",
|
||||||
|
"New document": "\u00daj dokumentum",
|
||||||
|
"Ok": "Rendben",
|
||||||
|
"Cancel": "M\u00e9gse",
|
||||||
|
"Visual aids": "Vizu\u00e1lis seg\u00e9deszk\u00f6z\u00f6k",
|
||||||
|
"Bold": "F\u00e9lk\u00f6v\u00e9r",
|
||||||
|
"Italic": "D\u0151lt",
|
||||||
|
"Underline": "Al\u00e1h\u00fazott",
|
||||||
|
"Strikethrough": "\u00c1th\u00fazott",
|
||||||
|
"Superscript": "Fels\u0151 index",
|
||||||
|
"Subscript": "Als\u00f3 index",
|
||||||
|
"Clear formatting": "Form\u00e1z\u00e1s t\u00f6rl\u00e9se",
|
||||||
|
"Align left": "Balra igaz\u00edt",
|
||||||
|
"Align center": "K\u00f6z\u00e9pre z\u00e1r",
|
||||||
|
"Align right": "Jobbra igaz\u00edt",
|
||||||
|
"Justify": "Sorkiz\u00e1r\u00e1s",
|
||||||
|
"Bullet list": "Felsorol\u00e1s",
|
||||||
|
"Numbered list": "Sz\u00e1moz\u00e1s",
|
||||||
|
"Decrease indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se",
|
||||||
|
"Increase indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se",
|
||||||
|
"Close": "Bez\u00e1r",
|
||||||
|
"Formats": "Form\u00e1tumok",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a k\u00f6zvetlen hozz\u00e1f\u00e9r\u00e9st a v\u00e1g\u00f3laphoz. K\u00e9rlek haszn\u00e1ld a Ctrl+X\/C\/V billenty\u0171ket.",
|
||||||
|
"Headers": "C\u00edmsorok",
|
||||||
|
"Header 1": "C\u00edmsor 1",
|
||||||
|
"Header 2": "C\u00edmsor 2",
|
||||||
|
"Header 3": "C\u00edmsor 3",
|
||||||
|
"Header 4": "C\u00edmsor 4",
|
||||||
|
"Header 5": "C\u00edmsor 5",
|
||||||
|
"Header 6": "C\u00edmsor 6",
|
||||||
|
"Headings": "Fejl\u00e9cek",
|
||||||
|
"Heading 1": "Fejl\u00e9c 1",
|
||||||
|
"Heading 2": "Fejl\u00e9c 2",
|
||||||
|
"Heading 3": "Fejl\u00e9c 3",
|
||||||
|
"Heading 4": "Fejl\u00e9c 4",
|
||||||
|
"Heading 5": "Fejl\u00e9c 5",
|
||||||
|
"Heading 6": "Fejl\u00e9c 6",
|
||||||
|
"Preformatted": "El\u0151form\u00e1zott",
|
||||||
|
"Div": "Div",
|
||||||
|
"Pre": "El\u0151form\u00e1zott",
|
||||||
|
"Code": "K\u00f3d",
|
||||||
|
"Paragraph": "Bekezd\u00e9s",
|
||||||
|
"Blockquote": "Id\u00e9zetblokk",
|
||||||
|
"Inline": "Sz\u00f6vegk\u00f6zi",
|
||||||
|
"Blocks": "Blokkok",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Beilleszt\u00e9s mostant\u00f3l egyszer\u0171 sz\u00f6veg m\u00f3dban. A tartalmak mostant\u00f3l egyszer\u0171 sz\u00f6vegk\u00e9nt lesznek beillesztve, am\u00edg nem kapcsolod ki ezt az opci\u00f3t.",
|
||||||
|
"Fonts": "Bet\u0171t\u00edpusok",
|
||||||
|
"Font Sizes": "Bet\u0171m\u00e9retek",
|
||||||
|
"Class": "Oszt\u00e1ly",
|
||||||
|
"Browse for an image": "K\u00e9p tall\u00f3z\u00e1sa",
|
||||||
|
"OR": "vagy",
|
||||||
|
"Drop an image here": "Dobj ide egy k\u00e9pet",
|
||||||
|
"Upload": "Felt\u00f6lt\u00e9s",
|
||||||
|
"Block": "Blokk",
|
||||||
|
"Align": "Igaz\u00edt\u00e1s",
|
||||||
|
"Default": "Alap\u00e9rtelmezett",
|
||||||
|
"Circle": "K\u00f6r",
|
||||||
|
"Disc": "Pont",
|
||||||
|
"Square": "N\u00e9gyzet",
|
||||||
|
"Lower Alpha": "Kisbet\u0171",
|
||||||
|
"Lower Greek": "Kis g\u00f6r\u00f6g sz\u00e1m",
|
||||||
|
"Lower Roman": "Kis r\u00f3mai sz\u00e1m",
|
||||||
|
"Upper Alpha": "Nagybet\u0171",
|
||||||
|
"Upper Roman": "Nagy r\u00f3mai sz\u00e1m",
|
||||||
|
"Anchor...": "Horgony",
|
||||||
|
"Name": "N\u00e9v",
|
||||||
|
"Id": "Azonos\u00edt\u00f3",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Az azonos\u00edt\u00f3nak bet\u0171vel kell kezd\u0151dnie, azut\u00e1n csak bet\u0171ket, sz\u00e1mokat, gondolatjeleket, pontokat, kett\u0151spontokat vagy al\u00e1h\u00faz\u00e1st tartalmazhat.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "Nem mentett m\u00f3dos\u00edt\u00e1said vannak, biztos hogy el akarsz navig\u00e1lni?",
|
||||||
|
"Restore last draft": "Utols\u00f3 piszkozat vissza\u00e1ll\u00edt\u00e1sa",
|
||||||
|
"Special characters...": "Speci\u00e1lis karakterek...",
|
||||||
|
"Source code": "Forr\u00e1sk\u00f3d",
|
||||||
|
"Insert\/Edit code sample": "K\u00f3dminta besz\u00far\u00e1sa\/szerkeszt\u00e9se",
|
||||||
|
"Language": "Nyelv",
|
||||||
|
"Code sample...": "K\u00f3d mint\u00e1k...",
|
||||||
|
"Color Picker": "Sz\u00edn pipetta",
|
||||||
|
"R": "R",
|
||||||
|
"G": "G",
|
||||||
|
"B": "B",
|
||||||
|
"Left to right": "Balr\u00f3l jobbra",
|
||||||
|
"Right to left": "Jobbr\u00f3l balra",
|
||||||
|
"Emoticons...": "Hangulatjelek",
|
||||||
|
"Metadata and Document Properties": "Dokumentum tulajdons\u00e1gok \u00e9s meta adatok",
|
||||||
|
"Title": "C\u00edm",
|
||||||
|
"Keywords": "Kulcsszavak",
|
||||||
|
"Description": "Le\u00edr\u00e1s",
|
||||||
|
"Robots": "Robotok",
|
||||||
|
"Author": "Szerz\u0151",
|
||||||
|
"Encoding": "K\u00f3dol\u00e1s",
|
||||||
|
"Fullscreen": "Teljes k\u00e9perny\u0151",
|
||||||
|
"Action": "M\u0171velet",
|
||||||
|
"Shortcut": "Parancsikon",
|
||||||
|
"Help": "S\u00fag\u00f3",
|
||||||
|
"Address": "C\u00edm",
|
||||||
|
"Focus to menubar": "F\u00f3kusz a men\u00fcre",
|
||||||
|
"Focus to toolbar": "F\u00f3kusz az eszk\u00f6zt\u00e1rra",
|
||||||
|
"Focus to element path": "F\u00f3kusz az elemek \u00fatvonal\u00e1ra",
|
||||||
|
"Focus to contextual toolbar": "F\u00f3kusz a k\u00f6rnyezetf\u00fcgg\u0151 eszk\u00f6zt\u00e1rra",
|
||||||
|
"Insert link (if link plugin activated)": "Hivatkoz\u00e1s besz\u00far\u00e1sa (ha a hivatkoz\u00e1s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)",
|
||||||
|
"Save (if save plugin activated)": "Ment\u00e9s (ha a ment\u00e9s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)",
|
||||||
|
"Find (if searchreplace plugin activated)": "Keres\u00e9s (ha a keres\u00e9s \u00e9s csere b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)",
|
||||||
|
"Plugins installed ({0}):": "Telep\u00edtett b\u0151v\u00edtm\u00e9nyek ({0}):",
|
||||||
|
"Premium plugins:": "Pr\u00e9mium b\u0151v\u00edtm\u00e9nyek:",
|
||||||
|
"Learn more...": "Tudj meg t\u00f6bbet...",
|
||||||
|
"You are using {0}": "Haszn\u00e1latban: {0}",
|
||||||
|
"Plugins": "Pluginek",
|
||||||
|
"Handy Shortcuts": "Hasznos linkek",
|
||||||
|
"Horizontal line": "V\u00edzszintes vonal",
|
||||||
|
"Insert\/edit image": "K\u00e9p beilleszt\u00e9se\/szerkeszt\u00e9se",
|
||||||
|
"Image description": "K\u00e9p le\u00edr\u00e1sa",
|
||||||
|
"Source": "Forr\u00e1s",
|
||||||
|
"Dimensions": "M\u00e9retek",
|
||||||
|
"Constrain proportions": "M\u00e9retar\u00e1ny",
|
||||||
|
"General": "\u00c1ltal\u00e1nos",
|
||||||
|
"Advanced": "Halad\u00f3",
|
||||||
|
"Style": "St\u00edlus",
|
||||||
|
"Vertical space": "Vertik\u00e1lis hely",
|
||||||
|
"Horizontal space": "Horizont\u00e1lis hely",
|
||||||
|
"Border": "Szeg\u00e9ly",
|
||||||
|
"Insert image": "K\u00e9p beilleszt\u00e9se",
|
||||||
|
"Image...": "K\u00e9p...",
|
||||||
|
"Image list": "K\u00e9p lista",
|
||||||
|
"Rotate counterclockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val ellent\u00e9tesen",
|
||||||
|
"Rotate clockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val megegyez\u0151en",
|
||||||
|
"Flip vertically": "F\u00fcgg\u0151leges t\u00fckr\u00f6z\u00e9s",
|
||||||
|
"Flip horizontally": "V\u00edzszintes t\u00fckr\u00f6z\u00e9s",
|
||||||
|
"Edit image": "K\u00e9p szerkeszt\u00e9se",
|
||||||
|
"Image options": "K\u00e9p be\u00e1ll\u00edt\u00e1sok",
|
||||||
|
"Zoom in": "Nagy\u00edt\u00e1s",
|
||||||
|
"Zoom out": "Kicsiny\u00edt\u00e9s",
|
||||||
|
"Crop": "K\u00e9p v\u00e1g\u00e1s",
|
||||||
|
"Resize": "\u00c1tm\u00e9retez\u00e9s",
|
||||||
|
"Orientation": "K\u00e9p t\u00e1jol\u00e1s",
|
||||||
|
"Brightness": "F\u00e9nyer\u0151",
|
||||||
|
"Sharpen": "\u00c9less\u00e9g",
|
||||||
|
"Contrast": "Kontraszt",
|
||||||
|
"Color levels": "Sz\u00ednszint",
|
||||||
|
"Gamma": "Gamma",
|
||||||
|
"Invert": "Inverz k\u00e9p",
|
||||||
|
"Apply": "Ment\u00e9s",
|
||||||
|
"Back": "Vissza",
|
||||||
|
"Insert date\/time": "D\u00e1tum\/id\u0151 beilleszt\u00e9se",
|
||||||
|
"Date\/time": "D\u00e1tum\/id\u0151",
|
||||||
|
"Insert\/Edit Link": "Link l\u00e9trehoz\u00e1s\/szerkeszt\u00e9s",
|
||||||
|
"Insert\/edit link": "Hivatkoz\u00e1s beilleszt\u00e9se\/szerkeszt\u00e9se",
|
||||||
|
"Text to display": "Megjelen\u0151 sz\u00f6veg",
|
||||||
|
"Url": "Url",
|
||||||
|
"Open link in...": "Link megnyit\u00e1sa...",
|
||||||
|
"Current window": "Jelenlegi ablak",
|
||||||
|
"None": "Nincs",
|
||||||
|
"New window": "\u00daj ablak",
|
||||||
|
"Remove link": "Hivatkoz\u00e1s t\u00f6rl\u00e9se",
|
||||||
|
"Anchors": "Horgonyok",
|
||||||
|
"Link...": "Link...",
|
||||||
|
"Paste or type a link": "Hivatkoz\u00e1s be\u00edr\u00e1sa vagy beilleszt\u00e9se",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A megadott URL email c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges mailto: el\u0151tagot?",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A megadott URL k\u00fcls\u0151 c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges http:\/\/ el\u0151tagot?",
|
||||||
|
"Link list": "Hivatkoz\u00e1slista",
|
||||||
|
"Insert video": "Vide\u00f3 beilleszt\u00e9se",
|
||||||
|
"Insert\/edit video": "Vide\u00f3 beilleszt\u00e9se\/szerkeszt\u00e9se",
|
||||||
|
"Insert\/edit media": "M\u00e9dia besz\u00far\u00e1sa\/beilleszt\u00e9se",
|
||||||
|
"Alternative source": "Alternat\u00edv forr\u00e1s",
|
||||||
|
"Alternative source URL": "Alternat\u00edv forr\u00e1s URL",
|
||||||
|
"Media poster (Image URL)": "M\u00e9dia poszter (K\u00e9p URL)",
|
||||||
|
"Paste your embed code below:": "Illeszd be a be\u00e1gyaz\u00f3 k\u00f3dot alulra:",
|
||||||
|
"Embed": "Be\u00e1gyaz\u00e1s",
|
||||||
|
"Media...": "M\u00e9dia...",
|
||||||
|
"Nonbreaking space": "Nem t\u00f6rhet\u0151 sz\u00f3k\u00f6z",
|
||||||
|
"Page break": "Oldalt\u00f6r\u00e9s",
|
||||||
|
"Paste as text": "Beilleszt\u00e9s sz\u00f6vegk\u00e9nt",
|
||||||
|
"Preview": "El\u0151n\u00e9zet",
|
||||||
|
"Print...": "Nyomtat\u00e1s...",
|
||||||
|
"Save": "Ment\u00e9s",
|
||||||
|
"Find": "Keres\u00e9s",
|
||||||
|
"Replace with": "Csere erre",
|
||||||
|
"Replace": "Csere",
|
||||||
|
"Replace all": "Az \u00f6sszes cser\u00e9je",
|
||||||
|
"Previous": "El\u0151n\u00e9zet",
|
||||||
|
"Next": "K\u00f6vetkez\u0151",
|
||||||
|
"Find and replace...": "Keres\u00e9s \u00e9s Csere...",
|
||||||
|
"Could not find the specified string.": "A be\u00edrt kifejez\u00e9s nem tal\u00e1lhat\u00f3.",
|
||||||
|
"Match case": "Kis \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se",
|
||||||
|
"Find whole words only": "Csak teljes szavak keres\u00e9se",
|
||||||
|
"Spell check": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s",
|
||||||
|
"Ignore": "Figyelmen k\u00edv\u00fcl hagy",
|
||||||
|
"Ignore all": "Mindent figyelmen k\u00edv\u00fcl hagy",
|
||||||
|
"Finish": "Befejez\u00e9s",
|
||||||
|
"Add to Dictionary": "Sz\u00f3t\u00e1rhoz ad",
|
||||||
|
"Insert table": "T\u00e1bl\u00e1zat beilleszt\u00e9se",
|
||||||
|
"Table properties": "T\u00e1bl\u00e1zat tulajdons\u00e1gok",
|
||||||
|
"Delete table": "T\u00e1bl\u00e1zat t\u00f6rl\u00e9se",
|
||||||
|
"Cell": "Cella",
|
||||||
|
"Row": "Sor",
|
||||||
|
"Column": "Oszlop",
|
||||||
|
"Cell properties": "Cella tulajdons\u00e1gok",
|
||||||
|
"Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se",
|
||||||
|
"Split cell": "Cell\u00e1k sz\u00e9tv\u00e1laszt\u00e1sa",
|
||||||
|
"Insert row before": "Sor besz\u00far\u00e1sa el\u00e9",
|
||||||
|
"Insert row after": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9",
|
||||||
|
"Delete row": "Sor t\u00f6rl\u00e9se",
|
||||||
|
"Row properties": "Sor tulajdons\u00e1gai",
|
||||||
|
"Cut row": "Sor kiv\u00e1g\u00e1sa",
|
||||||
|
"Copy row": "Sor m\u00e1sol\u00e1sa",
|
||||||
|
"Paste row before": "Sor beilleszt\u00e9se el\u00e9",
|
||||||
|
"Paste row after": "Sor beilleszt\u00e9se m\u00f6g\u00e9",
|
||||||
|
"Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9",
|
||||||
|
"Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9",
|
||||||
|
"Delete column": "Oszlop t\u00f6rl\u00e9se",
|
||||||
|
"Cols": "Oszlopok",
|
||||||
|
"Rows": "Sorok",
|
||||||
|
"Width": "Sz\u00e9less\u00e9g",
|
||||||
|
"Height": "Magass\u00e1g",
|
||||||
|
"Cell spacing": "Cell\u00e1k t\u00e1vols\u00e1ga",
|
||||||
|
"Cell padding": "Cella m\u00e9rete",
|
||||||
|
"Show caption": "Felirat megjelen\u00edt\u00e9se",
|
||||||
|
"Left": "Bal",
|
||||||
|
"Center": "K\u00f6z\u00e9p",
|
||||||
|
"Right": "Jobb",
|
||||||
|
"Cell type": "Cella t\u00edpusa",
|
||||||
|
"Scope": "Hat\u00f3k\u00f6r",
|
||||||
|
"Alignment": "Igaz\u00edt\u00e1s",
|
||||||
|
"H Align": "V\u00edzszintes igaz\u00edt\u00e1s",
|
||||||
|
"V Align": "F\u00fcgg\u0151leges igaz\u00edt\u00e1s",
|
||||||
|
"Top": "Fel\u00fcl",
|
||||||
|
"Middle": "K\u00f6z\u00e9pen",
|
||||||
|
"Bottom": "Alul",
|
||||||
|
"Header cell": "Fejl\u00e9c cella",
|
||||||
|
"Row group": "Sor csoport",
|
||||||
|
"Column group": "Oszlop csoport",
|
||||||
|
"Row type": "Sor t\u00edpus",
|
||||||
|
"Header": "Fejl\u00e9c",
|
||||||
|
"Body": "Sz\u00f6vegt\u00f6rzs",
|
||||||
|
"Footer": "L\u00e1bl\u00e9c",
|
||||||
|
"Border color": "Szeg\u00e9ly sz\u00edne",
|
||||||
|
"Insert template...": "Minta besz\u00far\u00e1sa...",
|
||||||
|
"Templates": "Sablonok",
|
||||||
|
"Template": "Sablon",
|
||||||
|
"Text color": "Sz\u00f6veg sz\u00edne",
|
||||||
|
"Background color": "H\u00e1tt\u00e9r sz\u00edn",
|
||||||
|
"Custom...": "Egy\u00e9ni...",
|
||||||
|
"Custom color": "Egy\u00e9ni sz\u00edn",
|
||||||
|
"No color": "Nincs sz\u00edn",
|
||||||
|
"Remove color": "Sz\u00edn t\u00f6rl\u00e9se",
|
||||||
|
"Table of Contents": "Tartalomjegyz\u00e9k",
|
||||||
|
"Show blocks": "Blokkok mutat\u00e1sa",
|
||||||
|
"Show invisible characters": "L\u00e1thatatlan karakterek mutat\u00e1sa",
|
||||||
|
"Word count": "Szavak sz\u00e1ma",
|
||||||
|
"Words: {0}": "Szavak: {0}",
|
||||||
|
"{0} words": "{0} sz\u00f3",
|
||||||
|
"File": "F\u00e1jl",
|
||||||
|
"Edit": "Szerkeszt\u00e9s",
|
||||||
|
"Insert": "Beilleszt\u00e9s",
|
||||||
|
"View": "N\u00e9zet",
|
||||||
|
"Format": "Form\u00e1tum",
|
||||||
|
"Table": "T\u00e1bl\u00e1zat",
|
||||||
|
"Tools": "Eszk\u00f6z\u00f6k",
|
||||||
|
"Powered by {0}": "\u00dczemelteti: {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text ter\u00fclet. Nyomj ALT-F9-et a men\u00fch\u00f6z. Nyomj ALT-F10-et az eszk\u00f6zt\u00e1rhoz. Nyomj ALT-0-t a s\u00fag\u00f3hoz",
|
||||||
|
"Image title": "K\u00e9p c\u00edme",
|
||||||
|
"Border width": "Szeg\u00e9ly vastags\u00e1ga",
|
||||||
|
"Border style": "Szeg\u00e9ly st\u00edlusa",
|
||||||
|
"Error": "Hiba",
|
||||||
|
"Warn": "Figyelmeztet\u00e9s",
|
||||||
|
"Valid": "\u00c9rv\u00e9nyes",
|
||||||
|
"To open the popup, press Shift+Enter": "A felugr\u00f3 ablak megnyit\u00e1s\u00e1hoz nyomja meg a Shift+Enter billenty\u0171t!",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Vizu\u00e1lis szerkeszt\u0151 ter\u00fclet. Nyomja meg az Alt-0 billenty\u0171t a seg\u00edts\u00e9g\u00e9rt.",
|
||||||
|
"System Font": "Rendszer bet\u0171t\u00edpus",
|
||||||
|
"Failed to upload image: {0}": "Nem siker\u00fclt felt\u00f6lteni a k\u00e9pet: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151t: {0} err\u0151l a webc\u00edmr\u0151l {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Nem siker\u00fclt bet\u00f6lteni a b\u0151v\u00edtm\u00e9ny url-t: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Nem siker\u00fclt bet\u00f6lteni az al\u00e1bbi be\u00e9p\u00fcl\u0151t: {0}",
|
||||||
|
"example": "P\u00e9lda",
|
||||||
|
"Search": "Keres\u00e9s",
|
||||||
|
"All": "Minden",
|
||||||
|
"Currency": "P\u00e9nznem",
|
||||||
|
"Text": "Sz\u00f6veg",
|
||||||
|
"Quotations": "Id\u00e9zetek",
|
||||||
|
"Mathematical": "Matematikai",
|
||||||
|
"Extended Latin": "Kiterjesztett Latin",
|
||||||
|
"Symbols": "Szimb\u00f3lumok",
|
||||||
|
"Arrows": "Nyilak",
|
||||||
|
"User Defined": "Felhaszn\u00e1l\u00f3 \u00e1ltal meghat\u00e1rozott",
|
||||||
|
"dollar sign": "doll\u00e1rjel",
|
||||||
|
"currency sign": "valuta jel",
|
||||||
|
"euro-currency sign": "euro-valuta jel",
|
||||||
|
"colon sign": "kett\u0151spont",
|
||||||
|
"cruzeiro sign": "cruzeiro jel",
|
||||||
|
"french franc sign": "francia frank jel",
|
||||||
|
"lira sign": "l\u00edra jel",
|
||||||
|
"mill sign": "mill jel",
|
||||||
|
"naira sign": "naira jel",
|
||||||
|
"peseta sign": "peseta jel",
|
||||||
|
"rupee sign": "indiai r\u00fapia",
|
||||||
|
"won sign": "koreai won",
|
||||||
|
"new sheqel sign": "izraeli shekel",
|
||||||
|
"dong sign": "vietn\u00e1mi dong",
|
||||||
|
"kip sign": "laoszi kip",
|
||||||
|
"tugrik sign": "mongol tugrik",
|
||||||
|
"drachma sign": "drachman jel",
|
||||||
|
"german penny symbol": "n\u00e9met penny szimb\u00f3lum",
|
||||||
|
"peso sign": "f\u00fcl\u00f6p-szigeteki pez\u00f3",
|
||||||
|
"guarani sign": "paraguayi guaran\u00ed",
|
||||||
|
"austral sign": "argent\u00ednai austral",
|
||||||
|
"hryvnia sign": "ukr\u00e1n hrivnya",
|
||||||
|
"cedi sign": "gh\u00e1nai cedi",
|
||||||
|
"livre tournois sign": "francia livre tournois jel",
|
||||||
|
"spesmilo sign": "spesmilo jel",
|
||||||
|
"tenge sign": "kazah tenge",
|
||||||
|
"indian rupee sign": "indiai r\u00fapel",
|
||||||
|
"turkish lira sign": "t\u00f6r\u00f6k l\u00edra",
|
||||||
|
"nordic mark sign": "\u00e9szaki m\u00e1rka jel",
|
||||||
|
"manat sign": "azeri manat",
|
||||||
|
"ruble sign": "orosz rubel",
|
||||||
|
"yen character": "jen karakter",
|
||||||
|
"yuan character": "j\u00fcan karakter",
|
||||||
|
"yuan character, in hong kong and taiwan": "hongkongi, \u00e9s tajvani j\u00fcan karakter",
|
||||||
|
"yen\/yuan character variant one": "jen\/j\u00fcan karakter vari\u00e1ns",
|
||||||
|
"Loading emoticons...": "Hangulatjelek bet\u00f6lt\u00e9se...",
|
||||||
|
"Could not load emoticons": "Nem siker\u00fclt a hangulatjelek bet\u00f6lt\u00e9se",
|
||||||
|
"People": "Emberek",
|
||||||
|
"Animals and Nature": "\u00c1llatok, \u00e9s term\u00e9szet",
|
||||||
|
"Food and Drink": "\u00c9tel, ital",
|
||||||
|
"Activity": "Tev\u00e9kenys\u00e9gek",
|
||||||
|
"Travel and Places": "Utaz\u00e1s, \u00e9s helyek",
|
||||||
|
"Objects": "Objektumok",
|
||||||
|
"Flags": "Z\u00e1szl\u00f3k",
|
||||||
|
"Characters": "Karakterek",
|
||||||
|
"Characters (no spaces)": "Karakterek (nincsenek sz\u00f3k\u00f6z\u00f6k)",
|
||||||
|
"Error: Form submit field collision.": "Hiba: \u00dctk\u00f6z\u00e9s t\u00f6rt\u00e9nt az \u0171rlap elk\u00fcld\u00e9sekor.",
|
||||||
|
"Error: No form element found.": "Hiba: Nem tal\u00e1lhat\u00f3 \u0171rlap elem.",
|
||||||
|
"Update": "Friss\u00edt\u00e9s",
|
||||||
|
"Color swatch": "Sz\u00ednminta",
|
||||||
|
"Turquoise": "T\u00fcrk\u00edz",
|
||||||
|
"Green": "Z\u00f6ld",
|
||||||
|
"Blue": "K\u00e9k",
|
||||||
|
"Purple": "Lila",
|
||||||
|
"Navy Blue": "Tengerk\u00e9k",
|
||||||
|
"Dark Turquoise": "S\u00f6t\u00e9t t\u00fcrk\u00edz",
|
||||||
|
"Dark Green": "S\u00f6t\u00e9tz\u00f6ld",
|
||||||
|
"Medium Blue": "K\u00f6z\u00e9pk\u00e9k",
|
||||||
|
"Medium Purple": "K\u00f6z\u00e9plila",
|
||||||
|
"Midnight Blue": "\u00c9jf\u00e9lk\u00e9k",
|
||||||
|
"Yellow": "S\u00e1rga",
|
||||||
|
"Orange": "Narancss\u00e1rga",
|
||||||
|
"Red": "Piros",
|
||||||
|
"Light Gray": "Vil\u00e1gossz\u00fcrke",
|
||||||
|
"Gray": "Sz\u00fcrke",
|
||||||
|
"Dark Yellow": "S\u00f6t\u00e9t s\u00e1rga",
|
||||||
|
"Dark Orange": "S\u00f6t\u00e9t narancss\u00e1rga",
|
||||||
|
"Dark Red": "S\u00f6t\u00e9t piros",
|
||||||
|
"Medium Gray": "K\u00f6z\u00e9psz\u00fcrke",
|
||||||
|
"Dark Gray": "S\u00f6t\u00e9tsz\u00fcrke",
|
||||||
|
"Black": "Fekete",
|
||||||
|
"White": "Feh\u00e9r",
|
||||||
|
"Switch to or from fullscreen mode": "Teljes, vagy norm\u00e1l k\u00e9perny\u0151s m\u00f3dra v\u00e1lt\u00e1s",
|
||||||
|
"Open help dialog": "S\u00fag\u00f3ablak megnyit\u00e1sa",
|
||||||
|
"history": "El\u0151zm\u00e9nyek",
|
||||||
|
"styles": "St\u00edlusok",
|
||||||
|
"formatting": "Form\u00e1z\u00e1s",
|
||||||
|
"alignment": "Poz\u00edci\u00f3",
|
||||||
|
"indentation": "Beh\u00faz\u00e1s",
|
||||||
|
"permanent pen": "Sz\u00f6vegkiemel\u0151",
|
||||||
|
"comments": "Megjegyz\u00e9sek",
|
||||||
|
"Anchor": "Horgony",
|
||||||
|
"Special character": "Speci\u00e1lis karakter",
|
||||||
|
"Code sample": "K\u00f3d p\u00e9lda",
|
||||||
|
"Color": "Sz\u00edn",
|
||||||
|
"Emoticons": "Vigyorok",
|
||||||
|
"Document properties": "Dokumentum tulajdons\u00e1gai",
|
||||||
|
"Image": "K\u00e9p",
|
||||||
|
"Insert link": "Hivatkoz\u00e1s beilleszt\u00e9se",
|
||||||
|
"Target": "C\u00e9l",
|
||||||
|
"Link": "Hivatkoz\u00e1s",
|
||||||
|
"Poster": "El\u0151n\u00e9zeti k\u00e9p",
|
||||||
|
"Media": "M\u00e9dia",
|
||||||
|
"Print": "Nyomtat\u00e1s",
|
||||||
|
"Prev": "El\u0151z\u0151",
|
||||||
|
"Find and replace": "Keres\u00e9s \u00e9s csere",
|
||||||
|
"Whole words": "Csak ha ez a teljes sz\u00f3",
|
||||||
|
"Spellcheck": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s",
|
||||||
|
"Caption": "Felirat",
|
||||||
|
"Insert template": "Sablon beilleszt\u00e9se"
|
||||||
|
});
|
|
@ -1,261 +0,0 @@
|
||||||
tinymce.addI18n('it',{
|
|
||||||
"Redo": "Ripeti",
|
|
||||||
"Undo": "Indietro",
|
|
||||||
"Cut": "Taglia",
|
|
||||||
"Copy": "Copia",
|
|
||||||
"Paste": "Incolla",
|
|
||||||
"Select all": "Seleziona Tutto",
|
|
||||||
"New document": "Nuovo Documento",
|
|
||||||
"Ok": "Ok",
|
|
||||||
"Cancel": "Annulla",
|
|
||||||
"Visual aids": "Elementi Visivi",
|
|
||||||
"Bold": "Grassetto",
|
|
||||||
"Italic": "Corsivo",
|
|
||||||
"Underline": "Sottolineato",
|
|
||||||
"Strikethrough": "Barrato",
|
|
||||||
"Superscript": "Apice",
|
|
||||||
"Subscript": "Pedice",
|
|
||||||
"Clear formatting": "Cancella Formattazione",
|
|
||||||
"Align left": "Allinea a Sinistra",
|
|
||||||
"Align center": "Allinea al Cento",
|
|
||||||
"Align right": "Allinea a Destra",
|
|
||||||
"Justify": "Giustifica",
|
|
||||||
"Bullet list": "Elenchi Puntati",
|
|
||||||
"Numbered list": "Elenchi Numerati",
|
|
||||||
"Decrease indent": "Riduci Rientro",
|
|
||||||
"Increase indent": "Aumenta Rientro",
|
|
||||||
"Close": "Chiudi",
|
|
||||||
"Formats": "Formattazioni",
|
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.",
|
|
||||||
"Headers": "Intestazioni",
|
|
||||||
"Header 1": "Intestazione 1",
|
|
||||||
"Header 2": "Header 2",
|
|
||||||
"Header 3": "Intestazione 3",
|
|
||||||
"Header 4": "Intestazione 4",
|
|
||||||
"Header 5": "Intestazione 5",
|
|
||||||
"Header 6": "Intestazione 6",
|
|
||||||
"Headings": "Intestazioni",
|
|
||||||
"Heading 1": "Intestazione 1",
|
|
||||||
"Heading 2": "Intestazione 2",
|
|
||||||
"Heading 3": "Intestazione 3",
|
|
||||||
"Heading 4": "Intestazione 4",
|
|
||||||
"Heading 5": "Intestazione 5",
|
|
||||||
"Heading 6": "Intestazione 6",
|
|
||||||
"Preformatted": "Preformattato",
|
|
||||||
"Div": "Div",
|
|
||||||
"Pre": "Pre",
|
|
||||||
"Code": "Codice",
|
|
||||||
"Paragraph": "Paragrafo",
|
|
||||||
"Blockquote": "Blockquote",
|
|
||||||
"Inline": "Inlinea",
|
|
||||||
"Blocks": "Blocchi",
|
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.",
|
|
||||||
"Font Family": "Famiglia font",
|
|
||||||
"Font Sizes": "Dimensioni font",
|
|
||||||
"Class": "Classe",
|
|
||||||
"Browse for an image": "Scegli un'immagine",
|
|
||||||
"OR": "o",
|
|
||||||
"Drop an image here": "Incolla un'immagine qui",
|
|
||||||
"Upload": "Carica",
|
|
||||||
"Block": "Blocco",
|
|
||||||
"Align": "Allinea",
|
|
||||||
"Default": "Default",
|
|
||||||
"Circle": "Cerchio",
|
|
||||||
"Disc": "Disco",
|
|
||||||
"Square": "Quadrato",
|
|
||||||
"Lower Alpha": "Alpha Minore",
|
|
||||||
"Lower Greek": "Greek Minore",
|
|
||||||
"Lower Roman": "Roman Minore",
|
|
||||||
"Upper Alpha": "Alpha Superiore",
|
|
||||||
"Upper Roman": "Roman Superiore",
|
|
||||||
"Anchor": "Fissa",
|
|
||||||
"Name": "Nome",
|
|
||||||
"Id": "Id",
|
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'id dovrebbe cominciare con una lettera, seguito solo da lettere, numeri, linee, punti, virgole.",
|
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?",
|
|
||||||
"Restore last draft": "Ripristina l'ultima bozza.",
|
|
||||||
"Special character": "Carattere Speciale",
|
|
||||||
"Source code": "Codice Sorgente",
|
|
||||||
"Insert\/Edit code sample": "Inserisci\/Modifica esempio di codice",
|
|
||||||
"Language": "Lingua",
|
|
||||||
"Code sample": "Esempio di codice",
|
|
||||||
"Color": "Colore",
|
|
||||||
"R": "R",
|
|
||||||
"G": "G",
|
|
||||||
"B": "B",
|
|
||||||
"Left to right": "Da Sinistra a Destra",
|
|
||||||
"Right to left": "Da Destra a Sinistra",
|
|
||||||
"Emoticons": "Emoction",
|
|
||||||
"Document properties": "Propriet\u00e0 Documento",
|
|
||||||
"Title": "Titolo",
|
|
||||||
"Keywords": "Parola Chiave",
|
|
||||||
"Description": "Descrizione",
|
|
||||||
"Robots": "Robot",
|
|
||||||
"Author": "Autore",
|
|
||||||
"Encoding": "Codifica",
|
|
||||||
"Fullscreen": "Schermo Intero",
|
|
||||||
"Action": "Azione",
|
|
||||||
"Shortcut": "Scorciatoia",
|
|
||||||
"Help": "Aiuto",
|
|
||||||
"Address": "Indirizzo",
|
|
||||||
"Focus to menubar": "Focus sulla barra del menu",
|
|
||||||
"Focus to toolbar": "Focus sulla barra degli strumenti",
|
|
||||||
"Focus to element path": "Focus sul percorso dell'elemento",
|
|
||||||
"Focus to contextual toolbar": "Focus sulla barra degli strumenti contestuale",
|
|
||||||
"Insert link (if link plugin activated)": "Inserisci link (se il plugin link \u00e8 attivato)",
|
|
||||||
"Save (if save plugin activated)": "Salva (se il plugin save \u00e8 attivato)",
|
|
||||||
"Find (if searchreplace plugin activated)": "Trova (se il plugin searchreplace \u00e8 attivato)",
|
|
||||||
"Plugins installed ({0}):": "Plugin installati ({0}):",
|
|
||||||
"Premium plugins:": "Plugin Premium:",
|
|
||||||
"Learn more...": "Per saperne di pi\u00f9...",
|
|
||||||
"You are using {0}": "Stai usando {0}",
|
|
||||||
"Plugins": "Plugin",
|
|
||||||
"Handy Shortcuts": "Scorciatoia pratica",
|
|
||||||
"Horizontal line": "Linea Orizzontale",
|
|
||||||
"Insert\/edit image": "Aggiungi\/Modifica Immagine",
|
|
||||||
"Image description": "Descrizione Immagine",
|
|
||||||
"Source": "Fonte",
|
|
||||||
"Dimensions": "Dimenzioni",
|
|
||||||
"Constrain proportions": "Mantieni Proporzioni",
|
|
||||||
"General": "Generale",
|
|
||||||
"Advanced": "Avanzato",
|
|
||||||
"Style": "Stile",
|
|
||||||
"Vertical space": "Spazio Verticale",
|
|
||||||
"Horizontal space": "Spazio Orizzontale",
|
|
||||||
"Border": "Bordo",
|
|
||||||
"Insert image": "Inserisci immagine",
|
|
||||||
"Image": "Immagine",
|
|
||||||
"Image list": "Elenco immagini",
|
|
||||||
"Rotate counterclockwise": "Ruota in senso antiorario",
|
|
||||||
"Rotate clockwise": "Ruota in senso orario",
|
|
||||||
"Flip vertically": "Rifletti verticalmente",
|
|
||||||
"Flip horizontally": "Rifletti orizzontalmente",
|
|
||||||
"Edit image": "Modifica immagine",
|
|
||||||
"Image options": "Opzioni immagine",
|
|
||||||
"Zoom in": "Ingrandisci",
|
|
||||||
"Zoom out": "Rimpicciolisci",
|
|
||||||
"Crop": "Taglia",
|
|
||||||
"Resize": "Ridimensiona",
|
|
||||||
"Orientation": "Orientamento",
|
|
||||||
"Brightness": "Luminosit\u00e0",
|
|
||||||
"Sharpen": "Contrasta",
|
|
||||||
"Contrast": "Contrasto",
|
|
||||||
"Color levels": "Livelli colore",
|
|
||||||
"Gamma": "Gamma",
|
|
||||||
"Invert": "Inverti",
|
|
||||||
"Apply": "Applica",
|
|
||||||
"Back": "Indietro",
|
|
||||||
"Insert date\/time": "Inserisci Data\/Ora",
|
|
||||||
"Date\/time": "Data\/Ora",
|
|
||||||
"Insert link": "Inserisci il Link",
|
|
||||||
"Insert\/edit link": "Inserisci\/Modifica Link",
|
|
||||||
"Text to display": "Testo da Visualizzare",
|
|
||||||
"Url": "Url",
|
|
||||||
"Target": "Target",
|
|
||||||
"None": "No",
|
|
||||||
"New window": "Nuova Finestra",
|
|
||||||
"Remove link": "Rimuovi link",
|
|
||||||
"Anchors": "Anchors",
|
|
||||||
"Link": "Collegamento",
|
|
||||||
"Paste or type a link": "Incolla o digita un collegamento",
|
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?",
|
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?",
|
|
||||||
"Link list": "Elenco link",
|
|
||||||
"Insert video": "Inserisci Video",
|
|
||||||
"Insert\/edit video": "Inserisci\/Modifica Video",
|
|
||||||
"Insert\/edit media": "Inserisci\/Modifica Media",
|
|
||||||
"Alternative source": "Alternativo",
|
|
||||||
"Poster": "Anteprima",
|
|
||||||
"Paste your embed code below:": "Incolla il codice d'incorporamento qui:",
|
|
||||||
"Embed": "Incorporare",
|
|
||||||
"Media": "Media",
|
|
||||||
"Nonbreaking space": "Spazio unificatore",
|
|
||||||
"Page break": "Interruzione di pagina",
|
|
||||||
"Paste as text": "incolla come testo",
|
|
||||||
"Preview": "Anteprima",
|
|
||||||
"Print": "Stampa",
|
|
||||||
"Save": "Salva",
|
|
||||||
"Find": "Trova",
|
|
||||||
"Replace with": "Sostituisci Con",
|
|
||||||
"Replace": "Sostituisci",
|
|
||||||
"Replace all": "Sostituisci Tutto",
|
|
||||||
"Prev": "Precedente",
|
|
||||||
"Next": "Successivo",
|
|
||||||
"Find and replace": "Trova e Sostituisci",
|
|
||||||
"Could not find the specified string.": "Impossibile trovare la parola specifica.",
|
|
||||||
"Match case": "Maiuscole\/Minuscole ",
|
|
||||||
"Whole words": "Parole Sbagliate",
|
|
||||||
"Spellcheck": "Controllo ortografico",
|
|
||||||
"Ignore": "Ignora",
|
|
||||||
"Ignore all": "Ignora Tutto",
|
|
||||||
"Finish": "Termina",
|
|
||||||
"Add to Dictionary": "Aggiungi al Dizionario",
|
|
||||||
"Insert table": "Inserisci Tabella",
|
|
||||||
"Table properties": "Propiet\u00e0 della Tabella",
|
|
||||||
"Delete table": "Cancella Tabella",
|
|
||||||
"Cell": "Cella",
|
|
||||||
"Row": "Riga",
|
|
||||||
"Column": "Colonna",
|
|
||||||
"Cell properties": "Propiet\u00e0 della Cella",
|
|
||||||
"Merge cells": "Unisci Cella",
|
|
||||||
"Split cell": "Dividi Cella",
|
|
||||||
"Insert row before": "Inserisci una Riga Prima",
|
|
||||||
"Insert row after": "Inserisci una Riga Dopo",
|
|
||||||
"Delete row": "Cancella Riga",
|
|
||||||
"Row properties": "Propriet\u00e0 della Riga",
|
|
||||||
"Cut row": "Taglia Riga",
|
|
||||||
"Copy row": "Copia Riga",
|
|
||||||
"Paste row before": "Incolla una Riga Prima",
|
|
||||||
"Paste row after": "Incolla una Riga Dopo",
|
|
||||||
"Insert column before": "Inserisci una Colonna Prima",
|
|
||||||
"Insert column after": "Inserisci una Colonna Dopo",
|
|
||||||
"Delete column": "Cancella Colonna",
|
|
||||||
"Cols": "Colonne",
|
|
||||||
"Rows": "Righe",
|
|
||||||
"Width": "Larghezza",
|
|
||||||
"Height": "Altezza",
|
|
||||||
"Cell spacing": "Spaziatura della Cella",
|
|
||||||
"Cell padding": "Padding della Cella",
|
|
||||||
"Caption": "Didascalia",
|
|
||||||
"Left": "Sinistra",
|
|
||||||
"Center": "Centro",
|
|
||||||
"Right": "Destra",
|
|
||||||
"Cell type": "Tipo di Cella",
|
|
||||||
"Scope": "Campo",
|
|
||||||
"Alignment": "Allineamento",
|
|
||||||
"H Align": "Allineamento H",
|
|
||||||
"V Align": "Allineamento V",
|
|
||||||
"Top": "In alto",
|
|
||||||
"Middle": "In mezzo",
|
|
||||||
"Bottom": "In fondo",
|
|
||||||
"Header cell": "cella d'intestazione",
|
|
||||||
"Row group": "Gruppo di Righe",
|
|
||||||
"Column group": "Gruppo di Colonne",
|
|
||||||
"Row type": "Tipo di Riga",
|
|
||||||
"Header": "Header",
|
|
||||||
"Body": "Body",
|
|
||||||
"Footer": "Footer",
|
|
||||||
"Border color": "Colore bordo",
|
|
||||||
"Insert template": "Inserisci Template",
|
|
||||||
"Templates": "Template",
|
|
||||||
"Template": "Modello",
|
|
||||||
"Text color": "Colore Testo",
|
|
||||||
"Background color": "Colore Background",
|
|
||||||
"Custom...": "Personalizzato...",
|
|
||||||
"Custom color": "Colore personalizzato",
|
|
||||||
"No color": "Nessun colore",
|
|
||||||
"Table of Contents": "Tabella dei contenuti",
|
|
||||||
"Show blocks": "Mostra Blocchi",
|
|
||||||
"Show invisible characters": "Mostra Caratteri Invisibili",
|
|
||||||
"Words: {0}": "Parole: {0}",
|
|
||||||
"{0} words": "{0} parole",
|
|
||||||
"File": "File",
|
|
||||||
"Edit": "Modifica",
|
|
||||||
"Insert": "Inserisci",
|
|
||||||
"View": "Visualiza",
|
|
||||||
"Format": "Formato",
|
|
||||||
"Table": "Tabella",
|
|
||||||
"Tools": "Strumenti",
|
|
||||||
"Powered by {0}": "Fornito da {0}",
|
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto."
|
|
||||||
});
|
|
|
@ -41,7 +41,7 @@ tinymce.addI18n('ja',{
|
||||||
"Heading 4": "\u898b\u51fa\u3057 4",
|
"Heading 4": "\u898b\u51fa\u3057 4",
|
||||||
"Heading 5": "\u898b\u51fa\u3057 5",
|
"Heading 5": "\u898b\u51fa\u3057 5",
|
||||||
"Heading 6": "\u898b\u51fa\u3057 6",
|
"Heading 6": "\u898b\u51fa\u3057 6",
|
||||||
"Preformatted": "Preformatted",
|
"Preformatted": "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u6e08\u307f",
|
||||||
"Div": "Div",
|
"Div": "Div",
|
||||||
"Pre": "Pre",
|
"Pre": "Pre",
|
||||||
"Code": "\u30b3\u30fc\u30c9",
|
"Code": "\u30b3\u30fc\u30c9",
|
||||||
|
@ -50,7 +50,7 @@ tinymce.addI18n('ja',{
|
||||||
"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3",
|
"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3",
|
||||||
"Blocks": "\u30d6\u30ed\u30c3\u30af",
|
"Blocks": "\u30d6\u30ed\u30c3\u30af",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002",
|
||||||
"Font Family": "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc",
|
"Fonts": "\u30d5\u30a9\u30f3\u30c8",
|
||||||
"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba",
|
"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba",
|
||||||
"Class": "\u30af\u30e9\u30b9",
|
"Class": "\u30af\u30e9\u30b9",
|
||||||
"Browse for an image": "\u30a4\u30e1\u30fc\u30b8\u3092\u53c2\u7167",
|
"Browse for an image": "\u30a4\u30e1\u30fc\u30b8\u3092\u53c2\u7167",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('ja',{
|
||||||
"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||||
"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||||
"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||||
"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
"Anchor...": "\u30a2\u30f3\u30ab\u30fc...",
|
||||||
"Name": "\u30a2\u30f3\u30ab\u30fc\u540d",
|
"Name": "\u30a2\u30f3\u30ab\u30fc\u540d",
|
||||||
"Id": "Id",
|
"Id": "Id",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f",
|
"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f",
|
||||||
"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b",
|
"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b",
|
||||||
"Special character": "\u7279\u6b8a\u6587\u5b57",
|
"Special characters...": "\u7279\u6b8a\u6587\u5b57...",
|
||||||
"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9",
|
"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9",
|
||||||
"Insert\/Edit code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
"Insert\/Edit code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||||
"Language": "\u8a00\u8a9e",
|
"Language": "\u8a00\u8a9e",
|
||||||
"Code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb",
|
"Code sample...": "\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9...",
|
||||||
"Color": "\u30ab\u30e9\u30fc",
|
"Color Picker": "\u30ab\u30e9\u30fc\u30d4\u30c3\u30ab\u30fc",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "\u5de6\u304b\u3089\u53f3",
|
"Left to right": "\u5de6\u304b\u3089\u53f3",
|
||||||
"Right to left": "\u53f3\u304b\u3089\u5de6",
|
"Right to left": "\u53f3\u304b\u3089\u5de6",
|
||||||
"Emoticons": "\u7d75\u6587\u5b57",
|
"Emoticons...": "\u7d75\u6587\u5b57...",
|
||||||
"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3",
|
"Metadata and Document Properties": " \u30e1\u30bf\u30c7\u30fc\u30bf\u3068\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30d7\u30ed\u30d1\u30c6\u30a3",
|
||||||
"Title": "\u30bf\u30a4\u30c8\u30eb",
|
"Title": "\u30bf\u30a4\u30c8\u30eb",
|
||||||
"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9",
|
"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9",
|
||||||
"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9",
|
"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('ja',{
|
||||||
"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d",
|
"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d",
|
||||||
"Border": "\u67a0\u7dda",
|
"Border": "\u67a0\u7dda",
|
||||||
"Insert image": "\u753b\u50cf\u306e\u633f\u5165",
|
"Insert image": "\u753b\u50cf\u306e\u633f\u5165",
|
||||||
"Image": "\u753b\u50cf",
|
"Image...": "\u753b\u50cf..",
|
||||||
"Image list": "\u753b\u50cf\u4e00\u89a7",
|
"Image list": "\u753b\u50cf\u4e00\u89a7",
|
||||||
"Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
"Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||||
"Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
"Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('ja',{
|
||||||
"Back": "\u623b\u308b",
|
"Back": "\u623b\u308b",
|
||||||
"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
||||||
"Date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
"Date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
||||||
"Insert link": "\u30ea\u30f3\u30af",
|
"Insert\/Edit Link": " \u30ea\u30f3\u30af\u306e\u633f\u5165\/\u7de8\u96c6",
|
||||||
"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||||
"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8",
|
"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8",
|
||||||
"Url": "\u30ea\u30f3\u30af\u5148URL",
|
"Url": "\u30ea\u30f3\u30af\u5148URL",
|
||||||
"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027",
|
"Open link in...": "\u30ea\u30f3\u30af\u306e\u958b\u304d\u65b9...",
|
||||||
|
"Current window": "\u540c\u3058\u30a6\u30a3\u30f3\u30c9\u30a6",
|
||||||
"None": "\u306a\u3057",
|
"None": "\u306a\u3057",
|
||||||
"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6",
|
"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6",
|
||||||
"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664",
|
"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664",
|
||||||
"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||||
"Link": "\u30ea\u30f3\u30af",
|
"Link...": "\u30ea\u30f3\u30af...",
|
||||||
"Paste or type a link": "\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b",
|
"Paste or type a link": "\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||||
|
@ -165,26 +166,27 @@ tinymce.addI18n('ja',{
|
||||||
"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||||
"Insert\/edit media": "\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
"Insert\/edit media": "\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||||
"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240",
|
"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240",
|
||||||
"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240",
|
"Alternative source URL": "\u4ee3\u66ff\u30bd\u30fc\u30b9URL",
|
||||||
|
"Media poster (Image URL)": "\u3000\u3000",
|
||||||
"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002",
|
"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002",
|
||||||
"Embed": "\u57cb\u3081\u8fbc\u307f",
|
"Embed": "\u57cb\u3081\u8fbc\u307f",
|
||||||
"Media": "\u30e1\u30c7\u30a3\u30a2",
|
"Media...": "\u30e1\u30c7\u30a3\u30a2\u2026",
|
||||||
"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09",
|
"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09",
|
||||||
"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a",
|
"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a",
|
||||||
"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051",
|
"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051",
|
||||||
"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc",
|
"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc",
|
||||||
"Print": "\u5370\u5237",
|
"Print...": "\u5370\u5237...",
|
||||||
"Save": "\u4fdd\u5b58",
|
"Save": "\u4fdd\u5b58",
|
||||||
"Find": "\u691c\u7d22",
|
"Find": "\u691c\u7d22",
|
||||||
"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57",
|
"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57",
|
||||||
"Replace": "\u7f6e\u304d\u63db\u3048",
|
"Replace": "\u7f6e\u304d\u63db\u3048",
|
||||||
"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b",
|
"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b",
|
||||||
"Prev": "\u524d",
|
"Previous": "\u524d",
|
||||||
"Next": "\u6b21",
|
"Next": "\u6b21",
|
||||||
"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048",
|
"Find and replace...": "\u7f6e\u63db...",
|
||||||
"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
||||||
"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",
|
"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",
|
||||||
"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b",
|
"Find whole words only": "\u8a9e\u5168\u4f53\u3092\u542b\u3080\u3082\u306e\u306e\u307f\u691c\u7d22",
|
||||||
"Spell check": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
|
"Spell check": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
|
||||||
"Ignore": "\u7121\u8996",
|
"Ignore": "\u7121\u8996",
|
||||||
"Ignore all": "\u5168\u3066\u3092\u7121\u8996",
|
"Ignore all": "\u5168\u3066\u3092\u7121\u8996",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('ja',{
|
||||||
"Height": "\u9ad8\u3055",
|
"Height": "\u9ad8\u3055",
|
||||||
"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694",
|
"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694",
|
||||||
"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09",
|
"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09",
|
||||||
"Caption": "\u8868\u984c",
|
"Show caption": "\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306e\u8868\u793a",
|
||||||
"Left": "\u5de6\u5bc4\u305b",
|
"Left": "\u5de6\u5bc4\u305b",
|
||||||
"Center": "\u4e2d\u592e\u63c3\u3048",
|
"Center": "\u4e2d\u592e\u63c3\u3048",
|
||||||
"Right": "\u53f3\u5bc4\u305b",
|
"Right": "\u53f3\u5bc4\u305b",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('ja',{
|
||||||
"Body": "\u30dc\u30c7\u30a3\u30fc",
|
"Body": "\u30dc\u30c7\u30a3\u30fc",
|
||||||
"Footer": "\u30d5\u30c3\u30bf\u30fc",
|
"Footer": "\u30d5\u30c3\u30bf\u30fc",
|
||||||
"Border color": "\u67a0\u7dda\u306e\u8272",
|
"Border color": "\u67a0\u7dda\u306e\u8272",
|
||||||
"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165",
|
"Insert template...": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165..",
|
||||||
"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d",
|
"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d",
|
||||||
"Template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
"Template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",
|
||||||
"Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272",
|
"Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('ja',{
|
||||||
"Custom...": "\u30ab\u30b9\u30bf\u30e0...",
|
"Custom...": "\u30ab\u30b9\u30bf\u30e0...",
|
||||||
"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc",
|
"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc",
|
||||||
"No color": "\u30ab\u30e9\u30fc\u306a\u3057",
|
"No color": "\u30ab\u30e9\u30fc\u306a\u3057",
|
||||||
|
"Remove color": "\u30ab\u30e9\u30fc\u8a2d\u5b9a\u3092\u89e3\u9664",
|
||||||
"Table of Contents": "\u76ee\u6b21",
|
"Table of Contents": "\u76ee\u6b21",
|
||||||
"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||||
"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a",
|
"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a",
|
||||||
|
"Word count": "\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8",
|
||||||
"Words: {0}": "\u5358\u8a9e\u6570: {0}",
|
"Words: {0}": "\u5358\u8a9e\u6570: {0}",
|
||||||
"{0} words": "{0} \u30ef\u30fc\u30c9",
|
"{0} words": "{0} \u30ef\u30fc\u30c9",
|
||||||
"File": "\u30d5\u30a1\u30a4\u30eb",
|
"File": "\u30d5\u30a1\u30a4\u30eb",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('ja',{
|
||||||
"Table": "\u8868",
|
"Table": "\u8868",
|
||||||
"Tools": "\u30c4\u30fc\u30eb",
|
"Tools": "\u30c4\u30fc\u30eb",
|
||||||
"Powered by {0}": "Powered by {0}",
|
"Powered by {0}": "Powered by {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002"
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002",
|
||||||
|
"Image title": "\u753b\u50cf\u30bf\u30a4\u30c8\u30eb",
|
||||||
|
"Border width": "\u67a0\u7dda\u5e45",
|
||||||
|
"Border style": "\u67a0\u7dda\u30b9\u30bf\u30a4\u30eb",
|
||||||
|
"Error": "\u30a8\u30e9\u30fc",
|
||||||
|
"Warn": "\u8b66\u544a",
|
||||||
|
"Valid": "\u6709\u52b9",
|
||||||
|
"To open the popup, press Shift+Enter": "\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u3092\u958b\u304f\u306b\u306f\u3001Shift+Enter\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u3002Alt-0\u3067\u30d8\u30eb\u30d7\u304c\u898b\u3089\u308c\u307e\u3059",
|
||||||
|
"System Font": "\u30b7\u30b9\u30c6\u30e0\u30d5\u30a9\u30f3\u30c8",
|
||||||
|
"Failed to upload image: {0}": "\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "URL {1} \u304b\u3089\u30d7\u30e9\u30b0\u30a4\u30f3 {0} \u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f",
|
||||||
|
"Failed to load plugin url: {0}": "\u30d7\u30e9\u30b0\u30a4\u30f3\u306eURL\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u521d\u671f\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f: {0}",
|
||||||
|
"example": "\u4f8b",
|
||||||
|
"Search": "\u691c\u7d22",
|
||||||
|
"All": "\u3059\u3079\u3066",
|
||||||
|
"Currency": "\u901a\u8ca8",
|
||||||
|
"Text": "\u30c6\u30ad\u30b9\u30c8",
|
||||||
|
"Quotations": "\u5f15\u7528",
|
||||||
|
"Mathematical": "\u6570\u5b66\u8a18\u53f7",
|
||||||
|
"Extended Latin": "\u30e9\u30c6\u30f3\u6587\u5b57\u62e1\u5f35",
|
||||||
|
"Symbols": "\u30b7\u30f3\u30dc\u30eb",
|
||||||
|
"Arrows": "\u77e2\u5370",
|
||||||
|
"User Defined": "\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9",
|
||||||
|
"dollar sign": "\u30c9\u30eb\u8a18\u53f7",
|
||||||
|
"currency sign": "\u901a\u8ca8\u8a18\u53f7",
|
||||||
|
"euro-currency sign": "\u30e6\u30fc\u30ed\u8a18\u53f7",
|
||||||
|
"colon sign": "\u30b3\u30ed\u30f3\u8a18\u53f7",
|
||||||
|
"cruzeiro sign": "\u30af\u30eb\u30bc\u30a4\u30ed\u8a18\u53f7",
|
||||||
|
"french franc sign": "\u30d5\u30e9\u30f3\u30b9\u30d5\u30e9\u30f3\u8a18\u53f7",
|
||||||
|
"lira sign": "\u30ea\u30e9\u8a18\u53f7",
|
||||||
|
"mill sign": "\u30df\u30eb\u8a18\u53f7",
|
||||||
|
"naira sign": "\u30ca\u30a4\u30e9\u8a18\u53f7",
|
||||||
|
"peseta sign": "\u30da\u30bb\u30bf\u8a18\u53f7",
|
||||||
|
"rupee sign": "\u30eb\u30d4\u30fc\u8a18\u53f7",
|
||||||
|
"won sign": "\u30a6\u30a9\u30f3\u8a18\u53f7",
|
||||||
|
"new sheqel sign": "\u65b0\u30b7\u30a7\u30b1\u30eb\u8a18\u53f7",
|
||||||
|
"dong sign": "\u30c9\u30f3\u8a18\u53f7",
|
||||||
|
"kip sign": "\u30ad\u30fc\u30d7\u8a18\u53f7",
|
||||||
|
"tugrik sign": "\u30c8\u30a5\u30b0\u30eb\u30b0\u8a18\u53f7",
|
||||||
|
"drachma sign": "\u30c9\u30e9\u30af\u30de\u8a18\u53f7",
|
||||||
|
"german penny symbol": "\u30c9\u30a4\u30c4\u30da\u30cb\u30fc\u8a18\u53f7",
|
||||||
|
"peso sign": "\u30da\u30bd\u8a18\u53f7",
|
||||||
|
"guarani sign": "\u30ac\u30e9\u30cb\u8a18\u53f7",
|
||||||
|
"austral sign": "\u30a2\u30a6\u30b9\u30c8\u30e9\u30eb\u8a18\u53f7",
|
||||||
|
"hryvnia sign": "\u30d5\u30ea\u30f4\u30cb\u30e3\u8a18\u53f7",
|
||||||
|
"cedi sign": "\u30bb\u30c7\u30a3\u8a18\u53f7",
|
||||||
|
"livre tournois sign": "\u30c8\u30a5\u30fc\u30eb\u30dd\u30f3\u30c9\u8a18\u53f7",
|
||||||
|
"spesmilo sign": "\u30b9\u30da\u30b9\u30df\u30fc\u30ed\u8a18\u53f7",
|
||||||
|
"tenge sign": "\u30c6\u30f3\u30b2\u8a18\u53f7",
|
||||||
|
"indian rupee sign": "\u30a4\u30f3\u30c9\u30eb\u30d4\u30fc\u8a18\u53f7",
|
||||||
|
"turkish lira sign": "\u30c8\u30eb\u30b3\u30ea\u30e9\u8a18\u53f7",
|
||||||
|
"nordic mark sign": "\u5317\u6b27\u30de\u30eb\u30af\u8a18\u53f7",
|
||||||
|
"manat sign": "\u30de\u30ca\u30c8\u8a18\u53f7",
|
||||||
|
"ruble sign": "\u30eb\u30fc\u30d6\u30eb\u8a18\u53f7",
|
||||||
|
"yen character": "\u5186\u8a18\u53f7",
|
||||||
|
"yuan character": "\u4eba\u6c11\u5143\u8a18\u53f7",
|
||||||
|
"yuan character, in hong kong and taiwan": "\u9999\u6e2f\u304a\u3088\u3073\u53f0\u6e7e\u306b\u304a\u3051\u308b\u5143\u8a18\u53f7",
|
||||||
|
"yen\/yuan character variant one": "\u5186\/\u5143\u8a18\u53f7\u306e\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3",
|
||||||
|
"Loading emoticons...": "\u7d75\u6587\u5b57\u3092\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059...",
|
||||||
|
"Could not load emoticons": "\u7d75\u6587\u5b57\u304c\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
||||||
|
"People": "\u4eba\u3005",
|
||||||
|
"Animals and Nature": "\u52d5\u7269\u3068\u81ea\u7136",
|
||||||
|
"Food and Drink": "\u98df\u3079\u7269\u3068\u98f2\u307f\u7269",
|
||||||
|
"Activity": "\u884c\u52d5",
|
||||||
|
"Travel and Places": "\u65c5\u884c\u3068\u5834\u6240",
|
||||||
|
"Objects": "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8",
|
||||||
|
"Flags": "\u65d7",
|
||||||
|
"Characters": "\u6587\u5b57",
|
||||||
|
"Characters (no spaces)": "\u6587\u5b57\uff08\u30b9\u30da\u30fc\u30b9\u306a\u3057\uff09",
|
||||||
|
"Error: Form submit field collision.": "\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u3067\u9001\u4fe1\u3059\u308b\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002",
|
||||||
|
"Error: No form element found.": "\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
||||||
|
"Update": "\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8",
|
||||||
|
"Color swatch": "\u30ab\u30e9\u30fc\u30b9\u30a6\u30a9\u30c3\u30c1",
|
||||||
|
"Turquoise": "\u30bf\u30fc\u30b3\u30a4\u30ba",
|
||||||
|
"Green": "\u30b0\u30ea\u30fc\u30f3",
|
||||||
|
"Blue": "\u30d6\u30eb\u30fc",
|
||||||
|
"Purple": "\u30d1\u30fc\u30d7\u30eb",
|
||||||
|
"Navy Blue": "\u30cd\u30a4\u30d3\u30fc\u30d6\u30eb\u30fc",
|
||||||
|
"Dark Turquoise": "\u30c0\u30fc\u30af\u30bf\u30fc\u30b3\u30a4\u30ba",
|
||||||
|
"Dark Green": "\u30c0\u30fc\u30af\u30b0\u30ea\u30fc\u30f3",
|
||||||
|
"Medium Blue": "\u30df\u30c7\u30a3\u30a2\u30e0\u30d6\u30eb\u30fc\u3000",
|
||||||
|
"Medium Purple": "\u30df\u30c7\u30a3\u30a2\u30e0\u30d1\u30fc\u30d7\u30eb",
|
||||||
|
"Midnight Blue": "\u30df\u30c3\u30c9\u30ca\u30a4\u30c8\u30d6\u30eb\u30fc",
|
||||||
|
"Yellow": "\u30a4\u30a8\u30ed\u30fc",
|
||||||
|
"Orange": "\u30aa\u30ec\u30f3\u30b8",
|
||||||
|
"Red": "\u30ec\u30c3\u30c9",
|
||||||
|
"Light Gray": "\u30e9\u30a4\u30c8\u30b0\u30ec\u30fc",
|
||||||
|
"Gray": "\u30b0\u30ec\u30fc",
|
||||||
|
"Dark Yellow": "\u30c0\u30fc\u30af\u30a4\u30a8\u30ed\u30fc",
|
||||||
|
"Dark Orange": "\u30c0\u30fc\u30af\u30aa\u30ec\u30f3\u30b8",
|
||||||
|
"Dark Red": "\u30c0\u30fc\u30af\u30ec\u30c3\u30c9",
|
||||||
|
"Medium Gray": "\u30df\u30c7\u30a3\u30a2\u30e0\u30b0\u30ec\u30fc",
|
||||||
|
"Dark Gray": "\u30c0\u30fc\u30af\u30b0\u30ec\u30fc",
|
||||||
|
"Black": "\u30d6\u30e9\u30c3\u30af",
|
||||||
|
"White": "\u30db\u30ef\u30a4\u30c8",
|
||||||
|
"Switch to or from fullscreen mode": "\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u5207\u66ff",
|
||||||
|
"Open help dialog": "\u30d8\u30eb\u30d7\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u958b\u304f",
|
||||||
|
"history": "\u5c65\u6b74",
|
||||||
|
"styles": "\u30b9\u30bf\u30a4\u30eb",
|
||||||
|
"formatting": "\u66f8\u5f0f",
|
||||||
|
"alignment": "\u914d\u7f6e",
|
||||||
|
"indentation": "\u30a4\u30f3\u30c7\u30f3\u30c8",
|
||||||
|
"permanent pen": "\u86cd\u5149\u30da\u30f3",
|
||||||
|
"comments": "\u30b3\u30e1\u30f3\u30c8",
|
||||||
|
"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||||
|
"Special character": "\u7279\u6b8a\u6587\u5b57",
|
||||||
|
"Code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb",
|
||||||
|
"Color": "\u30ab\u30e9\u30fc",
|
||||||
|
"Emoticons": "\u7d75\u6587\u5b57",
|
||||||
|
"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3",
|
||||||
|
"Image": "\u753b\u50cf",
|
||||||
|
"Insert link": "\u30ea\u30f3\u30af",
|
||||||
|
"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027",
|
||||||
|
"Link": "\u30ea\u30f3\u30af",
|
||||||
|
"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240",
|
||||||
|
"Media": "\u30e1\u30c7\u30a3\u30a2",
|
||||||
|
"Print": "\u5370\u5237",
|
||||||
|
"Prev": "\u524d",
|
||||||
|
"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048",
|
||||||
|
"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b",
|
||||||
|
"Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
|
||||||
|
"Caption": "\u8868\u984c",
|
||||||
|
"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165"
|
||||||
});
|
});
|
|
@ -6,12 +6,12 @@ tinymce.addI18n('nl',{
|
||||||
"Paste": "Plakken",
|
"Paste": "Plakken",
|
||||||
"Select all": "Alles selecteren",
|
"Select all": "Alles selecteren",
|
||||||
"New document": "Nieuw document",
|
"New document": "Nieuw document",
|
||||||
"Ok": "OK",
|
"Ok": "Ok\u00e9",
|
||||||
"Cancel": "Annuleren",
|
"Cancel": "Annuleren",
|
||||||
"Visual aids": "Hulpmiddelen",
|
"Visual aids": "Hulpmiddelen",
|
||||||
"Bold": "Vet",
|
"Bold": "Vet",
|
||||||
"Italic": "Cursief",
|
"Italic": "Cursief",
|
||||||
"Underline": "Onderstrepen",
|
"Underline": "Onderstreept",
|
||||||
"Strikethrough": "Doorhalen",
|
"Strikethrough": "Doorhalen",
|
||||||
"Superscript": "Superscript",
|
"Superscript": "Superscript",
|
||||||
"Subscript": "Subscript",
|
"Subscript": "Subscript",
|
||||||
|
@ -20,14 +20,14 @@ tinymce.addI18n('nl',{
|
||||||
"Align center": "Centreren",
|
"Align center": "Centreren",
|
||||||
"Align right": "Rechts uitlijnen",
|
"Align right": "Rechts uitlijnen",
|
||||||
"Justify": "Uitlijnen",
|
"Justify": "Uitlijnen",
|
||||||
"Bullet list": "Opsommingstekens",
|
"Bullet list": "Opsommingsteken",
|
||||||
"Numbered list": "Nummering",
|
"Numbered list": "Nummering",
|
||||||
"Decrease indent": "Inspringen verkleinen",
|
"Decrease indent": "Inspringen verkleinen",
|
||||||
"Increase indent": "Inspringen vergroten",
|
"Increase indent": "Inspringen vergroten",
|
||||||
"Close": "Sluiten",
|
"Close": "Sluiten",
|
||||||
"Formats": "Opmaak",
|
"Formats": "Opmaak",
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "De browser ondersteunt geen toegang tot het klembord. Gebruik de sneltoetsen ctrl+X\/C\/V.",
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Uw browser ondersteunt geen toegang tot het clipboard. Gelieve ctrl+X\/C\/V sneltoetsen te gebruiken.",
|
||||||
"Headers": "Koptekst",
|
"Headers": "Kopteksten",
|
||||||
"Header 1": "Kop 1",
|
"Header 1": "Kop 1",
|
||||||
"Header 2": "Kop 2",
|
"Header 2": "Kop 2",
|
||||||
"Header 3": "Kop 3",
|
"Header 3": "Kop 3",
|
||||||
|
@ -41,21 +41,21 @@ tinymce.addI18n('nl',{
|
||||||
"Heading 4": "Kop 4",
|
"Heading 4": "Kop 4",
|
||||||
"Heading 5": "Kop 5",
|
"Heading 5": "Kop 5",
|
||||||
"Heading 6": "Kop 6",
|
"Heading 6": "Kop 6",
|
||||||
"Preformatted": "Eigen opmaak",
|
"Preformatted": "Voor-opgemaakt",
|
||||||
"Div": "Div",
|
"Div": "Div",
|
||||||
"Pre": "Pre",
|
"Pre": "Pre",
|
||||||
"Code": "Code",
|
"Code": "Code",
|
||||||
"Paragraph": "Paragraaf",
|
"Paragraph": "Paragraaf",
|
||||||
"Blockquote": "Citaatblok",
|
"Blockquote": "Quote",
|
||||||
"Inline": "Inline",
|
"Inline": "Inlijn",
|
||||||
"Blocks": "Blok",
|
"Blocks": "Blok",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.",
|
||||||
"Font Family": "Lettertype",
|
"Fonts": "Lettertypes",
|
||||||
"Font Sizes": "Tekengrootte",
|
"Font Sizes": "Tekengrootte",
|
||||||
"Class": "Class",
|
"Class": "Class",
|
||||||
"Browse for an image": "Afbeelding zoeken",
|
"Browse for an image": "Zoek naar een afbeelding",
|
||||||
"OR": "OF",
|
"OR": "OF",
|
||||||
"Drop an image here": "Sleep de afbeelding hierheen",
|
"Drop an image here": "Plaats hier een afbeelding",
|
||||||
"Upload": "Uploaden",
|
"Upload": "Uploaden",
|
||||||
"Block": "Blok",
|
"Block": "Blok",
|
||||||
"Align": "Uitlijnen",
|
"Align": "Uitlijnen",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('nl',{
|
||||||
"Lower Roman": "Romeinse cijfers klein",
|
"Lower Roman": "Romeinse cijfers klein",
|
||||||
"Upper Alpha": "Hoofdletters",
|
"Upper Alpha": "Hoofdletters",
|
||||||
"Upper Roman": "Romeinse cijfers groot",
|
"Upper Roman": "Romeinse cijfers groot",
|
||||||
"Anchor": "Anker",
|
"Anchor...": "Anker...",
|
||||||
"Name": "Naam",
|
"Name": "Naam",
|
||||||
"Id": "ID",
|
"Id": "ID",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID moet beginnen met een letter, gevolgd door letters, nummers, streepjes, punten, dubbele punten of underscores.",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID moet beginnen met een letter, gevolgd door letters, nummers, streepjes, punten, dubbele punten of underscores.",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Wijzigingen zijn nog niet opgeslagen. De pagina toch verlaten?",
|
"You have unsaved changes are you sure you want to navigate away?": "U hebt niet alles opgeslagen bent u zeker dat u de pagina wenst te verlaten?",
|
||||||
"Restore last draft": "Herstel het laatste concept",
|
"Restore last draft": "Herstel het laatste concept",
|
||||||
"Special character": "Speciale karakters",
|
"Special characters...": "Speciale karakters...",
|
||||||
"Source code": "Broncode",
|
"Source code": "Broncode",
|
||||||
"Insert\/Edit code sample": "Broncode invoegen\/bewerken",
|
"Insert\/Edit code sample": "Broncode invoegen\/bewerken",
|
||||||
"Language": "Programmeertaal",
|
"Language": "Programmeertaal",
|
||||||
"Code sample": "Broncode voorbeeld",
|
"Code sample...": "Broncode voorbeeld...",
|
||||||
"Color": "Kleur",
|
"Color Picker": "Kleurkiezer",
|
||||||
"R": "Rood",
|
"R": "Rood",
|
||||||
"G": "Groen",
|
"G": "Groen",
|
||||||
"B": "Blauw",
|
"B": "Blauw",
|
||||||
"Left to right": "Links naar rechts",
|
"Left to right": "Links naar rechts",
|
||||||
"Right to left": "Rechts naar links",
|
"Right to left": "Rechts naar links",
|
||||||
"Emoticons": "Emoticons",
|
"Emoticons...": "Emoticons...",
|
||||||
"Document properties": "Eigenschappen document",
|
"Metadata and Document Properties": "Metagegevens en documenteigenschappen",
|
||||||
"Title": "Titel",
|
"Title": "Titel",
|
||||||
"Keywords": "Sleutelwoorden",
|
"Keywords": "Sleutelwoorden",
|
||||||
"Description": "Omschrijving",
|
"Description": "Omschrijving",
|
||||||
|
@ -100,20 +100,20 @@ tinymce.addI18n('nl',{
|
||||||
"Address": "Adres",
|
"Address": "Adres",
|
||||||
"Focus to menubar": "Menubalk selecteren",
|
"Focus to menubar": "Menubalk selecteren",
|
||||||
"Focus to toolbar": "Werkbalk selecteren",
|
"Focus to toolbar": "Werkbalk selecteren",
|
||||||
"Focus to element path": "Pad naar element selecteren",
|
"Focus to element path": "Element pad selecteren",
|
||||||
"Focus to contextual toolbar": "Contextuele werkbalk selecteren",
|
"Focus to contextual toolbar": "Contextuele werkbalk selecteren",
|
||||||
"Insert link (if link plugin activated)": "Link invoegen (als plug-in Link geactiveerd is)",
|
"Insert link (if link plugin activated)": "Link invoegen (als link plug-in geactiveerd is)",
|
||||||
"Save (if save plugin activated)": "Opslaan (als plug-in Opslaan ingeschakeld is)",
|
"Save (if save plugin activated)": "Opslaan (als opslaan plug-in ingeschakeld is)",
|
||||||
"Find (if searchreplace plugin activated)": "Zoeken (als plug-in Zoeken\/vervangen ingeschakeld is)",
|
"Find (if searchreplace plugin activated)": "Zoeken (als zoeken\/vervangen plug-in ingeschakeld is)",
|
||||||
"Plugins installed ({0}):": "Plug-ins ge\u00efnstalleerd ({0}):",
|
"Plugins installed ({0}):": "Plug-ins ge\u00efnstalleerd ({0}):",
|
||||||
"Premium plugins:": "Premium plug-ins:",
|
"Premium plugins:": "Premium plug-ins:",
|
||||||
"Learn more...": "Meer informatie...",
|
"Learn more...": "Leer meer...",
|
||||||
"You are using {0}": "U gebruikt {0}",
|
"You are using {0}": "Je gebruikt {0}",
|
||||||
"Plugins": "Plug-ins",
|
"Plugins": "Plug-ins",
|
||||||
"Handy Shortcuts": "Handige snelkoppelingen",
|
"Handy Shortcuts": "Handige snelkoppelingen",
|
||||||
"Horizontal line": "Horizontale lijn",
|
"Horizontal line": "Horizontale lijn",
|
||||||
"Insert\/edit image": "Afbeelding invoegen\/bewerken",
|
"Insert\/edit image": "Afbeelding invoegen\/bewerken",
|
||||||
"Image description": "Omschrijving afbeelding",
|
"Image description": "Afbeelding omschrijving",
|
||||||
"Source": "Bron",
|
"Source": "Bron",
|
||||||
"Dimensions": "Afmetingen",
|
"Dimensions": "Afmetingen",
|
||||||
"Constrain proportions": "Verhoudingen behouden",
|
"Constrain proportions": "Verhoudingen behouden",
|
||||||
|
@ -124,19 +124,19 @@ tinymce.addI18n('nl',{
|
||||||
"Horizontal space": "Horizontale ruimte",
|
"Horizontal space": "Horizontale ruimte",
|
||||||
"Border": "Rand",
|
"Border": "Rand",
|
||||||
"Insert image": "Afbeelding invoegen",
|
"Insert image": "Afbeelding invoegen",
|
||||||
"Image": "Afbeelding",
|
"Image...": "Afbeelding...",
|
||||||
"Image list": "Afbeeldingenlijst",
|
"Image list": "Afbeeldingenlijst",
|
||||||
"Rotate counterclockwise": "Linksom draaien",
|
"Rotate counterclockwise": "Linksom draaien",
|
||||||
"Rotate clockwise": "Rechtsom draaien",
|
"Rotate clockwise": "Rechtsom draaien",
|
||||||
"Flip vertically": "Verticaal spiegelen",
|
"Flip vertically": "Verticaal spiegelen",
|
||||||
"Flip horizontally": "Horizontaal spiegelen",
|
"Flip horizontally": "Horizontaal spiegelen",
|
||||||
"Edit image": "Afbeelding bewerken",
|
"Edit image": "Bewerk afbeelding",
|
||||||
"Image options": "Opties voor afbeelding",
|
"Image options": "Afbeelding opties",
|
||||||
"Zoom in": "Inzoomen",
|
"Zoom in": "Inzoomen",
|
||||||
"Zoom out": "Uitzoomen",
|
"Zoom out": "Uitzoomen",
|
||||||
"Crop": "Uitsnijden",
|
"Crop": "Uitsnijden",
|
||||||
"Resize": "Formaat aanpassen",
|
"Resize": "Formaat aanpassen",
|
||||||
"Orientation": "Ori\u00ebntatie",
|
"Orientation": "Orientatie",
|
||||||
"Brightness": "Helderheid",
|
"Brightness": "Helderheid",
|
||||||
"Sharpen": "Scherpte",
|
"Sharpen": "Scherpte",
|
||||||
"Contrast": "Contrast",
|
"Contrast": "Contrast",
|
||||||
|
@ -145,86 +145,88 @@ tinymce.addI18n('nl',{
|
||||||
"Invert": "Omkeren",
|
"Invert": "Omkeren",
|
||||||
"Apply": "Toepassen",
|
"Apply": "Toepassen",
|
||||||
"Back": "Terug",
|
"Back": "Terug",
|
||||||
"Insert date\/time": "Datum\/tijd invoegen",
|
"Insert date\/time": "Voeg datum\/tijd in",
|
||||||
"Date\/time": "Datum\/tijd",
|
"Date\/time": "Datum\/tijd",
|
||||||
"Insert link": "Hyperlink invoegen",
|
"Insert\/Edit Link": "Hyperlink invoegen\/bewerken",
|
||||||
"Insert\/edit link": "Hyperlink invoegen\/bewerken",
|
"Insert\/edit link": "Hyperlink invoegen\/bewerken",
|
||||||
"Text to display": "Linktekst",
|
"Text to display": "Linktekst",
|
||||||
"Url": "Url",
|
"Url": "Url",
|
||||||
"Target": "Doel",
|
"Open link in...": "Link openen in...",
|
||||||
|
"Current window": "Huidig venster",
|
||||||
"None": "Geen",
|
"None": "Geen",
|
||||||
"New window": "Nieuw venster",
|
"New window": "Nieuw venster",
|
||||||
"Remove link": "Link verwijderen",
|
"Remove link": "Link verwijderen",
|
||||||
"Anchors": "Anker",
|
"Anchors": "Anker",
|
||||||
"Link": "Link",
|
"Link...": "Link...",
|
||||||
"Paste or type a link": "Plak of typ een link",
|
"Paste or type a link": "Plak of typ een link",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL lijkt op een e-mailadres. \"mailto:\" toevoegen?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL lijkt op een e-mailadres. Wil je er \"mailto:\" aan toevoegen?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL verwijst naar een extern adres. \"http:\/\/\" toevoegen?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL verwijst naar een extern adres. Wil je er \"http:\/\/\" aan toevoegen?",
|
||||||
"Link list": "Linklijst",
|
"Link list": "Linklijst",
|
||||||
"Insert video": "Video invoegen",
|
"Insert video": "Video invoegen",
|
||||||
"Insert\/edit video": "Video invoegen\/bewerken",
|
"Insert\/edit video": "Video invoegen\/bewerken",
|
||||||
"Insert\/edit media": "Media invoegen\/bewerken",
|
"Insert\/edit media": "Media invoegen\/bewerken",
|
||||||
"Alternative source": "Alternatieve bron",
|
"Alternative source": "Alternatieve bron",
|
||||||
"Poster": "Poster",
|
"Alternative source URL": "Alternatief bronadres",
|
||||||
"Paste your embed code below:": "Voer de in te sluiten code hieronder in:",
|
"Media poster (Image URL)": "Media posten (afbeeldings URL)",
|
||||||
|
"Paste your embed code below:": "Plak u in te sluiten code hieronder:",
|
||||||
"Embed": "Insluiten",
|
"Embed": "Insluiten",
|
||||||
"Media": "Media",
|
"Media...": "Media...",
|
||||||
"Nonbreaking space": "Vaste spatie invoegen",
|
"Nonbreaking space": "Vaste spatie invoegen",
|
||||||
"Page break": "Pagina-einde",
|
"Page break": "Pagina einde",
|
||||||
"Paste as text": "Plakken als tekst",
|
"Paste as text": "Plakken als tekst",
|
||||||
"Preview": "Voorbeeld",
|
"Preview": "Voorbeeld",
|
||||||
"Print": "Print",
|
"Print...": "Print...",
|
||||||
"Save": "Opslaan",
|
"Save": "Opslaan",
|
||||||
"Find": "Zoeken",
|
"Find": "Zoeken",
|
||||||
"Replace with": "Vervangen door",
|
"Replace with": "Vervangen door",
|
||||||
"Replace": "Vervangen",
|
"Replace": "Vervangen",
|
||||||
"Replace all": "Alles vervangen",
|
"Replace all": "Alles vervangen",
|
||||||
"Prev": "Vorige",
|
"Previous": "Vorige",
|
||||||
"Next": "Volgende",
|
"Next": "Volgende",
|
||||||
"Find and replace": "Zoeken en vervangen",
|
"Find and replace...": "Zoek en vervang...",
|
||||||
"Could not find the specified string.": "Geen resultaten gevonden",
|
"Could not find the specified string.": "Geen resultaten gevonden",
|
||||||
"Match case": "Identieke hoofd-\/kleine letters",
|
"Match case": "Identieke hoofd\/kleine letters",
|
||||||
"Whole words": "Alleen hele woorden",
|
"Find whole words only": "Alleen hele woorden zoeken",
|
||||||
"Spell check": "Spellingscontrole",
|
"Spell check": "Spellingscontrole",
|
||||||
"Ignore": "Negeren",
|
"Ignore": "Negeren",
|
||||||
"Ignore all": "Alles negeren",
|
"Ignore all": "Alles negeren",
|
||||||
"Finish": "Einde",
|
"Finish": "Einde",
|
||||||
"Add to Dictionary": "Toevoegen aan woordenlijst",
|
"Add to Dictionary": "Toevoegen aan woordenlijst",
|
||||||
"Insert table": "Tabel invoegen",
|
"Insert table": "Tabel invoegen",
|
||||||
"Table properties": "Eigenschappen tabel",
|
"Table properties": "Tabel eigenschappen",
|
||||||
"Delete table": "Tabel verwijderen",
|
"Delete table": "Verwijder tabel",
|
||||||
"Cell": "Cel",
|
"Cell": "Cel",
|
||||||
"Row": "Rij",
|
"Row": "Rij",
|
||||||
"Column": "Kolom",
|
"Column": "Kolom",
|
||||||
"Cell properties": "Eigenschappen cel",
|
"Cell properties": "Cel eigenschappen",
|
||||||
"Merge cells": "Cellen samenvoegen",
|
"Merge cells": "Cellen samenvoegen",
|
||||||
"Split cell": "Cel splitsen",
|
"Split cell": "Cel splitsen",
|
||||||
"Insert row before": "Rij boven toevoegen",
|
"Insert row before": "Voeg rij boven toe",
|
||||||
"Insert row after": "Rij onder toevoegen",
|
"Insert row after": "Voeg rij onder toe",
|
||||||
"Delete row": "Rij verwijderen",
|
"Delete row": "Verwijder rij",
|
||||||
"Row properties": "Eigenschappen rij",
|
"Row properties": "Rij eigenschappen",
|
||||||
"Cut row": "Rij knippen",
|
"Cut row": "Knip rij",
|
||||||
"Copy row": "Rij kopi\u00ebren",
|
"Copy row": "Kopieer rij",
|
||||||
"Paste row before": "Rij boven plakken",
|
"Paste row before": "Plak rij boven",
|
||||||
"Paste row after": "Rij onder plakken",
|
"Paste row after": "Plak rij onder",
|
||||||
"Insert column before": "Kolom links invoegen",
|
"Insert column before": "Voeg kolom in voor",
|
||||||
"Insert column after": "Kolom rechts invoegen",
|
"Insert column after": "Voeg kolom in na",
|
||||||
"Delete column": "Kolom verwijderen",
|
"Delete column": "Verwijder kolom",
|
||||||
"Cols": "Kolommen",
|
"Cols": "Kolommen",
|
||||||
"Rows": "Rijen",
|
"Rows": "Rijen",
|
||||||
"Width": "Breedte",
|
"Width": "Breedte",
|
||||||
"Height": "Hoogte",
|
"Height": "Hoogte",
|
||||||
"Cell spacing": "Celruimte",
|
"Cell spacing": "Celruimte",
|
||||||
"Cell padding": "Ruimte binnen cel",
|
"Cell padding": "Ruimte binnen cel",
|
||||||
"Caption": "Onderschrift",
|
"Show caption": "Bijschrift tonen",
|
||||||
"Left": "Links",
|
"Left": "Links",
|
||||||
"Center": "Midden",
|
"Center": "Midden",
|
||||||
"Right": "Rechts",
|
"Right": "Rechts",
|
||||||
"Cell type": "Celtype",
|
"Cell type": "Celtype",
|
||||||
"Scope": "Bereik",
|
"Scope": "Bereik",
|
||||||
"Alignment": "Uitlijning",
|
"Alignment": "Uitlijning",
|
||||||
"H Align": "Horizontaal uitlijnen",
|
"H Align": "Links uitlijnen",
|
||||||
"V Align": "Verticaal uitlijnen",
|
"V Align": "Boven uitlijnen",
|
||||||
"Top": "Bovenaan",
|
"Top": "Bovenaan",
|
||||||
"Middle": "Centreren",
|
"Middle": "Centreren",
|
||||||
"Bottom": "Onderaan",
|
"Bottom": "Onderaan",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('nl',{
|
||||||
"Body": "Body",
|
"Body": "Body",
|
||||||
"Footer": "Voettekst",
|
"Footer": "Voettekst",
|
||||||
"Border color": "Randkleur",
|
"Border color": "Randkleur",
|
||||||
"Insert template": "Sjabloon invoegen",
|
"Insert template...": "Sjabloon invoegen...",
|
||||||
"Templates": "Sjablonen",
|
"Templates": "Sjablonen",
|
||||||
"Template": "Sjabloon",
|
"Template": "Sjabloon",
|
||||||
"Text color": "Tekstkleur",
|
"Text color": "Tekstkleur",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('nl',{
|
||||||
"Custom...": "Eigen...",
|
"Custom...": "Eigen...",
|
||||||
"Custom color": "Eigen kleur",
|
"Custom color": "Eigen kleur",
|
||||||
"No color": "Geen kleur",
|
"No color": "Geen kleur",
|
||||||
|
"Remove color": "Kleur verwijderen",
|
||||||
"Table of Contents": "Inhoudsopgave",
|
"Table of Contents": "Inhoudsopgave",
|
||||||
"Show blocks": "Blokken tonen",
|
"Show blocks": "Blokken tonen",
|
||||||
"Show invisible characters": "Onzichtbare karakters tonen",
|
"Show invisible characters": "Onzichtbare karakters tonen",
|
||||||
|
"Word count": "Woorden tellen",
|
||||||
"Words: {0}": "Woorden: {0}",
|
"Words: {0}": "Woorden: {0}",
|
||||||
"{0} words": "{0} woorden",
|
"{0} words": "{0} woorden",
|
||||||
"File": "Bestand",
|
"File": "Bestand",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('nl',{
|
||||||
"Table": "Tabel",
|
"Table": "Tabel",
|
||||||
"Tools": "Gereedschap",
|
"Tools": "Gereedschap",
|
||||||
"Powered by {0}": "Gemaakt door {0}",
|
"Powered by {0}": "Gemaakt door {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text-gebied. Kies ALT-F9 voor het menu. Kies ALT-F10 voor de werkbalk. Kies ALT-0 voor hulp."
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk ALT-F9 voor het menu. Druk ALT-F10 voor de toolbar. Druk ALT-0 voor help.",
|
||||||
|
"Image title": "Afbeeldingstitel",
|
||||||
|
"Border width": "Dikte rand",
|
||||||
|
"Border style": "Stijl rand",
|
||||||
|
"Error": "Fout",
|
||||||
|
"Warn": "Waarschuwing",
|
||||||
|
"Valid": "Correct",
|
||||||
|
"To open the popup, press Shift+Enter": "Druk op Shift+Enter om de pop-up te openen",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Opgemaakte tekst editor. Druk op ALT-0 voor hulp.",
|
||||||
|
"System Font": "Systeem Lettertype",
|
||||||
|
"Failed to upload image: {0}": "Niet gelukt om afbeelding te uploaden: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Niet gelukt om plug-in te laden: {0} vanaf adres {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Niet gelukt om plug-in te laden, url: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Niet gelukt om plug-in te initialiseren: {0}",
|
||||||
|
"example": "voorbeeld",
|
||||||
|
"Search": "Zoeken",
|
||||||
|
"All": "Alle",
|
||||||
|
"Currency": "Valuta",
|
||||||
|
"Text": "Tekst",
|
||||||
|
"Quotations": "Citaten",
|
||||||
|
"Mathematical": "Wiskundig",
|
||||||
|
"Extended Latin": "Extended Latin",
|
||||||
|
"Symbols": "Symbolen",
|
||||||
|
"Arrows": "Pijltjes",
|
||||||
|
"User Defined": "Aangepast",
|
||||||
|
"dollar sign": "Dollar teken",
|
||||||
|
"currency sign": "Valuta teken",
|
||||||
|
"euro-currency sign": "Euro teken",
|
||||||
|
"colon sign": "Dubbelepunt",
|
||||||
|
"cruzeiro sign": "Cruzeiro teken",
|
||||||
|
"french franc sign": "Franse frank teken",
|
||||||
|
"lira sign": "Lire teken",
|
||||||
|
"mill sign": "Mill teken",
|
||||||
|
"naira sign": "Nigeriaanse naira symbool",
|
||||||
|
"peseta sign": "Peseta teken",
|
||||||
|
"rupee sign": "Roepie symbool",
|
||||||
|
"won sign": "Zuid-Koreaanse won symbool",
|
||||||
|
"new sheqel sign": "New sheqel sign teken",
|
||||||
|
"dong sign": "Vietnamese dong teken",
|
||||||
|
"kip sign": "Laotiaanse kip teken",
|
||||||
|
"tugrik sign": "Mongoolse tugrik teken",
|
||||||
|
"drachma sign": "Drachme teken",
|
||||||
|
"german penny symbol": "Duitse Pfennig teken",
|
||||||
|
"peso sign": "Peso teken",
|
||||||
|
"guarani sign": "guarani teken",
|
||||||
|
"austral sign": "Argentijnse austral teken",
|
||||||
|
"hryvnia sign": "Hryvnia teken",
|
||||||
|
"cedi sign": "Ghanese cedi teken",
|
||||||
|
"livre tournois sign": "Livre tournois teken",
|
||||||
|
"spesmilo sign": "Spesmilo teken",
|
||||||
|
"tenge sign": "Kazachse tenge teken",
|
||||||
|
"indian rupee sign": "Indiaase roepie teken",
|
||||||
|
"turkish lira sign": "turkse lire teken",
|
||||||
|
"nordic mark sign": "Noorse mark teken",
|
||||||
|
"manat sign": "Manat teken",
|
||||||
|
"ruble sign": "Roebel teken",
|
||||||
|
"yen character": "Yen teken",
|
||||||
|
"yuan character": "Yuan teken",
|
||||||
|
"yuan character, in hong kong and taiwan": "yuan symbool, in Hong Kong en Taiwan",
|
||||||
|
"yen\/yuan character variant one": "Yen\/Yuan variant 1 teken",
|
||||||
|
"Loading emoticons...": "Emoticons laden...",
|
||||||
|
"Could not load emoticons": "Emoticons konden niet worden geladen",
|
||||||
|
"People": "Mensen",
|
||||||
|
"Animals and Nature": "Dieren en natuur",
|
||||||
|
"Food and Drink": "Eten en drinken",
|
||||||
|
"Activity": "Activiteiten",
|
||||||
|
"Travel and Places": "Reizen en plaatsen",
|
||||||
|
"Objects": "Objecten",
|
||||||
|
"Flags": "Vlaggen",
|
||||||
|
"Characters": "Karakters",
|
||||||
|
"Characters (no spaces)": "Karakters (geen spaties)",
|
||||||
|
"Error: Form submit field collision.": "Fout: Dubbele veldnaam bij versturen formulier.",
|
||||||
|
"Error: No form element found.": "Fout: Geen form element gevonden.",
|
||||||
|
"Update": "Bijwerken",
|
||||||
|
"Color swatch": "Kleurenwaaier",
|
||||||
|
"Turquoise": "Turquoise",
|
||||||
|
"Green": "Groen",
|
||||||
|
"Blue": "Blauw",
|
||||||
|
"Purple": "Paars",
|
||||||
|
"Navy Blue": "Navy blauw",
|
||||||
|
"Dark Turquoise": "Donker Turquoise",
|
||||||
|
"Dark Green": "Donker groen",
|
||||||
|
"Medium Blue": "Gemiddeld blauw",
|
||||||
|
"Medium Purple": "Gemiddeld paars",
|
||||||
|
"Midnight Blue": "Middernacht blauw",
|
||||||
|
"Yellow": "Geel",
|
||||||
|
"Orange": "Oranje",
|
||||||
|
"Red": "Rood",
|
||||||
|
"Light Gray": "Lichtgrijs",
|
||||||
|
"Gray": "Grijs",
|
||||||
|
"Dark Yellow": "Donker geel",
|
||||||
|
"Dark Orange": "Donker Oranje",
|
||||||
|
"Dark Red": "Donker rood",
|
||||||
|
"Medium Gray": "Gemiddeld grijs",
|
||||||
|
"Dark Gray": "Donker grijs",
|
||||||
|
"Black": "Zwart",
|
||||||
|
"White": "Wit",
|
||||||
|
"Switch to or from fullscreen mode": "Schakel over naar of vanuit de modus volledig scherm",
|
||||||
|
"Open help dialog": "Help scherm tonen",
|
||||||
|
"history": "geschiedenis",
|
||||||
|
"styles": "stijlen",
|
||||||
|
"formatting": "opmaak",
|
||||||
|
"alignment": "uitlijning",
|
||||||
|
"indentation": "inspringing",
|
||||||
|
"permanent pen": "permanente pen",
|
||||||
|
"comments": "commentaar",
|
||||||
|
"Anchor": "Anker",
|
||||||
|
"Special character": "Speciale karakters",
|
||||||
|
"Code sample": "Broncode voorbeeld",
|
||||||
|
"Color": "Kleur",
|
||||||
|
"Emoticons": "Emoticons",
|
||||||
|
"Document properties": "Document eigenschappen",
|
||||||
|
"Image": "Afbeelding",
|
||||||
|
"Insert link": "Hyperlink invoegen",
|
||||||
|
"Target": "Doel",
|
||||||
|
"Link": "Link",
|
||||||
|
"Poster": "Poster",
|
||||||
|
"Media": "Media",
|
||||||
|
"Print": "Print",
|
||||||
|
"Prev": "Vorige",
|
||||||
|
"Find and replace": "Zoek en vervang",
|
||||||
|
"Whole words": "Alleen hele woorden",
|
||||||
|
"Spellcheck": "Spellingscontrole",
|
||||||
|
"Caption": "Onderschrift",
|
||||||
|
"Insert template": "Sjabloon invoegen"
|
||||||
});
|
});
|
|
@ -50,7 +50,7 @@ tinymce.addI18n('pl',{
|
||||||
"Inline": "W tek\u015bcie",
|
"Inline": "W tek\u015bcie",
|
||||||
"Blocks": "Bloki",
|
"Blocks": "Bloki",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.",
|
||||||
"Font Family": "Kr\u00f3j fontu",
|
"Fonts": "Fonty",
|
||||||
"Font Sizes": "Rozmiar fontu",
|
"Font Sizes": "Rozmiar fontu",
|
||||||
"Class": "Klasa",
|
"Class": "Klasa",
|
||||||
"Browse for an image": "Przegl\u0105daj za zdj\u0119ciem",
|
"Browse for an image": "Przegl\u0105daj za zdj\u0119ciem",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('pl',{
|
||||||
"Lower Roman": "Ma\u0142e rzymskie",
|
"Lower Roman": "Ma\u0142e rzymskie",
|
||||||
"Upper Alpha": "Wielkie litery",
|
"Upper Alpha": "Wielkie litery",
|
||||||
"Upper Roman": "Wielkie rzymskie",
|
"Upper Roman": "Wielkie rzymskie",
|
||||||
"Anchor": "Kotwica",
|
"Anchor...": "Kotwica...",
|
||||||
"Name": "Nazwa",
|
"Name": "Nazwa",
|
||||||
"Id": "Identyfikator",
|
"Id": "Identyfikator",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczyna\u0107 si\u0119 liter\u0105, dozwolone s\u0105 tylko litery, numery, uko\u015bniki, kropki, dwukropki i podkre\u015blniki - tzw. pod\u0142ogi",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczyna\u0107 si\u0119 liter\u0105, dozwolone s\u0105 tylko litery, numery, uko\u015bniki, kropki, dwukropki i podkre\u015blniki - tzw. pod\u0142ogi",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?",
|
"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?",
|
||||||
"Restore last draft": "Przywr\u00f3\u0107 ostatni szkic",
|
"Restore last draft": "Przywr\u00f3\u0107 ostatni szkic",
|
||||||
"Special character": "Znak specjalny",
|
"Special characters...": "Znaki specjalne...",
|
||||||
"Source code": "Kod \u017ar\u00f3d\u0142owy",
|
"Source code": "Kod \u017ar\u00f3d\u0142owy",
|
||||||
"Insert\/Edit code sample": "Dodaj\/Edytuj przyk\u0142adowy kod",
|
"Insert\/Edit code sample": "Dodaj\/Edytuj przyk\u0142adowy kod",
|
||||||
"Language": "J\u0119zyk",
|
"Language": "J\u0119zyk",
|
||||||
"Code sample": "Przyk\u0142ad kodu \u017ar\u00f3d\u0142owego",
|
"Code sample...": "Przyk\u0142ad kodu...",
|
||||||
"Color": "Kolor",
|
"Color Picker": "Wybierz kolor",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "Od lewej do prawej",
|
"Left to right": "Od lewej do prawej",
|
||||||
"Right to left": "Od prawej do lewej",
|
"Right to left": "Od prawej do lewej",
|
||||||
"Emoticons": "Ikony emocji",
|
"Emoticons...": "Emotikony...",
|
||||||
"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu",
|
"Metadata and Document Properties": "Metadane i w\u0142a\u015bciwo\u015bci dokumentu",
|
||||||
"Title": "Tytu\u0142",
|
"Title": "Tytu\u0142",
|
||||||
"Keywords": "S\u0142owa kluczowe",
|
"Keywords": "S\u0142owa kluczowe",
|
||||||
"Description": "Opis",
|
"Description": "Opis",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('pl',{
|
||||||
"Horizontal space": "Odst\u0119p poziomy",
|
"Horizontal space": "Odst\u0119p poziomy",
|
||||||
"Border": "Ramka",
|
"Border": "Ramka",
|
||||||
"Insert image": "Wstaw obrazek",
|
"Insert image": "Wstaw obrazek",
|
||||||
"Image": "Obraz",
|
"Image...": "Obraz...",
|
||||||
"Image list": "Lista obrazk\u00f3w",
|
"Image list": "Lista obrazk\u00f3w",
|
||||||
"Rotate counterclockwise": "Obr\u00f3\u0107 w lewo",
|
"Rotate counterclockwise": "Obr\u00f3\u0107 w lewo",
|
||||||
"Rotate clockwise": "Obr\u00f3\u0107 w prawo",
|
"Rotate clockwise": "Obr\u00f3\u0107 w prawo",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('pl',{
|
||||||
"Back": "Cofnij",
|
"Back": "Cofnij",
|
||||||
"Insert date\/time": "Wstaw dat\u0119\/czas",
|
"Insert date\/time": "Wstaw dat\u0119\/czas",
|
||||||
"Date\/time": "Data\/Czas",
|
"Date\/time": "Data\/Czas",
|
||||||
"Insert link": "Wstaw \u0142\u0105cze",
|
"Insert\/Edit Link": "Wstaw\/Dostosuj \u0142\u0105cze",
|
||||||
"Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze",
|
"Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze",
|
||||||
"Text to display": "Tekst do wy\u015bwietlenia",
|
"Text to display": "Tekst do wy\u015bwietlenia",
|
||||||
"Url": "URL",
|
"Url": "URL",
|
||||||
"Target": "Cel",
|
"Open link in...": "Otw\u00f3rz \u0142\u0105cze w...",
|
||||||
|
"Current window": "Aktualne okno",
|
||||||
"None": "\u017baden",
|
"None": "\u017baden",
|
||||||
"New window": "Nowe okno",
|
"New window": "Nowe okno",
|
||||||
"Remove link": "Usu\u0144 \u0142\u0105cze",
|
"Remove link": "Usu\u0144 \u0142\u0105cze",
|
||||||
"Anchors": "Kotwice",
|
"Anchors": "Kotwice",
|
||||||
"Link": "Adres \u0142\u0105cza",
|
"Link...": "\u0141\u0105cze...",
|
||||||
"Paste or type a link": "Wklej lub wpisz adres \u0142\u0105cza",
|
"Paste or type a link": "Wklej lub wpisz adres \u0142\u0105cza",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?",
|
||||||
|
@ -165,27 +166,28 @@ tinymce.addI18n('pl',{
|
||||||
"Insert\/edit video": "Wstaw\/edytuj wideo",
|
"Insert\/edit video": "Wstaw\/edytuj wideo",
|
||||||
"Insert\/edit media": "Wstaw\/Edytuj media",
|
"Insert\/edit media": "Wstaw\/Edytuj media",
|
||||||
"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o",
|
"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o",
|
||||||
"Poster": "Plakat",
|
"Alternative source URL": "Alternatywny URL \u017ar\u00f3d\u0142a",
|
||||||
|
"Media poster (Image URL)": "Plakat (URL obrazu)",
|
||||||
"Paste your embed code below:": "Wklej tutaj kod do osadzenia:",
|
"Paste your embed code below:": "Wklej tutaj kod do osadzenia:",
|
||||||
"Embed": "Osad\u017a",
|
"Embed": "Osad\u017a",
|
||||||
"Media": "Media",
|
"Media...": "Media...",
|
||||||
"Nonbreaking space": "Nie\u0142amliwa spacja",
|
"Nonbreaking space": "Nie\u0142amliwa spacja",
|
||||||
"Page break": "Podzia\u0142 strony",
|
"Page break": "Podzia\u0142 strony",
|
||||||
"Paste as text": "Wklej jako zwyk\u0142y tekst",
|
"Paste as text": "Wklej jako zwyk\u0142y tekst",
|
||||||
"Preview": "Podgl\u0105d",
|
"Preview": "Podgl\u0105d",
|
||||||
"Print": "Drukuj",
|
"Print...": "Drukuj...",
|
||||||
"Save": "Zapisz",
|
"Save": "Zapisz",
|
||||||
"Find": "Znajd\u017a",
|
"Find": "Znajd\u017a",
|
||||||
"Replace with": "Zamie\u0144 na",
|
"Replace with": "Zamie\u0144 na",
|
||||||
"Replace": "Zamie\u0144",
|
"Replace": "Zamie\u0144",
|
||||||
"Replace all": "Zamie\u0144 wszystko",
|
"Replace all": "Zamie\u0144 wszystko",
|
||||||
"Prev": "Poprz.",
|
"Previous": "Poprzedni",
|
||||||
"Next": "Nast.",
|
"Next": "Nast.",
|
||||||
"Find and replace": "Znajd\u017a i zamie\u0144",
|
"Find and replace...": "Znajd\u017a i zamie\u0144...",
|
||||||
"Could not find the specified string.": "Nie znaleziono szukanego tekstu.",
|
"Could not find the specified string.": "Nie znaleziono szukanego tekstu.",
|
||||||
"Match case": "Dopasuj wielko\u015b\u0107 liter",
|
"Match case": "Dopasuj wielko\u015b\u0107 liter",
|
||||||
"Whole words": "Ca\u0142e s\u0142owa",
|
"Find whole words only": "Znajd\u017a tylko ca\u0142e wyrazy",
|
||||||
"Spellcheck": "Sprawdzanie pisowni",
|
"Spell check": "Sprawd\u017a pisowni\u0119",
|
||||||
"Ignore": "Ignoruj",
|
"Ignore": "Ignoruj",
|
||||||
"Ignore all": "Ignoruj wszystko",
|
"Ignore all": "Ignoruj wszystko",
|
||||||
"Finish": "Zako\u0144cz",
|
"Finish": "Zako\u0144cz",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('pl',{
|
||||||
"Height": "Wysoko\u015b\u0107",
|
"Height": "Wysoko\u015b\u0107",
|
||||||
"Cell spacing": "Odst\u0119py kom\u00f3rek",
|
"Cell spacing": "Odst\u0119py kom\u00f3rek",
|
||||||
"Cell padding": "Dope\u0142nienie kom\u00f3rki",
|
"Cell padding": "Dope\u0142nienie kom\u00f3rki",
|
||||||
"Caption": "Tytu\u0142",
|
"Show caption": "Poka\u017c podpis",
|
||||||
"Left": "Lewo",
|
"Left": "Lewo",
|
||||||
"Center": "\u015arodek",
|
"Center": "\u015arodek",
|
||||||
"Right": "Prawo",
|
"Right": "Prawo",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('pl',{
|
||||||
"Body": "Tre\u015b\u0107",
|
"Body": "Tre\u015b\u0107",
|
||||||
"Footer": "Stopka",
|
"Footer": "Stopka",
|
||||||
"Border color": "Kolor ramki",
|
"Border color": "Kolor ramki",
|
||||||
"Insert template": "Wstaw szablon",
|
"Insert template...": "Wstaw szablon...",
|
||||||
"Templates": "Szablony",
|
"Templates": "Szablony",
|
||||||
"Template": "Szablon",
|
"Template": "Szablon",
|
||||||
"Text color": "Kolor tekstu",
|
"Text color": "Kolor tekstu",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('pl',{
|
||||||
"Custom...": "Niestandardowy...",
|
"Custom...": "Niestandardowy...",
|
||||||
"Custom color": "Kolor niestandardowy",
|
"Custom color": "Kolor niestandardowy",
|
||||||
"No color": "Bez koloru",
|
"No color": "Bez koloru",
|
||||||
|
"Remove color": "Usu\u0144 kolor",
|
||||||
"Table of Contents": "Spis tre\u015bci",
|
"Table of Contents": "Spis tre\u015bci",
|
||||||
"Show blocks": "Poka\u017c bloki",
|
"Show blocks": "Poka\u017c bloki",
|
||||||
"Show invisible characters": "Poka\u017c niewidoczne znaki",
|
"Show invisible characters": "Poka\u017c niewidoczne znaki",
|
||||||
|
"Word count": "Liczba s\u0142\u00f3w",
|
||||||
"Words: {0}": "S\u0142\u00f3w: {0}",
|
"Words: {0}": "S\u0142\u00f3w: {0}",
|
||||||
"{0} words": "{0} s\u0142\u00f3w",
|
"{0} words": "{0} s\u0142\u00f3w",
|
||||||
"File": "Plik",
|
"File": "Plik",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('pl',{
|
||||||
"Table": "Tabela",
|
"Table": "Tabela",
|
||||||
"Tools": "Narz\u0119dzia",
|
"Tools": "Narz\u0119dzia",
|
||||||
"Powered by {0}": "Powered by {0}",
|
"Powered by {0}": "Powered by {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc"
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc",
|
||||||
|
"Image title": "Tytu\u0142 obrazu",
|
||||||
|
"Border width": "Grubo\u015b\u0107 ramki",
|
||||||
|
"Border style": "Styl ramki",
|
||||||
|
"Error": "B\u0142\u0105d",
|
||||||
|
"Warn": "Ostrze\u017cenie",
|
||||||
|
"Valid": "Poprawny",
|
||||||
|
"To open the popup, press Shift+Enter": "Aby otworzy\u0107 okienko, naci\u015bnij Shift+Enter",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Obszar tekstu sformatowanego. Naci\u015bnij ALT-0 aby uzyska\u0107 pomoc.",
|
||||||
|
"System Font": "Font systemowy",
|
||||||
|
"Failed to upload image: {0}": "Nie uda\u0142o si\u0119 przes\u0142a\u0107 obrazu: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 wtyczki: {0} z adresu {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 adresu wtyczki: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Nie mo\u017cna zainicjowa\u0107 wtyczki: {0}",
|
||||||
|
"example": "przyk\u0142ad",
|
||||||
|
"Search": "Znajd\u017a",
|
||||||
|
"All": "Wszystkie",
|
||||||
|
"Currency": "Waluty",
|
||||||
|
"Text": "Tekstowe",
|
||||||
|
"Quotations": "Cudzys\u0142owy",
|
||||||
|
"Mathematical": "Matematyczne",
|
||||||
|
"Extended Latin": "Dodatkowe",
|
||||||
|
"Symbols": "Symbole",
|
||||||
|
"Arrows": "Strza\u0142ki",
|
||||||
|
"User Defined": "W\u0142asny",
|
||||||
|
"dollar sign": "znak dolara",
|
||||||
|
"currency sign": "znak waluty",
|
||||||
|
"euro-currency sign": "znak euro",
|
||||||
|
"colon sign": "znak colon",
|
||||||
|
"cruzeiro sign": "znak cruzeiro",
|
||||||
|
"french franc sign": "znak franka francuskiego",
|
||||||
|
"lira sign": "znak liry",
|
||||||
|
"mill sign": "znak mill",
|
||||||
|
"naira sign": "znak nairy",
|
||||||
|
"peseta sign": "znak pesety",
|
||||||
|
"rupee sign": "znak rupii",
|
||||||
|
"won sign": "znak wona",
|
||||||
|
"new sheqel sign": "znak nowego szekla",
|
||||||
|
"dong sign": "znak donga",
|
||||||
|
"kip sign": "znak kipa",
|
||||||
|
"tugrik sign": "znak tugrika",
|
||||||
|
"drachma sign": "znak drachmy",
|
||||||
|
"german penny symbol": "znak feniga",
|
||||||
|
"peso sign": "znak peso",
|
||||||
|
"guarani sign": "znak guarani",
|
||||||
|
"austral sign": "znak australa",
|
||||||
|
"hryvnia sign": "znak hrywny",
|
||||||
|
"cedi sign": "znak cedi",
|
||||||
|
"livre tournois sign": "znak livre tournois",
|
||||||
|
"spesmilo sign": "znak spesmilo",
|
||||||
|
"tenge sign": "znak tenge",
|
||||||
|
"indian rupee sign": "znak rupii indyjskiej",
|
||||||
|
"turkish lira sign": "znak liry tureckiej",
|
||||||
|
"nordic mark sign": "znak nordic mark",
|
||||||
|
"manat sign": "znak manata",
|
||||||
|
"ruble sign": "znak rubla",
|
||||||
|
"yen character": "znak jena",
|
||||||
|
"yuan character": "znak juana",
|
||||||
|
"yuan character, in hong kong and taiwan": "znak juana w Hongkongu i Tajwanie",
|
||||||
|
"yen\/yuan character variant one": "jen\/juan wariant pierwszy",
|
||||||
|
"Loading emoticons...": "\u0141adowanie emotikon\u00f3w...",
|
||||||
|
"Could not load emoticons": "Nie mo\u017cna za\u0142adowa\u0107 emotikon\u00f3w",
|
||||||
|
"People": "Ludzie",
|
||||||
|
"Animals and Nature": "Zwierz\u0119ta i natura",
|
||||||
|
"Food and Drink": "Jedzenie i picie",
|
||||||
|
"Activity": "Aktywno\u015b\u0107",
|
||||||
|
"Travel and Places": "Podr\u00f3\u017ce i miejsca",
|
||||||
|
"Objects": "Obiekty",
|
||||||
|
"Flags": "Flagi",
|
||||||
|
"Characters": "Znak\u00f3w",
|
||||||
|
"Characters (no spaces)": "Znak\u00f3w (bez spacji)",
|
||||||
|
"Error: Form submit field collision.": "B\u0142\u0105d: Kolizja pola przesy\u0142ania formularza.",
|
||||||
|
"Error: No form element found.": "B\u0142\u0105d: nie znaleziono elementu formularza.",
|
||||||
|
"Update": "Aktualizuj",
|
||||||
|
"Color swatch": "Pr\u00f3bka koloru",
|
||||||
|
"Turquoise": "Turkusowy",
|
||||||
|
"Green": "Zielony",
|
||||||
|
"Blue": "Niebieski",
|
||||||
|
"Purple": "Purpurowy",
|
||||||
|
"Navy Blue": "Ciemnoniebieski",
|
||||||
|
"Dark Turquoise": "Ciemny Turkusowy",
|
||||||
|
"Dark Green": "Ciemny Zielony",
|
||||||
|
"Medium Blue": "\u015aredni Niebieski",
|
||||||
|
"Medium Purple": "\u015aredni Purpurowy",
|
||||||
|
"Midnight Blue": "Niebieska p\u00f3\u0142noc, Midnight Blue",
|
||||||
|
"Yellow": "\u017b\u00f3\u0142ty",
|
||||||
|
"Orange": "Pomara\u0144czowy",
|
||||||
|
"Red": "Czerwony",
|
||||||
|
"Light Gray": "Jasny Szary",
|
||||||
|
"Gray": "Szary",
|
||||||
|
"Dark Yellow": "Ciemny \u017b\u00f3\u0142ty",
|
||||||
|
"Dark Orange": "Ciemny Pomara\u0144czowy",
|
||||||
|
"Dark Red": "Ciemny Czerwony",
|
||||||
|
"Medium Gray": "\u015aredni Szary",
|
||||||
|
"Dark Gray": "Ciemny Szary",
|
||||||
|
"Black": "Czarny",
|
||||||
|
"White": "Bia\u0142y",
|
||||||
|
"Switch to or from fullscreen mode": "W\u0142\u0105cz lub wy\u0142\u0105cz tryb pe\u0142noekranowy",
|
||||||
|
"Open help dialog": "Otw\u00f3rz okienko pomocy",
|
||||||
|
"history": "historia",
|
||||||
|
"styles": "style",
|
||||||
|
"formatting": "formatowanie",
|
||||||
|
"alignment": "wyr\u00f3wnanie",
|
||||||
|
"indentation": "wci\u0119cie",
|
||||||
|
"permanent pen": "marker",
|
||||||
|
"comments": "komentarze",
|
||||||
|
"Anchor": "Kotwica",
|
||||||
|
"Special character": "Znak specjalny",
|
||||||
|
"Code sample": "Przyk\u0142ad kodu \u017ar\u00f3d\u0142owego",
|
||||||
|
"Color": "Kolor",
|
||||||
|
"Emoticons": "Ikony emocji",
|
||||||
|
"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu",
|
||||||
|
"Image": "Obraz",
|
||||||
|
"Insert link": "Wstaw \u0142\u0105cze",
|
||||||
|
"Target": "Cel",
|
||||||
|
"Link": "Adres \u0142\u0105cza",
|
||||||
|
"Poster": "Plakat",
|
||||||
|
"Media": "Media",
|
||||||
|
"Print": "Drukuj",
|
||||||
|
"Prev": "Poprz.",
|
||||||
|
"Find and replace": "Znajd\u017a i zamie\u0144",
|
||||||
|
"Whole words": "Ca\u0142e s\u0142owa",
|
||||||
|
"Spellcheck": "Sprawdzanie pisowni",
|
||||||
|
"Caption": "Tytu\u0142",
|
||||||
|
"Insert template": "Wstaw szablon"
|
||||||
});
|
});
|
|
@ -1,4 +1,4 @@
|
||||||
tinymce.addI18n('pt_BR',{
|
tinymce.addI18n('pt',{
|
||||||
"Redo": "Refazer",
|
"Redo": "Refazer",
|
||||||
"Undo": "Desfazer",
|
"Undo": "Desfazer",
|
||||||
"Cut": "Recortar",
|
"Cut": "Recortar",
|
||||||
|
@ -50,7 +50,7 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Inline": "Em linha",
|
"Inline": "Em linha",
|
||||||
"Blocks": "Blocos",
|
"Blocks": "Blocos",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.",
|
||||||
"Font Family": "Fonte",
|
"Fonts": "Fontes",
|
||||||
"Font Sizes": "Tamanho",
|
"Font Sizes": "Tamanho",
|
||||||
"Class": "Classe",
|
"Class": "Classe",
|
||||||
"Browse for an image": "Procure uma imagem",
|
"Browse for an image": "Procure uma imagem",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Lower Roman": "i. ii. iii. ...",
|
"Lower Roman": "i. ii. iii. ...",
|
||||||
"Upper Alpha": "A. B. C. ...",
|
"Upper Alpha": "A. B. C. ...",
|
||||||
"Upper Roman": "I. II. III. ...",
|
"Upper Roman": "I. II. III. ...",
|
||||||
"Anchor": "\u00c2ncora",
|
"Anchor...": "\u00c2ncora...",
|
||||||
"Name": "Nome",
|
"Name": "Nome",
|
||||||
"Id": "Id",
|
"Id": "Id",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sublinhados.",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sublinhados.",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?",
|
"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?",
|
||||||
"Restore last draft": "Restaurar \u00faltimo rascunho",
|
"Restore last draft": "Restaurar \u00faltimo rascunho",
|
||||||
"Special character": "Caracteres especiais",
|
"Special characters...": "Caracteres especiais...",
|
||||||
"Source code": "C\u00f3digo fonte",
|
"Source code": "C\u00f3digo fonte",
|
||||||
"Insert\/Edit code sample": "Inserir\/Editar c\u00f3digo de exemplo",
|
"Insert\/Edit code sample": "Inserir\/Editar c\u00f3digo de exemplo",
|
||||||
"Language": "Idioma",
|
"Language": "Idioma",
|
||||||
"Code sample": "Exemplo de c\u00f3digo",
|
"Code sample...": "Exemplo de c\u00f3digo...",
|
||||||
"Color": "Cor",
|
"Color Picker": "Escolha de cores",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "Da esquerda para a direita",
|
"Left to right": "Da esquerda para a direita",
|
||||||
"Right to left": "Da direita para a esquerda",
|
"Right to left": "Da direita para a esquerda",
|
||||||
"Emoticons": "Emoticons",
|
"Emoticons...": "Emojis...",
|
||||||
"Document properties": "Propriedades do documento",
|
"Metadata and Document Properties": "Metadados e Propriedades do Documento",
|
||||||
"Title": "T\u00edtulo",
|
"Title": "T\u00edtulo",
|
||||||
"Keywords": "Palavras-chave",
|
"Keywords": "Palavras-chave",
|
||||||
"Description": "Descri\u00e7\u00e3o",
|
"Description": "Descri\u00e7\u00e3o",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
"Horizontal space": "Espa\u00e7amento horizontal",
|
||||||
"Border": "Borda",
|
"Border": "Borda",
|
||||||
"Insert image": "Inserir imagem",
|
"Insert image": "Inserir imagem",
|
||||||
"Image": "Imagem",
|
"Image...": "Imagem...",
|
||||||
"Image list": "Lista de Imagens",
|
"Image list": "Lista de Imagens",
|
||||||
"Rotate counterclockwise": "Girar em sentido hor\u00e1rio",
|
"Rotate counterclockwise": "Girar em sentido hor\u00e1rio",
|
||||||
"Rotate clockwise": "Girar em sentido anti-hor\u00e1rio",
|
"Rotate clockwise": "Girar em sentido anti-hor\u00e1rio",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Back": "Voltar",
|
"Back": "Voltar",
|
||||||
"Insert date\/time": "Inserir data\/hora",
|
"Insert date\/time": "Inserir data\/hora",
|
||||||
"Date\/time": "data\/hora",
|
"Date\/time": "data\/hora",
|
||||||
"Insert link": "Inserir link",
|
"Insert\/Edit Link": "Inserir\/Editar Link",
|
||||||
"Insert\/edit link": "Inserir\/editar link",
|
"Insert\/edit link": "Inserir\/editar link",
|
||||||
"Text to display": "Texto para mostrar",
|
"Text to display": "Texto para mostrar",
|
||||||
"Url": "Url",
|
"Url": "Url",
|
||||||
"Target": "Alvo",
|
"Open link in...": "Abrir link em...",
|
||||||
|
"Current window": "Janela atual",
|
||||||
"None": "Nenhum",
|
"None": "Nenhum",
|
||||||
"New window": "Nova janela",
|
"New window": "Nova janela",
|
||||||
"Remove link": "Remover link",
|
"Remove link": "Remover link",
|
||||||
"Anchors": "\u00c2ncoras",
|
"Anchors": "\u00c2ncoras",
|
||||||
"Link": "Link",
|
"Link...": "Link...",
|
||||||
"Paste or type a link": "Cole ou digite um Link",
|
"Paste or type a link": "Cole ou digite um Link",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?",
|
||||||
|
@ -165,27 +166,28 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||||
"Insert\/edit media": "Inserir\/editar imagem",
|
"Insert\/edit media": "Inserir\/editar imagem",
|
||||||
"Alternative source": "Fonte alternativa",
|
"Alternative source": "Fonte alternativa",
|
||||||
"Poster": "Autor",
|
"Alternative source URL": "Endere\u00e7o URL alternativo",
|
||||||
|
"Media poster (Image URL)": "Post de m\u00eddia (URL da Imagem)",
|
||||||
"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:",
|
"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:",
|
||||||
"Embed": "Incorporar",
|
"Embed": "Incorporar",
|
||||||
"Media": "imagem",
|
"Media...": "M\u00eddia...",
|
||||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel",
|
"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel",
|
||||||
"Page break": "Quebra de p\u00e1gina",
|
"Page break": "Quebra de p\u00e1gina",
|
||||||
"Paste as text": "Colar como texto",
|
"Paste as text": "Colar como texto",
|
||||||
"Preview": "Pr\u00e9-visualizar",
|
"Preview": "Pr\u00e9-visualizar",
|
||||||
"Print": "Imprimir",
|
"Print...": "Imprimir...",
|
||||||
"Save": "Salvar",
|
"Save": "Salvar",
|
||||||
"Find": "Localizar",
|
"Find": "Localizar",
|
||||||
"Replace with": "Substituir por",
|
"Replace with": "Substituir por",
|
||||||
"Replace": "Substituir",
|
"Replace": "Substituir",
|
||||||
"Replace all": "Substituir tudo",
|
"Replace all": "Substituir tudo",
|
||||||
"Prev": "Anterior",
|
"Previous": "Anterior",
|
||||||
"Next": "Pr\u00f3ximo",
|
"Next": "Pr\u00f3ximo",
|
||||||
"Find and replace": "Localizar e substituir",
|
"Find and replace...": "Encontrar e substituir...",
|
||||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado",
|
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado",
|
||||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
||||||
"Whole words": "Palavras inteiras",
|
"Find whole words only": "Encontrar somente palavras inteiras",
|
||||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
"Spell check": "Verifica\u00e7\u00e3o ortogr\u00e1fica",
|
||||||
"Ignore": "Ignorar",
|
"Ignore": "Ignorar",
|
||||||
"Ignore all": "Ignorar tudo",
|
"Ignore all": "Ignorar tudo",
|
||||||
"Finish": "Finalizar",
|
"Finish": "Finalizar",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Height": "Altura",
|
"Height": "Altura",
|
||||||
"Cell spacing": "Espa\u00e7amento da c\u00e9lula",
|
"Cell spacing": "Espa\u00e7amento da c\u00e9lula",
|
||||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
||||||
"Caption": "Legenda",
|
"Show caption": "Mostrar descri\u00e7\u00e3o",
|
||||||
"Left": "Esquerdo",
|
"Left": "Esquerdo",
|
||||||
"Center": "Centro",
|
"Center": "Centro",
|
||||||
"Right": "Direita",
|
"Right": "Direita",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Body": "Corpo",
|
"Body": "Corpo",
|
||||||
"Footer": "Rodap\u00e9",
|
"Footer": "Rodap\u00e9",
|
||||||
"Border color": "Cor da borda",
|
"Border color": "Cor da borda",
|
||||||
"Insert template": "Inserir modelo",
|
"Insert template...": "Inserir modelo...",
|
||||||
"Templates": "Modelos",
|
"Templates": "Modelos",
|
||||||
"Template": "Modelo",
|
"Template": "Modelo",
|
||||||
"Text color": "Cor do texto",
|
"Text color": "Cor do texto",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Custom...": "Personalizado...",
|
"Custom...": "Personalizado...",
|
||||||
"Custom color": "Cor personalizada",
|
"Custom color": "Cor personalizada",
|
||||||
"No color": "Nenhuma cor",
|
"No color": "Nenhuma cor",
|
||||||
|
"Remove color": "Remover cor",
|
||||||
"Table of Contents": "\u00edndice de Conte\u00fado",
|
"Table of Contents": "\u00edndice de Conte\u00fado",
|
||||||
"Show blocks": "Mostrar blocos",
|
"Show blocks": "Mostrar blocos",
|
||||||
"Show invisible characters": "Exibir caracteres invis\u00edveis",
|
"Show invisible characters": "Exibir caracteres invis\u00edveis",
|
||||||
|
"Word count": "Contador de palavras",
|
||||||
"Words: {0}": "Palavras: {0}",
|
"Words: {0}": "Palavras: {0}",
|
||||||
"{0} words": "{0} palavras",
|
"{0} words": "{0} palavras",
|
||||||
"File": "Arquivo",
|
"File": "Arquivo",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('pt_BR',{
|
||||||
"Table": "Tabela",
|
"Table": "Tabela",
|
||||||
"Tools": "Ferramentas",
|
"Tools": "Ferramentas",
|
||||||
"Powered by {0}": "Distribu\u00eddo por {0}",
|
"Powered by {0}": "Distribu\u00eddo por {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda"
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda",
|
||||||
|
"Image title": "T\u00edtulo da imagem",
|
||||||
|
"Border width": "Espessura da borda",
|
||||||
|
"Border style": "Estilo da borda",
|
||||||
|
"Error": "Erro",
|
||||||
|
"Warn": "Aviso",
|
||||||
|
"Valid": "V\u00e1lido",
|
||||||
|
"To open the popup, press Shift+Enter": "Para abrir a popup, aperte Shit+Enter",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Campo Rich Text. Aperte ALT-0 para ajuda.",
|
||||||
|
"System Font": "Fonte do sistema",
|
||||||
|
"Failed to upload image: {0}": "Falha no upload da imagem: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Falha ao carregar plugin: {0} da url {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Falha ao carregar url do plugin: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Falha ao inicializar plugin: {0}",
|
||||||
|
"example": "exemplo",
|
||||||
|
"Search": "Buscar",
|
||||||
|
"All": "Tudo",
|
||||||
|
"Currency": "Moeda",
|
||||||
|
"Text": "Texto",
|
||||||
|
"Quotations": "Cita\u00e7\u00f5es",
|
||||||
|
"Mathematical": "Matem\u00e1tico",
|
||||||
|
"Extended Latin": "Latin estendido",
|
||||||
|
"Symbols": "S\u00edmbolos",
|
||||||
|
"Arrows": "Setas",
|
||||||
|
"User Defined": "Definido pelo Usu\u00e1rio",
|
||||||
|
"dollar sign": "s\u00edmbolo de dollar",
|
||||||
|
"currency sign": "s\u00edmbola de moeda",
|
||||||
|
"euro-currency sign": "s\u00edmbolo de euro",
|
||||||
|
"colon sign": "s\u00edmbolo de cor",
|
||||||
|
"cruzeiro sign": "s\u00edmbolo de cruzeiro",
|
||||||
|
"french franc sign": "s\u00edmbolo de franco franc\u00eas",
|
||||||
|
"lira sign": "s\u00edmbolo de lira",
|
||||||
|
"mill sign": "s\u00edmbolo do mill",
|
||||||
|
"naira sign": "s\u00edmbolo da naira",
|
||||||
|
"peseta sign": "s\u00edmbolo da peseta",
|
||||||
|
"rupee sign": "s\u00edmbolo da r\u00fapia",
|
||||||
|
"won sign": "s\u00edmbolo do won",
|
||||||
|
"new sheqel sign": "s\u00edmbolo do novo sheqel",
|
||||||
|
"dong sign": "s\u00edmbolo do dong",
|
||||||
|
"kip sign": "s\u00edmbolo do kip",
|
||||||
|
"tugrik sign": "s\u00edmbolo do tugrik",
|
||||||
|
"drachma sign": "s\u00edmbolo do drachma",
|
||||||
|
"german penny symbol": "s\u00edmbolo de centavo alem\u00e3o",
|
||||||
|
"peso sign": "s\u00edmbolo do peso",
|
||||||
|
"guarani sign": "s\u00edmbolo do guarani",
|
||||||
|
"austral sign": "s\u00edmbolo do austral",
|
||||||
|
"hryvnia sign": "s\u00edmbolo do hryvnia",
|
||||||
|
"cedi sign": "s\u00edmbolo do cedi",
|
||||||
|
"livre tournois sign": "s\u00edmbolo do livre tournois",
|
||||||
|
"spesmilo sign": "s\u00edmbolo do spesmilo",
|
||||||
|
"tenge sign": "s\u00edmbolo do tenge",
|
||||||
|
"indian rupee sign": "s\u00edmbolo de r\u00fapia indiana",
|
||||||
|
"turkish lira sign": "s\u00edmbolo de lira turca",
|
||||||
|
"nordic mark sign": "s\u00edmbolo do marco n\u00f3rdico",
|
||||||
|
"manat sign": "s\u00edmbolo do manat",
|
||||||
|
"ruble sign": "s\u00edmbolo do rublo",
|
||||||
|
"yen character": "caractere do yen",
|
||||||
|
"yuan character": "caractere do yuan",
|
||||||
|
"yuan character, in hong kong and taiwan": "caractere do yuan, em Hong Kong e Taiwan",
|
||||||
|
"yen\/yuan character variant one": "varia\u00e7\u00e3o do caractere de yen\/yuan",
|
||||||
|
"Loading emoticons...": "Carregando emojis...",
|
||||||
|
"Could not load emoticons": "N\u00e3o foi poss\u00edvel carregar emojis",
|
||||||
|
"People": "Pessoas",
|
||||||
|
"Animals and Nature": "Animais e Natureza",
|
||||||
|
"Food and Drink": "Comida e Bebida",
|
||||||
|
"Activity": "Atividade",
|
||||||
|
"Travel and Places": "Viagem e Lugares",
|
||||||
|
"Objects": "Objetos",
|
||||||
|
"Flags": "Bandeiras",
|
||||||
|
"Characters": "Caracteres",
|
||||||
|
"Characters (no spaces)": "Caracteres (sem espa\u00e7os)",
|
||||||
|
"Error: Form submit field collision.": "Erro: colis\u00e3o de bot\u00e3o de envio do formul\u00e1rio.",
|
||||||
|
"Error: No form element found.": "Erro: Elemento de formul\u00e1rio n\u00e3o encontrado.",
|
||||||
|
"Update": "Atualizar",
|
||||||
|
"Color swatch": "Palheta de cores",
|
||||||
|
"Turquoise": "Turquesa",
|
||||||
|
"Green": "Verde",
|
||||||
|
"Blue": "Azul",
|
||||||
|
"Purple": "Roxo",
|
||||||
|
"Navy Blue": "Azul marinho",
|
||||||
|
"Dark Turquoise": "Turquesa escuro",
|
||||||
|
"Dark Green": "Verde escuro",
|
||||||
|
"Medium Blue": "Azul m\u00e9dio",
|
||||||
|
"Medium Purple": "Roxo m\u00e9dio",
|
||||||
|
"Midnight Blue": "Azul meia-noite",
|
||||||
|
"Yellow": "Amarelo",
|
||||||
|
"Orange": "Laranja",
|
||||||
|
"Red": "Vermelho",
|
||||||
|
"Light Gray": "Cinza claro",
|
||||||
|
"Gray": "Cinza",
|
||||||
|
"Dark Yellow": "Amarelo escuro",
|
||||||
|
"Dark Orange": "Laranja escuro",
|
||||||
|
"Dark Red": "Vermelho escuro",
|
||||||
|
"Medium Gray": "Cinza m\u00e9dio",
|
||||||
|
"Dark Gray": "Cinza escuro",
|
||||||
|
"Black": "Preto",
|
||||||
|
"White": "Branco",
|
||||||
|
"Switch to or from fullscreen mode": "Abrir ou fechar modo de tela cheia",
|
||||||
|
"Open help dialog": "Abrir janela de ajuda",
|
||||||
|
"history": "hist\u00f3rico",
|
||||||
|
"styles": "estilos",
|
||||||
|
"formatting": "formata\u00e7\u00e3o",
|
||||||
|
"alignment": "alinhamento",
|
||||||
|
"indentation": "identa\u00e7\u00e3o",
|
||||||
|
"permanent pen": "caneta permanente",
|
||||||
|
"comments": "coment\u00e1rios",
|
||||||
|
"Anchor": "\u00c2ncora",
|
||||||
|
"Special character": "Caracteres especiais",
|
||||||
|
"Code sample": "Exemplo de c\u00f3digo",
|
||||||
|
"Color": "Cor",
|
||||||
|
"Emoticons": "Emoticons",
|
||||||
|
"Document properties": "Propriedades do documento",
|
||||||
|
"Image": "Imagem",
|
||||||
|
"Insert link": "Inserir link",
|
||||||
|
"Target": "Alvo",
|
||||||
|
"Link": "Link",
|
||||||
|
"Poster": "Autor",
|
||||||
|
"Media": "imagem",
|
||||||
|
"Print": "Imprimir",
|
||||||
|
"Prev": "Anterior",
|
||||||
|
"Find and replace": "Localizar e substituir",
|
||||||
|
"Whole words": "Palavras inteiras",
|
||||||
|
"Spellcheck": "Corretor ortogr\u00e1fico",
|
||||||
|
"Caption": "Legenda",
|
||||||
|
"Insert template": "Inserir modelo"
|
||||||
});
|
});
|
|
@ -1,261 +0,0 @@
|
||||||
tinymce.addI18n('pt_PT',{
|
|
||||||
"Redo": "Refazer",
|
|
||||||
"Undo": "Desfazer",
|
|
||||||
"Cut": "Cortar",
|
|
||||||
"Copy": "Copiar",
|
|
||||||
"Paste": "Colar",
|
|
||||||
"Select all": "Selecionar tudo",
|
|
||||||
"New document": "Novo documento",
|
|
||||||
"Ok": "Ok",
|
|
||||||
"Cancel": "Cancelar",
|
|
||||||
"Visual aids": "Ajuda visual",
|
|
||||||
"Bold": "Negrito",
|
|
||||||
"Italic": "It\u00e1lico",
|
|
||||||
"Underline": "Sublinhado",
|
|
||||||
"Strikethrough": "Rasurado",
|
|
||||||
"Superscript": "Superior \u00e0 linha",
|
|
||||||
"Subscript": "Inferior \u00e0 linha",
|
|
||||||
"Clear formatting": "Limpar formata\u00e7\u00e3o",
|
|
||||||
"Align left": "Alinhar \u00e0 esquerda",
|
|
||||||
"Align center": "Alinhar ao centro",
|
|
||||||
"Align right": "Alinhar \u00e0 direita",
|
|
||||||
"Justify": "Justificado",
|
|
||||||
"Bullet list": "Lista com marcadores",
|
|
||||||
"Numbered list": "Lista numerada",
|
|
||||||
"Decrease indent": "Diminuir avan\u00e7o",
|
|
||||||
"Increase indent": "Aumentar avan\u00e7o",
|
|
||||||
"Close": "Fechar",
|
|
||||||
"Formats": "Formatos",
|
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X\/C\/V do seu teclado.",
|
|
||||||
"Headers": "Cabe\u00e7alhos",
|
|
||||||
"Header 1": "Cabe\u00e7alho 1",
|
|
||||||
"Header 2": "Cabe\u00e7alho 2",
|
|
||||||
"Header 3": "Cabe\u00e7alho 3",
|
|
||||||
"Header 4": "Cabe\u00e7alho 4",
|
|
||||||
"Header 5": "Cabe\u00e7alho 5",
|
|
||||||
"Header 6": "Cabe\u00e7alho 6",
|
|
||||||
"Headings": "T\u00edtulos",
|
|
||||||
"Heading 1": "T\u00edtulo 1",
|
|
||||||
"Heading 2": "T\u00edtulo 2",
|
|
||||||
"Heading 3": "T\u00edtulo 3",
|
|
||||||
"Heading 4": "T\u00edtulo 4",
|
|
||||||
"Heading 5": "T\u00edtulo 5",
|
|
||||||
"Heading 6": "T\u00edtulo 6",
|
|
||||||
"Preformatted": "Pr\u00e9-formatado",
|
|
||||||
"Div": "Div",
|
|
||||||
"Pre": "Pre",
|
|
||||||
"Code": "C\u00f3digo",
|
|
||||||
"Paragraph": "Par\u00e1grafo",
|
|
||||||
"Blockquote": "Cita\u00e7\u00e3o em bloco",
|
|
||||||
"Inline": "Na linha",
|
|
||||||
"Blocks": "Blocos",
|
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 em modo de texto simples. O conte\u00fado ser\u00e1 colado como texto simples at\u00e9 desativar esta op\u00e7\u00e3o.",
|
|
||||||
"Font Family": "Fonte",
|
|
||||||
"Font Sizes": "Tamanhos",
|
|
||||||
"Class": "Classe",
|
|
||||||
"Browse for an image": "Procurar por uma imagem",
|
|
||||||
"OR": "Ou",
|
|
||||||
"Drop an image here": "Solte uma imagem aqui",
|
|
||||||
"Upload": "Carregar",
|
|
||||||
"Block": "Bloco",
|
|
||||||
"Align": "Alinhar",
|
|
||||||
"Default": "Padr\u00e3o",
|
|
||||||
"Circle": "C\u00edrculo",
|
|
||||||
"Disc": "Disco",
|
|
||||||
"Square": "Quadrado",
|
|
||||||
"Lower Alpha": "a. b. c. ...",
|
|
||||||
"Lower Greek": "\\u03b1. \\u03b2. \\u03b3. ...",
|
|
||||||
"Lower Roman": "i. ii. iii. ...",
|
|
||||||
"Upper Alpha": "A. B. C. ...",
|
|
||||||
"Upper Roman": "I. II. III. ...",
|
|
||||||
"Anchor": "\u00c2ncora",
|
|
||||||
"Name": "Nome",
|
|
||||||
"Id": "ID",
|
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, pontos, dois pontos, tra\u00e7os ou sobtra\u00e7os.",
|
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Existem altera\u00e7\u00f5es que ainda n\u00e3o foram guardadas. Tem a certeza que pretende sair?",
|
|
||||||
"Restore last draft": "Restaurar o \u00faltimo rascunho",
|
|
||||||
"Special character": "Car\u00e1cter especial",
|
|
||||||
"Source code": "C\u00f3digo fonte",
|
|
||||||
"Insert\/Edit code sample": "Inserir\/editar amostra de c\u00f3digo",
|
|
||||||
"Language": "Idioma",
|
|
||||||
"Code sample": "Amostra de c\u00f3digo",
|
|
||||||
"Color": "Cor",
|
|
||||||
"R": "R",
|
|
||||||
"G": "G",
|
|
||||||
"B": "B",
|
|
||||||
"Left to right": "Da esquerda para a direita",
|
|
||||||
"Right to left": "Da direita para a esquerda",
|
|
||||||
"Emoticons": "Emo\u00e7\u00f5es",
|
|
||||||
"Document properties": "Propriedades do documento",
|
|
||||||
"Title": "T\u00edtulo",
|
|
||||||
"Keywords": "Palavras-chave",
|
|
||||||
"Description": "Descri\u00e7\u00e3o",
|
|
||||||
"Robots": "Rob\u00f4s",
|
|
||||||
"Author": "Autor",
|
|
||||||
"Encoding": "Codifica\u00e7\u00e3o",
|
|
||||||
"Fullscreen": "Ecr\u00e3 completo",
|
|
||||||
"Action": "A\u00e7\u00e3o",
|
|
||||||
"Shortcut": "Atalho",
|
|
||||||
"Help": "Ajuda",
|
|
||||||
"Address": "Endere\u00e7o",
|
|
||||||
"Focus to menubar": "Foco na barra de menu",
|
|
||||||
"Focus to toolbar": "Foco na barra de ferramentas",
|
|
||||||
"Focus to element path": "Foco no caminho do elemento",
|
|
||||||
"Focus to contextual toolbar": "Foco na barra de contexto",
|
|
||||||
"Insert link (if link plugin activated)": "Inserir hiperliga\u00e7\u00e3o (se o plugin de liga\u00e7\u00f5es estiver ativado)",
|
|
||||||
"Save (if save plugin activated)": "Guardar (se o plugin de guardar estiver ativado)",
|
|
||||||
"Find (if searchreplace plugin activated)": "Pesquisar (se o plugin pesquisar e substituir estiver ativado)",
|
|
||||||
"Plugins installed ({0}):": "Plugins instalados ({0}):",
|
|
||||||
"Premium plugins:": "Plugins comerciais:",
|
|
||||||
"Learn more...": "Saiba mais...",
|
|
||||||
"You are using {0}": "Est\u00e1 a usar {0}",
|
|
||||||
"Plugins": "Plugins",
|
|
||||||
"Handy Shortcuts": "Atalhos \u00fateis",
|
|
||||||
"Horizontal line": "Linha horizontal",
|
|
||||||
"Insert\/edit image": "Inserir\/editar imagem",
|
|
||||||
"Image description": "Descri\u00e7\u00e3o da imagem",
|
|
||||||
"Source": "Localiza\u00e7\u00e3o",
|
|
||||||
"Dimensions": "Dimens\u00f5es",
|
|
||||||
"Constrain proportions": "Manter propor\u00e7\u00f5es",
|
|
||||||
"General": "Geral",
|
|
||||||
"Advanced": "Avan\u00e7ado",
|
|
||||||
"Style": "Estilo",
|
|
||||||
"Vertical space": "Espa\u00e7amento vertical",
|
|
||||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
|
||||||
"Border": "Contorno",
|
|
||||||
"Insert image": "Inserir imagem",
|
|
||||||
"Image": "Imagem",
|
|
||||||
"Image list": "Lista de imagens",
|
|
||||||
"Rotate counterclockwise": "Rota\u00e7\u00e3o anti-hor\u00e1ria",
|
|
||||||
"Rotate clockwise": "Rota\u00e7\u00e3o hor\u00e1ria",
|
|
||||||
"Flip vertically": "Inverter verticalmente",
|
|
||||||
"Flip horizontally": "Inverter horizontalmente",
|
|
||||||
"Edit image": "Editar imagem",
|
|
||||||
"Image options": "Op\u00e7\u00f5es de imagem",
|
|
||||||
"Zoom in": "Mais zoom",
|
|
||||||
"Zoom out": "Menos zoom",
|
|
||||||
"Crop": "Recortar",
|
|
||||||
"Resize": "Redimensionar",
|
|
||||||
"Orientation": "Orienta\u00e7\u00e3o",
|
|
||||||
"Brightness": "Brilho",
|
|
||||||
"Sharpen": "Mais nitidez",
|
|
||||||
"Contrast": "Contraste",
|
|
||||||
"Color levels": "N\u00edveis de cor",
|
|
||||||
"Gamma": "Gama",
|
|
||||||
"Invert": "Inverter",
|
|
||||||
"Apply": "Aplicar",
|
|
||||||
"Back": "Voltar",
|
|
||||||
"Insert date\/time": "Inserir data\/hora",
|
|
||||||
"Date\/time": "Data\/hora",
|
|
||||||
"Insert link": "Inserir liga\u00e7\u00e3o",
|
|
||||||
"Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o",
|
|
||||||
"Text to display": "Texto a exibir",
|
|
||||||
"Url": "URL",
|
|
||||||
"Target": "Alvo",
|
|
||||||
"None": "Nenhum",
|
|
||||||
"New window": "Nova janela",
|
|
||||||
"Remove link": "Remover liga\u00e7\u00e3o",
|
|
||||||
"Anchors": "\u00c2ncora",
|
|
||||||
"Link": "Liga\u00e7\u00e3o",
|
|
||||||
"Paste or type a link": "Copiar ou escrever uma hiperliga\u00e7\u00e3o",
|
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que indicou parece ser um endere\u00e7o de email. Quer adicionar o prefixo mailto: tal como necess\u00e1rio?",
|
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que indicou parece ser um endere\u00e7o web. Quer adicionar o prefixo http:\/\/ tal como necess\u00e1rio?",
|
|
||||||
"Link list": "Lista de liga\u00e7\u00f5es",
|
|
||||||
"Insert video": "Inserir v\u00eddeo",
|
|
||||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
|
||||||
"Insert\/edit media": "Inserir\/editar media",
|
|
||||||
"Alternative source": "Localiza\u00e7\u00e3o alternativa",
|
|
||||||
"Poster": "Autor",
|
|
||||||
"Paste your embed code below:": "Colar c\u00f3digo para embeber:",
|
|
||||||
"Embed": "Embeber",
|
|
||||||
"Media": "Media",
|
|
||||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o quebr\u00e1vel",
|
|
||||||
"Page break": "Quebra de p\u00e1gina",
|
|
||||||
"Paste as text": "Colar como texto",
|
|
||||||
"Preview": "Pr\u00e9-visualizar",
|
|
||||||
"Print": "Imprimir",
|
|
||||||
"Save": "Guardar",
|
|
||||||
"Find": "Pesquisar",
|
|
||||||
"Replace with": "Substituir por",
|
|
||||||
"Replace": "Substituir",
|
|
||||||
"Replace all": "Substituir tudo",
|
|
||||||
"Prev": "Anterior",
|
|
||||||
"Next": "Pr\u00f3ximo",
|
|
||||||
"Find and replace": "Pesquisar e substituir",
|
|
||||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel localizar o termo especificado.",
|
|
||||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
|
||||||
"Whole words": "Palavras completas",
|
|
||||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
|
||||||
"Ignore": "Ignorar",
|
|
||||||
"Ignore all": "Ignorar tudo",
|
|
||||||
"Finish": "Concluir",
|
|
||||||
"Add to Dictionary": "Adicionar ao dicion\u00e1rio",
|
|
||||||
"Insert table": "Inserir tabela",
|
|
||||||
"Table properties": "Propriedades da tabela",
|
|
||||||
"Delete table": "Eliminar tabela",
|
|
||||||
"Cell": "C\u00e9lula",
|
|
||||||
"Row": "Linha",
|
|
||||||
"Column": "Coluna",
|
|
||||||
"Cell properties": "Propriedades da c\u00e9lula",
|
|
||||||
"Merge cells": "Unir c\u00e9lulas",
|
|
||||||
"Split cell": "Dividir c\u00e9lula",
|
|
||||||
"Insert row before": "Inserir linha antes",
|
|
||||||
"Insert row after": "Inserir linha depois",
|
|
||||||
"Delete row": "Eliminar linha",
|
|
||||||
"Row properties": "Propriedades da linha",
|
|
||||||
"Cut row": "Cortar linha",
|
|
||||||
"Copy row": "Copiar linha",
|
|
||||||
"Paste row before": "Colar linha antes",
|
|
||||||
"Paste row after": "Colar linha depois",
|
|
||||||
"Insert column before": "Inserir coluna antes",
|
|
||||||
"Insert column after": "Inserir coluna depois",
|
|
||||||
"Delete column": "Eliminar coluna",
|
|
||||||
"Cols": "Colunas",
|
|
||||||
"Rows": "Linhas",
|
|
||||||
"Width": "Largura",
|
|
||||||
"Height": "Altura",
|
|
||||||
"Cell spacing": "Espa\u00e7amento entre c\u00e9lulas",
|
|
||||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
|
||||||
"Caption": "Legenda",
|
|
||||||
"Left": "Esquerda",
|
|
||||||
"Center": "Centro",
|
|
||||||
"Right": "Direita",
|
|
||||||
"Cell type": "Tipo de c\u00e9lula",
|
|
||||||
"Scope": "Escopo",
|
|
||||||
"Alignment": "Alinhamento",
|
|
||||||
"H Align": "Alinhamento H",
|
|
||||||
"V Align": "Alinhamento V",
|
|
||||||
"Top": "Superior",
|
|
||||||
"Middle": "Meio",
|
|
||||||
"Bottom": "Inferior",
|
|
||||||
"Header cell": "C\u00e9lula de cabe\u00e7alho",
|
|
||||||
"Row group": "Agrupar linha",
|
|
||||||
"Column group": "Agrupar coluna",
|
|
||||||
"Row type": "Tipo de linha",
|
|
||||||
"Header": "Cabe\u00e7alho",
|
|
||||||
"Body": "Corpo",
|
|
||||||
"Footer": "Rodap\u00e9",
|
|
||||||
"Border color": "Cor de contorno",
|
|
||||||
"Insert template": "Inserir modelo",
|
|
||||||
"Templates": "Modelos",
|
|
||||||
"Template": "Tema",
|
|
||||||
"Text color": "Cor do texto",
|
|
||||||
"Background color": "Cor de fundo",
|
|
||||||
"Custom...": "Personalizada...",
|
|
||||||
"Custom color": "Cor personalizada",
|
|
||||||
"No color": "Sem cor",
|
|
||||||
"Table of Contents": "\u00cdndice",
|
|
||||||
"Show blocks": "Mostrar blocos",
|
|
||||||
"Show invisible characters": "Mostrar caracteres invis\u00edveis",
|
|
||||||
"Words: {0}": "Palavras: {0}",
|
|
||||||
"{0} words": "{0} palavras",
|
|
||||||
"File": "Ficheiro",
|
|
||||||
"Edit": "Editar",
|
|
||||||
"Insert": "Inserir",
|
|
||||||
"View": "Ver",
|
|
||||||
"Format": "Formatar",
|
|
||||||
"Table": "Tabela",
|
|
||||||
"Tools": "Ferramentas",
|
|
||||||
"Powered by {0}": "Criado em {0}",
|
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Caixa de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda"
|
|
||||||
});
|
|
|
@ -0,0 +1,370 @@
|
||||||
|
tinymce.addI18n('ro',{
|
||||||
|
"Redo": "Repetare",
|
||||||
|
"Undo": "Anulare",
|
||||||
|
"Cut": "Decupare",
|
||||||
|
"Copy": "Copiere",
|
||||||
|
"Paste": "Lipire",
|
||||||
|
"Select all": "Selecteaz\u0103 tot",
|
||||||
|
"New document": "Document nou",
|
||||||
|
"Ok": "Ok",
|
||||||
|
"Cancel": "Revocare",
|
||||||
|
"Visual aids": "Ajutoare vizuale",
|
||||||
|
"Bold": "Aldin",
|
||||||
|
"Italic": "Cursiv",
|
||||||
|
"Underline": "Subliniat",
|
||||||
|
"Strikethrough": "T\u0103iat",
|
||||||
|
"Superscript": "Exponent",
|
||||||
|
"Subscript": "Indice",
|
||||||
|
"Clear formatting": "\u00cendep\u0103rtare formatare",
|
||||||
|
"Align left": "Aliniere la st\u00e2nga",
|
||||||
|
"Align center": "Aliniere la centru",
|
||||||
|
"Align right": "Aliniere la dreapta",
|
||||||
|
"Justify": "Aliniere st\u00e2nga-dreapta",
|
||||||
|
"Bullet list": "List\u0103 marcatori",
|
||||||
|
"Numbered list": "List\u0103 numerotat\u0103",
|
||||||
|
"Decrease indent": "Mic\u0219orare indent",
|
||||||
|
"Increase indent": "M\u0103rire indent",
|
||||||
|
"Close": "\u00cenchide",
|
||||||
|
"Formats": "Formate",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser-ul dumneavoastr\u0103 nu are acces direct la clipboard. V\u0103 rug\u0103m s\u0103 folosi\u021bi \u00een schimb scurt\u0103turile de tastatur\u0103 Ctrl+X\/C\/V.",
|
||||||
|
"Headers": "Antete",
|
||||||
|
"Header 1": "Antet 1",
|
||||||
|
"Header 2": "Antet 2",
|
||||||
|
"Header 3": "Antet 3",
|
||||||
|
"Header 4": "Antet 4",
|
||||||
|
"Header 5": "Antet 5",
|
||||||
|
"Header 6": "Antet 6",
|
||||||
|
"Headings": "Rubrici",
|
||||||
|
"Heading 1": "Rubrica 1",
|
||||||
|
"Heading 2": "Rubrica 2",
|
||||||
|
"Heading 3": "Rubrica 3",
|
||||||
|
"Heading 4": "Rubrica 4",
|
||||||
|
"Heading 5": "Rubrica 5",
|
||||||
|
"Heading 6": "Rubrica 6",
|
||||||
|
"Preformatted": "Preformatat",
|
||||||
|
"Div": "Div",
|
||||||
|
"Pre": "Pre",
|
||||||
|
"Code": "Code",
|
||||||
|
"Paragraph": "Paragraf",
|
||||||
|
"Blockquote": "Citat",
|
||||||
|
"Inline": "\u00cen linie",
|
||||||
|
"Blocks": "Sec\u021biuni",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lipirea este \u00een mod text simplu. Con\u021binutul va fi lipit ca \u0219i text simplu p\u00e2n\u0103 dezactiva\u021bi aceast\u0103 op\u021biune.",
|
||||||
|
"Fonts": "Fonturi",
|
||||||
|
"Font Sizes": "Dimensiuni font",
|
||||||
|
"Class": "Clas\u0103",
|
||||||
|
"Browse for an image": "C\u0103uta\u021bi o imagine",
|
||||||
|
"OR": "SAU",
|
||||||
|
"Drop an image here": "Arunca\u021bi o imagine aici",
|
||||||
|
"Upload": "\u00cenc\u0103rcare",
|
||||||
|
"Block": "Sec\u021biune",
|
||||||
|
"Align": "Aliniere",
|
||||||
|
"Default": "Implicit",
|
||||||
|
"Circle": "Cerc",
|
||||||
|
"Disc": "Disc",
|
||||||
|
"Square": "P\u0103trat",
|
||||||
|
"Lower Alpha": "Alfanumeric mic",
|
||||||
|
"Lower Greek": "Grecesc mic",
|
||||||
|
"Lower Roman": "Roman mic",
|
||||||
|
"Upper Alpha": "Alfanumeric mare",
|
||||||
|
"Upper Roman": "Roman mare",
|
||||||
|
"Anchor...": "Ancor\u0103\u2026",
|
||||||
|
"Name": "Nume",
|
||||||
|
"Id": "Id",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id-ul ar trebui s\u0103 \u00eenceap\u0103 cu o liter\u0103, urmat\u0103 doar de litere, numere, cratime, puncte, virgule sau sublinieri.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate. Dori\u021bi s\u0103 naviga\u021bi \u00een alt\u0103 parte?",
|
||||||
|
"Restore last draft": "Restabili\u021bi ultima ciorn\u0103",
|
||||||
|
"Special characters...": "Caractere speciale\u2026",
|
||||||
|
"Source code": "Cod surs\u0103",
|
||||||
|
"Insert\/Edit code sample": "Inserare\/Editare mostr\u0103 cod",
|
||||||
|
"Language": "Limb\u0103",
|
||||||
|
"Code sample...": "Mostr\u0103 cod\u2026",
|
||||||
|
"Color Picker": "Selector culoare",
|
||||||
|
"R": "R",
|
||||||
|
"G": "G",
|
||||||
|
"B": "B",
|
||||||
|
"Left to right": "De la st\u00e2nga la dreapta",
|
||||||
|
"Right to left": "De la dreapta la st\u00e2nga",
|
||||||
|
"Emoticons...": "Emoticoane\u2026",
|
||||||
|
"Metadata and Document Properties": "Meta date \u0219i Propriet\u0103\u021bi Document",
|
||||||
|
"Title": "Titlu",
|
||||||
|
"Keywords": "Cuvinte cheie",
|
||||||
|
"Description": "Descriere",
|
||||||
|
"Robots": "Robo\u021bi",
|
||||||
|
"Author": "Autor",
|
||||||
|
"Encoding": "Codare",
|
||||||
|
"Fullscreen": "Ecran \u00eentreg",
|
||||||
|
"Action": "Ac\u021biune",
|
||||||
|
"Shortcut": "Scurt\u0103tur\u0103",
|
||||||
|
"Help": "Ajutor",
|
||||||
|
"Address": "Adres\u0103",
|
||||||
|
"Focus to menubar": "Centrare pe bara de meniuri",
|
||||||
|
"Focus to toolbar": "Centrare pe bara de unelte",
|
||||||
|
"Focus to element path": "Centrare pe calea elementului",
|
||||||
|
"Focus to contextual toolbar": "Centrare pe bara de unelte contextual\u0103",
|
||||||
|
"Insert link (if link plugin activated)": "Inserare link (dac\u0103 modulul de link-uri este activat)",
|
||||||
|
"Save (if save plugin activated)": "Salvare (dac\u0103 modulul de salvare e activat) ",
|
||||||
|
"Find (if searchreplace plugin activated)": "C\u0103utare (dac\u0103 modulul de c\u0103utare este activat)",
|
||||||
|
"Plugins installed ({0}):": "Module instalate: ({0}):",
|
||||||
|
"Premium plugins:": "Module premium:",
|
||||||
|
"Learn more...": "Afla\u021bi mai multe\u2026",
|
||||||
|
"You are using {0}": "Folosi\u021bi {0}",
|
||||||
|
"Plugins": "Module",
|
||||||
|
"Handy Shortcuts": "Scurt\u0103turi folositoare",
|
||||||
|
"Horizontal line": "Linie orizontal\u0103",
|
||||||
|
"Insert\/edit image": "Inserare\/editare imagine",
|
||||||
|
"Image description": "Descriere imagine",
|
||||||
|
"Source": "Surs\u0103",
|
||||||
|
"Dimensions": "Dimensiuni",
|
||||||
|
"Constrain proportions": "Constr\u00e2nge propor\u021biile",
|
||||||
|
"General": "General",
|
||||||
|
"Advanced": "Avansat",
|
||||||
|
"Style": "Stil",
|
||||||
|
"Vertical space": "Spa\u021biu vertical",
|
||||||
|
"Horizontal space": "Spa\u021biu orizontal",
|
||||||
|
"Border": "Chenar",
|
||||||
|
"Insert image": "Inserare imagine",
|
||||||
|
"Image...": "Imagine\u2026",
|
||||||
|
"Image list": "List\u0103 imagini",
|
||||||
|
"Rotate counterclockwise": "Rotire invers sensului acelor de ceasornic",
|
||||||
|
"Rotate clockwise": "Rotire \u00een sensul acelor de ceasornic",
|
||||||
|
"Flip vertically": "Inversare vertical\u0103",
|
||||||
|
"Flip horizontally": "Inversare orizontal\u0103",
|
||||||
|
"Edit image": "Editare imagine",
|
||||||
|
"Image options": "Op\u021biuni imagine",
|
||||||
|
"Zoom in": "Apropiere",
|
||||||
|
"Zoom out": "Dep\u0103rtare",
|
||||||
|
"Crop": "T\u0103iere",
|
||||||
|
"Resize": "Redimensionare",
|
||||||
|
"Orientation": "Orientare",
|
||||||
|
"Brightness": "Luminozitate",
|
||||||
|
"Sharpen": "Accentuare",
|
||||||
|
"Contrast": "Contrast",
|
||||||
|
"Color levels": "Niveluri culori",
|
||||||
|
"Gamma": "Gamma",
|
||||||
|
"Invert": "Inversare",
|
||||||
|
"Apply": "Aplic\u0103",
|
||||||
|
"Back": "\u00cenapoi",
|
||||||
|
"Insert date\/time": "Inserare dat\u0103\/or\u0103",
|
||||||
|
"Date\/time": "Dat\u0103\/or\u0103",
|
||||||
|
"Insert\/Edit Link": "Inserare\/Editare link",
|
||||||
|
"Insert\/edit link": "Inserare\/editare link",
|
||||||
|
"Text to display": "Text de afi\u0219at",
|
||||||
|
"Url": "Url",
|
||||||
|
"Open link in...": "Deschide link \u00een\u2026",
|
||||||
|
"Current window": "Fereastra curent\u0103",
|
||||||
|
"None": "Nedefinit",
|
||||||
|
"New window": "Fereastr\u0103 nou\u0103",
|
||||||
|
"Remove link": "Eliminare link",
|
||||||
|
"Anchors": "Ancore",
|
||||||
|
"Link...": "Link\u2026",
|
||||||
|
"Paste or type a link": "Lipi\u021bi sau scrie\u021bi un link",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare a fi o adres\u0103 de email. Vre\u021bi s\u0103 adaug prefixul mailto: necesar?",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-ul introdus pare a fi un link extern. Vre\u021bi s\u0103 adaug prefixul http:\/\/ necesar?",
|
||||||
|
"Link list": "List\u0103 link-uri",
|
||||||
|
"Insert video": "Inserare video",
|
||||||
|
"Insert\/edit video": "Inserare\/editare video",
|
||||||
|
"Insert\/edit media": "Inserare\/editare media",
|
||||||
|
"Alternative source": "Surs\u0103 alternativ\u0103",
|
||||||
|
"Alternative source URL": "URL surs\u0103 alternativ\u0103",
|
||||||
|
"Media poster (Image URL)": "Poster media (URL imagine)",
|
||||||
|
"Paste your embed code below:": "Lipi\u021bi codul de \u00eencorporare mai jos:",
|
||||||
|
"Embed": "\u00cencorporare",
|
||||||
|
"Media...": "Media\u2026",
|
||||||
|
"Nonbreaking space": "Spa\u021biu f\u0103r\u0103 \u00eentreruperi",
|
||||||
|
"Page break": "\u00centrerupere de pagin\u0103",
|
||||||
|
"Paste as text": "Lipire ca text",
|
||||||
|
"Preview": "Previzualizare",
|
||||||
|
"Print...": "Tip\u0103rire\u2026",
|
||||||
|
"Save": "Salvare",
|
||||||
|
"Find": "C\u0103utare",
|
||||||
|
"Replace with": "\u00cenlocuire cu",
|
||||||
|
"Replace": "\u00cenlocuire",
|
||||||
|
"Replace all": "\u00cenlocuire peste tot",
|
||||||
|
"Previous": "Anterior",
|
||||||
|
"Next": "Urm\u0103tor",
|
||||||
|
"Find and replace...": "C\u0103utare \u0219i \u00eenlocuire\u2026",
|
||||||
|
"Could not find the specified string.": "Nu s-a g\u0103sit niciun rezultat.",
|
||||||
|
"Match case": "Potrivire caractere",
|
||||||
|
"Find whole words only": "G\u0103se\u0219te doar cuvintele \u00eentregi",
|
||||||
|
"Spell check": "Verificare ortografic\u0103",
|
||||||
|
"Ignore": "Ignor\u0103",
|
||||||
|
"Ignore all": "Ignor\u0103 tot",
|
||||||
|
"Finish": "Finalizare",
|
||||||
|
"Add to Dictionary": "Ad\u0103ugare \u00een Dic\u021bionar",
|
||||||
|
"Insert table": "Inserare tabel",
|
||||||
|
"Table properties": "Propriet\u0103\u021bi tabel",
|
||||||
|
"Delete table": "Eliminare tabel",
|
||||||
|
"Cell": "Celul\u0103",
|
||||||
|
"Row": "R\u00e2nd",
|
||||||
|
"Column": "Coloan\u0103",
|
||||||
|
"Cell properties": "Propriet\u0103\u021bi celul\u0103",
|
||||||
|
"Merge cells": "\u00cempreunare celule",
|
||||||
|
"Split cell": "Desp\u0103r\u021bire celul\u0103",
|
||||||
|
"Insert row before": "Inserare r\u00e2nd \u00eenainte",
|
||||||
|
"Insert row after": "Inserare r\u00e2nd dup\u0103",
|
||||||
|
"Delete row": "Eliminare r\u00e2nd",
|
||||||
|
"Row properties": "Propriet\u0103\u021bi r\u00e2nd",
|
||||||
|
"Cut row": "Decupare r\u00e2nd",
|
||||||
|
"Copy row": "Copiere r\u00e2nd",
|
||||||
|
"Paste row before": "Lipire r\u00e2nd \u00eenainte",
|
||||||
|
"Paste row after": "Lipire r\u00e2nd dup\u0103",
|
||||||
|
"Insert column before": "Inserare coloan\u0103 \u00eenainte",
|
||||||
|
"Insert column after": "Inserare coloan\u0103 dup\u0103",
|
||||||
|
"Delete column": "Eliminare coloan\u0103",
|
||||||
|
"Cols": "Coloane",
|
||||||
|
"Rows": "R\u00e2nduri",
|
||||||
|
"Width": "L\u0103\u021bime",
|
||||||
|
"Height": "\u00cen\u0103l\u021bime",
|
||||||
|
"Cell spacing": "Spa\u021biere celul\u0103",
|
||||||
|
"Cell padding": "C\u0103ptu\u0219eal\u0103 celul\u0103",
|
||||||
|
"Show caption": "Arat\u0103 legenda",
|
||||||
|
"Left": "St\u00e2nga",
|
||||||
|
"Center": "Centru",
|
||||||
|
"Right": "Dreapta",
|
||||||
|
"Cell type": "Tip celul\u0103",
|
||||||
|
"Scope": "Arie",
|
||||||
|
"Alignment": "Aliniament",
|
||||||
|
"H Align": "Aliniere O",
|
||||||
|
"V Align": "Aliniere V",
|
||||||
|
"Top": "Sus",
|
||||||
|
"Middle": "Mijloc",
|
||||||
|
"Bottom": "Jos",
|
||||||
|
"Header cell": "Celul\u0103 antet",
|
||||||
|
"Row group": "Grupare r\u00e2nduri",
|
||||||
|
"Column group": "Grupare coloane",
|
||||||
|
"Row type": "Tip r\u00e2nd",
|
||||||
|
"Header": "Antet",
|
||||||
|
"Body": "Corp",
|
||||||
|
"Footer": "Subsol",
|
||||||
|
"Border color": "Culoare chenar",
|
||||||
|
"Insert template...": "Inserare \u0219ablon\u2026",
|
||||||
|
"Templates": "\u0218abloane",
|
||||||
|
"Template": "\u0218ablon",
|
||||||
|
"Text color": "Culoare text",
|
||||||
|
"Background color": "Culoare fundal",
|
||||||
|
"Custom...": "Personalizat\u2026",
|
||||||
|
"Custom color": "Culoare personalizat\u0103",
|
||||||
|
"No color": "F\u0103r\u0103 culoare",
|
||||||
|
"Remove color": "Eliminare culoare",
|
||||||
|
"Table of Contents": "Cuprins",
|
||||||
|
"Show blocks": "Arat\u0103 rubricile",
|
||||||
|
"Show invisible characters": "Arat\u0103 caracterele invizibile",
|
||||||
|
"Word count": "Num\u0103r\u0103toare cuvinte",
|
||||||
|
"Words: {0}": "Cuvinte: {0}",
|
||||||
|
"{0} words": "{0} cuvinte",
|
||||||
|
"File": "Fi\u0219ier",
|
||||||
|
"Edit": "Editare",
|
||||||
|
"Insert": "Inserare",
|
||||||
|
"View": "Vizualizare",
|
||||||
|
"Format": "Formatare",
|
||||||
|
"Table": "Tabel",
|
||||||
|
"Tools": "Unelte",
|
||||||
|
"Powered by {0}": "Cu sprijinul {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-F9 pentru meniu. Ap\u0103sa\u021bi ALT-F10 pentru bara de unelte. Ap\u0103sa\u021bi ALT-0 pentru ajutor.",
|
||||||
|
"Image title": "Titlu imagine",
|
||||||
|
"Border width": "Grosime chenar",
|
||||||
|
"Border style": "Stil chenar",
|
||||||
|
"Error": "Eroare",
|
||||||
|
"Warn": "Aten\u021bionare",
|
||||||
|
"Valid": "Valid",
|
||||||
|
"To open the popup, press Shift+Enter": "Pentru a deschide popup-ul ap\u0103sa\u021bi Shift+Enter",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-0 pentru ajutor.",
|
||||||
|
"System Font": "Font Sistem",
|
||||||
|
"Failed to upload image: {0}": "Nu s-a putut \u00eenc\u0103rca imaginea: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "Nu s-a putut \u00eenc\u0103rca modulul: {0} de la URL-ul {1}",
|
||||||
|
"Failed to load plugin url: {0}": "Nu s-a putut deschide URL-ul modulului: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "Nu s-a putut ini\u021bializa modulul: {0}",
|
||||||
|
"example": "exemplu",
|
||||||
|
"Search": "C\u0103utare",
|
||||||
|
"All": "Tot",
|
||||||
|
"Currency": "Moned\u0103",
|
||||||
|
"Text": "Text",
|
||||||
|
"Quotations": "Citate",
|
||||||
|
"Mathematical": "Matematic",
|
||||||
|
"Extended Latin": "Latin Extins",
|
||||||
|
"Symbols": "Simboluri",
|
||||||
|
"Arrows": "S\u0103ge\u021bi",
|
||||||
|
"User Defined": "Definite de Utilizator",
|
||||||
|
"dollar sign": "dolar",
|
||||||
|
"currency sign": "moned\u0103",
|
||||||
|
"euro-currency sign": "euro",
|
||||||
|
"colon sign": "dou\u0103 puncte",
|
||||||
|
"cruzeiro sign": "cruzeiro",
|
||||||
|
"french franc sign": "franc francez",
|
||||||
|
"lira sign": "lira",
|
||||||
|
"mill sign": "mill",
|
||||||
|
"naira sign": "naira",
|
||||||
|
"peseta sign": "peseta",
|
||||||
|
"rupee sign": "rupee",
|
||||||
|
"won sign": "won",
|
||||||
|
"new sheqel sign": "noul sheqel",
|
||||||
|
"dong sign": "dong",
|
||||||
|
"kip sign": "kip",
|
||||||
|
"tugrik sign": "tugrik",
|
||||||
|
"drachma sign": "drachma",
|
||||||
|
"german penny symbol": "penny german",
|
||||||
|
"peso sign": "peso",
|
||||||
|
"guarani sign": "guarani",
|
||||||
|
"austral sign": "austral",
|
||||||
|
"hryvnia sign": "hryvnia",
|
||||||
|
"cedi sign": "cedi",
|
||||||
|
"livre tournois sign": "livre tournois",
|
||||||
|
"spesmilo sign": "spesmilo",
|
||||||
|
"tenge sign": "tenge",
|
||||||
|
"indian rupee sign": "rupee indian\u0103",
|
||||||
|
"turkish lira sign": "lir\u0103 turceasc\u0103",
|
||||||
|
"nordic mark sign": "marc\u0103 nordic\u0103",
|
||||||
|
"manat sign": "manat",
|
||||||
|
"ruble sign": "rubl\u0103",
|
||||||
|
"yen character": "yen",
|
||||||
|
"yuan character": "yuan",
|
||||||
|
"yuan character, in hong kong and taiwan": "yuan \u00een Hong Kong \u0219i Taiwan",
|
||||||
|
"yen\/yuan character variant one": "yen\/yuan prima variant\u0103",
|
||||||
|
"Loading emoticons...": "Se \u00eencarc\u0103 emoticoanele\u2026",
|
||||||
|
"Could not load emoticons": "Nu s-au putut \u00eenc\u0103rca emoticoanele",
|
||||||
|
"People": "Persoane",
|
||||||
|
"Animals and Nature": "Animale \u0219i Natur\u0103",
|
||||||
|
"Food and Drink": "M\u00e2ncare \u0219i b\u0103uturi",
|
||||||
|
"Activity": "Activit\u0103\u021bi",
|
||||||
|
"Travel and Places": "C\u0103l\u0103torii \u0219i Loca\u021bii",
|
||||||
|
"Objects": "Obiecte",
|
||||||
|
"Flags": "Steaguri",
|
||||||
|
"Characters": "Caractere",
|
||||||
|
"Characters (no spaces)": "Caractere (f\u0103r\u0103 spa\u021bii)",
|
||||||
|
"Error: Form submit field collision.": "Eroare: Coliziune c\u00e2mpuri la trimiterea formularului.",
|
||||||
|
"Error: No form element found.": "Eroare: Niciun element de formular g\u0103sit.",
|
||||||
|
"Update": "Actualizare",
|
||||||
|
"Color swatch": "Specimene culori",
|
||||||
|
"Turquoise": "Turcoaz",
|
||||||
|
"Green": "Verde",
|
||||||
|
"Blue": "Albastru",
|
||||||
|
"Purple": "Mov",
|
||||||
|
"Navy Blue": "Albastru marin",
|
||||||
|
"Dark Turquoise": "Turcuaz \u00eenchis",
|
||||||
|
"Dark Green": "Verde \u00eenchis",
|
||||||
|
"Medium Blue": "Albastru mediu",
|
||||||
|
"Medium Purple": "Mov mediu",
|
||||||
|
"Midnight Blue": "Albastru \u00eenchis",
|
||||||
|
"Yellow": "Galben",
|
||||||
|
"Orange": "Portocaliu",
|
||||||
|
"Red": "Ro\u0219u",
|
||||||
|
"Light Gray": "Gri deschis",
|
||||||
|
"Gray": "Gri",
|
||||||
|
"Dark Yellow": "Galben \u00eenchis",
|
||||||
|
"Dark Orange": "Portocaliu \u00eenchis",
|
||||||
|
"Dark Red": "Ro\u0219u \u00eenchis",
|
||||||
|
"Medium Gray": "Gri mediu",
|
||||||
|
"Dark Gray": "Gri \u00eenchis",
|
||||||
|
"Black": "Negru",
|
||||||
|
"White": "Alb",
|
||||||
|
"Switch to or from fullscreen mode": "Comutare la sau de la modul ecran complet",
|
||||||
|
"Open help dialog": "Deschide dialogul de ajutor",
|
||||||
|
"history": "istoric",
|
||||||
|
"styles": "stiluri",
|
||||||
|
"formatting": "formatare",
|
||||||
|
"alignment": "aliniament",
|
||||||
|
"indentation": "indentare",
|
||||||
|
"permanent pen": "stilou permanent",
|
||||||
|
"comments": "comentarii"
|
||||||
|
});
|
|
@ -50,7 +50,7 @@ tinymce.addI18n('ru',{
|
||||||
"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435",
|
"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435",
|
||||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.",
|
||||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
"Fonts": "\u0428\u0440\u0438\u0444\u0442\u044b",
|
||||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||||
"Class": "\u041a\u043b\u0430\u0441\u0441",
|
"Class": "\u041a\u043b\u0430\u0441\u0441",
|
||||||
"Browse for an image": "\u0412\u044b\u0431\u043e\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
"Browse for an image": "\u0412\u044b\u0431\u043e\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('ru',{
|
||||||
"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
||||||
"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
||||||
"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
||||||
"Anchor": "\u042f\u043a\u043e\u0440\u044c",
|
"Anchor...": "\u042f\u043a\u043e\u0440\u044c",
|
||||||
"Name": "\u0418\u043c\u044f",
|
"Name": "\u0418\u043c\u044f",
|
||||||
"Id": "Id",
|
"Id": "Id",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?",
|
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?",
|
||||||
"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
|
"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
|
||||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
"Special characters...": "\u0421\u043f\u0435\u0446. \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||||
"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
|
"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
|
||||||
"Insert\/Edit code sample": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
|
"Insert\/Edit code sample": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
|
||||||
"Language": "\u042f\u0437\u044b\u043a",
|
"Language": "\u042f\u0437\u044b\u043a",
|
||||||
"Code sample": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
|
"Code sample...": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430...",
|
||||||
"Color": "\u0426\u0432\u0435\u0442",
|
"Color Picker": "\u0412\u044b\u0431\u043e\u0440 \u0446\u0432\u0435\u0442\u0430",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||||
"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
|
"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
|
||||||
"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
|
"Emoticons...": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0438",
|
||||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
"Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
|
"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
|
||||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('ru',{
|
||||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||||
"Border": "\u0420\u0430\u043c\u043a\u0430",
|
"Border": "\u0420\u0430\u043c\u043a\u0430",
|
||||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||||
"Image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
"Image...": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||||
"Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439",
|
"Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439",
|
||||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438",
|
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438",
|
||||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435",
|
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('ru',{
|
||||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
|
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
|
||||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f",
|
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f",
|
||||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
"Insert\/Edit Link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||||
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
|
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
|
||||||
"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438",
|
"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438",
|
||||||
"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
"Open link in...": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432...",
|
||||||
|
"Current window": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u043e\u043a\u043d\u043e",
|
||||||
"None": "\u041d\u0435\u0442",
|
"None": "\u041d\u0435\u0442",
|
||||||
"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435",
|
"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435",
|
||||||
"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
||||||
"Link": "\u0421\u0441\u044b\u043b\u043a\u0430",
|
"Link...": "\u0421\u0441\u044b\u043b\u043a\u0430",
|
||||||
"Paste or type a link": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443",
|
"Paste or type a link": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?",
|
||||||
|
@ -165,27 +166,28 @@ tinymce.addI18n('ru',{
|
||||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||||
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
||||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||||
"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
"Alternative source URL": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0441\u0441\u044b\u043b\u043a\u0430",
|
||||||
|
"Media poster (Image URL)": "\u041c\u0435\u0434\u0438\u0430 \u043f\u043e\u0441\u0442\u0435\u0440 (URL \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f)",
|
||||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:",
|
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:",
|
||||||
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||||
"Media": "\u0412\u0438\u0434\u0435\u043e",
|
"Media...": "\u041c\u0435\u0434\u0438\u0430...",
|
||||||
"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b",
|
"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b",
|
||||||
"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
|
"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
|
||||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442",
|
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||||
"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
|
"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
|
||||||
"Print": "\u041f\u0435\u0447\u0430\u0442\u044c",
|
"Print...": "\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0442\u044c...",
|
||||||
"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
|
"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
|
||||||
"Find": "\u041d\u0430\u0439\u0442\u0438",
|
"Find": "\u041d\u0430\u0439\u0442\u0438",
|
||||||
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",
|
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",
|
||||||
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
|
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||||
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
|
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
|
||||||
"Prev": "\u0412\u0432\u0435\u0440\u0445",
|
"Previous": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
|
||||||
"Next": "\u0412\u043d\u0438\u0437",
|
"Next": "\u0412\u043d\u0438\u0437",
|
||||||
"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",
|
"Find and replace...": "\u041d\u0430\u0439\u0442\u0438 \u0438 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c...",
|
||||||
"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430",
|
"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430",
|
||||||
"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
|
"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
|
||||||
"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
|
"Find whole words only": "\u041d\u0430\u0439\u0442\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043b\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
|
||||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
"Spell check": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
|
||||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
|
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
|
||||||
"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c",
|
"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('ru',{
|
||||||
"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
|
"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
|
||||||
"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||||
"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
"Show caption": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u044c",
|
||||||
"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||||
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('ru',{
|
||||||
"Body": "\u0422\u0435\u043b\u043e",
|
"Body": "\u0422\u0435\u043b\u043e",
|
||||||
"Footer": "\u041d\u0438\u0437",
|
"Footer": "\u041d\u0438\u0437",
|
||||||
"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
|
"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
|
||||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
|
"Insert template...": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
||||||
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||||
"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
|
"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('ru',{
|
||||||
"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026",
|
"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026",
|
||||||
"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
|
"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
|
||||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
|
"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
|
||||||
|
"Remove color": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0446\u0432\u0435\u0442",
|
||||||
"Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
"Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
|
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
|
||||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||||
|
"Word count": "\u041a\u043e\u043b-\u0432\u043e \u0441\u043b\u043e\u0432",
|
||||||
"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}",
|
"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}",
|
||||||
"{0} words": "\u0441\u043b\u043e\u0432: {0}",
|
"{0} words": "\u0441\u043b\u043e\u0432: {0}",
|
||||||
"File": "\u0424\u0430\u0439\u043b",
|
"File": "\u0424\u0430\u0439\u043b",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('ru',{
|
||||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
|
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
|
||||||
"Powered by {0}": "\u041f\u0440\u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0435 {0}",
|
"Powered by {0}": "\u041f\u0440\u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0435 {0}",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438."
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.",
|
||||||
|
"Image title": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||||
|
"Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u0440\u0430\u043c\u043a\u0438",
|
||||||
|
"Border style": "\u0421\u0442\u0438\u043b\u044c \u0440\u0430\u043c\u043a\u0438",
|
||||||
|
"Error": "\u041e\u0448\u0438\u0431\u043a\u0430",
|
||||||
|
"Warn": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435",
|
||||||
|
"Valid": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439",
|
||||||
|
"To open the popup, press Shift+Enter": "\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043e\u043a\u043d\u043e, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 Shift + Enter",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-0 \u0434\u043b\u044f \u043f\u043e\u043c\u043e\u0449\u0438.",
|
||||||
|
"System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442",
|
||||||
|
"Failed to upload image: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0} \u043f\u043e \u043f\u0443\u0442\u0438 {1}",
|
||||||
|
"Failed to load plugin url: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u043f\u043e \u043f\u0443\u0442\u0438: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0}",
|
||||||
|
"example": "\u043f\u0440\u0438\u043c\u0435\u0440",
|
||||||
|
"Search": "\u041f\u043e\u0438\u0441\u043a",
|
||||||
|
"All": "\u0412\u0441\u0435",
|
||||||
|
"Currency": "\u0412\u0430\u043b\u044e\u0442\u0430",
|
||||||
|
"Text": "\u0422\u0435\u043a\u0441\u0442",
|
||||||
|
"Quotations": "\u0426\u0438\u0442\u0430\u0442\u044b",
|
||||||
|
"Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f",
|
||||||
|
"Extended Latin": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u043b\u0430\u0442\u044b\u043d\u044c",
|
||||||
|
"Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||||
|
"Arrows": "\u0421\u0442\u0440\u0435\u043b\u043a\u0438",
|
||||||
|
"User Defined": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c",
|
||||||
|
"dollar sign": "\u0417\u043d\u0430\u043a \u0434\u043e\u043b\u043b\u0430\u0440\u0430",
|
||||||
|
"currency sign": "\u0417\u043d\u0430\u043a \u0432\u0430\u043b\u044e\u0442\u044b",
|
||||||
|
"euro-currency sign": "euro-currency sign",
|
||||||
|
"colon sign": "colon sign",
|
||||||
|
"cruzeiro sign": "cruzeiro sign",
|
||||||
|
"french franc sign": "french franc sign",
|
||||||
|
"lira sign": "lira sign",
|
||||||
|
"mill sign": "mill sign",
|
||||||
|
"naira sign": "naira sign",
|
||||||
|
"peseta sign": "peseta sign",
|
||||||
|
"rupee sign": "rupee sign",
|
||||||
|
"won sign": "won sign",
|
||||||
|
"new sheqel sign": "new sheqel sign",
|
||||||
|
"dong sign": "dong sign",
|
||||||
|
"kip sign": "kip sign",
|
||||||
|
"tugrik sign": "tugrik sign",
|
||||||
|
"drachma sign": "drachma sign",
|
||||||
|
"german penny symbol": "german penny symbol",
|
||||||
|
"peso sign": "peso sign",
|
||||||
|
"guarani sign": "guarani sign",
|
||||||
|
"austral sign": "austral sign",
|
||||||
|
"hryvnia sign": "hryvnia sign",
|
||||||
|
"cedi sign": "cedi sign",
|
||||||
|
"livre tournois sign": "livre tournois sign",
|
||||||
|
"spesmilo sign": "spesmilo sign",
|
||||||
|
"tenge sign": "tenge sign",
|
||||||
|
"indian rupee sign": "indian rupee sign",
|
||||||
|
"turkish lira sign": "turkish lira sign",
|
||||||
|
"nordic mark sign": "nordic mark sign",
|
||||||
|
"manat sign": "manat sign",
|
||||||
|
"ruble sign": "\u0417\u043d\u0430\u043a \u0440\u0443\u0431\u043b\u044f",
|
||||||
|
"yen character": "\u0421\u0438\u043c\u0432\u043e\u043b \u0438\u0435\u043d\u044b",
|
||||||
|
"yuan character": "\u0421\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044f",
|
||||||
|
"yuan character, in hong kong and taiwan": "yuan character, in hong kong and taiwan",
|
||||||
|
"yen\/yuan character variant one": "yen\/yuan character variant one",
|
||||||
|
"Loading emoticons...": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0441\u043c\u0430\u0439\u043b\u043e\u0432...",
|
||||||
|
"Could not load emoticons": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b\u044b",
|
||||||
|
"People": "\u041b\u044e\u0434\u0438",
|
||||||
|
"Animals and Nature": "\u0416\u0438\u0432\u043e\u0442\u043d\u044b\u0435 \u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u0430",
|
||||||
|
"Food and Drink": "\u0415\u0434\u0430 \u0438 \u043d\u0430\u043f\u0438\u0442\u043a\u0438",
|
||||||
|
"Activity": "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c",
|
||||||
|
"Travel and Places": "\u041f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0438 \u043c\u0435\u0441\u0442\u0430",
|
||||||
|
"Objects": "\u041e\u0431\u044a\u0435\u043a\u0442\u044b",
|
||||||
|
"Flags": "\u0424\u043b\u0430\u0433\u0438",
|
||||||
|
"Characters": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||||
|
"Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b (\u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432)",
|
||||||
|
"Error: Form submit field collision.": "Error: Form submit field collision.",
|
||||||
|
"Error: No form element found.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0444\u043e\u0440\u043c\u044b",
|
||||||
|
"Update": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c",
|
||||||
|
"Color swatch": "\u041e\u0431\u0440\u0430\u0437\u0435\u0446 \u0446\u0432\u0435\u0442\u0430",
|
||||||
|
"Turquoise": "\u0411\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439",
|
||||||
|
"Green": "\u0417\u0435\u043b\u0451\u043d\u044b\u0439",
|
||||||
|
"Blue": "\u0421\u0438\u043d\u0438\u0439",
|
||||||
|
"Purple": "\u0420\u043e\u0437\u043e\u0432\u044b\u0439",
|
||||||
|
"Navy Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439",
|
||||||
|
"Dark Turquoise": "\u0422\u0435\u043c\u043d\u043e-\u0431\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439",
|
||||||
|
"Dark Green": "\u0422\u0435\u043c\u043d\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439",
|
||||||
|
"Medium Blue": "Medium Blue",
|
||||||
|
"Medium Purple": "Medium Purple",
|
||||||
|
"Midnight Blue": "Midnight Blue",
|
||||||
|
"Yellow": "\u0416\u0435\u043b\u0442\u044b\u0439",
|
||||||
|
"Orange": "\u041e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439",
|
||||||
|
"Red": "\u041a\u0440\u0430\u0441\u043d\u044b\u0439",
|
||||||
|
"Light Gray": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0435\u0440\u044b\u0439",
|
||||||
|
"Gray": "\u0421\u0435\u0440\u044b\u0439",
|
||||||
|
"Dark Yellow": "\u0422\u0435\u043c\u043d\u043e-\u0436\u0435\u043b\u0442\u044b\u0439",
|
||||||
|
"Dark Orange": "\u0422\u0435\u043c\u043d\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439",
|
||||||
|
"Dark Red": "\u0422\u0435\u043c\u043d\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439",
|
||||||
|
"Medium Gray": "\u0423\u043c\u0435\u0440\u0435\u043d\u043d\u043e \u0441\u0435\u0440\u044b\u0439",
|
||||||
|
"Dark Gray": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0435\u0440\u044b\u0439",
|
||||||
|
"Black": "\u0427\u0451\u0440\u043d\u044b\u0439",
|
||||||
|
"White": "\u0411\u0435\u043b\u044b\u0439",
|
||||||
|
"Switch to or from fullscreen mode": "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c",
|
||||||
|
"Open help dialog": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043f\u0440\u0430\u0432\u043a\u0443",
|
||||||
|
"history": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f",
|
||||||
|
"styles": "\u0441\u0442\u0438\u043b\u0438",
|
||||||
|
"formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||||
|
"alignment": "\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
||||||
|
"indentation": "\u043e\u0442\u0441\u0442\u0443\u043f",
|
||||||
|
"permanent pen": "permanent pen",
|
||||||
|
"comments": "\u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438",
|
||||||
|
"Anchor": "\u042f\u043a\u043e\u0440\u044c",
|
||||||
|
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
||||||
|
"Code sample": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
|
||||||
|
"Color": "\u0426\u0432\u0435\u0442",
|
||||||
|
"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
|
||||||
|
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||||
|
"Image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||||
|
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||||
|
"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
||||||
|
"Link": "\u0421\u0441\u044b\u043b\u043a\u0430",
|
||||||
|
"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||||
|
"Media": "\u0412\u0438\u0434\u0435\u043e",
|
||||||
|
"Print": "\u041f\u0435\u0447\u0430\u0442\u044c",
|
||||||
|
"Prev": "\u0412\u0432\u0435\u0440\u0445",
|
||||||
|
"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",
|
||||||
|
"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
|
||||||
|
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||||
|
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
|
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d"
|
||||||
});
|
});
|
170
bl-plugins/tinymce/tinymce/langs/tr_TR.js → bl-plugins/tinymce/tinymce/langs/tr.js
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
||||||
tinymce.addI18n('tr_TR',{
|
tinymce.addI18n('tr',{
|
||||||
"Redo": "Yinele",
|
"Redo": "Yinele",
|
||||||
"Undo": "Geri Al",
|
"Undo": "Geri Al",
|
||||||
"Cut": "Kes",
|
"Cut": "Kes",
|
||||||
|
@ -50,7 +50,7 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Inline": "Sat\u0131r i\u00e7i",
|
"Inline": "Sat\u0131r i\u00e7i",
|
||||||
"Blocks": "Bloklar",
|
"Blocks": "Bloklar",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
|
||||||
"Font Family": "Yaz\u0131tipi Ailesi",
|
"Fonts": "Yaz\u0131 Tipleri",
|
||||||
"Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc",
|
"Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc",
|
||||||
"Class": "S\u0131n\u0131f",
|
"Class": "S\u0131n\u0131f",
|
||||||
"Browse for an image": "Bir resim aray\u0131n",
|
"Browse for an image": "Bir resim aray\u0131n",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Lower Roman": "K\u00fc\u00e7\u00fck Roman alfabesi",
|
"Lower Roman": "K\u00fc\u00e7\u00fck Roman alfabesi",
|
||||||
"Upper Alpha": "B\u00fcy\u00fck ABC",
|
"Upper Alpha": "B\u00fcy\u00fck ABC",
|
||||||
"Upper Roman": "B\u00fcy\u00fck Roman alfabesi",
|
"Upper Roman": "B\u00fcy\u00fck Roman alfabesi",
|
||||||
"Anchor": "\u00c7apa",
|
"Anchor...": "\u00c7apa...",
|
||||||
"Name": "\u0130sim",
|
"Name": "\u0130sim",
|
||||||
"Id": "Id",
|
"Id": "Id",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id bir harf ile ba\u015flamal\u0131d\u0131r ve sadece harfleri, rakamlar\u0131, \u00e7izgileri, noktalar\u0131, virg\u00fclleri veya alt \u00e7izgileri i\u00e7ermelidir.",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id bir harf ile ba\u015flamal\u0131d\u0131r ve sadece harfleri, rakamlar\u0131, \u00e7izgileri, noktalar\u0131, virg\u00fclleri veya alt \u00e7izgileri i\u00e7ermelidir.",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
|
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
|
||||||
"Restore last draft": "Son tasla\u011f\u0131 kurtar",
|
"Restore last draft": "Son tasla\u011f\u0131 kurtar",
|
||||||
"Special character": "\u00d6zel karakter",
|
"Special characters...": "\u00d6zel karakterler...",
|
||||||
"Source code": "Kaynak kodu",
|
"Source code": "Kaynak kodu",
|
||||||
"Insert\/Edit code sample": "Kod \u00f6rne\u011fini Kaydet\/D\u00fczenle",
|
"Insert\/Edit code sample": "Kod \u00f6rne\u011fini Kaydet\/D\u00fczenle",
|
||||||
"Language": "Dil",
|
"Language": "Dil",
|
||||||
"Code sample": "Kod \u00f6rne\u011fi",
|
"Code sample...": "Kod \u00f6rne\u011fi...",
|
||||||
"Color": "Renk",
|
"Color Picker": "Renk Se\u00e7ici",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "Soldan sa\u011fa",
|
"Left to right": "Soldan sa\u011fa",
|
||||||
"Right to left": "Sa\u011fdan sola",
|
"Right to left": "Sa\u011fdan sola",
|
||||||
"Emoticons": "G\u00fcl\u00fcc\u00fckler",
|
"Emoticons...": "\u0130fadeler...",
|
||||||
"Document properties": "Dok\u00fcman \u00f6zellikleri",
|
"Metadata and Document Properties": "\u00d6nbilgi ve Belge \u00d6zellikleri",
|
||||||
"Title": "Ba\u015fl\u0131k",
|
"Title": "Ba\u015fl\u0131k",
|
||||||
"Keywords": "Anahtar kelimeler",
|
"Keywords": "Anahtar kelimeler",
|
||||||
"Description": "A\u00e7\u0131klama",
|
"Description": "A\u00e7\u0131klama",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Horizontal space": "Yatay bo\u015fluk",
|
"Horizontal space": "Yatay bo\u015fluk",
|
||||||
"Border": "\u00c7er\u00e7eve",
|
"Border": "\u00c7er\u00e7eve",
|
||||||
"Insert image": "Resim ekle",
|
"Insert image": "Resim ekle",
|
||||||
"Image": "Resim",
|
"Image...": "Resim...",
|
||||||
"Image list": "Resim listesi",
|
"Image list": "Resim listesi",
|
||||||
"Rotate counterclockwise": "Saat y\u00f6n\u00fcn\u00fcn tersine d\u00f6nd\u00fcr",
|
"Rotate counterclockwise": "Saat y\u00f6n\u00fcn\u00fcn tersine d\u00f6nd\u00fcr",
|
||||||
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Back": "Geri",
|
"Back": "Geri",
|
||||||
"Insert date\/time": "Tarih \/ Zaman ekle",
|
"Insert date\/time": "Tarih \/ Zaman ekle",
|
||||||
"Date\/time": "Tarih\/zaman",
|
"Date\/time": "Tarih\/zaman",
|
||||||
"Insert link": "Ba\u011flant\u0131 ekle",
|
"Insert\/Edit Link": "Ba\u011flant\u0131 Ekle\/D\u00fczenle",
|
||||||
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
|
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
|
||||||
"Text to display": "G\u00f6r\u00fcnen yaz\u0131",
|
"Text to display": "G\u00f6r\u00fcnen yaz\u0131",
|
||||||
"Url": "Url",
|
"Url": "Url",
|
||||||
"Target": "Hedef",
|
"Open link in...": "Ba\u011flant\u0131y\u0131 a\u00e7...",
|
||||||
|
"Current window": "Mevcut pencere",
|
||||||
"None": "Hi\u00e7biri",
|
"None": "Hi\u00e7biri",
|
||||||
"New window": "Yeni pencere",
|
"New window": "Yeni pencere",
|
||||||
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
|
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
|
||||||
"Anchors": "\u00c7apalar",
|
"Anchors": "\u00c7apalar",
|
||||||
"Link": "Ba\u011flant\u0131",
|
"Link...": "Ba\u011flant\u0131...",
|
||||||
"Paste or type a link": "Bir ba\u011flant\u0131 yap\u0131\u015ft\u0131r\u0131n yada yaz\u0131n.",
|
"Paste or type a link": "Bir ba\u011flant\u0131 yap\u0131\u015ft\u0131r\u0131n yada yaz\u0131n.",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir eposta adresi gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir eposta adresi gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
|
||||||
|
@ -165,26 +166,27 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Insert\/edit video": "Video ekle\/d\u00fczenle",
|
"Insert\/edit video": "Video ekle\/d\u00fczenle",
|
||||||
"Insert\/edit media": "Medya ekle\/d\u00fczenle",
|
"Insert\/edit media": "Medya ekle\/d\u00fczenle",
|
||||||
"Alternative source": "Alternatif kaynak",
|
"Alternative source": "Alternatif kaynak",
|
||||||
"Poster": "Poster",
|
"Alternative source URL": "Alternative source URL",
|
||||||
|
"Media poster (Image URL)": "Medya posteri (Resim URL)",
|
||||||
"Paste your embed code below:": "Medya g\u00f6mme kodunu buraya yap\u0131\u015ft\u0131r:",
|
"Paste your embed code below:": "Medya g\u00f6mme kodunu buraya yap\u0131\u015ft\u0131r:",
|
||||||
"Embed": "G\u00f6mme",
|
"Embed": "G\u00f6mme",
|
||||||
"Media": "Medya",
|
"Media...": "Medya...",
|
||||||
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
|
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
|
||||||
"Page break": "Sayfa sonu",
|
"Page break": "Sayfa sonu",
|
||||||
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
|
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
|
||||||
"Preview": "\u00d6nizleme",
|
"Preview": "\u00d6nizleme",
|
||||||
"Print": "Yazd\u0131r",
|
"Print...": "Yazd\u0131r...",
|
||||||
"Save": "Kaydet",
|
"Save": "Kaydet",
|
||||||
"Find": "Bul",
|
"Find": "Bul",
|
||||||
"Replace with": "Bununla de\u011fi\u015ftir",
|
"Replace with": "Bununla de\u011fi\u015ftir",
|
||||||
"Replace": "De\u011fi\u015ftir",
|
"Replace": "De\u011fi\u015ftir",
|
||||||
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
|
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
|
||||||
"Prev": "\u00d6nceki",
|
"Previous": "\u00d6nceki",
|
||||||
"Next": "Sonraki",
|
"Next": "Sonraki",
|
||||||
"Find and replace": "Bul ve de\u011fi\u015ftir",
|
"Find and replace...": "Bul ve de\u011fi\u015ftir...",
|
||||||
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
|
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
|
||||||
"Match case": "B\u00fcy\u00fck \/ K\u00fc\u00e7\u00fck harfe duyarl\u0131",
|
"Match case": "B\u00fcy\u00fck \/ K\u00fc\u00e7\u00fck harfe duyarl\u0131",
|
||||||
"Whole words": "Tam s\u00f6zc\u00fckler",
|
"Find whole words only": "Sadece t\u00fcm kelimeyi ara",
|
||||||
"Spell check": "Yaz\u0131m denetimi",
|
"Spell check": "Yaz\u0131m denetimi",
|
||||||
"Ignore": "Yoksay",
|
"Ignore": "Yoksay",
|
||||||
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
|
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Height": "Y\u00fckseklik",
|
"Height": "Y\u00fckseklik",
|
||||||
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
|
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
|
||||||
"Cell padding": "H\u00fccre i\u00e7 bo\u015flu\u011fu",
|
"Cell padding": "H\u00fccre i\u00e7 bo\u015flu\u011fu",
|
||||||
"Caption": "Ba\u015fl\u0131k",
|
"Show caption": "Ba\u015fl\u0131\u011f\u0131 g\u00f6ster",
|
||||||
"Left": "Sol",
|
"Left": "Sol",
|
||||||
"Center": "Orta",
|
"Center": "Orta",
|
||||||
"Right": "Sa\u011f",
|
"Right": "Sa\u011f",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Body": "G\u00f6vde",
|
"Body": "G\u00f6vde",
|
||||||
"Footer": "Alt",
|
"Footer": "Alt",
|
||||||
"Border color": "Kenarl\u0131k Rengi",
|
"Border color": "Kenarl\u0131k Rengi",
|
||||||
"Insert template": "\u015eablon ekle",
|
"Insert template...": "\u015eablon ekle...",
|
||||||
"Templates": "\u015eablonlar",
|
"Templates": "\u015eablonlar",
|
||||||
"Template": "Tema",
|
"Template": "Tema",
|
||||||
"Text color": "Yaz\u0131 rengi",
|
"Text color": "Yaz\u0131 rengi",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Custom...": "\u00d6zel",
|
"Custom...": "\u00d6zel",
|
||||||
"Custom color": "\u00d6zel Renk",
|
"Custom color": "\u00d6zel Renk",
|
||||||
"No color": "Renk Yok",
|
"No color": "Renk Yok",
|
||||||
|
"Remove color": "Rengi kald\u0131r",
|
||||||
"Table of Contents": "\u0130\u00e7indekiler",
|
"Table of Contents": "\u0130\u00e7indekiler",
|
||||||
"Show blocks": "Bloklar\u0131 g\u00f6r\u00fcnt\u00fcle",
|
"Show blocks": "Bloklar\u0131 g\u00f6r\u00fcnt\u00fcle",
|
||||||
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
|
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
|
||||||
|
"Word count": "Kelime say\u0131s\u0131",
|
||||||
"Words: {0}": "Kelime: {0}",
|
"Words: {0}": "Kelime: {0}",
|
||||||
"{0} words": "{0} kelime",
|
"{0} words": "{0} kelime",
|
||||||
"File": "Dosya",
|
"File": "Dosya",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('tr_TR',{
|
||||||
"Table": "Tablo",
|
"Table": "Tablo",
|
||||||
"Tools": "Ara\u00e7lar",
|
"Tools": "Ara\u00e7lar",
|
||||||
"Powered by {0}": "{0} taraf\u0131ndan yap\u0131lm\u0131\u015ft\u0131r ",
|
"Powered by {0}": "{0} taraf\u0131ndan yap\u0131lm\u0131\u015ft\u0131r ",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 k\u0131sayolunu kullan\u0131n. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 k\u0131sayolunu kullan\u0131n. Yard\u0131m i\u00e7in ALT-0 k\u0131sayolunu kullan\u0131n."
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 k\u0131sayolunu kullan\u0131n. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 k\u0131sayolunu kullan\u0131n. Yard\u0131m i\u00e7in ALT-0 k\u0131sayolunu kullan\u0131n.",
|
||||||
|
"Image title": "Resim ba\u015fl\u0131\u011f\u0131",
|
||||||
|
"Border width": "Kenar geni\u015fli\u011fi",
|
||||||
|
"Border style": "Kenar sitili",
|
||||||
|
"Error": "Hata",
|
||||||
|
"Warn": "Uyar\u0131",
|
||||||
|
"Valid": "Ge\u00e7erli",
|
||||||
|
"To open the popup, press Shift+Enter": "Popup'\u0131 a\u00e7mak i\u00e7in Shift+Enter'a bas\u0131n ",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "Zengin Metin Alan\u0131. Yard\u0131m i\u00e7in Alt-0'a bas\u0131n.",
|
||||||
|
"System Font": "Sistem Yaz\u0131 Tipi",
|
||||||
|
"Failed to upload image: {0}": "{0} resmi y\u00fcklenemedi.",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "{1} adresinden {0} eklentisi y\u00fcklenemedi.",
|
||||||
|
"Failed to load plugin url: {0}": "{0} eklentisi adresten y\u00fcklenemedi.",
|
||||||
|
"Failed to initialize plugin: {0}": "{0} eklentisi ba\u015flat\u0131lamad\u0131.",
|
||||||
|
"example": "\u00f6rnek",
|
||||||
|
"Search": "Bul",
|
||||||
|
"All": "T\u00fcm\u00fc",
|
||||||
|
"Currency": "Para birimi",
|
||||||
|
"Text": "Metin",
|
||||||
|
"Quotations": "Al\u0131nt\u0131",
|
||||||
|
"Mathematical": "Matematiksel",
|
||||||
|
"Extended Latin": "Uzat\u0131lm\u0131\u015f Latin",
|
||||||
|
"Symbols": "Semboller",
|
||||||
|
"Arrows": "Y\u00f6n tu\u015flar\u0131",
|
||||||
|
"User Defined": "Kullan\u0131c\u0131 Tan\u0131ml\u0131",
|
||||||
|
"dollar sign": "dolar i\u015fareti",
|
||||||
|
"currency sign": "para birimi i\u015fareti",
|
||||||
|
"euro-currency sign": "euro para birimi i\u015fareti",
|
||||||
|
"colon sign": "kolon i\u015fareti",
|
||||||
|
"cruzeiro sign": "seyir i\u015fareti",
|
||||||
|
"french franc sign": "frans\u0131z frang\u0131 i\u015fareti",
|
||||||
|
"lira sign": "lira i\u015fareti",
|
||||||
|
"mill sign": "de\u011firmen i\u015fareti",
|
||||||
|
"naira sign": "naira i\u015fareti",
|
||||||
|
"peseta sign": "pezeta i\u015fareti",
|
||||||
|
"rupee sign": "rupi i\u015fareti",
|
||||||
|
"won sign": "won i\u015fareti",
|
||||||
|
"new sheqel sign": "yeni koyun i\u015fareti",
|
||||||
|
"dong sign": "dong i\u015fareti",
|
||||||
|
"kip sign": "kip i\u015fareti",
|
||||||
|
"tugrik sign": "tugrik i\u015fareti",
|
||||||
|
"drachma sign": "drahma i\u015fareti",
|
||||||
|
"german penny symbol": "alman kuru\u015f sembol\u00fc",
|
||||||
|
"peso sign": "pezo i\u015fareti",
|
||||||
|
"guarani sign": "guarani i\u015fareti",
|
||||||
|
"austral sign": "avustral i\u015fareti",
|
||||||
|
"hryvnia sign": "grivnas\u0131 i\u015fareti",
|
||||||
|
"cedi sign": "cedi i\u015fareti",
|
||||||
|
"livre tournois sign": "kitap turnuvalar\u0131 i\u015fareti",
|
||||||
|
"spesmilo sign": "spesmilo i\u015fareti",
|
||||||
|
"tenge sign": "tenge i\u015fareti",
|
||||||
|
"indian rupee sign": "hindistan rupisi i\u015fareti",
|
||||||
|
"turkish lira sign": "T\u00fcrk Liras\u0131 i\u015fareti",
|
||||||
|
"nordic mark sign": "nordic i\u015fareti",
|
||||||
|
"manat sign": "manat i\u015fareti",
|
||||||
|
"ruble sign": "ruble i\u015fareti",
|
||||||
|
"yen character": "yen karakteri",
|
||||||
|
"yuan character": "yuan karakteri",
|
||||||
|
"yuan character, in hong kong and taiwan": "yuan karakteri, hong kong ve tayvan da kullan\u0131lan",
|
||||||
|
"yen\/yuan character variant one": "yen\/yuan karakter de\u011fi\u015fkeni",
|
||||||
|
"Loading emoticons...": "\u0130fadeler y\u00fckleniyor...",
|
||||||
|
"Could not load emoticons": "\u0130fadeler y\u00fcklenemedi",
|
||||||
|
"People": "\u0130nsan",
|
||||||
|
"Animals and Nature": "Hayvanlar ve Do\u011fa",
|
||||||
|
"Food and Drink": "Yiyecek ve \u0130\u00e7ecek",
|
||||||
|
"Activity": "Etkinlik",
|
||||||
|
"Travel and Places": "Gezi ve Yerler",
|
||||||
|
"Objects": "Nesneler",
|
||||||
|
"Flags": "Bayraklar",
|
||||||
|
"Characters": "Karakterler",
|
||||||
|
"Characters (no spaces)": "Karakterler (bo\u015fluksuz)",
|
||||||
|
"Error: Form submit field collision.": "Hata: Form g\u00f6nderme alan\u0131 \u00e7arp\u0131\u015fmas\u0131.",
|
||||||
|
"Error: No form element found.": "Hata: Form eleman\u0131 bulunamad\u0131.",
|
||||||
|
"Update": "G\u00fcncelle",
|
||||||
|
"Color swatch": "Renk \u00f6rne\u011fi",
|
||||||
|
"Turquoise": "Turkuaz",
|
||||||
|
"Green": "Ye\u015fil",
|
||||||
|
"Blue": "Mavi",
|
||||||
|
"Purple": "Mor",
|
||||||
|
"Navy Blue": "Lacivert",
|
||||||
|
"Dark Turquoise": "Koyu Turkuaz",
|
||||||
|
"Dark Green": "Koyu Ye\u015fil",
|
||||||
|
"Medium Blue": "Orta Mavi",
|
||||||
|
"Medium Purple": "Orta Mor",
|
||||||
|
"Midnight Blue": "Gece Yar\u0131s\u0131 Mavisi",
|
||||||
|
"Yellow": "Sar\u0131",
|
||||||
|
"Orange": "Turuncu",
|
||||||
|
"Red": "K\u0131rm\u0131z\u0131",
|
||||||
|
"Light Gray": "A\u00e7\u0131k Gri",
|
||||||
|
"Gray": "Gri",
|
||||||
|
"Dark Yellow": "Koyu Sar\u0131",
|
||||||
|
"Dark Orange": "Koyu Turuncu",
|
||||||
|
"Dark Red": "Koyu K\u0131rm\u0131z\u0131",
|
||||||
|
"Medium Gray": "Orta Gri",
|
||||||
|
"Dark Gray": "Koyu Gri",
|
||||||
|
"Black": "Siyah",
|
||||||
|
"White": "Beyaz",
|
||||||
|
"Switch to or from fullscreen mode": "Tam ekran moduna ge\u00e7 veya \u00e7\u0131k",
|
||||||
|
"Open help dialog": "Yard\u0131m penceresini a\u00e7",
|
||||||
|
"history": "ge\u00e7mi\u015f",
|
||||||
|
"styles": "sitiller",
|
||||||
|
"formatting": "bi\u00e7imlendirme",
|
||||||
|
"alignment": "hizalanma",
|
||||||
|
"indentation": "girinti",
|
||||||
|
"permanent pen": "kal\u0131c\u0131 kalem",
|
||||||
|
"comments": "yorumler",
|
||||||
|
"Anchor": "\u00c7apa",
|
||||||
|
"Special character": "\u00d6zel karakter",
|
||||||
|
"Code sample": "Kod \u00f6rne\u011fi",
|
||||||
|
"Color": "Renk",
|
||||||
|
"Emoticons": "G\u00fcl\u00fcc\u00fckler",
|
||||||
|
"Document properties": "Dok\u00fcman \u00f6zellikleri",
|
||||||
|
"Image": "Resim",
|
||||||
|
"Insert link": "Ba\u011flant\u0131 ekle",
|
||||||
|
"Target": "Hedef",
|
||||||
|
"Link": "Ba\u011flant\u0131",
|
||||||
|
"Poster": "Poster",
|
||||||
|
"Media": "Medya",
|
||||||
|
"Print": "Yazd\u0131r",
|
||||||
|
"Prev": "\u00d6nceki",
|
||||||
|
"Find and replace": "Bul ve de\u011fi\u015ftir",
|
||||||
|
"Whole words": "Tam s\u00f6zc\u00fckler",
|
||||||
|
"Spellcheck": "Yaz\u0131m denetimi",
|
||||||
|
"Caption": "Ba\u015fl\u0131k",
|
||||||
|
"Insert template": "\u015eablon ekle"
|
||||||
});
|
});
|
|
@ -0,0 +1,389 @@
|
||||||
|
tinymce.addI18n('uk',{
|
||||||
|
"Redo": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438",
|
||||||
|
"Undo": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||||
|
"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||||
|
"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438",
|
||||||
|
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||||
|
"Select all": "\u0412\u0438\u0434\u0456\u043b\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||||
|
"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||||
|
"Ok": "\u0413\u0430\u0440\u0430\u0437\u0434",
|
||||||
|
"Cancel": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||||
|
"Visual aids": "\u041d\u0430\u043e\u0447\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0434\u044f",
|
||||||
|
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
||||||
|
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||||
|
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||||
|
"Strikethrough": "\u0417\u0430\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||||
|
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||||
|
"Subscript": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||||
|
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"Align left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||||
|
"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
"Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0456",
|
||||||
|
"Bullet list": "\u041d\u0435\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||||
|
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||||
|
"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||||
|
"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||||
|
"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438",
|
||||||
|
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
||||||
|
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0456\u043d\u0443. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u0441\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl+C\/V\/X.",
|
||||||
|
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||||
|
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||||
|
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||||
|
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||||
|
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||||
|
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||||
|
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||||
|
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
|
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||||
|
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||||
|
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||||
|
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||||
|
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||||
|
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||||
|
"Preformatted": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u0432\u0456\u0434\u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u0438\u0439",
|
||||||
|
"Div": "\u0411\u043b\u043e\u043a",
|
||||||
|
"Pre": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"Code": "\u041a\u043e\u0434",
|
||||||
|
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||||
|
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||||
|
"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0456",
|
||||||
|
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||||
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0434\u0456\u0439\u0441\u043d\u044e\u0454\u0442\u044c\u0441\u044f \u0443 \u0432\u0438\u0433\u043b\u044f\u0434\u0456 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443, \u043f\u043e\u043a\u0438 \u043d\u0435 \u0432\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0434\u0430\u043d\u0443 \u043e\u043f\u0446\u0456\u044e.",
|
||||||
|
"Fonts": "\u0428\u0440\u0438\u0444\u0442\u0438",
|
||||||
|
"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443",
|
||||||
|
"Class": "\u041a\u043b\u0430\u0441",
|
||||||
|
"Browse for an image": "\u0412\u0438\u0431\u0456\u0440 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"OR": "\u0410\u0411\u041e",
|
||||||
|
"Drop an image here": "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u044e\u0434\u0438",
|
||||||
|
"Upload": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438",
|
||||||
|
"Block": "\u0411\u043b\u043e\u043a",
|
||||||
|
"Align": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u0439",
|
||||||
|
"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0456",
|
||||||
|
"Disc": "\u041a\u0440\u0443\u0433\u0438",
|
||||||
|
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u0438",
|
||||||
|
"Lower Alpha": "\u041c\u0430\u043b\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438",
|
||||||
|
"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438",
|
||||||
|
"Lower Roman": "\u041c\u0430\u043b\u0456 \u0440\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438",
|
||||||
|
"Upper Alpha": "\u0412\u0435\u043b\u0438\u043a\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438",
|
||||||
|
"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438",
|
||||||
|
"Anchor...": "\u042f\u043a\u0456\u0440...",
|
||||||
|
"Name": "\u041d\u0430\u0437\u0432\u0430",
|
||||||
|
"Id": "\u041a\u043e\u0434",
|
||||||
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u041a\u043e\u0434 \u043c\u0430\u0454 \u043f\u043e\u0447\u0438\u043d\u0430\u0442\u0438\u0441\u044f \u0437 \u043b\u0456\u0442\u0435\u0440\u0438 \u0456 \u043c\u043e\u0436\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043b\u0438\u0448\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 \u043b\u0456\u0442\u0435\u0440, \u0446\u0438\u0444\u0440, \u0434\u0435\u0444\u0456\u0441\u0443, \u043a\u0440\u0430\u043f\u043a\u0438, \u043a\u043e\u043c\u0438 \u0430\u0431\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u0433\u043e \u043f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f.",
|
||||||
|
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0412\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438?",
|
||||||
|
"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443",
|
||||||
|
"Special characters...": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438...",
|
||||||
|
"Source code": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u043a\u043e\u0434",
|
||||||
|
"Insert\/Edit code sample": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u043f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443",
|
||||||
|
"Language": "\u041c\u043e\u0432\u0430",
|
||||||
|
"Code sample...": "\u041f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443...",
|
||||||
|
"Color Picker": "\u0412\u0438\u0431\u0456\u0440 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||||
|
"R": "\u0427",
|
||||||
|
"G": "\u0417",
|
||||||
|
"B": "\u0411",
|
||||||
|
"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||||
|
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e",
|
||||||
|
"Emoticons...": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0438...",
|
||||||
|
"Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u0456 \u0456 \u0432\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||||
|
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
|
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||||
|
"Description": "\u041e\u043f\u0438\u0441",
|
||||||
|
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
||||||
|
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||||
|
"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"Fullscreen": "\u041f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c",
|
||||||
|
"Action": "\u0414\u0456\u044f",
|
||||||
|
"Shortcut": "\u042f\u0440\u043b\u0438\u043a",
|
||||||
|
"Help": "\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430",
|
||||||
|
"Address": "\u0410\u0434\u0440\u0435\u0441\u0430",
|
||||||
|
"Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043c\u0435\u043d\u044e",
|
||||||
|
"Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u0445",
|
||||||
|
"Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0448\u043b\u044f\u0445\u0443",
|
||||||
|
"Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0456",
|
||||||
|
"Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f (\u044f\u043a\u0449\u043e \u043f\u043b\u0430\u0433\u0456\u043d \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u0438\u0439)",
|
||||||
|
"Save (if save plugin activated)": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 (\u044f\u043a\u0449\u043e \u043f\u043b\u0430\u0433\u0456\u043d \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u043e)",
|
||||||
|
"Find (if searchreplace plugin activated)": "\u0417\u043d\u0430\u0439\u0442\u0438 (\u044f\u043a\u0449\u043e \u043f\u043b\u0430\u0433\u0456\u043d \u043f\u043e\u0448\u0443\u043a\u0443 \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u043e)",
|
||||||
|
"Plugins installed ({0}):": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0456 \u043f\u043b\u0430\u0433\u0456\u043d\u0438 ({0}):",
|
||||||
|
"Premium plugins:": "\u041f\u0440\u0435\u043c\u0456\u0443\u043c \u043f\u043b\u0430\u0433\u0456\u043d\u0438:",
|
||||||
|
"Learn more...": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e...",
|
||||||
|
"You are using {0}": "\u0423 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u0456 {0}",
|
||||||
|
"Plugins": "\u041f\u043b\u0430\u0433\u0456\u043d\u0438",
|
||||||
|
"Handy Shortcuts": "\u041a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u043d\u0456 \u0441\u043a\u043e\u0440\u043e\u0447\u0435\u043d\u043d\u044f",
|
||||||
|
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f",
|
||||||
|
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||||
|
"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440",
|
||||||
|
"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457",
|
||||||
|
"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456",
|
||||||
|
"Advanced": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0456",
|
||||||
|
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||||
|
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||||
|
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||||
|
"Border": "\u041c\u0435\u0436\u0430",
|
||||||
|
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Image...": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f...",
|
||||||
|
"Image list": "\u041f\u0435\u0440\u0435\u043b\u0456\u043a \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c",
|
||||||
|
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438",
|
||||||
|
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e",
|
||||||
|
"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456",
|
||||||
|
"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456",
|
||||||
|
"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Zoom in": "\u041d\u0430\u0431\u043b\u0438\u0437\u0438\u0442\u0438",
|
||||||
|
"Zoom out": "\u0412\u0456\u0434\u0434\u0430\u043b\u0438\u0442\u0438",
|
||||||
|
"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||||
|
"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
||||||
|
"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f",
|
||||||
|
"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c",
|
||||||
|
"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c",
|
||||||
|
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||||
|
"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432",
|
||||||
|
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||||
|
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f",
|
||||||
|
"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||||
|
"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f",
|
||||||
|
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
||||||
|
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||||
|
"Insert\/Edit Link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Url": "\u0410\u0434\u0440\u0435\u0441\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Open link in...": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0432...",
|
||||||
|
"Current window": "\u041f\u043e\u0442\u043e\u0447\u043d\u0435 \u0432\u0456\u043a\u043d\u043e",
|
||||||
|
"None": "\u041d\u0456",
|
||||||
|
"New window": "\u0423 \u043d\u043e\u0432\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456",
|
||||||
|
"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Anchors": "\u042f\u043a\u043e\u0440\u0456",
|
||||||
|
"Link...": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f...",
|
||||||
|
"Paste or type a link": "\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0430\u0431\u043e \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 mailto: \u043f\u0440\u0435\u0444\u0456\u043a\u0441?",
|
||||||
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 http:\/\/ \u043f\u0440\u0435\u0444\u0456\u043a\u0441?",
|
||||||
|
"Link list": "\u041f\u0435\u0440\u0435\u043b\u0456\u043a \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c",
|
||||||
|
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||||
|
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||||
|
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0430\u0443\u0434\u0456\u043e",
|
||||||
|
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||||
|
"Alternative source URL": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||||
|
"Media poster (Image URL)": "\u041c\u0435\u0434\u0456\u0430 \u0441\u0432\u0456\u0442\u043b\u0438\u043d\u0430 (URL \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f)",
|
||||||
|
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:",
|
||||||
|
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||||
|
"Media...": "\u041c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456...",
|
||||||
|
"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u0431\u0456\u043b",
|
||||||
|
"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438",
|
||||||
|
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||||
|
"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434",
|
||||||
|
"Print...": "\u0414\u0440\u0443\u043a\u0443\u0432\u0430\u0442\u0438...",
|
||||||
|
"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
||||||
|
"Find": "\u0417\u043d\u0430\u0439\u0442\u0438",
|
||||||
|
"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",
|
||||||
|
"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||||
|
"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||||
|
"Previous": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439",
|
||||||
|
"Next": "\u0412\u043d\u0438\u0437",
|
||||||
|
"Find and replace...": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0456\u043d\u0430...",
|
||||||
|
"Could not find the specified string.": "\u0412\u043a\u0430\u0437\u0430\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e",
|
||||||
|
"Match case": "\u0412\u0440\u0430\u0445\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||||
|
"Find whole words only": "\u0428\u0443\u043a\u0430\u0442\u0438 \u0442\u0456\u043b\u044c\u043a\u0438 \u0446\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||||
|
"Spell check": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0443",
|
||||||
|
"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438",
|
||||||
|
"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
||||||
|
"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438",
|
||||||
|
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0421\u043b\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||||
|
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||||
|
"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
||||||
|
"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||||
|
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
||||||
|
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
||||||
|
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||||
|
"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||||
|
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||||
|
"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443",
|
||||||
|
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
||||||
|
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443",
|
||||||
|
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||||
|
"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0440\u044f\u0434\u043a\u0430",
|
||||||
|
"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||||
|
"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||||
|
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443",
|
||||||
|
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443",
|
||||||
|
"Insert column before": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||||
|
"Insert column after": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||||
|
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||||
|
"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456",
|
||||||
|
"Rows": "\u0420\u044f\u0434\u043a\u0438",
|
||||||
|
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||||
|
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
||||||
|
"Cell spacing": "\u0412\u0456\u0434\u0441\u0442\u0430\u043d\u044c \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438",
|
||||||
|
"Cell padding": "\u041f\u043e\u043b\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a",
|
||||||
|
"Show caption": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
|
"Left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||||
|
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||||
|
"Scope": "\u0421\u0444\u0435\u0440\u0430",
|
||||||
|
"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||||
|
"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||||
|
"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
|
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432",
|
||||||
|
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432",
|
||||||
|
"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430",
|
||||||
|
"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||||
|
"Body": "\u0422\u0456\u043b\u043e",
|
||||||
|
"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||||
|
"Border color": "\u043a\u043e\u043b\u0456\u0440 \u0440\u0430\u043c\u043a\u0438",
|
||||||
|
"Insert template...": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d...",
|
||||||
|
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||||
|
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
||||||
|
"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443",
|
||||||
|
"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443",
|
||||||
|
"Custom...": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439",
|
||||||
|
"Custom color": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440",
|
||||||
|
"No color": "\u0431\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||||
|
"Remove color": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043a\u043e\u043b\u0456\u0440",
|
||||||
|
"Table of Contents": "\u0417\u043c\u0456\u0441\u0442",
|
||||||
|
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438",
|
||||||
|
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||||
|
"Word count": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432",
|
||||||
|
"Words: {0}": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432: {0}",
|
||||||
|
"{0} words": "{0} \u0441\u043b\u0456\u0432",
|
||||||
|
"File": "\u0424\u0430\u0439\u043b",
|
||||||
|
"Edit": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||||
|
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||||
|
"View": "\u0412\u0438\u0433\u043b\u044f\u0434",
|
||||||
|
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
||||||
|
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f",
|
||||||
|
"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||||
|
"Powered by {0}": "\u041f\u0440\u0430\u0446\u044e\u0454 \u043d\u0430 {0}",
|
||||||
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 \u0449\u043e\u0431 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u0442\u0438 \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432, ALT-0 \u0434\u043b\u044f \u0432\u0438\u043a\u043b\u0438\u043a\u0443 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438.",
|
||||||
|
"Image title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u043c\u0435\u0436\u0456",
|
||||||
|
"Border style": "\u0421\u0442\u0438\u043b\u044c \u043c\u0435\u0436\u0456",
|
||||||
|
"Error": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430",
|
||||||
|
"Warn": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Valid": "\u0412\u0456\u0440\u043d\u0438\u0439",
|
||||||
|
"To open the popup, press Shift+Enter": "\u0429\u043e\u0431 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0432\u0456\u043a\u043d\u043e, \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c Shift+Enter",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "\u041f\u043e\u043b\u0435 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-0 \u0434\u043b\u044f \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438.",
|
||||||
|
"System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438\u0439 \u0448\u0440\u0438\u0444\u0442",
|
||||||
|
"Failed to upload image: {0}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0432\u0456\u0434\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u043f\u043b\u0430\u0491\u0456\u043d: {0} \u0447\u0435\u0440\u0435\u0437 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f {1}",
|
||||||
|
"Failed to load plugin url: {0}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 URL \u043f\u043b\u0430\u0491\u0456\u043d\u0443: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0456\u043d\u0456\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0432\u0430\u0442\u0438 \u043f\u043b\u0430\u0491\u0456\u043d: {0}",
|
||||||
|
"example": "\u043f\u0440\u0438\u043a\u043b\u0430\u0434",
|
||||||
|
"Search": "\u041f\u043e\u0448\u0443\u043a",
|
||||||
|
"All": "\u0412\u0441\u0435",
|
||||||
|
"Currency": "\u0412\u0430\u043b\u044e\u0442\u0430",
|
||||||
|
"Text": "\u0422\u0435\u043a\u0441\u0442",
|
||||||
|
"Quotations": "\u041a\u043e\u0442\u0438\u0440\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u043d\u0456",
|
||||||
|
"Extended Latin": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0430 \u043b\u0430\u0442\u0438\u043d\u0438\u0446\u044f",
|
||||||
|
"Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||||
|
"Arrows": "\u0421\u0442\u0440\u0456\u043b\u043a\u0438",
|
||||||
|
"User Defined": "\u0412\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0456 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0435\u043c",
|
||||||
|
"dollar sign": "\u0437\u043d\u0430\u043a \u0434\u043e\u043b\u0430\u0440\u0430",
|
||||||
|
"currency sign": "\u0437\u043d\u0430\u043a \u0432\u0430\u043b\u044e\u0442\u0438",
|
||||||
|
"euro-currency sign": "\u0437\u043d\u0430\u043a \u0454\u0432\u0440\u043e",
|
||||||
|
"colon sign": "\u0437\u043d\u0430\u043a \u0434\u0432\u043e\u043a\u0440\u0430\u043f\u043a\u0438",
|
||||||
|
"cruzeiro sign": "\u0437\u043d\u0430\u043a \u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e",
|
||||||
|
"french franc sign": "\u0437\u043d\u0430\u043a \u0444\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u043e\u0433\u043e \u0444\u0440\u0430\u043d\u043a\u0443",
|
||||||
|
"lira sign": "\u0437\u043d\u0430\u043a \u043b\u0456\u0440\u0438",
|
||||||
|
"mill sign": "\u0437\u043d\u0430\u043a \u043c\u0456\u043b\u044f",
|
||||||
|
"naira sign": "\u0437\u043d\u0430\u043a \u043d\u0430\u0439\u0440\u0438",
|
||||||
|
"peseta sign": "\u0437\u043d\u0430\u043a \u043f\u0435\u0441\u0435\u0442\u0438",
|
||||||
|
"rupee sign": "\u0437\u043d\u0430\u043a \u0440\u0443\u043f\u0456\u0457",
|
||||||
|
"won sign": "\u0437\u043d\u0430\u043a \u0432\u043e\u043d\u0438",
|
||||||
|
"new sheqel sign": "\u043d\u043e\u0432\u0438\u0439 \u0437\u043d\u0430\u043a \u0448\u0435\u043a\u0435\u043b\u044f",
|
||||||
|
"dong sign": "\u0437\u043d\u0430\u043a \u0434\u043e\u043d\u0433\u0443",
|
||||||
|
"kip sign": "\u0437\u043d\u0430\u043a \u043a\u0456\u043f\u0443",
|
||||||
|
"tugrik sign": "\u0437\u043d\u0430\u043a \u0442\u0443\u0433\u0440\u0438\u043a\u0430",
|
||||||
|
"drachma sign": "\u0437\u043d\u0430\u043a \u0434\u0440\u0430\u0445\u043c\u0438",
|
||||||
|
"german penny symbol": "\u0437\u043d\u0430\u043a \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u043e\u0433\u043e \u043f\u0435\u043d\u043d\u0456",
|
||||||
|
"peso sign": "\u0437\u043d\u0430\u043a \u043f\u0435\u0441\u043e",
|
||||||
|
"guarani sign": "\u0437\u043d\u0430\u043a \u0433\u0443\u0430\u0440\u0430\u043d\u0456",
|
||||||
|
"austral sign": "\u0437\u043d\u0430\u043a \u0430\u0443\u0441\u0442\u0440\u0430\u043b\u044e",
|
||||||
|
"hryvnia sign": "\u0433\u0440\u0438\u0432\u043d\u044f",
|
||||||
|
"cedi sign": "\u0437\u043d\u0430\u043a \u0441\u0435\u0434\u0456",
|
||||||
|
"livre tournois sign": "\u0437\u043d\u0430\u043a \u0442\u0443\u0440\u0441\u044c\u043a\u043e\u0433\u043e \u043b\u0456\u0432\u0440\u0443",
|
||||||
|
"spesmilo sign": "\u0437\u043d\u0430\u043a \u0441\u043f\u0435\u0441\u043c\u0456\u043b\u043e",
|
||||||
|
"tenge sign": "\u0437\u043d\u0430\u043a \u0442\u0435\u043d\u0433\u0435",
|
||||||
|
"indian rupee sign": "\u0437\u043d\u0430\u043a \u0456\u043d\u0434\u0456\u0439\u0441\u044c\u043a\u043e\u0457 \u0440\u0443\u043f\u0456\u0457",
|
||||||
|
"turkish lira sign": "\u0437\u043d\u0430\u043a \u0442\u0443\u0440\u0435\u0446\u044c\u043a\u043e\u0457 \u043b\u0456\u0440\u0438",
|
||||||
|
"nordic mark sign": "\u0437\u043d\u0430\u043a \u043f\u0456\u0432\u043d\u0456\u0447\u043d\u043e\u0457 \u043c\u0430\u0440\u043a\u0438",
|
||||||
|
"manat sign": "\u0437\u043d\u0430\u043a \u043c\u0430\u043d\u0430\u0442\u0443",
|
||||||
|
"ruble sign": "\u0440\u0443\u0431\u043b\u044c",
|
||||||
|
"yen character": "\u0441\u0438\u043c\u0432\u043e\u043b \u0454\u043d\u0438",
|
||||||
|
"yuan character": "\u0441\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044e",
|
||||||
|
"yuan character, in hong kong and taiwan": "\u0441\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044e \u0432 \u0413\u043e\u043d\u043a\u043e\u043d\u0437\u0456 \u0456 \u0422\u0430\u0439\u0432\u0430\u043d\u0456",
|
||||||
|
"yen\/yuan character variant one": "\u0441\u0438\u043c\u0432\u043e\u043b \u0454\u043d\u0438\/\u044e\u0430\u043d\u044e, \u043f\u0435\u0440\u0448\u0438\u0439 \u0432\u0430\u0440\u0456\u0430\u043d\u0442",
|
||||||
|
"Loading emoticons...": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u043c\u0430\u0439\u043b\u0438\u043a\u0456\u0432...",
|
||||||
|
"Could not load emoticons": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0441\u043c\u0430\u0439\u043b\u0438\u043a\u0438",
|
||||||
|
"People": "\u041b\u044e\u0434\u0438",
|
||||||
|
"Animals and Nature": "\u0422\u0432\u0430\u0440\u0438\u043d\u0438 \u0442\u0430 \u043f\u0440\u0438\u0440\u043e\u0434\u0430",
|
||||||
|
"Food and Drink": "\u0407\u0436\u0430 \u0442\u0430 \u043d\u0430\u043f\u043e\u0457",
|
||||||
|
"Activity": "\u0410\u043a\u0442\u0438\u0432\u043d\u0456\u0441\u0442\u044c",
|
||||||
|
"Travel and Places": "\u041f\u043e\u0434\u043e\u0440\u043e\u0436\u0456 \u0456 \u043c\u0456\u0441\u0446\u044f",
|
||||||
|
"Objects": "\u041e\u0431'\u0454\u043a\u0442\u0438",
|
||||||
|
"Flags": "\u041f\u0440\u0430\u043f\u043e\u0440\u0438",
|
||||||
|
"Characters": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u0436\u0456",
|
||||||
|
"Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438 (\u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0456\u043b\u0456\u0432)",
|
||||||
|
"Error: Form submit field collision.": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430: \u041a\u043e\u043b\u0456\u0437\u0456\u044f \u043f\u043e\u043b\u044f \u0432\u0456\u0434\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044f \u0444\u043e\u0440\u043c\u0438.",
|
||||||
|
"Error: No form element found.": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430: \u041d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0435\u043b\u0435\u043c\u0435\u043d\u0442 \u0444\u043e\u0440\u043c\u0438.",
|
||||||
|
"Update": "\u041e\u043d\u043e\u0432\u0438\u0442\u0438",
|
||||||
|
"Color swatch": "\u0417\u0440\u0430\u0437\u043e\u043a \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||||
|
"Turquoise": "\u0411\u0456\u0440\u044e\u0437\u043e\u0432\u0438\u0439",
|
||||||
|
"Green": "\u0417\u0435\u043b\u0435\u043d\u0438\u0439",
|
||||||
|
"Blue": "\u0411\u043b\u0430\u043a\u0438\u0442\u043d\u0438\u0439",
|
||||||
|
"Purple": "\u0424\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439",
|
||||||
|
"Navy Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0456\u0439",
|
||||||
|
"Dark Turquoise": "\u0422\u0435\u043c\u043d\u043e-\u0431\u0456\u0440\u044e\u0437\u043e\u0432\u0438\u0439",
|
||||||
|
"Dark Green": "\u0422\u0435\u043c\u043d\u043e-\u0437\u0435\u043b\u0435\u043d\u0438\u0439",
|
||||||
|
"Medium Blue": "\u0421\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0441\u0438\u043d\u0456\u0439",
|
||||||
|
"Medium Purple": "\u0421\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0444\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439",
|
||||||
|
"Midnight Blue": "\u041e\u043f\u0456\u0432\u043d\u0456\u0447\u043d\u0430 \u0431\u043b\u0430\u043a\u0438\u0442\u044c",
|
||||||
|
"Yellow": "\u0416\u043e\u0432\u0442\u0438\u0439",
|
||||||
|
"Orange": "\u041f\u043e\u043c\u0430\u0440\u0430\u043d\u0447\u0435\u0432\u0438\u0439",
|
||||||
|
"Red": "\u0427\u0435\u0440\u0432\u043e\u043d\u0438\u0439",
|
||||||
|
"Light Gray": "\u0421\u0432\u0456\u0442\u043b\u043e \u0441\u0456\u0440\u0438\u0439",
|
||||||
|
"Gray": "\u0421\u0456\u0440\u0438\u0439",
|
||||||
|
"Dark Yellow": "\u0422\u0435\u043c\u043d\u043e-\u0436\u043e\u0432\u0442\u0438\u0439",
|
||||||
|
"Dark Orange": "\u0422\u0435\u043c\u043d\u043e-\u043f\u043e\u043c\u0430\u0440\u0430\u043d\u0447\u0435\u0432\u0438\u0439",
|
||||||
|
"Dark Red": "\u0422\u0435\u043c\u043d\u043e-\u0447\u0435\u0440\u0432\u043e\u043d\u0438\u0439",
|
||||||
|
"Medium Gray": "\u0421\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0441\u0456\u0440\u0438\u0439",
|
||||||
|
"Dark Gray": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0456\u0440\u0438\u0439",
|
||||||
|
"Black": "\u0427\u043e\u0440\u043d\u0438\u0439",
|
||||||
|
"White": "\u0411\u0456\u043b\u0438\u0439",
|
||||||
|
"Switch to or from fullscreen mode": "\u041f\u0435\u0440\u0435\u043c\u043a\u043d\u0443\u0442\u0438 \u043d\u0430 \u043f\u043e\u0432\u043d\u0438\u0439 \u0435\u043a\u0440\u0430\u043d",
|
||||||
|
"Open help dialog": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0432\u0456\u043a\u043d\u043e \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438",
|
||||||
|
"history": "\u0456\u0441\u0442\u043e\u0440\u0456\u044f",
|
||||||
|
"styles": "\u0441\u0442\u0438\u043b\u0456",
|
||||||
|
"formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"alignment": "\u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||||
|
"indentation": "\u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||||
|
"permanent pen": "\u043c\u0430\u0440\u043a\u0435\u0440",
|
||||||
|
"comments": "\u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456",
|
||||||
|
"Anchor": "\u042f\u043a\u0456\u0440",
|
||||||
|
"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||||
|
"Code sample": "\u041f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443",
|
||||||
|
"Color": "\u043a\u043e\u043b\u0456\u0440",
|
||||||
|
"Emoticons": "\u0415\u043c\u043e\u0446\u0456\u0457",
|
||||||
|
"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||||
|
"Image": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Target": "\u0412\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Link": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||||
|
"Poster": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||||
|
"Media": "\u041c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456",
|
||||||
|
"Print": "\u0414\u0440\u0443\u043a\u0443\u0432\u0430\u0442\u0438",
|
||||||
|
"Prev": "\u0412\u0433\u043e\u0440\u0443",
|
||||||
|
"Find and replace": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0456\u043d\u0430",
|
||||||
|
"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||||
|
"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457",
|
||||||
|
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||||
|
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d"
|
||||||
|
});
|
|
@ -1,261 +0,0 @@
|
||||||
tinymce.addI18n('uk_UA',{
|
|
||||||
"Redo": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438",
|
|
||||||
"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
|
||||||
"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438",
|
|
||||||
"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438",
|
|
||||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
|
||||||
"Select all": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0443\u0441\u0435",
|
|
||||||
"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
|
||||||
"Ok": "Ok",
|
|
||||||
"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
|
||||||
"Visual aids": "\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0456 \u0437\u0430\u0441\u043e\u0431\u0438",
|
|
||||||
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
|
||||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
|
||||||
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
|
||||||
"Strikethrough": "\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
|
||||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
|
||||||
"Subscript": "\u0406\u043d\u0434\u0435\u043a\u0441",
|
|
||||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
|
||||||
"Align left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
|
||||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
|
||||||
"Align right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
|
||||||
"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438",
|
|
||||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
|
||||||
"Numbered list": "\u041f\u0440\u043e\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
|
||||||
"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
|
||||||
"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
|
||||||
"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438",
|
|
||||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl + X\/C\/V.",
|
|
||||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
|
||||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
|
||||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
|
||||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
|
||||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
|
||||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
|
||||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
|
||||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
|
||||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
|
||||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
|
||||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
|
||||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
|
||||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
|
||||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
|
||||||
"Preformatted": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u044c\u043e \u0432\u0456\u0434\u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u0438\u0439",
|
|
||||||
"Div": "Div",
|
|
||||||
"Pre": "Pre",
|
|
||||||
"Code": "\u041a\u043e\u0434",
|
|
||||||
"Paragraph": "\u0410\u0431\u0437\u0430\u0446",
|
|
||||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
|
||||||
"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439",
|
|
||||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0430\u0440\u0430\u0437 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443. \u0417\u043c\u0456\u0441\u0442 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u044f\u043a \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u043a\u0438 \u0412\u0438 \u043d\u0435 \u0432\u0438\u043c\u043a\u043d\u0435\u0442\u0435 \u0446\u044e \u043e\u043f\u0446\u0456\u044e.",
|
|
||||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
|
||||||
"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
|
||||||
"Class": "\u041a\u043b\u0430\u0441",
|
|
||||||
"Browse for an image": "\u0412\u0438\u0431\u0456\u0440 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"OR": "\u0410\u0411\u041e",
|
|
||||||
"Drop an image here": "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u044e\u0434\u0438",
|
|
||||||
"Upload": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438",
|
|
||||||
"Block": "\u0411\u043b\u043e\u043a",
|
|
||||||
"Align": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
||||||
"Default": "\u0423\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f",
|
|
||||||
"Circle": "\u041a\u043e\u043b\u043e",
|
|
||||||
"Disc": "\u0414\u0438\u0441\u043a",
|
|
||||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442",
|
|
||||||
"Lower Alpha": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
|
||||||
"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u043b\u0456\u0442\u0435\u0440\u0438",
|
|
||||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
|
||||||
"Upper Alpha": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
|
||||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
|
||||||
"Anchor": "\u041f\u0440\u0438\u0432'\u044f\u0437\u043a\u0430",
|
|
||||||
"Name": "\u0406\u043c'\u044f",
|
|
||||||
"Id": "\u041a\u043e\u0434",
|
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u041a\u043e\u0434 \u043c\u0430\u0454 \u043f\u043e\u0447\u0438\u043d\u0430\u0442\u0438\u0441\u044f \u0437 \u043b\u0456\u0442\u0435\u0440\u0438 \u0456 \u043c\u043e\u0436\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043b\u0438\u0448\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 \u043b\u0456\u0442\u0435\u0440, \u0446\u0438\u0444\u0440, \u0434\u0435\u0444\u0456\u0441\u0443, \u043a\u0440\u0430\u043f\u043a\u0438, \u043a\u043e\u043c\u0438 \u0430\u0431\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u0433\u043e \u043f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f.",
|
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438 ?",
|
|
||||||
"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u043f\u0440\u043e\u0435\u043a\u0442",
|
|
||||||
"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b",
|
|
||||||
"Source code": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
|
||||||
"Insert\/Edit code sample": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443",
|
|
||||||
"Language": "\u041c\u043e\u0432\u0430",
|
|
||||||
"Code sample": "\u041f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443",
|
|
||||||
"Color": "\u041a\u043e\u043b\u0456\u0440",
|
|
||||||
"R": "R",
|
|
||||||
"G": "G",
|
|
||||||
"B": "B",
|
|
||||||
"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
|
||||||
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e",
|
|
||||||
"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438",
|
|
||||||
"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443",
|
|
||||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
|
||||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
|
||||||
"Description": "\u041e\u043f\u0438\u0441",
|
|
||||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
|
||||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
|
||||||
"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f",
|
|
||||||
"Fullscreen": "\u041d\u0430 \u0432\u0435\u0441\u044c \u0435\u043a\u0440\u0430\u043d",
|
|
||||||
"Action": "\u0414\u0456\u044f",
|
|
||||||
"Shortcut": "\u042f\u0440\u043b\u0438\u043a",
|
|
||||||
"Help": "\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430",
|
|
||||||
"Address": "\u0410\u0434\u0440\u0435\u0441\u0430",
|
|
||||||
"Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043c\u0435\u043d\u044e",
|
|
||||||
"Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0456\u043d\u0441\u0442\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u0445",
|
|
||||||
"Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0448\u043b\u044f\u0445\u0443",
|
|
||||||
"Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442",
|
|
||||||
"Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f (\u044f\u043a\u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e)",
|
|
||||||
"Save (if save plugin activated)": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 (\u044f\u043a\u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e)",
|
|
||||||
"Find (if searchreplace plugin activated)": "\u0417\u043d\u0430\u0439\u0442\u0438 (\u044f\u043a\u0449\u043e \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e)",
|
|
||||||
"Plugins installed ({0}):": "\u041d\u0430\u044f\u0432\u043d\u0456 \u0434\u043e\u0434\u0430\u0442\u043a\u0438 ({0}):",
|
|
||||||
"Premium plugins:": "\u041f\u0440\u0435\u043c\u0456\u0430\u043b\u044c\u043d\u0456 \u0434\u043e\u0434\u0430\u0442\u043a\u0438:",
|
|
||||||
"Learn more...": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e...",
|
|
||||||
"You are using {0}": "\u0423 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u0456 {0}",
|
|
||||||
"Plugins": "\u041f\u043b\u0430\u0433\u0456\u043d\u0438",
|
|
||||||
"Handy Shortcuts": "\u041a\u043e\u0440\u0438\u0441\u043d\u0456 \u044f\u0440\u043b\u0438\u043a\u0438",
|
|
||||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f",
|
|
||||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
|
||||||
"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440",
|
|
||||||
"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457",
|
|
||||||
"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435",
|
|
||||||
"Advanced": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e",
|
|
||||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
|
||||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
|
||||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
|
||||||
"Border": "\u041c\u0435\u0436\u0430",
|
|
||||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Image": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c",
|
|
||||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438",
|
|
||||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e",
|
|
||||||
"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456",
|
|
||||||
"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456",
|
|
||||||
"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Zoom in": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438",
|
|
||||||
"Zoom out": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438",
|
|
||||||
"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438",
|
|
||||||
"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
|
||||||
"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f",
|
|
||||||
"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c",
|
|
||||||
"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c",
|
|
||||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
|
||||||
"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432",
|
|
||||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
|
||||||
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f",
|
|
||||||
"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438",
|
|
||||||
"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f",
|
|
||||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
|
||||||
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
|
||||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
||||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
||||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
|
||||||
"Url": "URL",
|
|
||||||
"Target": "\u041c\u0435\u0442\u0430",
|
|
||||||
"None": "\u041d\u0456",
|
|
||||||
"New window": "\u041d\u043e\u0432\u0435 \u0432\u0456\u043a\u043d\u043e",
|
|
||||||
"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
||||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
|
||||||
"Link": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
||||||
"Paste or type a link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0430\u0431\u043e \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 mailto:?",
|
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 http:\/\/?",
|
|
||||||
"Link list": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c",
|
|
||||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
|
||||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
|
||||||
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456",
|
|
||||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
|
||||||
"Poster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
|
||||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:",
|
|
||||||
"Embed": "\u0412\u043f\u0440\u043e\u0432\u0430\u0434\u0438\u0442\u0438",
|
|
||||||
"Media": "\u041c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456",
|
|
||||||
"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
|
||||||
"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438",
|
|
||||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442",
|
|
||||||
"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434",
|
|
||||||
"Print": "\u0414\u0440\u0443\u043a",
|
|
||||||
"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
|
||||||
"Find": "\u0417\u043d\u0430\u0439\u0442\u0438",
|
|
||||||
"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",
|
|
||||||
"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
|
||||||
"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",
|
|
||||||
"Prev": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439",
|
|
||||||
"Next": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439",
|
|
||||||
"Find and replace": "\u0417\u043d\u0430\u0439\u0442\u0438 \u0456 \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
|
||||||
"Could not find the specified string.": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a.",
|
|
||||||
"Match case": "\u0417 \u0443\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0443",
|
|
||||||
"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
|
||||||
"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457",
|
|
||||||
"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438",
|
|
||||||
"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
|
||||||
"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438",
|
|
||||||
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0432 \u0441\u043b\u043e\u0432\u043d\u0438\u043a",
|
|
||||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
|
||||||
"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
|
||||||
"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
|
||||||
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
|
||||||
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
|
||||||
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
|
||||||
"Cell properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
|
||||||
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
|
||||||
"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443",
|
|
||||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
|
||||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
|
||||||
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
|
||||||
"Row properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0440\u044f\u0434\u043a\u0430",
|
|
||||||
"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
|
||||||
"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
|
||||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
|
||||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
|
||||||
"Insert column before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0435\u0440\u0435\u0434",
|
|
||||||
"Insert column after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0456\u0441\u043b\u044f",
|
|
||||||
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
|
||||||
"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456",
|
|
||||||
"Rows": "\u0420\u044f\u0434\u043a\u0438",
|
|
||||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
|
||||||
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
|
||||||
"Cell spacing": "\u0406\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438",
|
|
||||||
"Cell padding": "\u0417\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a",
|
|
||||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
|
||||||
"Left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
|
||||||
"Center": "\u0426\u0435\u043d\u0442\u0440",
|
|
||||||
"Right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
|
||||||
"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
|
||||||
"Scope": "\u0423 \u043c\u0435\u0436\u0430\u0445",
|
|
||||||
"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
||||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
||||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
|
||||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
|
||||||
"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
|
||||||
"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
|
||||||
"Header cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443",
|
|
||||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432",
|
|
||||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432",
|
|
||||||
"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430",
|
|
||||||
"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
|
||||||
"Body": "\u0422\u0456\u043b\u043e",
|
|
||||||
"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
|
||||||
"Border color": "\u041a\u043e\u043b\u0456\u0440 \u043c\u0435\u0436\u0456",
|
|
||||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d",
|
|
||||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
|
||||||
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
|
|
||||||
"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443",
|
|
||||||
"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443",
|
|
||||||
"Custom...": "\u0406\u043d\u0448\u0438\u0439...",
|
|
||||||
"Custom color": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440",
|
|
||||||
"No color": "\u0411\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
|
||||||
"Table of Contents": "\u0417\u043c\u0456\u0441\u0442",
|
|
||||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438",
|
|
||||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
|
||||||
"Words: {0}": "\u0421\u043b\u043e\u0432\u0430: {0}",
|
|
||||||
"{0} words": "{0} \u0441\u043b\u0456\u0432",
|
|
||||||
"File": "\u0424\u0430\u0439\u043b",
|
|
||||||
"Edit": "\u041f\u0440\u0430\u0432\u043a\u0430",
|
|
||||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
|
||||||
"View": "\u0412\u0438\u0434",
|
|
||||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
|
||||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f",
|
|
||||||
"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
|
||||||
"Powered by {0}": "\u0417\u0430 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0438\u043a\u0438 {0}",
|
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c Rich \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 - \u043c\u0435\u043d\u044e. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F10 - \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-0 - \u0434\u043e\u0432\u0456\u0434\u043a\u0430"
|
|
||||||
});
|
|
|
@ -1,4 +1,4 @@
|
||||||
tinymce.addI18n('zh_CN',{
|
tinymce.addI18n('zh',{
|
||||||
"Redo": "\u91cd\u590d",
|
"Redo": "\u91cd\u590d",
|
||||||
"Undo": "\u64a4\u6d88",
|
"Undo": "\u64a4\u6d88",
|
||||||
"Cut": "\u526a\u5207",
|
"Cut": "\u526a\u5207",
|
||||||
|
@ -50,7 +50,7 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Inline": "\u6587\u672c",
|
"Inline": "\u6587\u672c",
|
||||||
"Blocks": "\u533a\u5757",
|
"Blocks": "\u533a\u5757",
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
|
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
|
||||||
"Font Family": "\u5b57\u4f53",
|
"Fonts": "\u5b57\u4f53",
|
||||||
"Font Sizes": "\u5b57\u53f7",
|
"Font Sizes": "\u5b57\u53f7",
|
||||||
"Class": "Class",
|
"Class": "Class",
|
||||||
"Browse for an image": "\u6d4f\u89c8\u56fe\u50cf",
|
"Browse for an image": "\u6d4f\u89c8\u56fe\u50cf",
|
||||||
|
@ -68,25 +68,25 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
||||||
"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
|
"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
|
||||||
"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
|
||||||
"Anchor": "\u951a\u70b9",
|
"Anchor...": "\u951a\u70b9...",
|
||||||
"Name": "\u540d\u79f0",
|
"Name": "\u540d\u79f0",
|
||||||
"Id": "\u6807\u8bc6\u7b26",
|
"Id": "\u6807\u8bc6\u7b26",
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002",
|
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002",
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
|
"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
|
||||||
"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
|
"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
|
||||||
"Special character": "\u7279\u6b8a\u7b26\u53f7",
|
"Special characters...": "\u7279\u6b8a\u5b57\u7b26...",
|
||||||
"Source code": "\u6e90\u4ee3\u7801",
|
"Source code": "\u6e90\u4ee3\u7801",
|
||||||
"Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b",
|
"Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b",
|
||||||
"Language": "\u8bed\u8a00",
|
"Language": "\u8bed\u8a00",
|
||||||
"Code sample": "\u4ee3\u7801\u793a\u4f8b",
|
"Code sample...": "\u793a\u4f8b\u4ee3\u7801...",
|
||||||
"Color": "\u989c\u8272",
|
"Color Picker": "\u9009\u53d6\u989c\u8272",
|
||||||
"R": "R",
|
"R": "R",
|
||||||
"G": "G",
|
"G": "G",
|
||||||
"B": "B",
|
"B": "B",
|
||||||
"Left to right": "\u4ece\u5de6\u5230\u53f3",
|
"Left to right": "\u4ece\u5de6\u5230\u53f3",
|
||||||
"Right to left": "\u4ece\u53f3\u5230\u5de6",
|
"Right to left": "\u4ece\u53f3\u5230\u5de6",
|
||||||
"Emoticons": "\u8868\u60c5",
|
"Emoticons...": "\u8868\u60c5\u7b26\u53f7...",
|
||||||
"Document properties": "\u6587\u6863\u5c5e\u6027",
|
"Metadata and Document Properties": "\u5143\u6570\u636e\u548c\u6587\u6863\u5c5e\u6027",
|
||||||
"Title": "\u6807\u9898",
|
"Title": "\u6807\u9898",
|
||||||
"Keywords": "\u5173\u952e\u8bcd",
|
"Keywords": "\u5173\u952e\u8bcd",
|
||||||
"Description": "\u63cf\u8ff0",
|
"Description": "\u63cf\u8ff0",
|
||||||
|
@ -124,7 +124,7 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
|
"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
|
||||||
"Border": "\u8fb9\u6846",
|
"Border": "\u8fb9\u6846",
|
||||||
"Insert image": "\u63d2\u5165\u56fe\u7247",
|
"Insert image": "\u63d2\u5165\u56fe\u7247",
|
||||||
"Image": "\u56fe\u7247",
|
"Image...": "\u56fe\u7247...",
|
||||||
"Image list": "\u56fe\u7247\u5217\u8868",
|
"Image list": "\u56fe\u7247\u5217\u8868",
|
||||||
"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
|
"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
|
||||||
"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
|
"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
|
||||||
|
@ -147,16 +147,17 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Back": "\u540e\u9000",
|
"Back": "\u540e\u9000",
|
||||||
"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
|
"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
|
||||||
"Date\/time": "\u65e5\u671f\/\u65f6\u95f4",
|
"Date\/time": "\u65e5\u671f\/\u65f6\u95f4",
|
||||||
"Insert link": "\u63d2\u5165\u94fe\u63a5",
|
"Insert\/Edit Link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
|
||||||
"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
|
"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
|
||||||
"Text to display": "\u663e\u793a\u6587\u5b57",
|
"Text to display": "\u663e\u793a\u6587\u5b57",
|
||||||
"Url": "\u5730\u5740",
|
"Url": "\u5730\u5740",
|
||||||
"Target": "\u6253\u5f00\u65b9\u5f0f",
|
"Open link in...": "\u94fe\u63a5\u6253\u5f00\u4f4d\u7f6e...",
|
||||||
|
"Current window": "\u5f53\u524d\u7a97\u53e3",
|
||||||
"None": "\u65e0",
|
"None": "\u65e0",
|
||||||
"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
|
"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
|
||||||
"Remove link": "\u5220\u9664\u94fe\u63a5",
|
"Remove link": "\u5220\u9664\u94fe\u63a5",
|
||||||
"Anchors": "\u951a\u70b9",
|
"Anchors": "\u951a\u70b9",
|
||||||
"Link": "\u94fe\u63a5",
|
"Link...": "\u94fe\u63a5...",
|
||||||
"Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5",
|
"Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5",
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
|
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
|
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
|
||||||
|
@ -165,26 +166,27 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
|
"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
|
||||||
"Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53",
|
"Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53",
|
||||||
"Alternative source": "\u955c\u50cf",
|
"Alternative source": "\u955c\u50cf",
|
||||||
"Poster": "\u5c01\u9762",
|
"Alternative source URL": "\u66ff\u4ee3\u6765\u6e90\u7f51\u5740",
|
||||||
|
"Media poster (Image URL)": "\u5c01\u9762(\u56fe\u7247\u5730\u5740)",
|
||||||
"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
|
"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
|
||||||
"Embed": "\u5185\u5d4c",
|
"Embed": "\u5185\u5d4c",
|
||||||
"Media": "\u5a92\u4f53",
|
"Media...": "\u591a\u5a92\u4f53...",
|
||||||
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
|
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
|
||||||
"Page break": "\u5206\u9875\u7b26",
|
"Page break": "\u5206\u9875\u7b26",
|
||||||
"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
|
"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
|
||||||
"Preview": "\u9884\u89c8",
|
"Preview": "\u9884\u89c8",
|
||||||
"Print": "\u6253\u5370",
|
"Print...": "\u6253\u5370...",
|
||||||
"Save": "\u4fdd\u5b58",
|
"Save": "\u4fdd\u5b58",
|
||||||
"Find": "\u67e5\u627e",
|
"Find": "\u67e5\u627e",
|
||||||
"Replace with": "\u66ff\u6362\u4e3a",
|
"Replace with": "\u66ff\u6362\u4e3a",
|
||||||
"Replace": "\u66ff\u6362",
|
"Replace": "\u66ff\u6362",
|
||||||
"Replace all": "\u5168\u90e8\u66ff\u6362",
|
"Replace all": "\u5168\u90e8\u66ff\u6362",
|
||||||
"Prev": "\u4e0a\u4e00\u4e2a",
|
"Previous": "\u4e0a\u4e00\u4e2a",
|
||||||
"Next": "\u4e0b\u4e00\u4e2a",
|
"Next": "\u4e0b\u4e00\u4e2a",
|
||||||
"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
|
"Find and replace...": "\u67e5\u627e\u5e76\u66ff\u6362...",
|
||||||
"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
|
"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
|
||||||
"Match case": "\u533a\u5206\u5927\u5c0f\u5199",
|
"Match case": "\u533a\u5206\u5927\u5c0f\u5199",
|
||||||
"Whole words": "\u5168\u5b57\u5339\u914d",
|
"Find whole words only": "\u5168\u5b57\u5339\u914d",
|
||||||
"Spell check": "\u62fc\u5199\u68c0\u67e5",
|
"Spell check": "\u62fc\u5199\u68c0\u67e5",
|
||||||
"Ignore": "\u5ffd\u7565",
|
"Ignore": "\u5ffd\u7565",
|
||||||
"Ignore all": "\u5168\u90e8\u5ffd\u7565",
|
"Ignore all": "\u5168\u90e8\u5ffd\u7565",
|
||||||
|
@ -216,7 +218,7 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Height": "\u9ad8",
|
"Height": "\u9ad8",
|
||||||
"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
|
"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
|
||||||
"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
|
"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
|
||||||
"Caption": "\u6807\u9898",
|
"Show caption": "\u663e\u793a\u6807\u9898",
|
||||||
"Left": "\u5de6\u5bf9\u9f50",
|
"Left": "\u5de6\u5bf9\u9f50",
|
||||||
"Center": "\u5c45\u4e2d",
|
"Center": "\u5c45\u4e2d",
|
||||||
"Right": "\u53f3\u5bf9\u9f50",
|
"Right": "\u53f3\u5bf9\u9f50",
|
||||||
|
@ -236,7 +238,7 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Body": "\u8868\u4f53",
|
"Body": "\u8868\u4f53",
|
||||||
"Footer": "\u8868\u5c3e",
|
"Footer": "\u8868\u5c3e",
|
||||||
"Border color": "\u8fb9\u6846\u989c\u8272",
|
"Border color": "\u8fb9\u6846\u989c\u8272",
|
||||||
"Insert template": "\u63d2\u5165\u6a21\u677f",
|
"Insert template...": "\u63d2\u5165\u6a21\u677f...",
|
||||||
"Templates": "\u6a21\u677f",
|
"Templates": "\u6a21\u677f",
|
||||||
"Template": "\u6a21\u677f",
|
"Template": "\u6a21\u677f",
|
||||||
"Text color": "\u6587\u5b57\u989c\u8272",
|
"Text color": "\u6587\u5b57\u989c\u8272",
|
||||||
|
@ -244,9 +246,11 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Custom...": "\u81ea\u5b9a\u4e49...",
|
"Custom...": "\u81ea\u5b9a\u4e49...",
|
||||||
"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
|
"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
|
||||||
"No color": "\u65e0",
|
"No color": "\u65e0",
|
||||||
|
"Remove color": "\u5220\u9664\u989c\u8272",
|
||||||
"Table of Contents": "\u5185\u5bb9\u5217\u8868",
|
"Table of Contents": "\u5185\u5bb9\u5217\u8868",
|
||||||
"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
|
"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
|
||||||
"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
|
"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
|
||||||
|
"Word count": "\u5b57\u6570",
|
||||||
"Words: {0}": "\u5b57\u6570\uff1a{0}",
|
"Words: {0}": "\u5b57\u6570\uff1a{0}",
|
||||||
"{0} words": "{0} \u5b57",
|
"{0} words": "{0} \u5b57",
|
||||||
"File": "\u6587\u4ef6",
|
"File": "\u6587\u4ef6",
|
||||||
|
@ -257,5 +261,129 @@ tinymce.addI18n('zh_CN',{
|
||||||
"Table": "\u8868\u683c",
|
"Table": "\u8868\u683c",
|
||||||
"Tools": "\u5de5\u5177",
|
"Tools": "\u5de5\u5177",
|
||||||
"Powered by {0}": "\u7531{0}\u9a71\u52a8",
|
"Powered by {0}": "\u7531{0}\u9a71\u52a8",
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9"
|
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9",
|
||||||
|
"Image title": "\u56fe\u7247\u6807\u9898",
|
||||||
|
"Border width": "\u8fb9\u6846\u5bbd\u5ea6",
|
||||||
|
"Border style": "\u8fb9\u6846\u6837\u5f0f",
|
||||||
|
"Error": "\u9519\u8bef",
|
||||||
|
"Warn": "\u6ce8\u610f",
|
||||||
|
"Valid": "\u6709\u6548",
|
||||||
|
"To open the popup, press Shift+Enter": "\u6309Shitf+Enter\u952e\u6253\u5f00\u5bf9\u8bdd\u6846",
|
||||||
|
"Rich Text Area. Press ALT-0 for help.": "\u7f16\u8f91\u533a. \u6309Alt+0\u952e\u6253\u5f00\u5e2e\u52a9",
|
||||||
|
"System Font": "\u7cfb\u7edf\u5b57\u4f53",
|
||||||
|
"Failed to upload image: {0}": "\u56fe\u7247\u4e0a\u4f20\u5931\u8d25: {0}",
|
||||||
|
"Failed to load plugin: {0} from url {1}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25: {0} - {1}",
|
||||||
|
"Failed to load plugin url: {0}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25: {0}",
|
||||||
|
"Failed to initialize plugin: {0}": "\u63d2\u4ef6\u521d\u59cb\u5316\u5931\u8d25: {0}",
|
||||||
|
"example": "\u793a\u4f8b",
|
||||||
|
"Search": "\u67e5\u627e",
|
||||||
|
"All": "\u5168\u90e8",
|
||||||
|
"Currency": "\u8d27\u5e01",
|
||||||
|
"Text": "\u6587\u672c",
|
||||||
|
"Quotations": "\u5f15\u7528",
|
||||||
|
"Mathematical": "\u6570\u5b66\u8fd0\u7b97\u7b26",
|
||||||
|
"Extended Latin": "\u62c9\u4e01\u8bed\u6269\u5145",
|
||||||
|
"Symbols": "\u7b26\u53f7",
|
||||||
|
"Arrows": "\u7bad\u5934",
|
||||||
|
"User Defined": "\u81ea\u5b9a\u4e49",
|
||||||
|
"dollar sign": "\u7f8e\u5143",
|
||||||
|
"currency sign": "\u8d27\u5e01",
|
||||||
|
"euro-currency sign": "\u6b27\u5143",
|
||||||
|
"colon sign": "\u5192\u53f7",
|
||||||
|
"cruzeiro sign": "\u514b\u9c81\u8d5b\u7f57\u5e01",
|
||||||
|
"french franc sign": "\u6cd5\u90ce",
|
||||||
|
"lira sign": "\u91cc\u62c9",
|
||||||
|
"mill sign": "\u5bc6\u5c14",
|
||||||
|
"naira sign": "\u5948\u62c9",
|
||||||
|
"peseta sign": "\u6bd4\u585e\u5854",
|
||||||
|
"rupee sign": "\u5362\u6bd4",
|
||||||
|
"won sign": "\u97e9\u5143",
|
||||||
|
"new sheqel sign": "\u65b0\u8c22\u514b\u5c14",
|
||||||
|
"dong sign": "\u8d8a\u5357\u76fe",
|
||||||
|
"kip sign": "\u8001\u631d\u57fa\u666e",
|
||||||
|
"tugrik sign": "\u56fe\u683c\u91cc\u514b",
|
||||||
|
"drachma sign": "\u5fb7\u62c9\u514b\u9a6c",
|
||||||
|
"german penny symbol": "\u5fb7\u56fd\u4fbf\u58eb",
|
||||||
|
"peso sign": "\u6bd4\u7d22",
|
||||||
|
"guarani sign": "\u74dc\u62c9\u5c3c",
|
||||||
|
"austral sign": "\u6fb3\u5143",
|
||||||
|
"hryvnia sign": "\u683c\u91cc\u592b\u5c3c\u4e9a",
|
||||||
|
"cedi sign": "\u585e\u5730",
|
||||||
|
"livre tournois sign": "\u91cc\u5f17\u5f17\u5c14",
|
||||||
|
"spesmilo sign": "\u4e00\u5343spesoj\u7684\u8d27\u5e01\u7b26\u53f7\uff0c\u8be5\u8d27\u5e01\u672a\u4f7f\u7528",
|
||||||
|
"tenge sign": "\u575a\u6208",
|
||||||
|
"indian rupee sign": "\u5370\u5ea6\u5362\u6bd4",
|
||||||
|
"turkish lira sign": "\u571f\u8033\u5176\u91cc\u62c9",
|
||||||
|
"nordic mark sign": "\u5317\u6b27\u9a6c\u514b",
|
||||||
|
"manat sign": "\u9a6c\u7eb3\u7279",
|
||||||
|
"ruble sign": "\u5362\u5e03",
|
||||||
|
"yen character": "\u65e5\u5143",
|
||||||
|
"yuan character": "\u4eba\u6c11\u5e01\u5143",
|
||||||
|
"yuan character, in hong kong and taiwan": "\u5143\uff08\u7e41\u4f53\uff09",
|
||||||
|
"yen\/yuan character variant one": "\u5143\uff08\u5927\u5199\uff09",
|
||||||
|
"Loading emoticons...": "\u52a0\u8f7d\u989c\u6587\u5b57...",
|
||||||
|
"Could not load emoticons": "\u4e0d\u80fd\u52a0\u8f7d\u989c\u6587\u5b57",
|
||||||
|
"People": "\u4eba\u7c7b",
|
||||||
|
"Animals and Nature": "\u52a8\u7269\u548c\u81ea\u7136",
|
||||||
|
"Food and Drink": "\u98df\u7269\u548c\u996e\u54c1",
|
||||||
|
"Activity": "\u6d3b\u52a8",
|
||||||
|
"Travel and Places": "\u65c5\u6e38\u548c\u5730\u70b9",
|
||||||
|
"Objects": "\u7269\u4ef6",
|
||||||
|
"Flags": "\u65d7\u5e1c",
|
||||||
|
"Characters": "\u5b57\u6570",
|
||||||
|
"Characters (no spaces)": "\u5b57\u6570\uff08\u4e0d\u542b\u7a7a\u683c\uff09",
|
||||||
|
"Error: Form submit field collision.": "\u9519\u8bef: \u8868\u5355\u63d0\u4ea4\u5b57\u6bb5\u51b2\u7a81.",
|
||||||
|
"Error: No form element found.": "\u9519\u8bef: \u6ca1\u6709\u8868\u5355\u63a7\u4ef6.",
|
||||||
|
"Update": "\u66f4\u65b0",
|
||||||
|
"Color swatch": "\u989c\u8272\u6837\u672c",
|
||||||
|
"Turquoise": "\u9752\u7eff\u8272",
|
||||||
|
"Green": "\u7eff\u8272",
|
||||||
|
"Blue": "\u84dd\u8272",
|
||||||
|
"Purple": "\u7d2b\u8272",
|
||||||
|
"Navy Blue": "\u6d77\u519b\u84dd",
|
||||||
|
"Dark Turquoise": "\u6df1\u84dd\u7eff\u8272",
|
||||||
|
"Dark Green": "\u6697\u7eff\u8272",
|
||||||
|
"Medium Blue": "\u4e2d\u84dd\u8272",
|
||||||
|
"Medium Purple": "\u4e2d\u7d2b\u8272",
|
||||||
|
"Midnight Blue": "\u6df1\u84dd\u8272",
|
||||||
|
"Yellow": "\u9ec4\u8272",
|
||||||
|
"Orange": "\u6a59\u8272",
|
||||||
|
"Red": "\u7ea2\u8272",
|
||||||
|
"Light Gray": "\u6d45\u7070\u8272",
|
||||||
|
"Gray": "\u7070\u8272",
|
||||||
|
"Dark Yellow": "\u6697\u9ec4\u8272",
|
||||||
|
"Dark Orange": "\u6697\u6a59\u8272",
|
||||||
|
"Dark Red": "\u6697\u7ea2\u8272",
|
||||||
|
"Medium Gray": "\u4e2d\u7070\u8272",
|
||||||
|
"Dark Gray": "\u6df1\u7070\u8272",
|
||||||
|
"Black": "\u9ed1\u8272",
|
||||||
|
"White": "\u767d\u8272",
|
||||||
|
"Switch to or from fullscreen mode": "\u5207\u6362\u5168\u5c4f\u6a21\u5f0f",
|
||||||
|
"Open help dialog": "\u6253\u5f00\u5e2e\u52a9\u5bf9\u8bdd\u6846",
|
||||||
|
"history": "\u5386\u53f2",
|
||||||
|
"styles": "\u6837\u5f0f",
|
||||||
|
"formatting": "\u683c\u5f0f\u5316",
|
||||||
|
"alignment": "\u5bf9\u9f50",
|
||||||
|
"indentation": "\u7f29\u8fdb",
|
||||||
|
"permanent pen": "\u8bb0\u53f7\u7b14",
|
||||||
|
"comments": "\u5907\u6ce8",
|
||||||
|
"Anchor": "\u951a\u70b9",
|
||||||
|
"Special character": "\u7279\u6b8a\u7b26\u53f7",
|
||||||
|
"Code sample": "\u4ee3\u7801\u793a\u4f8b",
|
||||||
|
"Color": "\u989c\u8272",
|
||||||
|
"Emoticons": "\u8868\u60c5",
|
||||||
|
"Document properties": "\u6587\u6863\u5c5e\u6027",
|
||||||
|
"Image": "\u56fe\u7247",
|
||||||
|
"Insert link": "\u63d2\u5165\u94fe\u63a5",
|
||||||
|
"Target": "\u6253\u5f00\u65b9\u5f0f",
|
||||||
|
"Link": "\u94fe\u63a5",
|
||||||
|
"Poster": "\u5c01\u9762",
|
||||||
|
"Media": "\u5a92\u4f53",
|
||||||
|
"Print": "\u6253\u5370",
|
||||||
|
"Prev": "\u4e0a\u4e00\u4e2a",
|
||||||
|
"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
|
||||||
|
"Whole words": "\u5168\u5b57\u5339\u914d",
|
||||||
|
"Spellcheck": "\u62fc\u5199\u68c0\u67e5",
|
||||||
|
"Caption": "\u6807\u9898",
|
||||||
|
"Insert template": "\u63d2\u5165\u6a21\u677f"
|
||||||
});
|
});
|
|
@ -1,261 +0,0 @@
|
||||||
tinymce.addI18n('zh_TW',{
|
|
||||||
"Redo": "\u53d6\u6d88\u5fa9\u539f",
|
|
||||||
"Undo": "\u5fa9\u539f",
|
|
||||||
"Cut": "\u526a\u4e0b",
|
|
||||||
"Copy": "\u8907\u88fd",
|
|
||||||
"Paste": "\u8cbc\u4e0a",
|
|
||||||
"Select all": "\u5168\u9078",
|
|
||||||
"New document": "\u65b0\u6587\u4ef6",
|
|
||||||
"Ok": "\u78ba\u5b9a",
|
|
||||||
"Cancel": "\u53d6\u6d88",
|
|
||||||
"Visual aids": "\u5c0f\u5e6b\u624b",
|
|
||||||
"Bold": "\u7c97\u9ad4",
|
|
||||||
"Italic": "\u659c\u9ad4",
|
|
||||||
"Underline": "\u5e95\u7dda",
|
|
||||||
"Strikethrough": "\u522a\u9664\u7dda",
|
|
||||||
"Superscript": "\u4e0a\u6a19",
|
|
||||||
"Subscript": "\u4e0b\u6a19",
|
|
||||||
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
|
|
||||||
"Align left": "\u7f6e\u5de6\u5c0d\u9f4a",
|
|
||||||
"Align center": "\u7f6e\u4e2d\u5c0d\u9f4a",
|
|
||||||
"Align right": "\u7f6e\u53f3\u5c0d\u9f4a",
|
|
||||||
"Justify": "\u5de6\u53f3\u5c0d\u9f4a",
|
|
||||||
"Bullet list": "\u9805\u76ee\u6e05\u55ae",
|
|
||||||
"Numbered list": "\u6578\u5b57\u6e05\u55ae",
|
|
||||||
"Decrease indent": "\u6e1b\u5c11\u7e2e\u6392",
|
|
||||||
"Increase indent": "\u589e\u52a0\u7e2e\u6392",
|
|
||||||
"Close": "\u95dc\u9589",
|
|
||||||
"Formats": "\u683c\u5f0f",
|
|
||||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002",
|
|
||||||
"Headers": "\u6a19\u984c",
|
|
||||||
"Header 1": "\u6a19\u984c 1",
|
|
||||||
"Header 2": "\u6a19\u984c 2",
|
|
||||||
"Header 3": "\u6a19\u984c 3",
|
|
||||||
"Header 4": "\u6a19\u984c 4",
|
|
||||||
"Header 5": "\u6a19\u984c 5",
|
|
||||||
"Header 6": "\u6a19\u984c 6",
|
|
||||||
"Headings": "\u6a19\u984c",
|
|
||||||
"Heading 1": "\u6a19\u984c 1",
|
|
||||||
"Heading 2": "\u6a19\u984c 2",
|
|
||||||
"Heading 3": "\u6a19\u984c 3",
|
|
||||||
"Heading 4": "\u6a19\u984c 4",
|
|
||||||
"Heading 5": "\u6a19\u984c 5",
|
|
||||||
"Heading 6": "\u6a19\u984c 6",
|
|
||||||
"Preformatted": "\u9810\u5148\u6392\u7248",
|
|
||||||
"Div": "Div",
|
|
||||||
"Pre": "Pre",
|
|
||||||
"Code": "\u7a0b\u5f0f\u78bc",
|
|
||||||
"Paragraph": "\u6bb5\u843d",
|
|
||||||
"Blockquote": "\u5f15\u7528",
|
|
||||||
"Inline": "Inline",
|
|
||||||
"Blocks": "\u5340\u584a",
|
|
||||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002",
|
|
||||||
"Font Family": "\u5b57\u9ad4",
|
|
||||||
"Font Sizes": "\u5b57\u578b\u5927\u5c0f",
|
|
||||||
"Class": "\u985e\u5225",
|
|
||||||
"Browse for an image": "\u5f9e\u5716\u7247\u4e2d\u700f\u89bd",
|
|
||||||
"OR": "\u6216",
|
|
||||||
"Drop an image here": "\u62d6\u66f3\u5716\u7247\u81f3\u6b64",
|
|
||||||
"Upload": "\u4e0a\u50b3",
|
|
||||||
"Block": "\u5340\u584a",
|
|
||||||
"Align": "\u5c0d\u9f4a",
|
|
||||||
"Default": "\u9810\u8a2d",
|
|
||||||
"Circle": "\u7a7a\u5fc3\u5713",
|
|
||||||
"Disc": "\u5be6\u5fc3\u5713",
|
|
||||||
"Square": "\u6b63\u65b9\u5f62",
|
|
||||||
"Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd",
|
|
||||||
"Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd",
|
|
||||||
"Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57",
|
|
||||||
"Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd",
|
|
||||||
"Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57",
|
|
||||||
"Anchor": "\u52a0\u5165\u9328\u9ede",
|
|
||||||
"Name": "\u540d\u7a31",
|
|
||||||
"Id": "Id",
|
|
||||||
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id\u61c9\u4ee5\u5b57\u6bcd\u958b\u982d\uff0c\u5f8c\u9762\u63a5\u8457\u5b57\u6bcd\uff0c\u6578\u5b57\uff0c\u7834\u6298\u865f\uff0c\u9ede\u6578\uff0c\u5192\u865f\u6216\u4e0b\u5283\u7dda\u3002",
|
|
||||||
"You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f",
|
|
||||||
"Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f",
|
|
||||||
"Special character": "\u7279\u6b8a\u5b57\u5143",
|
|
||||||
"Source code": "\u539f\u59cb\u78bc",
|
|
||||||
"Insert\/Edit code sample": "\u63d2\u5165\/\u7de8\u8f2f \u7a0b\u5f0f\u78bc\u7bc4\u4f8b",
|
|
||||||
"Language": "\u8a9e\u8a00",
|
|
||||||
"Code sample": "\u7a0b\u5f0f\u78bc\u7bc4\u4f8b",
|
|
||||||
"Color": "\u984f\u8272",
|
|
||||||
"R": "\u7d05",
|
|
||||||
"G": "\u7da0",
|
|
||||||
"B": "\u85cd",
|
|
||||||
"Left to right": "\u5f9e\u5de6\u5230\u53f3",
|
|
||||||
"Right to left": "\u5f9e\u53f3\u5230\u5de6",
|
|
||||||
"Emoticons": "\u8868\u60c5",
|
|
||||||
"Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027",
|
|
||||||
"Title": "\u6a19\u984c",
|
|
||||||
"Keywords": "\u95dc\u9375\u5b57",
|
|
||||||
"Description": "\u63cf\u8ff0",
|
|
||||||
"Robots": "\u6a5f\u5668\u4eba",
|
|
||||||
"Author": "\u4f5c\u8005",
|
|
||||||
"Encoding": "\u7de8\u78bc",
|
|
||||||
"Fullscreen": "\u5168\u87a2\u5e55",
|
|
||||||
"Action": "\u52d5\u4f5c",
|
|
||||||
"Shortcut": "\u5feb\u6377\u9375",
|
|
||||||
"Help": "\u5e6b\u52a9",
|
|
||||||
"Address": "\u5730\u5740",
|
|
||||||
"Focus to menubar": "\u8df3\u81f3\u9078\u55ae\u5217",
|
|
||||||
"Focus to toolbar": "\u8df3\u81f3\u5de5\u5177\u5217",
|
|
||||||
"Focus to element path": "\u8df3\u81f3HTML\u5143\u7d20\u5217",
|
|
||||||
"Focus to contextual toolbar": "\u8df3\u81f3\u4e0a\u4e0b\u6587\u5de5\u5177\u5217",
|
|
||||||
"Insert link (if link plugin activated)": "\u65b0\u589e\u6377\u5f91 (\u82e5\u6377\u5f91\u5916\u639b\u5df2\u555f\u7528)",
|
|
||||||
"Save (if save plugin activated)": "\u5132\u5b58 (\u82e5\u5132\u5b58\u5916\u639b\u5df2\u555f\u7528)",
|
|
||||||
"Find (if searchreplace plugin activated)": "\u5c0b\u627e (\u82e5\u5c0b\u627e\u53d6\u4ee3\u5916\u639b\u5df2\u555f\u7528)",
|
|
||||||
"Plugins installed ({0}):": "({0}) \u500b\u5916\u639b\u5df2\u5b89\u88dd\uff1a",
|
|
||||||
"Premium plugins:": "\u52a0\u503c\u5916\u639b\uff1a",
|
|
||||||
"Learn more...": "\u4e86\u89e3\u66f4\u591a...",
|
|
||||||
"You are using {0}": "\u60a8\u6b63\u5728\u4f7f\u7528 {0}",
|
|
||||||
"Plugins": "\u5916\u639b",
|
|
||||||
"Handy Shortcuts": "\u5feb\u901f\u9375",
|
|
||||||
"Horizontal line": "\u6c34\u5e73\u7dda",
|
|
||||||
"Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247",
|
|
||||||
"Image description": "\u5716\u7247\u63cf\u8ff0",
|
|
||||||
"Source": "\u5716\u7247\u7db2\u5740",
|
|
||||||
"Dimensions": "\u5c3a\u5bf8",
|
|
||||||
"Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e",
|
|
||||||
"General": "\u4e00\u822c",
|
|
||||||
"Advanced": "\u9032\u968e",
|
|
||||||
"Style": "\u6a23\u5f0f",
|
|
||||||
"Vertical space": "\u9ad8\u5ea6",
|
|
||||||
"Horizontal space": "\u5bec\u5ea6",
|
|
||||||
"Border": "\u908a\u6846",
|
|
||||||
"Insert image": "\u63d2\u5165\u5716\u7247",
|
|
||||||
"Image": "\u5716\u7247",
|
|
||||||
"Image list": "\u5716\u7247\u6e05\u55ae",
|
|
||||||
"Rotate counterclockwise": "\u9006\u6642\u91dd\u65cb\u8f49",
|
|
||||||
"Rotate clockwise": "\u9806\u6642\u91dd\u65cb\u8f49",
|
|
||||||
"Flip vertically": "\u5782\u76f4\u7ffb\u8f49",
|
|
||||||
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f49",
|
|
||||||
"Edit image": "\u7de8\u8f2f\u5716\u7247",
|
|
||||||
"Image options": "\u5716\u7247\u9078\u9805",
|
|
||||||
"Zoom in": "\u653e\u5927",
|
|
||||||
"Zoom out": "\u7e2e\u5c0f",
|
|
||||||
"Crop": "\u88c1\u526a",
|
|
||||||
"Resize": "\u8abf\u6574\u5927\u5c0f",
|
|
||||||
"Orientation": "\u65b9\u5411",
|
|
||||||
"Brightness": "\u4eae\u5ea6",
|
|
||||||
"Sharpen": "\u92b3\u5316",
|
|
||||||
"Contrast": "\u5c0d\u6bd4",
|
|
||||||
"Color levels": "\u984f\u8272\u5c64\u6b21",
|
|
||||||
"Gamma": "\u4f3d\u99ac\u503c",
|
|
||||||
"Invert": "\u53cd\u8f49",
|
|
||||||
"Apply": "\u61c9\u7528",
|
|
||||||
"Back": "\u5f8c\u9000",
|
|
||||||
"Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593",
|
|
||||||
"Date\/time": "\u65e5\u671f\/\u6642\u9593",
|
|
||||||
"Insert link": "\u63d2\u5165\u9023\u7d50",
|
|
||||||
"Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50",
|
|
||||||
"Text to display": "\u986f\u793a\u6587\u5b57",
|
|
||||||
"Url": "\u7db2\u5740",
|
|
||||||
"Target": "\u958b\u555f\u65b9\u5f0f",
|
|
||||||
"None": "\u7121",
|
|
||||||
"New window": "\u53e6\u958b\u8996\u7a97",
|
|
||||||
"Remove link": "\u79fb\u9664\u9023\u7d50",
|
|
||||||
"Anchors": "\u52a0\u5165\u9328\u9ede",
|
|
||||||
"Link": "\u9023\u7d50",
|
|
||||||
"Paste or type a link": "\u8cbc\u4e0a\u6216\u8f38\u5165\u9023\u7d50",
|
|
||||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u70ba\u96fb\u5b50\u90f5\u4ef6\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7db4\u55ce\uff1f",
|
|
||||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u5c6c\u65bc\u5916\u90e8\u93c8\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7db4\u55ce\uff1f",
|
|
||||||
"Link list": "\u9023\u7d50\u6e05\u55ae",
|
|
||||||
"Insert video": "\u63d2\u5165\u5f71\u97f3",
|
|
||||||
"Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3",
|
|
||||||
"Insert\/edit media": "\u63d2\u5165\/\u7de8\u8f2f \u5a92\u9ad4",
|
|
||||||
"Alternative source": "\u66ff\u4ee3\u5f71\u97f3",
|
|
||||||
"Poster": "\u9810\u89bd\u5716\u7247",
|
|
||||||
"Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:",
|
|
||||||
"Embed": "\u5d4c\u5165\u78bc",
|
|
||||||
"Media": "\u5a92\u9ad4",
|
|
||||||
"Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c",
|
|
||||||
"Page break": "\u5206\u9801",
|
|
||||||
"Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a",
|
|
||||||
"Preview": "\u9810\u89bd",
|
|
||||||
"Print": "\u5217\u5370",
|
|
||||||
"Save": "\u5132\u5b58",
|
|
||||||
"Find": "\u641c\u5c0b",
|
|
||||||
"Replace with": "\u66f4\u63db",
|
|
||||||
"Replace": "\u66ff\u63db",
|
|
||||||
"Replace all": "\u66ff\u63db\u5168\u90e8",
|
|
||||||
"Prev": "\u4e0a\u4e00\u500b",
|
|
||||||
"Next": "\u4e0b\u4e00\u500b",
|
|
||||||
"Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3",
|
|
||||||
"Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32",
|
|
||||||
"Match case": "\u76f8\u5339\u914d\u6848\u4ef6",
|
|
||||||
"Whole words": "\u6574\u500b\u55ae\u5b57",
|
|
||||||
"Spellcheck": "\u62fc\u5b57\u6aa2\u67e5",
|
|
||||||
"Ignore": "\u5ffd\u7565",
|
|
||||||
"Ignore all": "\u5ffd\u7565\u6240\u6709",
|
|
||||||
"Finish": "\u5b8c\u6210",
|
|
||||||
"Add to Dictionary": "\u52a0\u5165\u5b57\u5178\u4e2d",
|
|
||||||
"Insert table": "\u63d2\u5165\u8868\u683c",
|
|
||||||
"Table properties": "\u8868\u683c\u5c6c\u6027",
|
|
||||||
"Delete table": "\u522a\u9664\u8868\u683c",
|
|
||||||
"Cell": "\u5132\u5b58\u683c",
|
|
||||||
"Row": "\u5217",
|
|
||||||
"Column": "\u884c",
|
|
||||||
"Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027",
|
|
||||||
"Merge cells": "\u5408\u4f75\u5132\u5b58\u683c",
|
|
||||||
"Split cell": "\u5206\u5272\u5132\u5b58\u683c",
|
|
||||||
"Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d",
|
|
||||||
"Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c",
|
|
||||||
"Delete row": "\u522a\u9664\u5217",
|
|
||||||
"Row properties": "\u5217\u5c6c\u6027",
|
|
||||||
"Cut row": "\u526a\u4e0b\u5217",
|
|
||||||
"Copy row": "\u8907\u88fd\u5217",
|
|
||||||
"Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d",
|
|
||||||
"Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c",
|
|
||||||
"Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d",
|
|
||||||
"Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c",
|
|
||||||
"Delete column": "\u522a\u9664\u884c",
|
|
||||||
"Cols": "\u6b04\u4f4d\u6bb5",
|
|
||||||
"Rows": "\u5217",
|
|
||||||
"Width": "\u5bec\u5ea6",
|
|
||||||
"Height": "\u9ad8\u5ea6",
|
|
||||||
"Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd",
|
|
||||||
"Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd",
|
|
||||||
"Caption": "\u8868\u683c\u6a19\u984c",
|
|
||||||
"Left": "\u5de6\u908a",
|
|
||||||
"Center": "\u4e2d\u9593",
|
|
||||||
"Right": "\u53f3\u908a",
|
|
||||||
"Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b",
|
|
||||||
"Scope": "\u7bc4\u570d",
|
|
||||||
"Alignment": "\u5c0d\u9f4a",
|
|
||||||
"H Align": "\u6c34\u5e73\u4f4d\u7f6e",
|
|
||||||
"V Align": "\u5782\u76f4\u4f4d\u7f6e",
|
|
||||||
"Top": "\u7f6e\u9802",
|
|
||||||
"Middle": "\u7f6e\u4e2d",
|
|
||||||
"Bottom": "\u7f6e\u5e95",
|
|
||||||
"Header cell": "\u6a19\u982d\u5132\u5b58\u683c",
|
|
||||||
"Row group": "\u5217\u7fa4\u7d44",
|
|
||||||
"Column group": "\u6b04\u4f4d\u7fa4\u7d44",
|
|
||||||
"Row type": "\u884c\u7684\u985e\u578b",
|
|
||||||
"Header": "\u6a19\u982d",
|
|
||||||
"Body": "\u4e3b\u9ad4",
|
|
||||||
"Footer": "\u9801\u5c3e",
|
|
||||||
"Border color": "\u908a\u6846\u984f\u8272",
|
|
||||||
"Insert template": "\u63d2\u5165\u6a23\u7248",
|
|
||||||
"Templates": "\u6a23\u7248",
|
|
||||||
"Template": "\u6a23\u677f",
|
|
||||||
"Text color": "\u6587\u5b57\u984f\u8272",
|
|
||||||
"Background color": "\u80cc\u666f\u984f\u8272",
|
|
||||||
"Custom...": "\u81ea\u8a02",
|
|
||||||
"Custom color": "\u81ea\u8a02\u984f\u8272",
|
|
||||||
"No color": "No color",
|
|
||||||
"Table of Contents": "\u76ee\u9304",
|
|
||||||
"Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a",
|
|
||||||
"Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143",
|
|
||||||
"Words: {0}": "\u5b57\u6578\uff1a{0}",
|
|
||||||
"{0} words": "{0} \u5b57\u5143",
|
|
||||||
"File": "\u6a94\u6848",
|
|
||||||
"Edit": "\u7de8\u8f2f",
|
|
||||||
"Insert": "\u63d2\u5165",
|
|
||||||
"View": "\u6aa2\u8996",
|
|
||||||
"Format": "\u683c\u5f0f",
|
|
||||||
"Table": "\u8868\u683c",
|
|
||||||
"Tools": "\u5de5\u5177",
|
|
||||||
"Powered by {0}": "\u7531 {0} \u63d0\u4f9b",
|
|
||||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9"
|
|
||||||
});
|
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=tinymce.util.Tools.resolve("tinymce.util.Tools"),s=function(t,e,n){var r="UL"===e?"InsertUnorderedList":"InsertOrderedList";t.execCommand(r,!1,!1===n?null:{"list-style-type":n})},o=function(n){n.addCommand("ApplyUnorderedListStyle",function(t,e){s(n,"UL",e["list-style-type"])}),n.addCommand("ApplyOrderedListStyle",function(t,e){s(n,"OL",e["list-style-type"])})},e=function(t){var e=t.getParam("advlist_number_styles","default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman");return e?e.split(/[ ,]/):[]},n=function(t){var e=t.getParam("advlist_bullet_styles","default,circle,disc,square");return e?e.split(/[ ,]/):[]},u=function(t){return t&&/^(TH|TD)$/.test(t.nodeName)},c=function(r){return function(t){return t&&/^(OL|UL|DL)$/.test(t.nodeName)&&(n=t,(e=r).$.contains(e.getBody(),n));var e,n}},d=function(t){var e=t.dom.getParent(t.selection.getNode(),"ol,ul");return t.dom.getStyle(e,"listStyleType")||""},p=function(t){return a.map(t,function(t){return{text:t.replace(/\-/g," ").replace(/\b\w/g,function(t){return t.toUpperCase()}),data:"default"===t?"":t}})},f=function(i,l){return function(t){var o=t.control;i.on("NodeChange",function(t){var e=function(t,e){for(var n=0;n<t.length;n++)if(e(t[n]))return n;return-1}(t.parents,u),n=-1!==e?t.parents.slice(0,e):t.parents,r=a.grep(n,c(i));o.active(0<r.length&&r[0].nodeName===l)})}},m=function(e,t,n,r,o,i){var l;e.addButton(t,{active:!1,type:"splitbutton",tooltip:n,menu:p(i),onPostRender:f(e,o),onshow:(l=e,function(t){var e=d(l);t.control.items().each(function(t){t.active(t.settings.data===e)})}),onselect:function(t){s(e,o,t.control.settings.data)},onclick:function(){e.execCommand(r)}})},r=function(t,e,n,r,o,i){var l,a,s,u,c;0<i.length?m(t,e,n,r,o,i):(a=e,s=n,u=r,c=o,(l=t).addButton(a,{active:!1,type:"button",tooltip:s,onPostRender:f(l,c),onclick:function(){l.execCommand(u)}}))},i=function(t){r(t,"numlist","Numbered list","InsertOrderedList","OL",e(t)),r(t,"bullist","Bullet list","InsertUnorderedList","UL",n(t))};t.add("advlist",function(t){var e,n,r;n="lists",r=(e=t).settings.plugins?e.settings.plugins:"",-1!==a.inArray(r.split(/[ ,]/),n)&&(i(t),o(t))})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var n,t,e,r,u=tinymce.util.Tools.resolve("tinymce.PluginManager"),v=tinymce.util.Tools.resolve("tinymce.util.Tools"),O=function(n,t,e){var r="UL"===t?"InsertUnorderedList":"InsertOrderedList";n.execCommand(r,!1,!1===e?null:{"list-style-type":e})},i=function(e){e.addCommand("ApplyUnorderedListStyle",function(n,t){O(e,"UL",t["list-style-type"])}),e.addCommand("ApplyOrderedListStyle",function(n,t){O(e,"OL",t["list-style-type"])})},o=function(n){var t=n.getParam("advlist_number_styles","default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman");return t?t.split(/[ ,]/):[]},l=function(n){var t=n.getParam("advlist_bullet_styles","default,circle,square");return t?t.split(/[ ,]/):[]},c=function(n){return function(){return n}},s=c(!1),f=c(!0),a=s,d=f,g=function(){return p},p=(r={fold:function(n,t){return n()},is:a,isSome:a,isNone:d,getOr:e=function(n){return n},getOrThunk:t=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:function(){return null},getOrUndefined:function(){return undefined},or:e,orThunk:t,map:g,ap:g,each:function(){},bind:g,flatten:g,exists:a,forall:d,filter:g,equals:n=function(n){return n.isNone()},equals_:n,toArray:function(){return[]},toString:c("none()")},Object.freeze&&Object.freeze(r),r),m=function(e){var n=function(){return e},t=function(){return u},r=function(n){return n(e)},u={fold:function(n,t){return t(e)},is:function(n){return e===n},isSome:d,isNone:a,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:t,orThunk:t,map:function(n){return m(n(e))},ap:function(n){return n.fold(g,function(n){return m(n(e))})},each:function(n){n(e)},bind:r,flatten:n,exists:r,forall:r,filter:function(n){return n(e)?u:p},equals:function(n){return n.is(e)},equals_:function(n,t){return n.fold(a,function(n){return t(e,n)})},toArray:function(){return[e]},toString:function(){return"some("+e+")"}};return u},y=function(n){return null===n||n===undefined?p:m(n)},h=function(n){return n&&/^(TH|TD)$/.test(n.nodeName)},L=function(r){return function(n){return n&&/^(OL|UL|DL)$/.test(n.nodeName)&&(e=n,(t=r).$.contains(t.getBody(),e));var t,e}},b=function(n){var t=n.dom.getParent(n.selection.getNode(),"ol,ul"),e=n.dom.getStyle(t,"listStyleType");return y(e)},S=function(n,t,e){var r=function(n,t){for(var e=0;e<n.length;e++)if(t(n[e]))return e;return-1}(t.parents,h),u=-1!==r?t.parents.slice(0,r):t.parents,i=v.grep(u,L(n));return 0<i.length&&i[0].nodeName===e},T=function(n,t,e,r,u,i){var o,l,c,s,f,a,d,g,p,m,y;0<i.length?(d=t,g=e,p=r,m=u,y=i,(a=n).ui.registry.addSplitButton(d,{tooltip:g,icon:"OL"===m?"ordered-list":"unordered-list",presets:"listpreview",columns:3,fetch:function(n){n(v.map(y,function(n){var t="OL"===m?"num":"bull",e="disc"===n||"decimal"===n?"default":n,r="default"===n?"":n,u=n.replace(/\-/g," ").replace(/\b\w/g,function(n){return n.toUpperCase()});return{type:"choiceitem",value:r,icon:"list-"+t+"-"+e,text:u,ariaLabel:u}}))},onAction:function(){return a.execCommand(p)},onItemAction:function(n,t){O(a,m,t)},select:function(t){return b(a).map(function(n){return t===n}).getOr(!1)},onSetup:function(t){var n=function(n){t.setActive(S(a,n,m))};return a.on("nodeChange",n),function(){return a.off("nodeChange",n)}}})):(l=t,c=e,s=r,f=u,(o=n).ui.registry.addToggleButton(l,{active:!1,tooltip:c,icon:"OL"===f?"ordered-list":"unordered-list",onSetup:function(t){var n=function(n){t.setActive(S(o,n,f))};return o.on("nodeChange",n),function(){return o.off("nodeChange",n)}},onAction:function(){return o.execCommand(s)}}))},A=function(n){T(n,"numlist","Numbered list","InsertOrderedList","OL",o(n)),T(n,"bullist","Bullet list","InsertUnorderedList","UL",l(n))};u.add("advlist",function(n){var t,e,r;e="lists",r=(t=n).settings.plugins?t.settings.plugins:"",-1!==v.inArray(r.split(/[ ,]/),e)&&(A(n),i(n))}),function C(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=function(t){return/^[A-Za-z][A-Za-z0-9\-:._]*$/.test(t)},e=function(t){var e=t.selection.getNode();return"A"===e.tagName&&""===t.dom.getAttrib(e,"href")?e.id||e.name:""},i=function(t,e){var n=t.selection.getNode();"A"===n.tagName&&""===t.dom.getAttrib(n,"href")?(n.removeAttribute("name"),n.id=e,t.undoManager.add()):(t.focus(),t.selection.collapse(!0),t.execCommand("mceInsertContent",!1,t.dom.createHTML("a",{id:e})))},n=function(r){var t=e(r);r.windowManager.open({title:"Anchor",body:{type:"textbox",name:"id",size:40,label:"Id",value:t},onsubmit:function(t){var e,n,o=t.data.id;e=r,(a(n=o)?(i(e,n),0):(e.windowManager.alert("Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores."),1))&&t.preventDefault()}})},o=function(t){t.addCommand("mceAnchor",function(){n(t)})},r=function(o){return function(t){for(var e=0;e<t.length;e++)(n=t[e]).attr("href")||!n.attr("id")&&!n.attr("name")||n.firstChild||t[e].attr("contenteditable",o);var n}},c=function(t){t.on("PreInit",function(){t.parser.addNodeFilter("a",r("false")),t.serializer.addNodeFilter("a",r(null))})},d=function(t){t.addButton("anchor",{icon:"anchor",tooltip:"Anchor",cmd:"mceAnchor",stateSelector:"a:not([href])"}),t.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",cmd:"mceAnchor"})};t.add("anchor",function(t){c(t),o(t),d(t)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=function(e){return/^[A-Za-z][A-Za-z0-9\-:._]*$/.test(e)},t=function(e){var t=e.selection.getNode();return"A"===t.tagName&&""===e.dom.getAttrib(t,"href")?t.getAttribute("id")||t.getAttribute("name"):""},r=function(e,t){var n=e.selection.getNode();"A"===n.tagName&&""===e.dom.getAttrib(n,"href")?(n.removeAttribute("name"),n.id=t,e.undoManager.add()):(e.focus(),e.selection.collapse(!0),e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t})))},n=function(o){var e=t(o);o.windowManager.open({title:"Anchor",size:"normal",body:{type:"panel",items:[{name:"id",type:"input",label:"ID",placeholder:"example"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{id:e},onSubmit:function(e){var t,n;t=o,n=e.getData().id,(a(n)?(r(t,n),0):(t.windowManager.alert("Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores."),1))||e.close()}})},o=function(e){e.addCommand("mceAnchor",function(){n(e)})},i=function(o){return function(e){for(var t=0;t<e.length;t++)(n=e[t]).attr("href")||!n.attr("id")&&!n.attr("name")||n.firstChild||e[t].attr("contenteditable",o);var n}},c=function(e){e.on("PreInit",function(){e.parser.addNodeFilter("a",i("false")),e.serializer.addNodeFilter("a",i(null))})},d=function(t){t.ui.registry.addToggleButton("anchor",{icon:"bookmark",tooltip:"Anchor",onAction:function(){return t.execCommand("mceAnchor")},onSetup:function(e){return t.selection.selectorChangedWithUnbind("a:not([href])",e.setActive).unbind}}),t.ui.registry.addMenuItem("anchor",{icon:"bookmark",text:"Anchor...",onAction:function(){return t.execCommand("mceAnchor")}})};e.add("anchor",function(e){c(e),o(e),d(e)}),function u(){}}();
|
|
@ -1,41 +0,0 @@
|
||||||
tinymce.PluginManager.add('autoheight', function(editor) {
|
|
||||||
var editor_container;
|
|
||||||
var bars_height = 0;
|
|
||||||
|
|
||||||
function resizeEditor(e) {
|
|
||||||
if (typeof(editor_container) === 'undefined') return;
|
|
||||||
|
|
||||||
try {
|
|
||||||
var element_height = parseInt(window.getComputedStyle(editor_container).height);
|
|
||||||
/*calculate bar height only once*/
|
|
||||||
if (bars_height === 0) {
|
|
||||||
var toolbars = editor_container.querySelectorAll('.mce-toolbar, .mce-statusbar, .mce-menubar');
|
|
||||||
/*IE11 FIX*/
|
|
||||||
var toolbarsLength = toolbars.length;
|
|
||||||
for (var i = 0; i < toolbarsLength; i++) {
|
|
||||||
var toolbar = toolbars[i];
|
|
||||||
/*skip sidebar*/
|
|
||||||
if (!toolbar.classList.contains('mce-sidebar-toolbar')) {
|
|
||||||
var bar_height = parseInt(window.getComputedStyle(toolbar).height);
|
|
||||||
bars_height += bar_height;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*the extra 8 is for margin added between the toolbars*/
|
|
||||||
new_height = element_height - bars_height - 8;
|
|
||||||
editor.theme.resizeTo('100%', new_height);
|
|
||||||
} catch (err) {
|
|
||||||
console.log(err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.on('ResizeWindow', resizeEditor);
|
|
||||||
editor.on("init", function() {
|
|
||||||
try {
|
|
||||||
editor_container = editor.getContainer().parentNode;
|
|
||||||
} catch (e) {}
|
|
||||||
setTimeout(function() {
|
|
||||||
resizeEditor();
|
|
||||||
}, 10);
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=tinymce.util.Tools.resolve("tinymce.Env"),m=function(e){return e.getParam("autolink_pattern",/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i)},y=function(e){return e.getParam("default_link_target","")},o=function(e,t){if(t<0&&(t=0),3===e.nodeType){var n=e.data.length;n<t&&(t=n)}return t},k=function(e,t,n){1!==t.nodeType||t.hasChildNodes()?e.setStart(t,o(t,n)):e.setStartBefore(t)},p=function(e,t,n){1!==t.nodeType||t.hasChildNodes()?e.setEnd(t,o(t,n)):e.setEndAfter(t)},r=function(e,t,n){var i,o,r,a,f,s,d,l,c,u,g=m(e),h=y(e);if("A"!==e.selection.getNode().tagName){if((i=e.selection.getRng(!0).cloneRange()).startOffset<5){if(!(l=i.endContainer.previousSibling)){if(!i.endContainer.firstChild||!i.endContainer.firstChild.nextSibling)return;l=i.endContainer.firstChild.nextSibling}if(c=l.length,k(i,l,c),p(i,l,c),i.endOffset<5)return;o=i.endOffset,a=l}else{if(3!==(a=i.endContainer).nodeType&&a.firstChild){for(;3!==a.nodeType&&a.firstChild;)a=a.firstChild;3===a.nodeType&&(k(i,a,0),p(i,a,a.nodeValue.length))}o=1===i.endOffset?2:i.endOffset-1-t}for(r=o;k(i,a,2<=o?o-2:0),p(i,a,1<=o?o-1:0),o-=1," "!==(u=i.toString())&&""!==u&&160!==u.charCodeAt(0)&&0<=o-2&&u!==n;);var C;(C=i.toString())===n||" "===C||160===C.charCodeAt(0)?(k(i,a,o),p(i,a,r),o+=1):(0===i.startOffset?k(i,a,0):k(i,a,o),p(i,a,r)),"."===(s=i.toString()).charAt(s.length-1)&&p(i,a,r-1),(d=(s=i.toString().trim()).match(g))&&("www."===d[1]?d[1]="http://www.":/@$/.test(d[1])&&!/^mailto:/.test(d[1])&&(d[1]="mailto:"+d[1]),f=e.selection.getBookmark(),e.selection.setRng(i),e.execCommand("createlink",!1,d[1]+d[2]),h&&e.dom.setAttrib(e.selection.getNode(),"target",h),e.selection.moveToBookmark(f),e.nodeChanged())}},t=function(t){var n;t.on("keydown",function(e){13!==e.keyCode||r(t,-1,"")}),i.ie?t.on("focus",function(){if(!n){n=!0;try{t.execCommand("AutoUrlDetect",!1,!0)}catch(e){}}}):(t.on("keypress",function(e){41!==e.keyCode||r(t,-1,"(")}),t.on("keyup",function(e){32!==e.keyCode||r(t,0,"")}))};e.add("autolink",function(e){t(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=tinymce.util.Tools.resolve("tinymce.Env"),m=function(e){return e.getParam("autolink_pattern",/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i)},y=function(e){return e.getParam("default_link_target","")},o=function(e,t){if(t<0&&(t=0),3===e.nodeType){var n=e.data.length;n<t&&(t=n)}return t},k=function(e,t,n){1!==t.nodeType||t.hasChildNodes()?e.setStart(t,o(t,n)):e.setStartBefore(t)},p=function(e,t,n){1!==t.nodeType||t.hasChildNodes()?e.setEnd(t,o(t,n)):e.setEndAfter(t)},r=function(e,t,n){var i,o,r,a,f,s,d,l,c,u,g=m(e),h=y(e);if("A"!==e.selection.getNode().tagName){if((i=e.selection.getRng(!0).cloneRange()).startOffset<5){if(!(l=i.endContainer.previousSibling)){if(!i.endContainer.firstChild||!i.endContainer.firstChild.nextSibling)return;l=i.endContainer.firstChild.nextSibling}if(c=l.length,k(i,l,c),p(i,l,c),i.endOffset<5)return;o=i.endOffset,a=l}else{if(3!==(a=i.endContainer).nodeType&&a.firstChild){for(;3!==a.nodeType&&a.firstChild;)a=a.firstChild;3===a.nodeType&&(k(i,a,0),p(i,a,a.nodeValue.length))}o=1===i.endOffset?2:i.endOffset-1-t}for(r=o;k(i,a,2<=o?o-2:0),p(i,a,1<=o?o-1:0),o-=1," "!==(u=i.toString())&&""!==u&&160!==u.charCodeAt(0)&&0<=o-2&&u!==n;);var C;(C=i.toString())===n||" "===C||160===C.charCodeAt(0)?(k(i,a,o),p(i,a,r),o+=1):(0===i.startOffset?k(i,a,0):k(i,a,o),p(i,a,r)),"."===(s=i.toString()).charAt(s.length-1)&&p(i,a,r-1),(d=(s=i.toString().trim()).match(g))&&("www."===d[1]?d[1]="http://www.":/@$/.test(d[1])&&!/^mailto:/.test(d[1])&&(d[1]="mailto:"+d[1]),f=e.selection.getBookmark(),e.selection.setRng(i),e.execCommand("createlink",!1,d[1]+d[2]),h&&e.dom.setAttrib(e.selection.getNode(),"target",h),e.selection.moveToBookmark(f),e.nodeChanged())}},t=function(t){var n;t.on("keydown",function(e){13!==e.keyCode||r(t,-1,"")}),i.ie?t.on("focus",function(){if(!n){n=!0;try{t.execCommand("AutoUrlDetect",!1,!0)}catch(e){}}}):(t.on("keypress",function(e){41!==e.keyCode||r(t,-1,"(")}),t.on("keyup",function(e){32!==e.keyCode||r(t,0,"")}))};e.add("autolink",function(e){t(e)}),function n(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var i=function(t){var e=t,n=function(){return e};return{get:n,set:function(t){e=t},clone:function(){return i(n())}}},t=tinymce.util.Tools.resolve("tinymce.PluginManager"),y=tinymce.util.Tools.resolve("tinymce.Env"),r=tinymce.util.Tools.resolve("tinymce.util.Delay"),h=function(t){return parseInt(t.getParam("autoresize_min_height",t.getElement().offsetHeight),10)},v=function(t){return parseInt(t.getParam("autoresize_max_height",0),10)},o=function(t){return t.getParam("autoresize_overflow_padding",1)},a=function(t){return t.getParam("autoresize_bottom_margin",50)},n=function(t){return t.getParam("autoresize_on_init",!0)},u=function(t,e,n,i,o){r.setEditorTimeout(t,function(){_(t,e),n--?u(t,e,n,i,o):o&&o()},i)},S=function(t,e){var n=t.getBody();n&&(n.style.overflowY=e?"":"hidden",e||(n.scrollTop=0))},_=function(t,e){var n,i,o,r,a,u,s,l,g,c,f,d=t.dom;if(i=t.getDoc())if((m=t).plugins.fullscreen&&m.plugins.fullscreen.isFullscreen())S(t,!0);else{var m;o=i.body,r=h(t),u=d.getStyle(o,"margin-top",!0),s=d.getStyle(o,"margin-bottom",!0),l=d.getStyle(o,"padding-top",!0),g=d.getStyle(o,"padding-bottom",!0),c=d.getStyle(o,"border-top-width",!0),f=d.getStyle(o,"border-bottom-width",!0),a=o.offsetHeight+parseInt(u,10)+parseInt(s,10)+parseInt(l,10)+parseInt(g,10)+parseInt(c,10)+parseInt(f,10),(isNaN(a)||a<=0)&&(a=y.ie?o.scrollHeight:y.webkit&&0===o.clientHeight?0:o.offsetHeight),a>h(t)&&(r=a);var p=v(t);p&&p<a?(r=p,S(t,!0)):S(t,!1),r!==e.get()&&(n=r-e.get(),d.setStyle(t.iframeElement,"height",r+"px"),e.set(r),y.webkit&&n<0&&_(t,e))}},s={setup:function(i,e){i.on("init",function(){var t,e,n=i.dom;t=o(i),e=a(i),!1!==t&&n.setStyles(i.getBody(),{paddingLeft:t,paddingRight:t}),!1!==e&&n.setStyles(i.getBody(),{paddingBottom:e})}),i.on("nodechange setcontent keyup FullscreenStateChanged",function(t){_(i,e)}),n(i)&&i.on("init",function(){u(i,e,20,100,function(){u(i,e,5,1e3)})})},resize:_},l=function(t,e){t.addCommand("mceAutoResize",function(){s.resize(t,e)})};t.add("autoresize",function(t){if(!t.inline){var e=i(0);l(t,e),s.setup(t,e)}})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var i=function(e){var t=e,n=function(){return t};return{get:n,set:function(e){t=e},clone:function(){return i(n())}}},e=tinymce.util.Tools.resolve("tinymce.PluginManager"),m=tinymce.util.Tools.resolve("tinymce.Env"),r=tinymce.util.Tools.resolve("tinymce.util.Delay"),d=function(e){return e.getParam("min_height",e.getElement().offsetHeight,"number")},h=function(e){return e.getParam("max_height",0,"number")},o=function(e){return e.getParam("autoresize_overflow_padding",1,"number")},u=function(e){return e.getParam("autoresize_bottom_margin",50,"number")},a=function(e){return e.getParam("autoresize_on_init",!0,"boolean")},s=function(e,t,n,i,o){r.setEditorTimeout(e,function(){p(e,t),n--?s(e,t,n,i,o):o&&o()},i)},v=function(e,t){var n=e.getBody();n&&(n.style.overflowY=t?"":"hidden",t||(n.scrollTop=0))},y=function(e,t,n,i){var o=parseInt(e.getStyle(t,n,i),10);return isNaN(o)?0:o},p=function(e,t){var n,i,o,r=e.dom,u=e.getDoc();if(u)if((a=e).plugins.fullscreen&&a.plugins.fullscreen.isFullscreen())v(e,!0);else{var a,s=u.body;i=d(e);var c=y(r,s,"margin-top",!0),f=y(r,s,"margin-bottom",!0);(o=s.offsetHeight+c+f)<0&&(o=0);var g=e.getContainer().offsetHeight-e.getContentAreaContainer().offsetHeight;o+g>d(e)&&(i=o+g);var l=h(e);l&&l<i?(i=l,v(e,!0)):v(e,!1),i!==t.get()&&(n=i-t.get(),r.setStyle(e.getContainer(),"height",i+"px"),t.set(i),m.webkit&&n<0&&p(e,t))}},n={setup:function(n,t){n.on("init",function(){var e=o(n),t=u(n);n.dom.setStyles(n.getBody(),{paddingLeft:e,paddingRight:e,paddingBottom:t,"min-height":0})}),n.on("nodechange setcontent keyup FullscreenStateChanged",function(e){p(n,t)}),a(n)&&n.on("init",function(){s(n,t,20,100,function(){s(n,t,5,1e3)})})},resize:p},c=function(e,t){e.addCommand("mceAutoResize",function(){n.resize(e,t)})};e.add("autoresize",function(e){if(e.settings.hasOwnProperty("resize")||(e.settings.resize=!1),!e.inline){var t=i(0);c(e,t),n.setup(e,t)}}),function t(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var a=function(t){var e=t,n=function(){return e};return{get:n,set:function(t){e=t},clone:function(){return a(n())}}},t=tinymce.util.Tools.resolve("tinymce.PluginManager"),r=tinymce.util.Tools.resolve("tinymce.util.LocalStorage"),o=tinymce.util.Tools.resolve("tinymce.util.Tools"),i=function(t,e){var n=t||e,r=/^(\d+)([ms]?)$/.exec(""+n);return(r[2]?{s:1e3,m:6e4}[r[2]]:1)*parseInt(n,10)},u=function(t){var e=t.getParam("autosave_prefix","tinymce-autosave-{path}{query}{hash}-{id}-");return e=(e=(e=(e=e.replace(/\{path\}/g,document.location.pathname)).replace(/\{query\}/g,document.location.search)).replace(/\{hash\}/g,document.location.hash)).replace(/\{id\}/g,t.id)},s=function(t,e){var n=t.settings.forced_root_block;return""===(e=o.trim(void 0===e?t.getBody().innerHTML:e))||new RegExp("^<"+n+"[^>]*>((\xa0| |[ \t]|<br[^>]*>)+?|)</"+n+">|<br>$","i").test(e)},c=function(t){var e=parseInt(r.getItem(u(t)+"time"),10)||0;return!((new Date).getTime()-e>i(t.settings.autosave_retention,"20m")&&(f(t,!1),1))},f=function(t,e){var n=u(t);r.removeItem(n+"draft"),r.removeItem(n+"time"),!1!==e&&t.fire("RemoveDraft")},l=function(t){var e=u(t);!s(t)&&t.isDirty()&&(r.setItem(e+"draft",t.getContent({format:"raw",no_events:!0})),r.setItem(e+"time",(new Date).getTime().toString()),t.fire("StoreDraft"))},m=function(t){var e=u(t);c(t)&&(t.setContent(r.getItem(e+"draft"),{format:"raw"}),t.fire("RestoreDraft"))},v=function(t,e){var n=i(t.settings.autosave_interval,"30s");e.get()||(setInterval(function(){t.removed||l(t)},n),e.set(!0))},d=function(t){t.undoManager.transact(function(){m(t),f(t)}),t.focus()};function g(r){for(var o=[],t=1;t<arguments.length;t++)o[t-1]=arguments[t];return function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=o.concat(t);return r.apply(null,n)}}var y=tinymce.util.Tools.resolve("tinymce.EditorManager");y._beforeUnloadHandler=function(){var e;return o.each(y.get(),function(t){t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&t.getParam("autosave_ask_before_unload",!0)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))}),e};var p=function(n,r){return function(t){var e=t.control;e.disabled(!c(n)),n.on("StoreDraft RestoreDraft RemoveDraft",function(){e.disabled(!c(n))}),v(n,r)}};t.add("autosave",function(t){var e,n,r,o=a(!1);return window.onbeforeunload=y._beforeUnloadHandler,n=o,(e=t).addButton("restoredraft",{title:"Restore last draft",onclick:function(){d(e)},onPostRender:p(e,n)}),e.addMenuItem("restoredraft",{text:"Restore last draft",onclick:function(){d(e)},onPostRender:p(e,n),context:"file"}),t.on("init",function(){t.getParam("autosave_restore_when_empty",!1)&&t.dom.isEmpty(t.getBody())&&m(t)}),{hasDraft:g(c,r=t),storeDraft:g(l,r),restoreDraft:g(m,r),removeDraft:g(f,r),isEmpty:g(s,r)}})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(o){"use strict";var a=function(t){var e=t,r=function(){return e};return{get:r,set:function(t){e=t},clone:function(){return a(r())}}},t=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=tinymce.util.Tools.resolve("tinymce.util.Delay"),i=tinymce.util.Tools.resolve("tinymce.util.LocalStorage"),u=tinymce.util.Tools.resolve("tinymce.util.Tools"),s=function(t,e){var r=t||e,n=/^(\d+)([ms]?)$/.exec(""+r);return(n[2]?{s:1e3,m:6e4}[n[2]]:1)*parseInt(r,10)},f=function(t){var e=t.getParam("autosave_prefix","tinymce-autosave-{path}{query}{hash}-{id}-");return e=(e=(e=(e=e.replace(/\{path\}/g,o.document.location.pathname)).replace(/\{query\}/g,o.document.location.search)).replace(/\{hash\}/g,o.document.location.hash)).replace(/\{id\}/g,t.id)},c=function(t,e){var r=t.settings.forced_root_block;return""===(e=u.trim(void 0===e?t.getBody().innerHTML:e))||new RegExp("^<"+r+"[^>]*>((\xa0| |[ \t]|<br[^>]*>)+?|)</"+r+">|<br>$","i").test(e)},l=function(t){var e=parseInt(i.getItem(f(t)+"time"),10)||0;return!((new Date).getTime()-e>s(t.settings.autosave_retention,"20m")&&(m(t,!1),1))},m=function(t,e){var r=f(t);i.removeItem(r+"draft"),i.removeItem(r+"time"),!1!==e&&t.fire("RemoveDraft")},v=function(t){var e=f(t);!c(t)&&t.isDirty()&&(i.setItem(e+"draft",t.getContent({format:"raw",no_events:!0})),i.setItem(e+"time",(new Date).getTime().toString()),t.fire("StoreDraft"))},d=function(t){var e=f(t);l(t)&&(t.setContent(i.getItem(e+"draft"),{format:"raw"}),t.fire("RestoreDraft"))},g=function(t,e){var r=s(t.settings.autosave_interval,"30s");e.get()||(n.setInterval(function(){t.removed||v(t)},r),e.set(!0))},y=function(t){t.undoManager.transact(function(){d(t),m(t)}),t.focus()};function p(n){for(var o=[],t=1;t<arguments.length;t++)o[t-1]=arguments[t];return function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=o.concat(t);return n.apply(null,r)}}var D=tinymce.util.Tools.resolve("tinymce.EditorManager");D._beforeUnloadHandler=function(){var e;return u.each(D.get(),function(t){t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&t.getParam("autosave_ask_before_unload",!0)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))}),e};var h=function(r,t){return function(t){t.setDisabled(!l(r));var e=function(){return t.setDisabled(!l(r))};return r.on("StoreDraft RestoreDraft RemoveDraft",e),function(){return r.off("StoreDraft RestoreDraft RemoveDraft",e)}}};t.add("autosave",function(t){var e,r,n=a(!1);return o.window.onbeforeunload=D._beforeUnloadHandler,g(e=t,n),e.ui.registry.addButton("restoredraft",{tooltip:"Restore last draft",icon:"restore-draft",onAction:function(){y(e)},onSetup:h(e)}),e.ui.registry.addMenuItem("restoredraft",{text:"Restore last draft",icon:"restore-draft",onAction:function(){y(e)},onSetup:h(e)}),t.on("init",function(){t.getParam("autosave_restore_when_empty",!1)&&t.dom.isEmpty(t.getBody())&&d(t)}),{hasDraft:p(l,r=t),storeDraft:p(v,r),restoreDraft:p(d,r),removeDraft:p(m,r),isEmpty:p(c,r)}}),function e(){}}(window);
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.util.Tools"),e=function(e){e=t.trim(e);var o=function(o,t){e=e.replace(o,t)};return o(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]"),o(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]"),o(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]"),o(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]"),o(/<font>(.*?)<\/font>/gi,"$1"),o(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]"),o(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]"),o(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]"),o(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"),o(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"),o(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"),o(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"),o(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"),o(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"),o(/<\/(strong|b)>/gi,"[/b]"),o(/<(strong|b)>/gi,"[b]"),o(/<\/(em|i)>/gi,"[/i]"),o(/<(em|i)>/gi,"[i]"),o(/<\/u>/gi,"[/u]"),o(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]"),o(/<u>/gi,"[u]"),o(/<blockquote[^>]*>/gi,"[quote]"),o(/<\/blockquote>/gi,"[/quote]"),o(/<br \/>/gi,"\n"),o(/<br\/>/gi,"\n"),o(/<br>/gi,"\n"),o(/<p>/gi,""),o(/<\/p>/gi,"\n"),o(/ |\u00a0/gi," "),o(/"/gi,'"'),o(/</gi,"<"),o(/>/gi,">"),o(/&/gi,"&"),e},i=function(e){e=t.trim(e);var o=function(o,t){e=e.replace(o,t)};return o(/\n/gi,"<br />"),o(/\[b\]/gi,"<strong>"),o(/\[\/b\]/gi,"</strong>"),o(/\[i\]/gi,"<em>"),o(/\[\/i\]/gi,"</em>"),o(/\[u\]/gi,"<u>"),o(/\[\/u\]/gi,"</u>"),o(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>'),o(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>'),o(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />'),o(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>'),o(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span> '),o(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span> '),e};o.add("bbcode",function(){return{init:function(o){o.on("beforeSetContent",function(o){o.content=i(o.content)}),o.on("postProcess",function(o){o.set&&(o.content=i(o.content)),o.get&&(o.content=e(o.content))})}}})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.util.Tools"),e=function(e){e=t.trim(e);var o=function(o,t){e=e.replace(o,t)};return o(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]"),o(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),o(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),o(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]"),o(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]"),o(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]"),o(/<font>(.*?)<\/font>/gi,"$1"),o(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]"),o(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]"),o(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]"),o(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"),o(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"),o(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"),o(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"),o(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"),o(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"),o(/<\/(strong|b)>/gi,"[/b]"),o(/<(strong|b)>/gi,"[b]"),o(/<\/(em|i)>/gi,"[/i]"),o(/<(em|i)>/gi,"[i]"),o(/<\/u>/gi,"[/u]"),o(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]"),o(/<u>/gi,"[u]"),o(/<blockquote[^>]*>/gi,"[quote]"),o(/<\/blockquote>/gi,"[/quote]"),o(/<br \/>/gi,"\n"),o(/<br\/>/gi,"\n"),o(/<br>/gi,"\n"),o(/<p>/gi,""),o(/<\/p>/gi,"\n"),o(/ |\u00a0/gi," "),o(/"/gi,'"'),o(/</gi,"<"),o(/>/gi,">"),o(/&/gi,"&"),e},i=function(e){e=t.trim(e);var o=function(o,t){e=e.replace(o,t)};return o(/\n/gi,"<br />"),o(/\[b\]/gi,"<strong>"),o(/\[\/b\]/gi,"</strong>"),o(/\[i\]/gi,"<em>"),o(/\[\/i\]/gi,"</em>"),o(/\[u\]/gi,"<u>"),o(/\[\/u\]/gi,"</u>"),o(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>'),o(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>'),o(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />'),o(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>'),o(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span> '),o(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span> '),e};o.add("bbcode",function(){return{init:function(o){o.on("beforeSetContent",function(o){o.content=i(o.content)}),o.on("postProcess",function(o){o.set&&(o.content=i(o.content)),o.get&&(o.content=e(o.content))})}}}),function n(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),o=function(t){return t.getParam("code_dialog_width",600)},i=function(t){return t.getParam("code_dialog_height",Math.min(n.DOM.getViewPort().h-200,500))},c=function(t,n){t.focus(),t.undoManager.transact(function(){t.setContent(n)}),t.selection.setCursorLocation(),t.nodeChanged()},d=function(t){return t.getContent({source_view:!0})},e=function(n){var t=o(n),e=i(n);n.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:t,minHeight:e,spellcheck:!1,style:"direction: ltr; text-align: left"},onSubmit:function(t){c(n,t.data.code)}}).find("#code").value(d(n))},u=function(t){t.addCommand("mceCodeEditor",function(){e(t)})},a=function(t){t.addButton("code",{icon:"code",tooltip:"Source code",onclick:function(){e(t)}}),t.addMenuItem("code",{icon:"code",text:"Source code",onclick:function(){e(t)}})};t.add("code",function(t){return u(t),a(t),{}})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(e,n){e.focus(),e.undoManager.transact(function(){e.setContent(n)}),e.selection.setCursorLocation(),e.nodeChanged()},o=function(e){return e.getContent({source_view:!0})},n=function(n){var e=o(n);n.windowManager.open({title:"Source Code",size:"large",body:{type:"panel",items:[{type:"textarea",name:"code"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{code:e},onSubmit:function(e){t(n,e.getData().code),e.close()}})},c=function(e){e.addCommand("mceCodeEditor",function(){n(e)})},i=function(e){e.ui.registry.addButton("code",{icon:"sourcecode",tooltip:"Source code",onAction:function(){return n(e)}}),e.ui.registry.addMenuItem("code",{icon:"sourcecode",text:"Source code",onAction:function(){return n(e)}})};e.add("code",function(e){return c(e),i(e),{}}),function u(){}}();
|
|
@ -1,138 +0,0 @@
|
||||||
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */
|
|
||||||
/**
|
|
||||||
* prism.js default theme for JavaScript, CSS and HTML
|
|
||||||
* Based on dabblet (http://dabblet.com)
|
|
||||||
* @author Lea Verou
|
|
||||||
*/
|
|
||||||
|
|
||||||
code[class*="language-"],
|
|
||||||
pre[class*="language-"] {
|
|
||||||
color: black;
|
|
||||||
text-shadow: 0 1px white;
|
|
||||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
||||||
direction: ltr;
|
|
||||||
text-align: left;
|
|
||||||
white-space: pre;
|
|
||||||
word-spacing: normal;
|
|
||||||
word-break: normal;
|
|
||||||
word-wrap: normal;
|
|
||||||
line-height: 1.5;
|
|
||||||
|
|
||||||
-moz-tab-size: 4;
|
|
||||||
-o-tab-size: 4;
|
|
||||||
tab-size: 4;
|
|
||||||
|
|
||||||
-webkit-hyphens: none;
|
|
||||||
-moz-hyphens: none;
|
|
||||||
-ms-hyphens: none;
|
|
||||||
hyphens: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
|
||||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
|
||||||
text-shadow: none;
|
|
||||||
background: #b3d4fc;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
|
||||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
|
||||||
text-shadow: none;
|
|
||||||
background: #b3d4fc;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media print {
|
|
||||||
code[class*="language-"],
|
|
||||||
pre[class*="language-"] {
|
|
||||||
text-shadow: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Code blocks */
|
|
||||||
pre[class*="language-"] {
|
|
||||||
padding: 1em;
|
|
||||||
margin: .5em 0;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
:not(pre) > code[class*="language-"],
|
|
||||||
pre[class*="language-"] {
|
|
||||||
background: #f5f2f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inline code */
|
|
||||||
:not(pre) > code[class*="language-"] {
|
|
||||||
padding: .1em;
|
|
||||||
border-radius: .3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.comment,
|
|
||||||
.token.prolog,
|
|
||||||
.token.doctype,
|
|
||||||
.token.cdata {
|
|
||||||
color: slategray;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.punctuation {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.namespace {
|
|
||||||
opacity: .7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.property,
|
|
||||||
.token.tag,
|
|
||||||
.token.boolean,
|
|
||||||
.token.number,
|
|
||||||
.token.constant,
|
|
||||||
.token.symbol,
|
|
||||||
.token.deleted {
|
|
||||||
color: #905;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.selector,
|
|
||||||
.token.attr-name,
|
|
||||||
.token.string,
|
|
||||||
.token.char,
|
|
||||||
.token.builtin,
|
|
||||||
.token.inserted {
|
|
||||||
color: #690;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.operator,
|
|
||||||
.token.entity,
|
|
||||||
.token.url,
|
|
||||||
.language-css .token.string,
|
|
||||||
.style .token.string {
|
|
||||||
color: #a67f59;
|
|
||||||
background: hsla(0, 0%, 100%, .5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.atrule,
|
|
||||||
.token.attr-value,
|
|
||||||
.token.keyword {
|
|
||||||
color: #07a;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.function {
|
|
||||||
color: #DD4A68;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.regex,
|
|
||||||
.token.important,
|
|
||||||
.token.variable {
|
|
||||||
color: #e90;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.important,
|
|
||||||
.token.bold {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.token.italic {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.token.entity {
|
|
||||||
cursor: help;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),l=tinymce.util.Tools.resolve("tinymce.util.Color"),a=function(e,n){e.find("#preview")[0].getEl().style.background=n},o=function(e,n){var i=l(n),t=i.toRgb();e.fromJSON({r:t.r,g:t.g,b:t.b,hex:i.toHex().substr(1)}),a(e,i.toHex())},t=function(e,n,i){var t=e.windowManager.open({title:"Color",items:{type:"container",layout:"flex",direction:"row",align:"stretch",padding:5,spacing:10,items:[{type:"colorpicker",value:i,onchange:function(){var e=this.rgb();t&&(t.find("#r").value(e.r),t.find("#g").value(e.g),t.find("#b").value(e.b),t.find("#hex").value(this.value().substr(1)),a(t,this.value()))}},{type:"form",padding:0,labelGap:5,defaults:{type:"textbox",size:7,value:"0",flex:1,spellcheck:!1,onchange:function(){var e,n,i=t.find("colorpicker")[0];if(e=this.name(),n=this.value(),"hex"===e)return o(t,n="#"+n),void i.value(n);n={r:t.find("#r").value(),g:t.find("#g").value(),b:t.find("#b").value()},i.value(n),o(t,n)}},items:[{name:"r",label:"R",autofocus:1},{name:"g",label:"G"},{name:"b",label:"B"},{name:"hex",label:"#",value:"000000"},{name:"preview",type:"container",border:1}]}]},onSubmit:function(){n("#"+t.toJSON().hex)}});o(t,i)};e.add("colorpicker",function(i){i.settings.color_picker_callback||(i.settings.color_picker_callback=function(e,n){t(i,e,n)})})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(o){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("colorpicker",function(){o.console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")}),function i(){}}(window);
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var o=function(t){var n=t,e=function(){return n};return{get:e,set:function(t){n=t},clone:function(){return o(e())}}},t=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=function(t){return{isContextMenuVisible:function(){return t.get()}}},r=function(t){return t.settings.contextmenu_never_use_native},u=function(t){return t.getParam("contextmenu","link openlink image inserttable | cell row column deletetable")},l=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),s=function(t){return l.DOM.select(t.settings.ui_container)[0]},a=function(t,n){return{x:t,y:n}},f=function(t,n,e){return a(t.x+n,t.y+e)},m=function(t,n){if(t&&"static"!==l.DOM.getStyle(t,"position",!0)){var e=l.DOM.getPos(t),o=e.x-t.scrollLeft,i=e.y-t.scrollTop;return f(n,-o,-i)}return f(n,0,0)},c=function(t,n){if(t.inline)return m(s(t),a((u=n).pageX,u.pageY));var e,o,i,r,u,c=(e=t.getContentAreaContainer(),o=a((r=n).clientX,r.clientY),i=l.DOM.getPos(e),f(o,i.x,i.y));return m(s(t),c)},g=tinymce.util.Tools.resolve("tinymce.ui.Factory"),v=tinymce.util.Tools.resolve("tinymce.util.Tools"),y=function(t,n,e,o){null===o.get()?o.set(function(e,n){var t,o,i=[];o=u(e),v.each(o.split(/[ ,]/),function(t){var n=e.menuItems[t];"|"===t&&(n={text:t}),n&&(n.shortcut="",i.push(n))});for(var r=0;r<i.length;r++)"|"===i[r].text&&(0!==r&&r!==i.length-1||i.splice(r,1));return(t=g.create("menu",{items:i,context:"contextmenu",classes:"contextmenu"})).uiContainer=s(e),t.renderTo(s(e)),t.on("hide",function(t){t.control===this&&n.set(!1)}),e.on("remove",function(){t.remove(),t=null}),t}(t,e)):o.get().show(),o.get().moveTo(n.x,n.y),e.set(!0)},x=function(e,o,i){e.on("contextmenu",function(t){var n;n=e,(!t.ctrlKey||r(n))&&(t.preventDefault(),y(e,c(e,t),o,i))})};t.add("contextmenu",function(t){var n=o(null),e=o(!1);return x(t,e,n),i(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(n){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("contextmenu",function(){n.console.warn("Context menu plugin is now built in to the core editor, please remove it from your editor configuration")}),function o(){}}(window);
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),c=tinymce.util.Tools.resolve("tinymce.util.Tools"),e=function(t,e){var i,n=t.dom,o=t.selection.getSelectedBlocks();o.length&&(i=n.getAttrib(o[0],"dir"),c.each(o,function(t){n.getParent(t.parentNode,'*[dir="'+e+'"]',n.getRoot())||n.setAttrib(t,"dir",i!==e?e:null)}),t.nodeChanged())},i=function(t){t.addCommand("mceDirectionLTR",function(){e(t,"ltr")}),t.addCommand("mceDirectionRTL",function(){e(t,"rtl")})},n=function(e){var i=[];return c.each("h1 h2 h3 h4 h5 h6 div p".split(" "),function(t){i.push(t+"[dir="+e+"]")}),i.join(",")},o=function(t){t.addButton("ltr",{title:"Left to right",cmd:"mceDirectionLTR",stateSelector:n("ltr")}),t.addButton("rtl",{title:"Right to left",cmd:"mceDirectionRTL",stateSelector:n("rtl")})};t.add("directionality",function(t){i(t),o(t)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(c){"use strict";var n,t,e,r,o,i,u=tinymce.util.Tools.resolve("tinymce.PluginManager"),f=tinymce.util.Tools.resolve("tinymce.util.Tools"),d=function(n,t){var e,r=n.dom,o=n.selection.getSelectedBlocks();o.length&&(e=r.getAttrib(o[0],"dir"),f.each(o,function(n){r.getParent(n.parentNode,'*[dir="'+t+'"]',r.getRoot())||r.setAttrib(n,"dir",e!==t?t:null)}),n.nodeChanged())},l=function(n){n.addCommand("mceDirectionLTR",function(){d(n,"ltr")}),n.addCommand("mceDirectionRTL",function(){d(n,"rtl")})},a=function(n){return function(){return n}},m=a(!1),N=a(!0),s=m,T=N,g=function(){return E},E=(r={fold:function(n,t){return n()},is:s,isSome:s,isNone:T,getOr:e=function(n){return n},getOrThunk:t=function(n){return n()},getOrDie:function(n){throw new Error(n||"error: getOrDie called on none.")},getOrNull:function(){return null},getOrUndefined:function(){return undefined},or:e,orThunk:t,map:g,ap:g,each:function(){},bind:g,flatten:g,exists:s,forall:T,filter:g,equals:n=function(n){return n.isNone()},equals_:n,toArray:function(){return[]},toString:a("none()")},Object.freeze&&Object.freeze(r),r),O=function(e){var n=function(){return e},t=function(){return o},r=function(n){return n(e)},o={fold:function(n,t){return t(e)},is:function(n){return e===n},isSome:T,isNone:s,getOr:n,getOrThunk:n,getOrDie:n,getOrNull:n,getOrUndefined:n,or:t,orThunk:t,map:function(n){return O(n(e))},ap:function(n){return n.fold(g,function(n){return O(n(e))})},each:function(n){n(e)},bind:r,flatten:n,exists:r,forall:r,filter:function(n){return n(e)?o:E},equals:function(n){return n.is(e)},equals_:function(n,t){return n.fold(s,function(n){return t(e,n)})},toArray:function(){return[e]},toString:function(){return"some("+e+")"}};return o},y=function(n){return null===n||n===undefined?E:O(n)},D=function(n){if(null===n||n===undefined)throw new Error("Node cannot be null or undefined");return{dom:a(n)}},p={fromHtml:function(n,t){var e=(t||c.document).createElement("div");if(e.innerHTML=n,!e.hasChildNodes()||1<e.childNodes.length)throw c.console.error("HTML does not have a single root node",n),new Error("HTML must have a single root node");return D(e.childNodes[0])},fromTag:function(n,t){var e=(t||c.document).createElement(n);return D(e)},fromText:function(n,t){var e=(t||c.document).createTextNode(n);return D(e)},fromDom:D,fromPoint:function(n,t,e){var r=n.dom();return y(r.elementFromPoint(t,e)).map(D)}},h=(o="function",function(n){return function(n){if(null===n)return"null";var t=typeof n;return"object"===t&&Array.prototype.isPrototypeOf(n)?"array":"object"===t&&String.prototype.isPrototypeOf(n)?"string":t}(n)===o}),_=(Array.prototype.slice,h(Array.from)&&Array.from,c.Node.ATTRIBUTE_NODE,c.Node.CDATA_SECTION_NODE,c.Node.COMMENT_NODE,c.Node.DOCUMENT_NODE,c.Node.DOCUMENT_TYPE_NODE,c.Node.DOCUMENT_FRAGMENT_NODE,c.Node.ELEMENT_NODE,c.Node.TEXT_NODE),C=(c.Node.PROCESSING_INSTRUCTION_NODE,c.Node.ENTITY_REFERENCE_NODE,c.Node.ENTITY_NODE,c.Node.NOTATION_NODE,i=_,function(n){return n.dom().nodeType===i}),v=function(n,t){var e,r,o=n.dom(),i=c.window.getComputedStyle(o).getPropertyValue(t),u=""!==i||(r=C(e=n)?e.dom().parentNode:e.dom())!==undefined&&null!==r&&r.ownerDocument.body.contains(r)?i:A(o,t);return null===u?undefined:u},A=function(n,t){return n.style!==undefined?n.style.getPropertyValue(t):""},S=function(t,r){return function(e){var n=function(n){var t=p.fromDom(n.element);e.setActive(("rtl"===v(t,"direction")?"rtl":"ltr")===r)};return t.on("nodeChange",n),function(){return t.off("nodeChange",n)}}},R=function(n){n.ui.registry.addToggleButton("ltr",{tooltip:"Left to right",icon:"ltr",onAction:function(){return n.execCommand("mceDirectionLTR")},onSetup:S(n,"ltr")}),n.ui.registry.addToggleButton("rtl",{tooltip:"Right to left",icon:"rtl",onAction:function(){return n.execCommand("mceDirectionRTL")},onSetup:S(n,"rtl")})};u.add("directionality",function(n){l(n),R(n)}),function w(){}}(window);
|
Before Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 331 B |
Before Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 321 B |
Before Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 328 B |
Before Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 336 B |
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var i=function(e){var n=e,t=function(){return n};return{get:t,set:function(e){n=e},clone:function(){return i(t())}}},e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(e){return{isFullscreen:function(){return null!==e.get()}}},n=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),m=function(e,n){e.fire("FullscreenStateChanged",{state:n})},g=n.DOM,r=function(e,n){var t,r,l,i,o,c,s=document.body,u=document.documentElement,d=n.get(),a=function(){var e,n,t,i;g.setStyle(l,"height",(t=window,i=document.body,i.offsetWidth&&(e=i.offsetWidth,n=i.offsetHeight),t.innerWidth&&t.innerHeight&&(e=t.innerWidth,n=t.innerHeight),{w:e,h:n}).h-(r.clientHeight-l.clientHeight))},h=function(){g.unbind(window,"resize",a)};if(t=(r=e.getContainer()).style,i=(l=e.getContentAreaContainer().firstChild).style,d)i.width=d.iframeWidth,i.height=d.iframeHeight,d.containerWidth&&(t.width=d.containerWidth),d.containerHeight&&(t.height=d.containerHeight),g.removeClass(s,"mce-fullscreen"),g.removeClass(u,"mce-fullscreen"),g.removeClass(r,"mce-fullscreen"),o=d.scrollPos,window.scrollTo(o.x,o.y),g.unbind(window,"resize",d.resizeHandler),e.off("remove",d.removeHandler),n.set(null),m(e,!1);else{var f={scrollPos:(c=g.getViewPort(),{x:c.x,y:c.y}),containerWidth:t.width,containerHeight:t.height,iframeWidth:i.width,iframeHeight:i.height,resizeHandler:a,removeHandler:h};i.width=i.height="100%",t.width=t.height="",g.addClass(s,"mce-fullscreen"),g.addClass(u,"mce-fullscreen"),g.addClass(r,"mce-fullscreen"),g.bind(window,"resize",a),e.on("remove",h),a(),n.set(f),m(e,!0)}},l=function(e,n){e.addCommand("mceFullScreen",function(){r(e,n)})},o=function(t){return function(e){var n=e.control;t.on("FullscreenStateChanged",function(e){n.active(e.state)})}},c=function(e){e.addMenuItem("fullscreen",{text:"Fullscreen",shortcut:"Ctrl+Shift+F",selectable:!0,cmd:"mceFullScreen",onPostRender:o(e),context:"view"}),e.addButton("fullscreen",{active:!1,tooltip:"Fullscreen",cmd:"mceFullScreen",onPostRender:o(e)})};e.add("fullscreen",function(e){var n=i(null);return e.settings.inline||(l(e,n),c(e),e.addShortcut("Ctrl+Shift+F","","mceFullScreen")),t(n)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(g){"use strict";var i=function(e){var n=e,t=function(){return n};return{get:t,set:function(e){n=e},clone:function(){return i(t())}}},e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(e){return{isFullscreen:function(){return null!==e.get()}}},n=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),m=function(e,n){e.fire("FullscreenStateChanged",{state:n})},w=n.DOM,r=function(e,n){var t,r,o,i,l,c,u=g.document.body,s=g.document.documentElement,d=n.get(),a=function(){var e,n,t,i;w.setStyle(o,"height",(t=g.window,i=g.document.body,i.offsetWidth&&(e=i.offsetWidth,n=i.offsetHeight),t.innerWidth&&t.innerHeight&&(e=t.innerWidth,n=t.innerHeight),{w:e,h:n}).h-(r.clientHeight-o.clientHeight))},f=function(){w.unbind(g.window,"resize",a)};if(t=(r=e.getContainer()).style,i=(o=e.getContentAreaContainer().firstChild).style,d)i.width=d.iframeWidth,i.height=d.iframeHeight,d.containerWidth&&(t.width=d.containerWidth),d.containerHeight&&(t.height=d.containerHeight),w.removeClass(u,"tox-fullscreen"),w.removeClass(s,"tox-fullscreen"),w.removeClass(r,"tox-fullscreen"),l=d.scrollPos,g.window.scrollTo(l.x,l.y),w.unbind(g.window,"resize",d.resizeHandler),e.off("remove",d.removeHandler),n.set(null),m(e,!1);else{var h={scrollPos:(c=w.getViewPort(),{x:c.x,y:c.y}),containerWidth:t.width,containerHeight:t.height,iframeWidth:i.width,iframeHeight:i.height,resizeHandler:a,removeHandler:f};i.width=i.height="100%",t.width=t.height="",w.addClass(u,"tox-fullscreen"),w.addClass(s,"tox-fullscreen"),w.addClass(r,"tox-fullscreen"),w.bind(g.window,"resize",a),e.on("remove",f),a(),n.set(h),m(e,!0)}},o=function(e,n){e.addCommand("mceFullScreen",function(){r(e,n)})},l=function(t,i){return function(n){n.setActive(null!==i.get());var e=function(e){return n.setActive(e.state)};return t.on("FullscreenStateChanged",e),function(){return t.off("FullscreenStateChanged",e)}}},c=function(e,n){e.ui.registry.addToggleMenuItem("fullscreen",{text:"Fullscreen",shortcut:"Meta+Shift+F",onAction:function(){return e.execCommand("mceFullScreen")},onSetup:l(e,n)}),e.ui.registry.addToggleButton("fullscreen",{tooltip:"Fullscreen",icon:"fullscreen",onAction:function(){return e.execCommand("mceFullScreen")},onSetup:l(e,n)})};e.add("fullscreen",function(e){var n=i(null);return e.settings.inline||(o(e,n),c(e,n),e.addShortcut("Meta+Shift+F","","mceFullScreen")),t(n)}),function u(){}}(window);
|
Before Width: | Height: | Size: 13 KiB |
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"<hr />")})},o=function(n){n.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),n.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})};n.add("hr",function(n){t(n),o(n)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"<hr />")})},t=function(n){n.ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}}),n.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}})};n.add("hr",function(n){o(n),t(n)}),function e(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),d=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),v=tinymce.util.Tools.resolve("tinymce.EditorManager"),h=tinymce.util.Tools.resolve("tinymce.Env"),y=tinymce.util.Tools.resolve("tinymce.util.Tools"),o=function(e){return e.getParam("importcss_merge_classes")},n=function(e){return e.getParam("importcss_exclusive")},_=function(e){return e.getParam("importcss_selector_converter")},r=function(e){return e.getParam("importcss_selector_filter")},i=function(e){return e.getParam("importcss_groups")},u=function(e){return e.getParam("importcss_append")},l=function(e){return e.getParam("importcss_file_filter")},a=function(t){return"string"==typeof t?function(e){return-1!==e.indexOf(t)}:t instanceof RegExp?function(e){return t.test(e)}:t},f=function(f,e,m){var g=[],n={};function p(e,t){var n,r,i,c=e.href;if(r=c,i=h.cacheSuffix,"string"==typeof r&&(r=r.replace("?"+i,"").replace("&"+i,"")),(c=r)&&m(c,t)&&(o=c,u=(s=f).settings,!(l=!1!==u.skin&&(u.skin||"lightgray"))||o!==(u.skin_url?s.documentBaseURI.toAbsolute(u.skin_url):v.baseURL+"/skins/"+l)+"/content"+(s.inline?".inline":"")+".min.css")){var s,o,u,l;y.each(e.imports,function(e){p(e,!0)});try{n=e.cssRules||e.rules}catch(a){}y.each(n,function(e){e.styleSheet?p(e.styleSheet,!0):e.selectorText&&y.each(e.selectorText.split(","),function(e){g.push(y.trim(e))})})}}y.each(f.contentCSS,function(e){n[e]=!0}),m||(m=function(e,t){return t||n[e]});try{y.each(e.styleSheets,function(e){p(e)})}catch(t){}return g},x=function(e,t){var n,r=/^(?:([a-z0-9\-_]+))?(\.[a-z0-9_\-\.]+)$/i.exec(t);if(r){var i=r[1],c=r[2].substr(1).split(".").join(" "),s=y.makeMap("a,img");return r[1]?(n={title:t},e.schema.getTextBlockElements()[i]?n.block=i:e.schema.getBlockElements()[i]||s[i.toLowerCase()]?n.selector=i:n.inline=i):r[2]&&(n={inline:"span",title:t.substr(1),classes:c}),!1!==o(e)?n.classes=c:n.attributes={"class":c},n}},T=function(e,t){return null===t||!1!==n(e)},c=x,t=function(h){h.on("renderFormatsMenu",function(e){var t,p={},c=a(r(h)),v=e.control,s=(t=i(h),y.map(t,function(e){return y.extend({},e,{original:e,selectors:{},filter:a(e.filter),item:{text:e.title,menu:[]}})})),o=function(e,t){if(f=e,g=p,!(T(h,m=t)?f in g:f in m.selectors)){u=e,a=p,T(h,l=t)?a[u]=!0:l.selectors[u]=!0;var n=(c=(i=h).plugins.importcss,s=e,((o=t)&&o.selector_converter?o.selector_converter:_(i)?_(i):function(){return x(i,s)}).call(c,s,o));if(n){var r=n.name||d.DOM.uniqueId();return h.formatter.register(r,n),y.extend({},v.settings.itemDefaults,{text:n.title,format:r})}}var i,c,s,o,u,l,a,f,m,g;return null};u(h)||v.items().remove(),y.each(f(h,e.doc||h.getDoc(),a(l(h))),function(n){if(-1===n.indexOf(".mce-")&&(!c||c(n))){var e=(r=s,i=n,y.grep(r,function(e){return!e.filter||e.filter(i)}));if(0<e.length)y.each(e,function(e){var t=o(n,e);t&&e.item.menu.push(t)});else{var t=o(n,null);t&&v.add(t)}}var r,i}),y.each(s,function(e){0<e.item.menu.length&&v.add(e.item)}),e.control.renderNew()})},s=function(t){return{convertSelectorToFormat:function(e){return c(t,e)}}};e.add("importcss",function(e){return t(e),s(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var t,e,n,r,i,o=tinymce.util.Tools.resolve("tinymce.PluginManager"),d=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),f=tinymce.util.Tools.resolve("tinymce.EditorManager"),m=tinymce.util.Tools.resolve("tinymce.Env"),v=tinymce.util.Tools.resolve("tinymce.util.Tools"),c=function(t){return t.getParam("importcss_merge_classes")},u=function(t){return t.getParam("importcss_exclusive")},h=function(t){return t.getParam("importcss_selector_converter")},l=function(t){return t.getParam("importcss_selector_filter")},p=function(t){return t.getParam("importcss_groups")},_=function(t){return t.getParam("importcss_append")},O=function(t){return t.getParam("importcss_file_filter")},s=function(t){return function(){return t}},a=s(!1),y=s(!0),g=function(){return x},x=(r={fold:function(t,e){return t()},is:a,isSome:a,isNone:y,getOr:n=function(t){return t},getOrThunk:e=function(t){return t()},getOrDie:function(t){throw new Error(t||"error: getOrDie called on none.")},getOrNull:function(){return null},getOrUndefined:function(){return undefined},or:n,orThunk:e,map:g,ap:g,each:function(){},bind:g,flatten:g,exists:a,forall:y,filter:g,equals:t=function(t){return t.isNone()},equals_:t,toArray:function(){return[]},toString:s("none()")},Object.freeze&&Object.freeze(r),r),T=(i="function",function(t){return function(t){if(null===t)return"null";var e=typeof t;return"object"===e&&Array.prototype.isPrototypeOf(t)?"array":"object"===e&&String.prototype.isPrototypeOf(t)?"string":e}(t)===i}),b=Array.prototype.push,k=function(t,e){return function(t){for(var e=[],n=0,r=t.length;n<r;++n){if(!Array.prototype.isPrototypeOf(t[n]))throw new Error("Arr.flatten item "+n+" was not an array, input: "+t);b.apply(e,t[n])}return e}(function(t,e){for(var n=t.length,r=new Array(n),i=0;i<n;i++){var o=t[i];r[i]=e(o,i,t)}return r}(t,e))},P=(Array.prototype.slice,T(Array.from)&&Array.from,function(e){return"string"==typeof e?function(t){return-1!==t.indexOf(e)}:e instanceof RegExp?function(t){return e.test(t)}:e}),S=function(c,t,s){var a=[],n={};function l(t,e){var n,r,i,o=t.href;if(r=o,i=m.cacheSuffix,"string"==typeof r&&(r=r.replace("?"+i,"").replace("&"+i,"")),(o=r)&&s(o,e)&&!function(t,e){var n=t.settings,r=!1!==n.skin&&(n.skin||"oxide");if(r){var i=n.skin_url?t.documentBaseURI.toAbsolute(n.skin_url):f.baseURL+"/skins/ui/"+r,o=f.baseURL+"/skins/content/";return e===i+"/content"+(t.inline?".inline":"")+".min.css"||-1!==e.indexOf(o)}return!1}(c,o)){v.each(t.imports,function(t){l(t,!0)});try{n=t.cssRules||t.rules}catch(u){}v.each(n,function(t){t.styleSheet?l(t.styleSheet,!0):t.selectorText&&v.each(t.selectorText.split(","),function(t){a.push(v.trim(t))})})}}v.each(c.contentCSS,function(t){n[t]=!0}),s||(s=function(t,e){return e||n[t]});try{v.each(t.styleSheets,function(t){l(t)})}catch(e){}return a},A=function(t,e){var n,r=/^(?:([a-z0-9\-_]+))?(\.[a-z0-9_\-\.]+)$/i.exec(e);if(r){var i=r[1],o=r[2].substr(1).split(".").join(" "),u=v.makeMap("a,img");return r[1]?(n={title:e},t.schema.getTextBlockElements()[i]?n.block=i:t.schema.getBlockElements()[i]||u[i.toLowerCase()]?n.selector=i:n.inline=i):r[2]&&(n={inline:"span",title:e.substr(1),classes:o}),!1!==c(t)?n.classes=o:n.attributes={"class":o},n}},w=function(t,e){return null===e||!1!==u(t)},E=A,I=function(g){g.on("init",function(t){var e,n,r,i,o=(e=[],n=[],r={},{addItemToGroup:function(t,e){r[t]?r[t].push(e):(n.push(t),r[t]=[e])},addItem:function(t){e.push(t)},toFormats:function(){return k(n,function(t){var e=r[t];return 0===e.length?[]:[{title:t,items:e}]}).concat(e)}}),y={},u=P(l(g)),c=(i=p(g),v.map(i,function(t){return v.extend({},t,{original:t,selectors:{},filter:P(t.filter),item:{text:t.title,menu:[]}})})),s=function(t,e){if(f=t,p=y,!(w(g,m=e)?f in p:f in m.selectors)){s=t,l=y,w(g,a=e)?l[s]=!0:a.selectors[s]=!0;var n=(o=(i=g).plugins.importcss,u=t,((c=e)&&c.selector_converter?c.selector_converter:h(i)?h(i):function(){return A(i,u)}).call(o,u,c));if(n){var r=n.name||d.DOM.uniqueId();return g.formatter.register(r,n),v.extend({},{title:n.title,format:r})}}var i,o,u,c,s,a,l,f,m,p;return null};v.each(S(g,t.doc||g.getDoc(),P(O(g))),function(n){if(-1===n.indexOf(".mce-")&&(!u||u(n))){var t=(r=c,i=n,v.grep(r,function(t){return!t.filter||t.filter(i)}));if(0<t.length)v.each(t,function(t){var e=s(n,t);e&&o.addItemToGroup(t.title,e)});else{var e=s(n,null);e&&o.addItem(e)}}var r,i});var a=o.toFormats();g.fire("addStyleModifications",{items:a,replace:!_(g)})})},M=function(e){return{convertSelectorToFormat:function(t){return E(e,t)}}};o.add("importcss",function(t){return I(t),M(t)}),function j(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var r=function(e){var t=e,n=function(){return t};return{get:n,set:function(e){t=e},clone:function(){return r(n())}}},e=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=function(e){return e.getParam("insertdatetime_timeformat",e.translate("%H:%M:%S"))},a=function(e){return e.getParam("insertdatetime_formats",["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"])},t=function(e){return e.getParam("insertdatetime_dateformat",e.translate("%Y-%m-%d"))},i=n,o=a,u=function(e){var t=a(e);return 0<t.length?t[0]:n(e)},m=function(e){return e.getParam("insertdatetime_element",!1)},c="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),l="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),s="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),d="January February March April May June July August September October November December".split(" "),p=function(e,t){if((e=""+e).length<t)for(var n=0;n<t-e.length;n++)e="0"+e;return e},f=function(e,t,n){return n=n||new Date,t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+n.getFullYear())).replace("%y",""+n.getYear())).replace("%m",p(n.getMonth()+1,2))).replace("%d",p(n.getDate(),2))).replace("%H",""+p(n.getHours(),2))).replace("%M",""+p(n.getMinutes(),2))).replace("%S",""+p(n.getSeconds(),2))).replace("%I",""+((n.getHours()+11)%12+1))).replace("%p",n.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(d[n.getMonth()]))).replace("%b",""+e.translate(s[n.getMonth()]))).replace("%A",""+e.translate(l[n.getDay()]))).replace("%a",""+e.translate(c[n.getDay()]))).replace("%%","%")},g=function(e,t){if(m(e)){var n=f(e,t),r=void 0;r=/%[HMSIp]/.test(t)?f(e,"%Y-%m-%dT%H:%M"):f(e,"%Y-%m-%d");var a=e.dom.getParent(e.selection.getStart(),"time");a?(o=a,u=r,c=n,l=(i=e).dom.create("time",{datetime:u},c),o.parentNode.insertBefore(l,o),i.dom.remove(o),i.selection.select(l,!0),i.selection.collapse(!1)):e.insertContent('<time datetime="'+r+'">'+n+"</time>")}else e.insertContent(f(e,t));var i,o,u,c,l},y=f,M=function(e){e.addCommand("mceInsertDate",function(){g(e,t(e))}),e.addCommand("mceInsertTime",function(){g(e,i(e))})},v=tinymce.util.Tools.resolve("tinymce.util.Tools"),S=function(t,n){var r,a,e,i=(a=n,e=o(r=t),v.map(e,function(e){return{text:y(r,e),onclick:function(){a.set(e),g(r,e)}}}));t.addButton("insertdatetime",{type:"splitbutton",title:"Insert date/time",menu:i,onclick:function(){var e=n.get();g(t,e||u(t))}}),t.addMenuItem("insertdatetime",{icon:"date",text:"Date/time",menu:i,context:"insert"})};e.add("insertdatetime",function(e){var t=r(null);M(e),S(e,t)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=function(e){return e.getParam("insertdatetime_timeformat",e.translate("%H:%M:%S"))},r=function(e){return e.getParam("insertdatetime_formats",["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"])},t=function(e){return e.getParam("insertdatetime_dateformat",e.translate("%Y-%m-%d"))},a=n,i=r,o=function(e){var t=r(e);return 0<t.length?t[0]:n(e)},l=function(e){return e.getParam("insertdatetime_element",!1)},u="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),c="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),m="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),s="January February March April May June July August September October November December".split(" "),d=function(e,t){if((e=""+e).length<t)for(var n=0;n<t-e.length;n++)e="0"+e;return e},f=function(e,t,n){return n=n||new Date,t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+n.getFullYear())).replace("%y",""+n.getYear())).replace("%m",d(n.getMonth()+1,2))).replace("%d",d(n.getDate(),2))).replace("%H",""+d(n.getHours(),2))).replace("%M",""+d(n.getMinutes(),2))).replace("%S",""+d(n.getSeconds(),2))).replace("%I",""+((n.getHours()+11)%12+1))).replace("%p",n.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(s[n.getMonth()]))).replace("%b",""+e.translate(m[n.getMonth()]))).replace("%A",""+e.translate(c[n.getDay()]))).replace("%a",""+e.translate(u[n.getDay()]))).replace("%%","%")},p=function(e,t){if(l(e)){var n=f(e,t),r=void 0;r=/%[HMSIp]/.test(t)?f(e,"%Y-%m-%dT%H:%M"):f(e,"%Y-%m-%d");var a=e.dom.getParent(e.selection.getStart(),"time");a?(o=a,u=r,c=n,m=(i=e).dom.create("time",{datetime:u},c),o.parentNode.insertBefore(m,o),i.dom.remove(o),i.selection.select(m,!0),i.selection.collapse(!1)):e.insertContent('<time datetime="'+r+'">'+n+"</time>")}else e.insertContent(f(e,t));var i,o,u,c,m},g=f,y=function(e){e.addCommand("mceInsertDate",function(){p(e,t(e))}),e.addCommand("mceInsertTime",function(){p(e,a(e))})},M=tinymce.util.Tools.resolve("tinymce.util.Tools"),S=function(e){var t=e,n=function(){return t};return{get:n,set:function(e){t=e},clone:function(){return S(n())}}},v=function(n){var t=i(n),r=S(o(n));n.ui.registry.addSplitButton("insertdatetime",{icon:"insert-time",tooltip:"Insert date/time",select:function(e){return e===r.get()},fetch:function(e){e(M.map(t,function(e){return{type:"choiceitem",text:g(n,e),value:e}}))},onAction:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];p(n,r.get())},onItemAction:function(e,t){r.set(t),p(n,t)}}),n.ui.registry.addNestedMenuItem("insertdatetime",{icon:"insert-time",text:"Date/time",getSubmenuItems:function(){return M.map(t,function(e){return{type:"menuitem",text:g(n,e),onAction:(t=e,function(){r.set(t),p(n,t)})};var t})}})};e.add("insertdatetime",function(e){y(e),v(e)}),function h(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=function(a){a.settings.inline_styles=!1,a.on("init",function(){var e,t,n,i;e=a,t="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",n=o.explode(e.settings.font_size_style_values),i=e.schema,e.formatter.register({alignleft:{selector:t,attributes:{align:"left"}},aligncenter:{selector:t,attributes:{align:"center"}},alignright:{selector:t,attributes:{align:"right"}},alignjustify:{selector:t,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:!0}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:!0}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(e){return o.inArray(n,e.value)+1}}},forecolor:{inline:"font",attributes:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}}),o.each("b,i,u,strike".split(","),function(e){i.addValidElements(e+"[*]")}),i.getElementRule("font")||i.addValidElements("font[face|size|color|style]"),o.each(t.split(","),function(e){var t=i.getElementRule(e);t&&(t.attributes.align||(t.attributes.align={},t.attributesOrder.push("align")))})})},n=function(i){i.addButton("fontsizeselect",function(){var o=[],e=i.settings.fontsizeFormats||"8pt=1 10pt=2 12pt=3 14pt=4 18pt=5 24pt=6 36pt=7";return i.$.each(e.split(" "),function(e,t){var n=t,i=t,a=t.split("=");1<a.length&&(n=a[0],i=a[1]),o.push({text:n,value:i})}),{type:"listbox",text:"Font Sizes",tooltip:"Font Sizes",values:o,fixedWidth:!0,onPostRender:function(){var t=this;i.on("NodeChange",function(){var e;(e=i.dom.getParent(i.selection.getNode(),"font"))?t.value(e.size):t.value("")})},onclick:function(e){e.control.settings.value&&i.execCommand("FontSize",!1,e.control.settings.value)}}}),i.addButton("fontselect",function(){var n=[],e=function(e){for(var t=(e=e.replace(/;$/,"").split(";")).length;t--;)e[t]=e[t].split("=");return e}(i.settings.font_formats||"Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats");return i.$.each(e,function(e,t){n.push({text:{raw:t[0]},value:t[1],textStyle:-1===t[1].indexOf("dings")?"font-family:"+t[1]:""})}),{type:"listbox",text:"Font Family",tooltip:"Font Family",values:n,fixedWidth:!0,onPostRender:function(){var t=this;i.on("NodeChange",function(){var e;(e=i.dom.getParent(i.selection.getNode(),"font"))?t.value(e.face):t.value("")})},onselect:function(e){e.control.settings.value&&i.execCommand("FontName",!1,e.control.settings.value)}}})};e.add("legacyoutput",function(e){t(e),n(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),l=tinymce.util.Tools.resolve("tinymce.util.Tools"),t=function(e){return e.getParam("font_formats")},i=function(e){return e.getParam("fontsize_formats")},n=function(e,t){e.settings.fontsize_formats=t},s=function(e,t){e.settings.font_formats=t},o=function(e){return e.getParam("font_size_style_values")},r=function(e,t){e.settings.inline_styles=t},a=function(a){var e;r(e=a,!1),i(e)||n(e,"8pt=1 10pt=2 12pt=3 14pt=4 18pt=5 24pt=6 36pt=7"),t(e)||s(e,"Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats"),a.on("init",function(){return e=a,t="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",i=l.explode(o(e)),n=e.schema,e.formatter.register({alignleft:{selector:t,attributes:{align:"left"}},aligncenter:{selector:t,attributes:{align:"center"}},alignright:{selector:t,attributes:{align:"right"}},alignjustify:{selector:t,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:!0}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:!0}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(e){return l.inArray(i,e.value)+1}}},forecolor:{inline:"font",attributes:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}}),l.each("b,i,u,strike".split(","),function(e){n.addValidElements(e+"[*]")}),n.getElementRule("font")||n.addValidElements("font[face|size|color|style]"),void l.each(t.split(","),function(e){var t=n.getElementRule(e);t&&(t.attributes.align||(t.attributes.align={},t.attributesOrder.push("align")))});var e,t,i,n})};e.add("legacyoutput",function(e){a(e)}),function c(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=function(n,e){var t,i=(t=n).plugins.visualchars&&t.plugins.visualchars.isEnabled()?'<span class="mce-nbsp"> </span>':" ";n.insertContent(function(n,e){for(var t="",i=0;i<e;i++)t+=n;return t}(i,e)),n.dom.setAttrib(n.dom.select("span.mce-nbsp"),"data-mce-bogus","1")},e=function(n){n.addCommand("mceNonBreaking",function(){i(n,1)})},o=tinymce.util.Tools.resolve("tinymce.util.VK"),a=function(n){var e=n.getParam("nonbreaking_force_tab",0);return"boolean"==typeof e?!0===e?3:0:e},t=function(e){var t=a(e);0<t&&e.on("keydown",function(n){if(n.keyCode===o.TAB&&!n.isDefaultPrevented()){if(n.shiftKey)return;n.preventDefault(),n.stopImmediatePropagation(),i(e,t)}})},r=function(n){n.addButton("nonbreaking",{title:"Nonbreaking space",cmd:"mceNonBreaking"}),n.addMenuItem("nonbreaking",{icon:"nonbreaking",text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"})};n.add("nonbreaking",function(n){e(n),r(n),t(n)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(n,e){var o,t=(o=n).plugins.visualchars&&o.plugins.visualchars.isEnabled()?'<span class="mce-nbsp"> </span>':" ";n.insertContent(function(n,e){for(var o="",t=0;t<e;t++)o+=n;return o}(t,e)),n.dom.setAttrib(n.dom.select("span.mce-nbsp"),"data-mce-bogus","1")},e=function(n){n.addCommand("mceNonBreaking",function(){t(n,1)})},i=tinymce.util.Tools.resolve("tinymce.util.VK"),a=function(n){var e=n.getParam("nonbreaking_force_tab",0);return"boolean"==typeof e?!0===e?3:0:e},o=function(e){var o=a(e);0<o&&e.on("keydown",function(n){if(n.keyCode===i.TAB&&!n.isDefaultPrevented()){if(n.shiftKey)return;n.preventDefault(),n.stopImmediatePropagation(),t(e,o)}})},r=function(n){n.ui.registry.addButton("nonbreaking",{icon:"non-breaking",tooltip:"Nonbreaking space",onAction:function(){return n.execCommand("mceNonBreaking")}}),n.ui.registry.addMenuItem("nonbreaking",{icon:"non-breaking",text:"Nonbreaking space",onAction:function(){return n.execCommand("mceNonBreaking")}})};n.add("nonbreaking",function(n){e(n),r(n),o(n)}),function c(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),c=tinymce.util.Tools.resolve("tinymce.util.Tools"),l=function(t){return t.getParam("noneditable_noneditable_class","mceNonEditable")},u=function(t){return t.getParam("noneditable_editable_class","mceEditable")},f=function(t){var n=t.getParam("noneditable_regexp",[]);return n&&n.constructor===RegExp?[n]:n},s=function(n){return function(t){return-1!==(" "+t.attr("class")+" ").indexOf(n)}},d=function(i,o,c){return function(t){var n=arguments,e=n[n.length-2],r=0<e?o.charAt(e-1):"";if('"'===r)return t;if(">"===r){var a=o.lastIndexOf("<",e);if(-1!==a&&-1!==o.substring(a,e).indexOf('contenteditable="false"'))return t}return'<span class="'+c+'" data-mce-content="'+i.dom.encode(n[0])+'">'+i.dom.encode("string"==typeof n[1]?n[1]:n[0])+"</span>"}},n=function(n){var t,e,r="contenteditable";t=" "+c.trim(u(n))+" ",e=" "+c.trim(l(n))+" ";var a=s(t),i=s(e),o=f(n);n.on("PreInit",function(){0<o.length&&n.on("BeforeSetContent",function(t){!function(t,n,e){var r=n.length,a=e.content;if("raw"!==e.format){for(;r--;)a=a.replace(n[r],d(t,a,l(t)));e.content=a}}(n,o,t)}),n.parser.addAttributeFilter("class",function(t){for(var n,e=t.length;e--;)n=t[e],a(n)?n.attr(r,"true"):i(n)&&n.attr(r,"false")}),n.serializer.addAttributeFilter(r,function(t){for(var n,e=t.length;e--;)n=t[e],(a(n)||i(n))&&(0<o.length&&n.attr("data-mce-content")?(n.name="#text",n.type=3,n.raw=!0,n.value=n.attr("data-mce-content")):n.attr(r,null))})})};t.add("noneditable",function(t){n(t)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),c=tinymce.util.Tools.resolve("tinymce.util.Tools"),l=function(t){return t.getParam("noneditable_noneditable_class","mceNonEditable")},u=function(t){return t.getParam("noneditable_editable_class","mceEditable")},f=function(t){var n=t.getParam("noneditable_regexp",[]);return n&&n.constructor===RegExp?[n]:n},s=function(n){return function(t){return-1!==(" "+t.attr("class")+" ").indexOf(n)}},d=function(i,o,c){return function(t){var n=arguments,e=n[n.length-2],r=0<e?o.charAt(e-1):"";if('"'===r)return t;if(">"===r){var a=o.lastIndexOf("<",e);if(-1!==a&&-1!==o.substring(a,e).indexOf('contenteditable="false"'))return t}return'<span class="'+c+'" data-mce-content="'+i.dom.encode(n[0])+'">'+i.dom.encode("string"==typeof n[1]?n[1]:n[0])+"</span>"}},n=function(n){var t,e,r="contenteditable";t=" "+c.trim(u(n))+" ",e=" "+c.trim(l(n))+" ";var a=s(t),i=s(e),o=f(n);n.on("PreInit",function(){0<o.length&&n.on("BeforeSetContent",function(t){!function(t,n,e){var r=n.length,a=e.content;if("raw"!==e.format){for(;r--;)a=a.replace(n[r],d(t,a,l(t)));e.content=a}}(n,o,t)}),n.parser.addAttributeFilter("class",function(t){for(var n,e=t.length;e--;)n=t[e],a(n)?n.attr(r,"true"):i(n)&&n.attr(r,"false")}),n.serializer.addAttributeFilter(r,function(t){for(var n,e=t.length;e--;)n=t[e],(a(n)||i(n))&&(0<o.length&&n.attr("data-mce-content")?(n.name="#text",n.type=3,n.raw=!0,n.value=n.attr("data-mce-content")):n.attr(r,null))})})};t.add("noneditable",function(t){n(t)}),function e(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=tinymce.util.Tools.resolve("tinymce.Env"),n=function(e){return e.getParam("pagebreak_separator","\x3c!-- pagebreak --\x3e")},i=function(e){return e.getParam("pagebreak_split_block",!1)},t=function(){return"mce-pagebreak"},r=function(){return'<img src="'+a.transparentSrc+'" class="mce-pagebreak" data-mce-resize="false" data-mce-placeholder />'},c=function(c){var o=n(c),a=new RegExp(o.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(e){return"\\"+e}),"gi");c.on("BeforeSetContent",function(e){e.content=e.content.replace(a,r())}),c.on("PreInit",function(){c.serializer.addNodeFilter("img",function(e){for(var a,n,t=e.length;t--;)if((n=(a=e[t]).attr("class"))&&-1!==n.indexOf("mce-pagebreak")){var r=a.parent;if(c.schema.getBlockElements()[r.name]&&i(c)){r.type=3,r.value=o,r.raw=!0,a.remove();continue}a.type=3,a.value=o,a.raw=!0}})})},o=r,g=t,u=function(e){e.addCommand("mcePageBreak",function(){e.settings.pagebreak_split_block?e.insertContent("<p>"+o()+"</p>"):e.insertContent(o())})},m=function(a){a.on("ResolveName",function(e){"IMG"===e.target.nodeName&&a.dom.hasClass(e.target,g())&&(e.name="pagebreak")})},s=function(e){e.addButton("pagebreak",{title:"Page break",cmd:"mcePageBreak"}),e.addMenuItem("pagebreak",{text:"Page break",icon:"pagebreak",cmd:"mcePageBreak",context:"insert"})};e.add("pagebreak",function(e){u(e),s(e),c(e),m(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=tinymce.util.Tools.resolve("tinymce.Env"),a=function(e){return e.getParam("pagebreak_separator","\x3c!-- pagebreak --\x3e")},i=function(e){return e.getParam("pagebreak_split_block",!1)},t=function(){return"mce-pagebreak"},r=function(){return'<img src="'+n.transparentSrc+'" class="mce-pagebreak" data-mce-resize="false" data-mce-placeholder />'},o=function(o){var c=a(o),n=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(e){return"\\"+e}),"gi");o.on("BeforeSetContent",function(e){e.content=e.content.replace(n,r())}),o.on("PreInit",function(){o.serializer.addNodeFilter("img",function(e){for(var n,a,t=e.length;t--;)if((a=(n=e[t]).attr("class"))&&-1!==a.indexOf("mce-pagebreak")){var r=n.parent;if(o.schema.getBlockElements()[r.name]&&i(o)){r.type=3,r.value=c,r.raw=!0,n.remove();continue}n.type=3,n.value=c,n.raw=!0}})})},c=r,u=t,g=function(e){e.addCommand("mcePageBreak",function(){e.settings.pagebreak_split_block?e.insertContent("<p>"+c()+"</p>"):e.insertContent(c())})},m=function(n){n.on("ResolveName",function(e){"IMG"===e.target.nodeName&&n.dom.hasClass(e.target,u())&&(e.name="pagebreak")})},s=function(e){e.ui.registry.addButton("pagebreak",{icon:"page-break",tooltip:"Page break",onAction:function(){return e.execCommand("mcePageBreak")}}),e.ui.registry.addMenuItem("pagebreak",{text:"Page break",icon:"page-break",onAction:function(){return e.execCommand("mcePageBreak")}})};e.add("pagebreak",function(e){g(e),s(e),o(e),m(e)}),function l(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),r=tinymce.util.Tools.resolve("tinymce.Env"),c=function(e){return parseInt(e.getParam("plugin_preview_width","650"),10)},a=function(e){return parseInt(e.getParam("plugin_preview_height","500"),10)},s=function(e){return e.getParam("content_style","")},d=tinymce.util.Tools.resolve("tinymce.util.Tools"),l=function(t){var n="",i=t.dom.encode,e=s(t);n+='<base href="'+i(t.documentBaseURI.getURI())+'">',e&&(n+='<style type="text/css">'+e+"</style>"),d.each(t.contentCSS,function(e){n+='<link type="text/css" rel="stylesheet" href="'+i(t.documentBaseURI.toAbsolute(e))+'">'});var o=t.settings.body_id||"tinymce";-1!==o.indexOf("=")&&(o=(o=t.getParam("body_id","","hash"))[t.id]||o);var r=t.settings.body_class||"";-1!==r.indexOf("=")&&(r=(r=t.getParam("body_class","","hash"))[t.id]||"");var c=t.settings.directionality?' dir="'+t.settings.directionality+'"':"";return"<!DOCTYPE html><html><head>"+n+'</head><body id="'+i(o)+'" class="mce-content-body '+i(r)+'"'+i(c)+">"+t.getContent()+'<script>document.addEventListener && document.addEventListener("click", function(e) {for (var elm = e.target; elm; elm = elm.parentNode) {if (elm.nodeName === "A") {e.preventDefault();}}}, false);<\/script> </body></html>'},m=function(e,t,n){var i=l(e);if(n)t.src="data:text/html;charset=utf-8,"+encodeURIComponent(i);else{var o=t.contentWindow.document;o.open(),o.write(i),o.close()}},t=function(n){var i=!r.ie,e='<iframe src="" frameborder="0"'+(i?' sandbox="allow-scripts"':"")+"></iframe>",t=c(n),o=a(n);n.windowManager.open({title:"Preview",width:t,height:o,html:e,buttons:{text:"Close",onclick:function(e){e.control.parent().parent().close()}},onPostRender:function(e){var t=e.control.getEl("body").firstChild;m(n,t,i)}})},n=function(e){e.addCommand("mcePreview",function(){t(e)})},i=function(e){e.addButton("preview",{title:"Preview",cmd:"mcePreview"}),e.addMenuItem("preview",{text:"Preview",cmd:"mcePreview",context:"view"})};e.add("preview",function(e){n(e),i(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),c=tinymce.util.Tools.resolve("tinymce.util.Tools"),s=function(e){return e.getParam("content_style","")},i=function(t){var n="",i=t.dom.encode,e=s(t);n+='<base href="'+i(t.documentBaseURI.getURI())+'">',e&&(n+='<style type="text/css">'+e+"</style>"),c.each(t.contentCSS,function(e){n+='<link type="text/css" rel="stylesheet" href="'+i(t.documentBaseURI.toAbsolute(e))+'">'});var o=t.settings.body_id||"tinymce";-1!==o.indexOf("=")&&(o=(o=t.getParam("body_id","","hash"))[t.id]||o);var r=t.settings.body_class||"";-1!==r.indexOf("=")&&(r=(r=t.getParam("body_class","","hash"))[t.id]||"");var a=t.settings.directionality?' dir="'+t.settings.directionality+'"':"";return"<!DOCTYPE html><html><head>"+n+'</head><body id="'+i(o)+'" class="mce-content-body '+i(r)+'"'+i(a)+">"+t.getContent()+'<script>document.addEventListener && document.addEventListener("click", function(e) {for (var elm = e.target; elm; elm = elm.parentNode) {if (elm.nodeName === "A") {e.preventDefault();}}}, false);<\/script> </body></html>'},t=function(n){n.addCommand("mcePreview",function(){var e,t;t=i(e=n),e.windowManager.open({title:"Preview",size:"large",body:{type:"panel",items:[{name:"preview",type:"iframe",sandboxed:!0}]},buttons:[{type:"cancel",name:"close",text:"Close",primary:!0}],initialData:{preview:t}}).focus("close")})},n=function(e){e.ui.registry.addButton("preview",{icon:"preview",tooltip:"Preview",onAction:function(){return e.execCommand("mcePreview")}}),e.ui.registry.addMenuItem("preview",{icon:"preview",text:"Preview",onAction:function(){return e.execCommand("mcePreview")}})};e.add("preview",function(e){t(e),n(e)}),function o(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=function(t){t.addCommand("mcePrint",function(){t.getWin().print()})},i=function(t){t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print"})};t.add("print",function(t){n(t),i(t),t.addShortcut("Meta+P","","mcePrint")})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=function(n){n.addCommand("mcePrint",function(){n.getWin().print()})},i=function(n){n.ui.registry.addButton("print",{icon:"print",tooltip:"Print",onAction:function(){return n.execCommand("mcePrint")}}),n.ui.registry.addMenuItem("print",{text:"Print...",icon:"print",onAction:function(){return n.execCommand("mcePrint")}})};n.add("print",function(n){t(n),i(n),n.addShortcut("Meta+P","","mcePrint")}),function r(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),a=tinymce.util.Tools.resolve("tinymce.util.Tools"),o=function(n){return n.getParam("save_enablewhendirty",!0)},c=function(n){return!!n.getParam("save_onsavecallback")},i=function(n){return!!n.getParam("save_oncancelcallback")},r=function(n,e){n.notificationManager.open({text:n.translate(e),type:"error"})},e=function(n){var e;if(e=t.DOM.getParent(n.id,"form"),!o(n)||n.isDirty()){if(n.save(),c(n))return n.execCallback("save_onsavecallback",n),void n.nodeChanged();e?(n.setDirty(!1),e.onsubmit&&!e.onsubmit()||("function"==typeof e.submit?e.submit():r(n,"Error: Form submit field collision.")),n.nodeChanged()):r(n,"Error: No form element found.")}},l=function(n){var e=a.trim(n.startContent);i(n)?n.execCallback("save_oncancelcallback",n):(n.setContent(e),n.undoManager.clear(),n.nodeChanged())},d=function(n){n.addCommand("mceSave",function(){e(n)}),n.addCommand("mceCancel",function(){l(n)})},s=function(t){return function(n){var e=n.control;t.on("nodeChange dirty",function(){e.disabled(o(t)&&!t.isDirty())})}},u=function(n){n.addButton("save",{icon:"save",text:"Save",cmd:"mceSave",disabled:!0,onPostRender:s(n)}),n.addButton("cancel",{text:"Cancel",icon:!1,cmd:"mceCancel",disabled:!0,onPostRender:s(n)}),n.addShortcut("Meta+S","","mceSave")};n.add("save",function(n){u(n),d(n)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),o=tinymce.util.Tools.resolve("tinymce.util.Tools"),a=function(n){return n.getParam("save_enablewhendirty",!0)},i=function(n){return!!n.getParam("save_onsavecallback")},c=function(n){return!!n.getParam("save_oncancelcallback")},r=function(n,e){n.notificationManager.open({text:e,type:"error"})},e=function(n){var e;if(e=t.DOM.getParent(n.id,"form"),!a(n)||n.isDirty()){if(n.save(),i(n))return n.execCallback("save_onsavecallback",n),void n.nodeChanged();e?(n.setDirty(!1),e.onsubmit&&!e.onsubmit()||("function"==typeof e.submit?e.submit():r(n,"Error: Form submit field collision.")),n.nodeChanged()):r(n,"Error: No form element found.")}},u=function(n){var e=o.trim(n.startContent);c(n)?n.execCallback("save_oncancelcallback",n):(n.setContent(e),n.undoManager.clear(),n.nodeChanged())},l=function(n){n.addCommand("mceSave",function(){e(n)}),n.addCommand("mceCancel",function(){u(n)})},d=function(t){return function(n){var e=function(){n.setDisabled(a(t)&&!t.isDirty())};return t.on("nodeChange dirty",e),function(){return t.off("nodeChange dirty",e)}}},s=function(n){n.ui.registry.addButton("save",{icon:"save",tooltip:"Save",disabled:!0,onAction:function(){return n.execCommand("mceSave")},onSetup:d(n)}),n.ui.registry.addButton("cancel",{icon:"cancel",tooltip:"Cancel",disabled:!0,onAction:function(){return n.execCommand("mceCancel")},onSetup:d(n)}),n.addShortcut("Meta+S","","mceSave")};n.add("save",function(n){s(n),l(n)}),function m(){}}();
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),c=tinymce.util.Tools.resolve("tinymce.EditorManager"),s=tinymce.util.Tools.resolve("tinymce.Env"),a=tinymce.util.Tools.resolve("tinymce.util.Delay"),y=tinymce.util.Tools.resolve("tinymce.util.Tools"),f=tinymce.util.Tools.resolve("tinymce.util.VK"),d=function(e){return e.getParam("tab_focus",e.getParam("tabfocus_elements",":prev,:next"))},m=t.DOM,n=function(e){e.keyCode!==f.TAB||e.ctrlKey||e.altKey||e.metaKey||e.preventDefault()},i=function(r){function e(n){var i,o,e,l;if(!(n.keyCode!==f.TAB||n.ctrlKey||n.altKey||n.metaKey||n.isDefaultPrevented())&&(1===(e=y.explode(d(r))).length&&(e[1]=e[0],e[0]=":prev"),o=n.shiftKey?":prev"===e[0]?u(-1):m.get(e[0]):":next"===e[1]?u(1):m.get(e[1]))){var t=c.get(o.id||o.name);o.id&&t?t.focus():a.setTimeout(function(){s.webkit||window.focus(),o.focus()},10),n.preventDefault()}function u(e){function t(t){return/INPUT|TEXTAREA|BUTTON/.test(t.tagName)&&c.get(n.id)&&-1!==t.tabIndex&&function e(t){return"BODY"===t.nodeName||"hidden"!==t.type&&"none"!==t.style.display&&"hidden"!==t.style.visibility&&e(t.parentNode)}(t)}if(o=m.select(":input:enabled,*[tabindex]:not(iframe)"),y.each(o,function(e,t){if(e.id===r.id)return i=t,!1}),0<e){for(l=i+1;l<o.length;l++)if(t(o[l]))return o[l]}else for(l=i-1;0<=l;l--)if(t(o[l]))return o[l];return null}}r.on("init",function(){r.inline&&m.setAttrib(r.getBody(),"tabIndex",null),r.on("keyup",n),s.gecko?r.on("keypress keydown",e):r.on("keydown",e)})};e.add("tabfocus",function(e){i(e)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(c){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),s=tinymce.util.Tools.resolve("tinymce.EditorManager"),a=tinymce.util.Tools.resolve("tinymce.Env"),y=tinymce.util.Tools.resolve("tinymce.util.Delay"),f=tinymce.util.Tools.resolve("tinymce.util.Tools"),d=tinymce.util.Tools.resolve("tinymce.util.VK"),m=function(e){return e.getParam("tab_focus",e.getParam("tabfocus_elements",":prev,:next"))},v=t.DOM,n=function(e){e.keyCode!==d.TAB||e.ctrlKey||e.altKey||e.metaKey||e.preventDefault()},i=function(r){function e(n){var i,o,e,l;if(!(n.keyCode!==d.TAB||n.ctrlKey||n.altKey||n.metaKey||n.isDefaultPrevented())&&(1===(e=f.explode(m(r))).length&&(e[1]=e[0],e[0]=":prev"),o=n.shiftKey?":prev"===e[0]?u(-1):v.get(e[0]):":next"===e[1]?u(1):v.get(e[1]))){var t=s.get(o.id||o.name);o.id&&t?t.focus():y.setTimeout(function(){a.webkit||c.window.focus(),o.focus()},10),n.preventDefault()}function u(e){function t(e){return/INPUT|TEXTAREA|BUTTON/.test(e.tagName)&&s.get(n.id)&&-1!==e.tabIndex&&function t(e){return"BODY"===e.nodeName||"hidden"!==e.type&&"none"!==e.style.display&&"hidden"!==e.style.visibility&&t(e.parentNode)}(e)}if(o=v.select(":input:enabled,*[tabindex]:not(iframe)"),f.each(o,function(e,t){if(e.id===r.id)return i=t,!1}),0<e){for(l=i+1;l<o.length;l++)if(t(o[l]))return o[l]}else for(l=i-1;0<=l;l--)if(t(o[l]))return o[l];return null}}r.on("init",function(){r.inline&&v.setAttrib(r.getBody(),"tabIndex",null),r.on("keyup",n),a.gecko?r.on("keypress keydown",e):r.on("keydown",e)})};e.add("tabfocus",function(e){i(e)}),function o(){}}(window);
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),n=function(t,o){var r;return t.dom.getParents(t.selection.getStart(),function(t){var e;(e=t.style["forecolor"===o?"color":"background-color"])&&(r=r||e)}),r},g=function(t){var e,o=[];for(e=0;e<t.length;e+=2)o.push({text:t[e+1],color:"#"+t[e]});return o},r=function(t,e,o){t.undoManager.transact(function(){t.focus(),t.formatter.apply(e,{value:o}),t.nodeChanged()})},e=function(t,e){t.undoManager.transact(function(){t.focus(),t.formatter.remove(e,{value:null},null,!0),t.nodeChanged()})},o=function(o){o.addCommand("mceApplyTextcolor",function(t,e){r(o,t,e)}),o.addCommand("mceRemoveTextcolor",function(t){e(o,t)})},F=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),i=tinymce.util.Tools.resolve("tinymce.util.Tools"),a=["000000","Black","993300","Burnt orange","333300","Dark olive","003300","Dark green","003366","Dark azure","000080","Navy Blue","333399","Indigo","333333","Very dark gray","800000","Maroon","FF6600","Orange","808000","Olive","008000","Green","008080","Teal","0000FF","Blue","666699","Grayish blue","808080","Gray","FF0000","Red","FF9900","Amber","99CC00","Yellow green","339966","Sea green","33CCCC","Turquoise","3366FF","Royal blue","800080","Purple","999999","Medium gray","FF00FF","Magenta","FFCC00","Gold","FFFF00","Yellow","00FF00","Lime","00FFFF","Aqua","00CCFF","Sky blue","993366","Red violet","FFFFFF","White","FF99CC","Pink","FFCC99","Peach","FFFF99","Light yellow","CCFFCC","Pale green","CCFFFF","Pale cyan","99CCFF","Light sky blue","CC99FF","Plum"],l=function(t){return t.getParam("textcolor_map",a)},c=function(t){return t.getParam("textcolor_rows",5)},u=function(t){return t.getParam("textcolor_cols",8)},m=function(t){return t.getParam("color_picker_callback",null)},s=function(t){return t.getParam("forecolor_map",l(t))},d=function(t){return t.getParam("backcolor_map",l(t))},f=function(t){return t.getParam("forecolor_rows",c(t))},b=function(t){return t.getParam("backcolor_rows",c(t))},p=function(t){return t.getParam("forecolor_cols",u(t))},C=function(t){return t.getParam("backcolor_cols",u(t))},y=m,v=function(t){return"function"==typeof m(t)},h=tinymce.util.Tools.resolve("tinymce.util.I18n"),P=function(t,e,o,r){var n,a,l,c,i,u,m,s=0,d=F.DOM.uniqueId("mcearia"),f=function(t,e){var o="transparent"===t;return'<td class="mce-grid-cell'+(o?" mce-colorbtn-trans":"")+'"><div id="'+d+"-"+s+++'" data-mce-color="'+(t||"")+'" role="option" tabIndex="-1" style="'+(t?"background-color: "+t:"")+'" title="'+h.translate(e)+'">'+(o?"×":"")+"</div></td>"};for((n=g(o)).push({text:h.translate("No color"),color:"transparent"}),l='<table class="mce-grid mce-grid-border mce-colorbutton-grid" role="list" cellspacing="0"><tbody>',c=n.length-1,u=0;u<e;u++){for(l+="<tr>",i=0;i<t;i++)l+=c<(m=u*t+i)?"<td></td>":f((a=n[m]).color,a.text);l+="</tr>"}if(r){for(l+='<tr><td colspan="'+t+'" class="mce-custom-color-btn"><div id="'+d+'-c" class="mce-widget mce-btn mce-btn-small mce-btn-flat" role="button" tabindex="-1" aria-labelledby="'+d+'-c" style="width: 100%"><button type="button" role="presentation" tabindex="-1">'+h.translate("Custom...")+"</button></div></td></tr>",l+="<tr>",i=0;i<t;i++)l+=f("","Custom color");l+="</tr>"}return l+="</tbody></table>"},k=function(t,e){t.style.background=e,t.setAttribute("data-mce-color",e)},x=function(o){return function(t){var e=t.control;e._color?o.execCommand("mceApplyTextcolor",e.settings.format,e._color):o.execCommand("mceRemoveTextcolor",e.settings.format)}},T=function(r,c){return function(t){var e,a=this.parent(),o=n(r,a.settings.format),l=function(t){r.execCommand("mceApplyTextcolor",a.settings.format,t),a.hidePanel(),a.color(t)};F.DOM.getParent(t.target,".mce-custom-color-btn")&&(a.hidePanel(),y(r).call(r,function(t){var e,o,r,n=a.panel.getEl().getElementsByTagName("table")[0];for(e=i.map(n.rows[n.rows.length-1].childNodes,function(t){return t.firstChild}),r=0;r<e.length&&(o=e[r]).getAttribute("data-mce-color");r++);if(r===c)for(r=0;r<c-1;r++)k(e[r],e[r+1].getAttribute("data-mce-color"));k(o,t),l(t)},o)),(e=t.target.getAttribute("data-mce-color"))?(this.lastId&&F.DOM.get(this.lastId).setAttribute("aria-selected","false"),t.target.setAttribute("aria-selected",!0),this.lastId=t.target.id,"transparent"===e?(r.execCommand("mceRemoveTextcolor",a.settings.format),a.hidePanel(),a.resetColor()):l(e)):null!==e&&a.hidePanel()}},_=function(n,a){return function(){var t=a?p(n):C(n),e=a?f(n):b(n),o=a?s(n):d(n),r=v(n);return P(t,e,o,r)}},A=function(t){t.addButton("forecolor",{type:"colorbutton",tooltip:"Text color",format:"forecolor",panel:{role:"application",ariaRemember:!0,html:_(t,!0),onclick:T(t,p(t))},onclick:x(t)}),t.addButton("backcolor",{type:"colorbutton",tooltip:"Background color",format:"hilitecolor",panel:{role:"application",ariaRemember:!0,html:_(t,!1),onclick:T(t,C(t))},onclick:x(t)})};t.add("textcolor",function(t){o(t),A(t)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(o){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("textcolor",function(){o.console.warn("Text color plugin is now built in to the core editor, please remove it from your editor configuration")}),function i(){}}(window);
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var e,n,t=tinymce.util.Tools.resolve("tinymce.PluginManager"),s=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),f=tinymce.util.Tools.resolve("tinymce.util.I18n"),i=tinymce.util.Tools.resolve("tinymce.util.Tools"),l=function(t){return t.getParam("toc_class","mce-toc")},m=function(t){var e=t.getParam("toc_header","h2");return/^h[1-6]$/.test(e)?e:"h2"},c=function(t){var e=parseInt(t.getParam("toc_depth","3"),10);return 1<=e&&e<=9?e:3},a=(e="mcetoc_",n=0,function(){var t=(new Date).getTime().toString(32);return e+t+(n++).toString(32)}),v=function(n){var o=l(n),t=m(n),e=function(t){var e,n=[];for(e=1;e<=t;e++)n.push("h"+e);return n.join(",")}(c(n)),r=n.$(e);return r.length&&/^h[1-9]$/i.test(t)&&(r=r.filter(function(t,e){return!n.dom.hasClass(e.parentNode,o)})),i.map(r,function(t){return{id:t.id?t.id:a(),level:parseInt(t.nodeName.replace(/^H/i,""),10),title:n.$.text(t),element:t}})},d=function(t){var e,n,o,r,i,c,l,a="",d=v(t),u=function(t){var e,n=9;for(e=0;e<t.length;e++)if(t[e].level<n&&(n=t[e].level),1===n)return n;return n}(d)-1;if(!d.length)return"";for(a+=(i=m(t),c=f.translate("Table of Contents"),l="</"+i+">","<"+i+' contenteditable="true">'+s.DOM.encode(c)+l),e=0;e<d.length;e++){if((o=d[e]).element.id=o.id,r=d[e+1]&&d[e+1].level,u===o.level)a+="<li>";else for(n=u;n<o.level;n++)a+="<ul><li>";if(a+='<a href="#'+o.id+'">'+o.title+"</a>",r!==o.level&&r)for(n=o.level;r<n;n--)a+="</li></ul><li>";else a+="</li>",r||(a+="</ul>");u=o.level}return a},u=function(t){var e=l(t),n=t.$("."+e);n.length&&t.undoManager.transact(function(){n.html(d(t))})},o={hasHeaders:function(t){return 0<v(t).length},insertToc:function(t){var e,n,o,r,i=l(t),c=t.$("."+i);o=t,!(r=c).length||0<o.dom.getParents(r[0],".mce-offscreen-selection").length?t.insertContent((n=d(e=t),'<div class="'+e.dom.encode(l(e))+'" contenteditable="false">'+n+"</div>")):u(t)},updateToc:u},r=function(t){t.addCommand("mceInsertToc",function(){o.insertToc(t)}),t.addCommand("mceUpdateToc",function(){o.updateToc(t)})},h=function(t){var n=t.$,o=l(t);t.on("PreProcess",function(t){var e=n("."+o,t.node);e.length&&(e.removeAttr("contentEditable"),e.find("[contenteditable]").removeAttr("contentEditable"))}),t.on("SetContent",function(){var t=n("."+o);t.length&&(t.attr("contentEditable",!1),t.children(":first-child").attr("contentEditable",!0))})},g=function(n){return function(t){var e=t.control;n.on("LoadContent SetContent change",function(){e.disabled(n.readonly||!o.hasHeaders(n))})}},T=function(t){var e;t.addButton("toc",{tooltip:"Table of Contents",cmd:"mceInsertToc",icon:"toc",onPostRender:g(t)}),t.addButton("tocupdate",{tooltip:"Update",cmd:"mceUpdateToc",icon:"reload"}),t.addMenuItem("toc",{text:"Table of Contents",context:"insert",cmd:"mceInsertToc",onPostRender:g(t)}),t.addContextToolbar((e=t,function(t){return t&&e.dom.is(t,"."+l(e))&&e.getBody().contains(t)}),"tocupdate")};t.add("toc",function(t){r(t),T(t),h(t)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e,n,t=tinymce.util.Tools.resolve("tinymce.PluginManager"),s=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),f=tinymce.util.Tools.resolve("tinymce.util.I18n"),i=tinymce.util.Tools.resolve("tinymce.util.Tools"),a=function(t){return t.getParam("toc_class","mce-toc")},m=function(t){var e=t.getParam("toc_header","h2");return/^h[1-6]$/.test(e)?e:"h2"},c=function(t){var e=parseInt(t.getParam("toc_depth","3"),10);return 1<=e&&e<=9?e:3},l=(e="mcetoc_",n=0,function(){var t=(new Date).getTime().toString(32);return e+t+(n++).toString(32)}),u=function u(t){var e,n=[];for(e=1;e<=t;e++)n.push("h"+e);return n.join(",")},v=function(n){var o=a(n),t=m(n),e=u(c(n)),r=n.$(e);return r.length&&/^h[1-9]$/i.test(t)&&(r=r.filter(function(t,e){return!n.dom.hasClass(e.parentNode,o)})),i.map(r,function(t){return{id:t.id?t.id:l(),level:parseInt(t.nodeName.replace(/^H/i,""),10),title:n.$.text(t),element:t}})},d=function(t){var e,n,o,r,i,c,a,l="",u=v(t),d=function(t){var e,n=9;for(e=0;e<t.length;e++)if(t[e].level<n&&(n=t[e].level),1===n)return n;return n}(u)-1;if(!u.length)return"";for(l+=(i=m(t),c=f.translate("Table of Contents"),a="</"+i+">","<"+i+' contenteditable="true">'+s.DOM.encode(c)+a),e=0;e<u.length;e++){if((o=u[e]).element.id=o.id,r=u[e+1]&&u[e+1].level,d===o.level)l+="<li>";else for(n=d;n<o.level;n++)l+="<ul><li>";if(l+='<a href="#'+o.id+'">'+o.title+"</a>",r!==o.level&&r)for(n=o.level;r<n;n--)l+="</li></ul><li>";else l+="</li>",r||(l+="</ul>");d=o.level}return l},g=function(t){var e=a(t),n=t.$("."+e);n.length&&t.undoManager.transact(function(){n.html(d(t))})},o={hasHeaders:function(t){return 0<v(t).length},insertToc:function(t){var e,n,o,r,i=a(t),c=t.$("."+i);o=t,!(r=c).length||0<o.dom.getParents(r[0],".mce-offscreen-selection").length?t.insertContent((n=d(e=t),'<div class="'+e.dom.encode(a(e))+'" contenteditable="false">'+n+"</div>")):g(t)},updateToc:g},r=function(t){t.addCommand("mceInsertToc",function(){o.insertToc(t)}),t.addCommand("mceUpdateToc",function(){o.updateToc(t)})},h=function(t){var n=t.$,o=a(t);t.on("PreProcess",function(t){var e=n("."+o,t.node);e.length&&(e.removeAttr("contentEditable"),e.find("[contenteditable]").removeAttr("contentEditable"))}),t.on("SetContent",function(){var t=n("."+o);t.length&&(t.attr("contentEditable",!1),t.children(":first-child").attr("contentEditable",!0))})},p=function(n){return function(t){var e=function(){return t.setDisabled(n.readonly||!o.hasHeaders(n))};return e(),n.on("LoadContent SetContent change",e),function(){return n.on("LoadContent SetContent change",e)}}},T=function(t){var e;t.ui.registry.addButton("toc",{icon:"toc",tooltip:"Table of contents",onAction:function(){return t.execCommand("mceInsertToc")},onSetup:p(t)}),t.ui.registry.addButton("tocupdate",{icon:"reload",tooltip:"Update",onAction:function(){return t.execCommand("mceUpdateToc")}}),t.ui.registry.addMenuItem("toc",{icon:"toc",text:"Table of contents",onAction:function(){return t.execCommand("mceInsertToc")},onSetup:p(t)}),t.ui.registry.addContextToolbar("toc",{items:"tocupdate",predicate:(e=t,function(t){return t&&e.dom.is(t,"."+a(e))&&e.getBody().contains(t)}),scope:"node",position:"node"})};t.add("toc",function(t){r(t),T(t),h(t)}),function y(){}}();
|
|
@ -1,154 +0,0 @@
|
||||||
.mce-visualblocks p {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks h1 {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks h2 {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks h3 {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks h4 {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks h5 {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks h6 {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks div:not([data-mce-bogus]) {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks section {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks article {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks blockquote {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks address {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks pre {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin-left: 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks figure {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks hgroup {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks aside {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks figcaption {
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks ul {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks ol {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mce-visualblocks dl {
|
|
||||||
padding-top: 10px;
|
|
||||||
border: 1px dashed #BBB;
|
|
||||||
margin: 0 0 1em 3px;
|
|
||||||
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
|
@ -1 +1,9 @@
|
||||||
!function(){"use strict";var o=function(e){var t=e,n=function(){return t};return{get:n,set:function(e){t=e},clone:function(){return o(n())}}},e=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=function(e,t){e.fire("VisualBlocks",{state:t})},s=function(e){return e.getParam("visualblocks_default_state",!1)},c=function(e){return e.settings.visualblocks_content_css},l=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),u=tinymce.util.Tools.resolve("tinymce.util.Tools"),a=l.DOM.uniqueId(),r=function(e,t){var n=u.toArray(e.getElementsByTagName("link"));if(0===u.grep(n,function(e){return e.id===a}).length){var o=l.DOM.create("link",{id:a,rel:"stylesheet",href:t});e.getElementsByTagName("head")[0].appendChild(o)}},m=function(e,t,n){var o=e.dom,s=c(e);r(e.getDoc(),s||t+"/css/visualblocks.css"),o.toggleClass(e.getBody(),"mce-visualblocks"),n.set(!n.get()),i(e,n.get())},f=function(e,t,n){e.addCommand("mceVisualBlocks",function(){m(e,t,n)})},d=function(t,e,n){t.on("PreviewFormats AfterPreviewFormats",function(e){n.get()&&t.dom.toggleClass(t.getBody(),"mce-visualblocks","afterpreviewformats"===e.type)}),t.on("init",function(){s(t)&&m(t,e,n)}),t.on("remove",function(){t.dom.removeClass(t.getBody(),"mce-visualblocks")})},n=function(n,o){return function(e){var t=e.control;t.active(o.get()),n.on("VisualBlocks",function(e){t.active(e.state)})}},v=function(e,t){e.addButton("visualblocks",{active:!1,title:"Show blocks",cmd:"mceVisualBlocks",onPostRender:n(e,t)}),e.addMenuItem("visualblocks",{text:"Show blocks",cmd:"mceVisualBlocks",onPostRender:n(e,t),selectable:!0,context:"view",prependToContext:!0})};e.add("visualblocks",function(e,t){var n=o(!1);f(e,t,n),v(e,n),d(e,t,n)})}();
|
/**
|
||||||
|
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||||
|
* Licensed under the LGPL or a commercial license.
|
||||||
|
* For LGPL see License.txt in the project root for license information.
|
||||||
|
* For commercial licenses see https://www.tiny.cloud/
|
||||||
|
*
|
||||||
|
* Version: 5.0.3 (2019-03-19)
|
||||||
|
*/
|
||||||
|
!function(){"use strict";var e=function(t){var n=t,o=function(){return n};return{get:o,set:function(t){n=t},clone:function(){return e(o())}}},t=tinymce.util.Tools.resolve("tinymce.PluginManager"),i=function(t,n){t.fire("VisualBlocks",{state:n})},u=function(t,n,o){t.dom.toggleClass(t.getBody(),"mce-visualblocks"),o.set(!o.get()),i(t,o.get())},c=function(t,n,o){t.addCommand("mceVisualBlocks",function(){u(t,n,o)})},s=function(t){return t.getParam("visualblocks_default_state",!1,"boolean")},r=function(n,t,o){n.on("PreviewFormats AfterPreviewFormats",function(t){o.get()&&n.dom.toggleClass(n.getBody(),"mce-visualblocks","afterpreviewformats"===t.type)}),n.on("init",function(){s(n)&&u(n,t,o)}),n.on("remove",function(){n.dom.removeClass(n.getBody(),"mce-visualblocks")})},o=function(o,e){return function(n){n.setActive(e.get());var t=function(t){return n.setActive(t.state)};return o.on("VisualBlocks",t),function(){return o.off("VisualBlocks",t)}}},a=function(t,n){t.ui.registry.addToggleButton("visualblocks",{icon:"paragraph",tooltip:"Show blocks",onAction:function(){return t.execCommand("mceVisualBlocks")},onSetup:o(t,n)}),t.ui.registry.addToggleMenuItem("visualblocks",{text:"Show blocks",onAction:function(){return t.execCommand("mceVisualBlocks")},onSetup:o(t,n)})};t.add("visualblocks",function(t,n){var o=e(!1);c(t,n,o),a(t,o),r(t,n,o)}),function n(){}}();
|
|
@ -1,224 +0,0 @@
|
||||||
// Variables
|
|
||||||
// Syntax: <control>-(<sub control>)-<bg|border|text>-(<state>)-(<extra>);
|
|
||||||
// Example: @btn-primary-bg-hover-hlight;
|
|
||||||
|
|
||||||
@prefix: mce;
|
|
||||||
|
|
||||||
// Default font
|
|
||||||
@font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
||||||
@font-size: 14px;
|
|
||||||
@line-height: 20px;
|
|
||||||
@has-gradients: false;
|
|
||||||
@has-radius: false;
|
|
||||||
@has-boxshadow: false;
|
|
||||||
@has-button-borders: false;
|
|
||||||
|
|
||||||
// Text colors
|
|
||||||
@text: #333333;
|
|
||||||
@text-inverse: #ffffff;
|
|
||||||
@text-disabled: #aaaaaa;
|
|
||||||
@text-shadow: 0 1px 1px hsla(hue(@text-inverse), saturation(@text-inverse), lightness(@text-inverse), 0.75);
|
|
||||||
@text-error: #b94a48;
|
|
||||||
@text-warning: #c09853;
|
|
||||||
@text-success: #468847;
|
|
||||||
@text-link: #2980b9;
|
|
||||||
|
|
||||||
// Button
|
|
||||||
@btn-text: #333333;
|
|
||||||
@btn-text-shadow: #ffffff;
|
|
||||||
@btn-border-top: transparent;
|
|
||||||
@btn-border-right: transparent;
|
|
||||||
@btn-border-bottom: transparent;
|
|
||||||
@btn-border-left: transparent;
|
|
||||||
@btn-caret-border: @btn-text;
|
|
||||||
@btn-text-disabled: @text-disabled;
|
|
||||||
@btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
|
|
||||||
@btn-box-shadow-active: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
|
|
||||||
@btn-box-disabled-opacity: 0.4;
|
|
||||||
@btn-bg: #ffffff;
|
|
||||||
@btn-bg-hlight: #d9d9d9;
|
|
||||||
@btn-bg-hover: darken(@btn-bg, 5%);
|
|
||||||
@btn-bg-hlight-hover: darken(@btn-bg-hlight, 5%);
|
|
||||||
@btn-border-hover: darken(@btn-bg, 20%);
|
|
||||||
@btn-border-active: darken(@btn-bg, 20%);
|
|
||||||
@btn-padding: 4px 8px;
|
|
||||||
|
|
||||||
@btn-primary-bg: #0088cc;
|
|
||||||
@btn-primary-bg-hlight: #0044cc;
|
|
||||||
@btn-primary-bg-hover: darken(@btn-primary-bg, 5%);
|
|
||||||
@btn-primary-bg-hover-hlight: darken(@btn-primary-bg-hlight, 5%);
|
|
||||||
@btn-primary-text: #ffffff;
|
|
||||||
@btn-primary-text-shadow: #333333;
|
|
||||||
@btn-primary-border-top: mix(@btn-border-top, @btn-primary-bg, 50%);
|
|
||||||
@btn-primary-border-right: mix(@btn-border-right, @btn-primary-bg, 50%);
|
|
||||||
@btn-primary-border-bottom: mix(@btn-border-bottom, @btn-primary-bg, 50%);
|
|
||||||
@btn-primary-border-left: mix(@btn-border-left, @btn-primary-bg, 50%);
|
|
||||||
@btn-primary-border: transparent;
|
|
||||||
@btn-primary-border-hover: transparent;
|
|
||||||
|
|
||||||
// Button group
|
|
||||||
@btn-group-border-width: 1px;
|
|
||||||
|
|
||||||
// Menu
|
|
||||||
@menuitem-text: #333333;
|
|
||||||
@menu-bg: #ffffff;
|
|
||||||
@menu-margin: -1px 0 0;
|
|
||||||
@menu-border: rgba(0,0,0,0.2);
|
|
||||||
@menubar-border: mix(@panel-border, @panel-bg, 60%);
|
|
||||||
@menuitem-text-inverse: #ffffff;
|
|
||||||
@menubar-bg-active: darken(@btn-bg, 10%);
|
|
||||||
@menuitem-bg-hover: #0081C2;
|
|
||||||
@menuitem-bg-selected: #0088cc;
|
|
||||||
@menuitem-bg-selected-hlight: #0077b3;
|
|
||||||
@menuitem-bg-disabled: #CCC;
|
|
||||||
@menuitem-caret: @menuitem-text;
|
|
||||||
@menuitem-caret-selected: @menuitem-text-inverse;
|
|
||||||
@menuitem-separator-top: #cbcbcb;
|
|
||||||
@menuitem-separator-bottom: #ffffff;
|
|
||||||
@menuitem-bg-active: #c8def4;
|
|
||||||
@menuitem-text-active: #333333;
|
|
||||||
@menuitem-preview-border-active: #aaaaaa;
|
|
||||||
@menubar-menubtn-text: #dddddd;
|
|
||||||
|
|
||||||
// Panel
|
|
||||||
@panel-border: #DDDDDD;
|
|
||||||
@panel-bg: #F3F3F3;
|
|
||||||
@panel-bg-hlight: #F3F3F3;
|
|
||||||
|
|
||||||
// Tabs
|
|
||||||
@tab-border: #c5c5c5;
|
|
||||||
@tab-bg: #e3e3e3;
|
|
||||||
@tab-bg-hover: #fdfdfd;
|
|
||||||
@tab-bg-active: #fdfdfd;
|
|
||||||
@tabs-bg: #ffffff;
|
|
||||||
|
|
||||||
// Tooltip
|
|
||||||
@tooltip-bg: #000;
|
|
||||||
@tooltip-text: white;
|
|
||||||
@tooltip-font-size: 11px;
|
|
||||||
|
|
||||||
// Notification
|
|
||||||
@notification-font-size: 14px;
|
|
||||||
@notification-bg: #f0f0f0;
|
|
||||||
@notification-border: #cccccc;
|
|
||||||
@notification-text: #333333;
|
|
||||||
@notification-success-bg: #dff0d8;
|
|
||||||
@notification-success-border: #d6e9c6;
|
|
||||||
@notification-success-text: #3c763d;
|
|
||||||
@notification-info-bg: #d9edf7;
|
|
||||||
@notification-info-border: #779ecb;
|
|
||||||
@notification-info-text: #31708f;
|
|
||||||
@notification-warning-bg: #fcf8e3;
|
|
||||||
@notification-warning-border: #faebcc;
|
|
||||||
@notification-warning-text: #8a6d3b;
|
|
||||||
@notification-error-bg: #f2dede;
|
|
||||||
@notification-error-border: #ebccd1;
|
|
||||||
@notification-error-text: #a94442;
|
|
||||||
|
|
||||||
// Infobox
|
|
||||||
@infobox-bg: @notification-bg;
|
|
||||||
@infobox-border: @notification-border;
|
|
||||||
@infobox-text: @notification-text;
|
|
||||||
@infobox-success-bg: @notification-success-bg;
|
|
||||||
@infobox-success-border: @notification-success-border;
|
|
||||||
@infobox-success-text: @notification-success-text;
|
|
||||||
@infobox-info-bg: @notification-info-bg;
|
|
||||||
@infobox-info-border: @notification-info-border;
|
|
||||||
@infobox-info-text: @notification-info-text;
|
|
||||||
@infobox-warning-bg: @notification-warning-bg;
|
|
||||||
@infobox-warning-border: @notification-warning-border;
|
|
||||||
@infobox-warning-text: @notification-warning-text;
|
|
||||||
@infobox-error-bg: @notification-error-bg;
|
|
||||||
@infobox-error-border: @notification-error-border;
|
|
||||||
@infobox-error-text: @notification-error-text;
|
|
||||||
|
|
||||||
// Window
|
|
||||||
@window-border: #c4c4c4;
|
|
||||||
@window-head-border: @window-border;
|
|
||||||
@window-head-close: mix(@text, @window-bg, 60%);
|
|
||||||
@window-head-close-hover: mix(@text, @window-bg, 40%);
|
|
||||||
@window-foot-border: @window-border;
|
|
||||||
@window-foot-bg: @window-bg;
|
|
||||||
@window-fullscreen-bg: #FFF;
|
|
||||||
@window-modalblock-bg: #000;
|
|
||||||
@window-modalblock-opacity: 0.3;
|
|
||||||
@window-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
||||||
@window-bg: #ffffff;
|
|
||||||
@window-title-font-size: 20px;
|
|
||||||
|
|
||||||
// Popover
|
|
||||||
@popover-bg: @window-bg;
|
|
||||||
@popover-arrow-width: 10px;
|
|
||||||
@popover-arrow: @window-bg;
|
|
||||||
@popover-arrow-outer-width: @popover-arrow-width + 1;
|
|
||||||
@popover-arrow-outer: rgba(0, 0, 0, 0.25);
|
|
||||||
|
|
||||||
// Floatpanel
|
|
||||||
@floatpanel-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
|
||||||
|
|
||||||
// Checkbox
|
|
||||||
@checkbox-bg: @btn-bg;
|
|
||||||
@checkbox-bg-hlight: @btn-bg-hlight;
|
|
||||||
@checkbox-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
|
|
||||||
@checkbox-border: #c5c5c5;
|
|
||||||
@checkbox-border-focus: #59a5e1;
|
|
||||||
|
|
||||||
// Path
|
|
||||||
@path-text: @text;
|
|
||||||
@path-bg-focus: #666;
|
|
||||||
@path-text-focus: #fff;
|
|
||||||
|
|
||||||
// Textbox
|
|
||||||
@textbox-text-placeholder: #aaa;
|
|
||||||
@textbox-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
||||||
@textbox-bg: #ffffff;
|
|
||||||
@textbox-border: #c5c5c5;
|
|
||||||
@textbox-border-focus: #59a5e1;
|
|
||||||
|
|
||||||
// Selectbox
|
|
||||||
@selectbox-bg: @textbox-bg;
|
|
||||||
@selectbox-border: @textbox-border;
|
|
||||||
|
|
||||||
// Throbber
|
|
||||||
@throbber-bg: #fff url('img/loader.gif') no-repeat center center;
|
|
||||||
|
|
||||||
// Combobox
|
|
||||||
@combobox-border: @textbox-border;
|
|
||||||
@combobox-error-text: @text-error;
|
|
||||||
@combobox-warning-text: @text-warning;
|
|
||||||
@combobox-success-text: @text-success;
|
|
||||||
|
|
||||||
// Colorpicker
|
|
||||||
@colorpicker-border: @textbox-border;
|
|
||||||
@colorpicker-hue-bg: #fff;
|
|
||||||
@colorpicker-hue-border: #333;
|
|
||||||
|
|
||||||
// Grid
|
|
||||||
@grid-bg-active: @menuitem-bg-active;
|
|
||||||
@grid-border-active: #a1a1a1;
|
|
||||||
@grid-border: #d6d6d6;
|
|
||||||
|
|
||||||
// Misc
|
|
||||||
@colorbtn-backcolor-bg: #bbbbbb;
|
|
||||||
@iframe-border: @panel-border;
|
|
||||||
|
|
||||||
// Slider
|
|
||||||
@slider-border: #aaaaaa;
|
|
||||||
@slider-bg: #eeeeee;
|
|
||||||
@slider-handle-border: #bbbbbb;
|
|
||||||
@slider-handle-bg: #dddddd;
|
|
||||||
@slider-handle-bg-focus: #BBB;
|
|
||||||
|
|
||||||
// Progress
|
|
||||||
@progress-border: #cccccc;
|
|
||||||
@progress-bar-bg: #dfdfdf;
|
|
||||||
@progress-bar-bg-hlight: #cccccc;
|
|
||||||
@progress-text: #333333;
|
|
||||||
|
|
||||||
// Flow layout
|
|
||||||
@flow-layout-spacing: 2px;
|
|
||||||
|
|
||||||
// Table
|
|
||||||
|
|
||||||
@table-row-even: #fafafa;
|
|
||||||
@table-row-hover: darken(@table-row-even, 10%);
|
|
|
@ -1 +0,0 @@
|
||||||
.mce-content-body .mce-reset{margin:0;padding:0;border:0;outline:0;vertical-align:top;background:transparent;text-decoration:none;color:black;font-family:Arial;font-size:11px;text-shadow:none;float:none;position:static;width:auto;height:auto;white-space:nowrap;cursor:inherit;line-height:normal;font-weight:normal;text-align:left;-webkit-tap-highlight-color:transparent;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;direction:ltr;max-width:none}.mce-object{border:1px dotted #3A3A3A;background:#D5D5D5 url(img/object.gif) no-repeat center}.mce-preview-object{display:inline-block;position:relative;margin:0 2px 0 2px;line-height:0;border:1px solid gray}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-preview-object .mce-shim{position:absolute;top:0;left:0;width:100%;height:100%;background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}figure.align-left{float:left}figure.align-right{float:right}figure.image.align-center{display:table;margin-left:auto;margin-right:auto}figure.image{display:inline-block;border:1px solid gray;margin:0 2px 0 1px;background:#f5f2f0}figure.image img{margin:8px 8px 0 8px}figure.image figcaption{margin:6px 8px 6px 8px;text-align:center}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc li{list-style-type:none}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px;page-break-before:always}@media print{.mce-pagebreak{border:0}}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px !important;height:9px !important;border:1px dotted #3A3A3A;background:#D5D5D5 url(img/anchor.gif) no-repeat center}.mce-nbsp,.mce-shy{background:#AAA}.mce-shy::after{content:'-'}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#3399ff;color:#fff}.mce-spellchecker-word{border-bottom:2px solid #F00;cursor:default}.mce-spellchecker-grammar{border-bottom:2px solid #008000;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td[data-mce-selected],th[data-mce-selected]{background-color:#3399ff !important}.mce-edit-focus{outline:1px dotted #333}.mce-resize-bar-dragging{background-color:blue;opacity:.25;filter:alpha(opacity=25);zoom:1}.mce-content-body p,.mce-content-body div,.mce-content-body h1,.mce-content-body h2,.mce-content-body h3,.mce-content-body h4,.mce-content-body h5,.mce-content-body h6{line-height:1.2em}.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus{outline:2px solid #2d8ac7}.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover{outline:2px solid #7ACAFF}.mce-content-body *[contentEditable=false][data-mce-selected]{outline:2px solid #2d8ac7}.mce-content-body a[data-mce-selected],.mce-content-body code[data-mce-selected]{background:#bfe6ff}.mce-content-body hr{cursor:default}
|
|
|
@ -1 +0,0 @@
|
||||||
body{background-color:#FFFFFF;color:#000000;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:14px;scrollbar-3dlight-color:#F0F0EE;scrollbar-arrow-color:#676662;scrollbar-base-color:#F0F0EE;scrollbar-darkshadow-color:#DDDDDD;scrollbar-face-color:#E0E0DD;scrollbar-highlight-color:#F0F0EE;scrollbar-shadow-color:#F0F0EE;scrollbar-track-color:#F5F5F5}td,th{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:14px}.mce-content-body .mce-reset{margin:0;padding:0;border:0;outline:0;vertical-align:top;background:transparent;text-decoration:none;color:black;font-family:Arial;font-size:11px;text-shadow:none;float:none;position:static;width:auto;height:auto;white-space:nowrap;cursor:inherit;line-height:normal;font-weight:normal;text-align:left;-webkit-tap-highlight-color:transparent;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;direction:ltr;max-width:none}.mce-object{border:1px dotted #3A3A3A;background:#D5D5D5 url(img/object.gif) no-repeat center}.mce-preview-object{display:inline-block;position:relative;margin:0 2px 0 2px;line-height:0;border:1px solid gray}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-preview-object .mce-shim{position:absolute;top:0;left:0;width:100%;height:100%;background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}figure.align-left{float:left}figure.align-right{float:right}figure.image.align-center{display:table;margin-left:auto;margin-right:auto}figure.image{display:inline-block;border:1px solid gray;margin:0 2px 0 1px;background:#f5f2f0}figure.image img{margin:8px 8px 0 8px}figure.image figcaption{margin:6px 8px 6px 8px;text-align:center}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc li{list-style-type:none}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px;page-break-before:always}@media print{.mce-pagebreak{border:0}}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px !important;height:9px !important;border:1px dotted #3A3A3A;background:#D5D5D5 url(img/anchor.gif) no-repeat center}.mce-nbsp,.mce-shy{background:#AAA}.mce-shy::after{content:'-'}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#3399ff;color:#fff}.mce-spellchecker-word{border-bottom:2px solid #F00;cursor:default}.mce-spellchecker-grammar{border-bottom:2px solid #008000;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td[data-mce-selected],th[data-mce-selected]{background-color:#3399ff !important}.mce-edit-focus{outline:1px dotted #333}.mce-resize-bar-dragging{background-color:blue;opacity:.25;filter:alpha(opacity=25);zoom:1}.mce-content-body p,.mce-content-body div,.mce-content-body h1,.mce-content-body h2,.mce-content-body h3,.mce-content-body h4,.mce-content-body h5,.mce-content-body h6{line-height:1.2em}.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus{outline:2px solid #2d8ac7}.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover{outline:2px solid #7ACAFF}.mce-content-body *[contentEditable=false][data-mce-selected]{outline:2px solid #2d8ac7}.mce-content-body a[data-mce-selected],.mce-content-body code[data-mce-selected]{background:#bfe6ff}.mce-content-body hr{cursor:default}
|
|
|
@ -1 +0,0 @@
|
||||||
Icons are generated and provided by the http://icomoon.io service.
|
|
|
@ -1,63 +0,0 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<metadata>Generated by IcoMoon</metadata>
|
|
||||||
<defs>
|
|
||||||
<font id="tinymce-small" horiz-adv-x="1024">
|
|
||||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
||||||
<missing-glyph horiz-adv-x="1024" />
|
|
||||||
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
||||||
<glyph unicode="" glyph-name="save" d="M960 80v591.938l-223.938 224.062h-592.062c-44.182 0-80-35.816-80-80v-736c0-44.184 35.818-80 80-80h736c44.184 0 80 35.816 80 80zM576 768h64v-192h-64v192zM704 128h-384v255.882c0.034 0.042 0.076 0.082 0.116 0.118h383.77c0.040-0.036 0.082-0.076 0.116-0.118l-0.002-255.882zM832 128h-64v256c0 35.2-28.8 64-64 64h-384c-35.2 0-64-28.8-64-64v-256h-64v640h64v-192c0-35.2 28.8-64 64-64h320c35.2 0 64 28.8 64 64v171.010l128-128.072v-490.938z" />
|
|
||||||
<glyph unicode="" glyph-name="newdocument" d="M850.746 717.254l-133.492 133.49c-24.888 24.892-74.054 45.256-109.254 45.256h-416c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v544c0 35.2-20.366 84.364-45.254 109.254zM805.49 672.002c6.792-6.796 13.792-19.162 18.894-32.002h-184.384v184.386c12.84-5.1 25.204-12.1 32-18.896l133.49-133.488zM831.884 64h-639.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h383.886v-256h256v-511.884c-0.034-0.040-0.076-0.082-0.116-0.116z" />
|
|
||||||
<glyph unicode="" glyph-name="fullpage" d="M1024 367.542v160.916l-159.144 15.914c-8.186 30.042-20.088 58.548-35.21 84.98l104.596 127.838-113.052 113.050-127.836-104.596c-26.434 15.124-54.942 27.026-84.982 35.208l-15.914 159.148h-160.916l-15.914-159.146c-30.042-8.186-58.548-20.086-84.98-35.208l-127.838 104.594-113.050-113.050 104.596-127.836c-15.124-26.432-27.026-54.94-35.21-84.98l-159.146-15.916v-160.916l159.146-15.914c8.186-30.042 20.086-58.548 35.21-84.982l-104.596-127.836 113.048-113.048 127.838 104.596c26.432-15.124 54.94-27.028 84.98-35.21l15.916-159.148h160.916l15.914 159.144c30.042 8.186 58.548 20.088 84.982 35.21l127.836-104.596 113.048 113.048-104.596 127.836c15.124 26.434 27.028 54.942 35.21 84.98l159.148 15.92zM704 384l-128-128h-128l-128 128v128l128 128h128l128-128v-128z" />
|
|
||||||
<glyph unicode="" glyph-name="alignleft" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM64 576h576v-128h-576zM64 192h576v-128h-576z" />
|
|
||||||
<glyph unicode="" glyph-name="aligncenter" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM256 576h512v-128h-512zM256 192h512v-128h-512z" />
|
|
||||||
<glyph unicode="" glyph-name="alignright" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM384 576h576v-128h-576zM384 192h576v-128h-576z" />
|
|
||||||
<glyph unicode="" glyph-name="alignjustify" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM64 576h896v-128h-896zM64 192h896v-128h-896z" />
|
|
||||||
<glyph unicode="" glyph-name="cut" d="M864.408 289.868c-46.47 46.47-106.938 68.004-161.082 62.806l-63.326 63.326 192 192c0 0 128 128 0 256l-320-320-320 320c-128-128 0-256 0-256l192-192-63.326-63.326c-54.144 5.198-114.61-16.338-161.080-62.806-74.98-74.98-85.112-186.418-22.626-248.9 62.482-62.482 173.92-52.354 248.9 22.626 46.47 46.468 68.002 106.938 62.806 161.080l63.326 63.326 63.328-63.328c-5.196-54.144 16.336-114.61 62.806-161.078 74.978-74.98 186.418-85.112 248.898-22.626 62.488 62.482 52.356 173.918-22.624 248.9zM353.124 201.422c-2.212-24.332-15.020-49.826-35.14-69.946-22.212-22.214-51.080-35.476-77.218-35.476-10.524 0-25.298 2.228-35.916 12.848-21.406 21.404-17.376 73.132 22.626 113.136 22.212 22.214 51.080 35.476 77.218 35.476 10.524 0 25.298-2.228 35.916-12.848 13.112-13.11 13.47-32.688 12.514-43.19zM512 352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM819.152 108.848c-10.62-10.62-25.392-12.848-35.916-12.848-26.138 0-55.006 13.262-77.218 35.476-20.122 20.12-32.928 45.614-35.138 69.946-0.958 10.502-0.6 30.080 12.514 43.192 10.618 10.622 25.39 12.848 35.916 12.848 26.136 0 55.006-13.262 77.216-35.474 40.004-40.008 44.032-91.736 22.626-113.14z" />
|
|
||||||
<glyph unicode="" glyph-name="paste" d="M704 576v160c0 17.6-14.4 32-32 32h-160v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-160c-17.602 0-32-14.4-32-32v-512c0-17.6 14.398-32 32-32h224v-192h384l192 192v384h-192zM320 831.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 640v64h384v-64h-384zM704 90.51v101.49h101.49l-101.49-101.49zM832 256h-192v-192h-256v448h448v-256z" />
|
|
||||||
<glyph unicode="" glyph-name="searchreplace" d="M888 576h-56v256h64v64h-320v-64h64v-256h-256v256h64v64h-320v-64h64v-256h-56c-39.6 0-72-32.4-72-72v-432c0-39.6 32.4-72 72-72h240c39.6 0 72 32.4 72 72v312h128v-312c0-39.6 32.4-72 72-72h240c39.6 0 72 32.4 72 72v432c0 39.6-32.4 72-72 72zM348 64h-184c-19.8 0-36 14.4-36 32s16.2 32 36 32h184c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM860 64h-184c-19.8 0-36 14.4-36 32s16.2 32 36 32h184c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
|
|
||||||
<glyph unicode="" glyph-name="bullist" d="M384 832h576v-128h-576zM384 512h576v-128h-576zM384 192h576v-128h-576zM128 768c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM128 448c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM128 128c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z" />
|
|
||||||
<glyph unicode="" glyph-name="numlist" d="M384 832h576v-128h-576zM384 512h576v-128h-576zM384 192h576v-128h-576zM320 430v146h-64v320h-128v-64h64v-256h-64v-64h128v-50l-128-60v-146h128v-64h-128v-64h128v-64h-128v-64h192v320h-128v50z" />
|
|
||||||
<glyph unicode="" glyph-name="indent" d="M64 768h896v-128h-896zM384 384h576v-128h-576zM384 576h576v-128h-576zM64 192h896v-128h-896zM64 576l224-160-224-160z" />
|
|
||||||
<glyph unicode="" glyph-name="outdent" d="M64 768h896v-128h-896zM64 384h576v-128h-576zM64 576h576v-128h-576zM64 192h896v-128h-896zM960 576l-224-160 224-160z" />
|
|
||||||
<glyph unicode="" glyph-name="blockquote" d="M256.428 535.274c105.8 0 191.572-91.17 191.572-203.638 0-112.464-85.772-203.636-191.572-203.636-105.802 0-191.572 91.17-191.572 203.636l-0.856 29.092c0 224.93 171.54 407.272 383.144 407.272v-116.364c-73.1 0-141.826-30.26-193.516-85.204-9.954-10.578-19.034-21.834-27.224-33.656 9.784 1.64 19.806 2.498 30.024 2.498zM768.428 535.274c105.8 0 191.572-91.17 191.572-203.638 0-112.464-85.772-203.636-191.572-203.636-105.802 0-191.572 91.17-191.572 203.636l-0.856 29.092c0 224.93 171.54 407.272 383.144 407.272v-116.364c-73.1 0-141.826-30.26-193.516-85.204-9.956-10.578-19.036-21.834-27.224-33.656 9.784 1.64 19.806 2.498 30.024 2.498z" />
|
|
||||||
<glyph unicode="" glyph-name="undo" d="M704 0c59 199 134.906 455.266-256 446.096v-222.096l-336.002 336 336.002 336v-217.326c468.092 12.2 544-358.674 256-678.674z" />
|
|
||||||
<glyph unicode="" glyph-name="redo" d="M576 678.674v217.326l336.002-336-336.002-336v222.096c-390.906 9.17-315-247.096-256-446.096-288 320-212.092 690.874 256 678.674z" />
|
|
||||||
<glyph unicode="" glyph-name="unlink" d="M927.274 729.784l-133.49 133.488c-21.104 21.104-49.232 32.728-79.198 32.728s-58.094-11.624-79.196-32.726l-165.492-165.49c-43.668-43.668-43.668-114.724 0-158.392l2.746-2.746 67.882 67.882-2.746 2.746c-6.132 6.132-6.132 16.494 0 22.626l165.492 165.492c4.010 4.008 8.808 4.608 11.312 4.608s7.302-0.598 11.312-4.61l133.49-133.488c6.132-6.134 6.132-16.498 0.002-22.628l-165.494-165.494c-4.008-4.008-8.806-4.608-11.31-4.608s-7.302 0.6-11.312 4.612l-2.746 2.746-67.88-67.884 2.742-2.742c21.106-21.108 49.23-32.728 79.2-32.728s58.094 11.624 79.196 32.726l165.494 165.492c43.662 43.666 43.662 114.72-0.004 158.39zM551.356 359.356l-67.882-67.882 2.746-2.746c4.008-4.008 4.61-8.806 4.61-11.31 0-2.506-0.598-7.302-4.606-11.314l-165.494-165.49c-4.010-4.010-8.81-4.61-11.314-4.61s-7.304 0.6-11.314 4.61l-133.492 133.486c-4.010 4.010-4.61 8.81-4.61 11.314s0.598 7.3 4.61 11.312l165.49 165.488c4.010 4.012 8.81 4.612 11.314 4.612s7.304-0.6 11.314-4.612l2.746-2.742 67.882 67.88-2.746 2.746c-21.104 21.104-49.23 32.726-79.196 32.726s-58.092-11.624-79.196-32.726l-165.488-165.486c-21.106-21.104-32.73-49.234-32.73-79.198s11.624-58.094 32.726-79.198l133.49-133.49c21.106-21.102 49.232-32.726 79.198-32.726s58.092 11.624 79.196 32.726l165.494 165.492c21.104 21.104 32.722 49.23 32.722 79.196s-11.624 58.094-32.726 79.196l-2.744 2.746zM352 250c-9.724 0-19.45 3.71-26.87 11.128-14.84 14.84-14.84 38.898 0 53.738l320 320c14.84 14.84 38.896 14.84 53.736 0 14.844-14.84 14.844-38.9 0-53.74l-320-320c-7.416-7.416-17.142-11.126-26.866-11.126z" />
|
|
||||||
<glyph unicode="" glyph-name="link" d="M927.274 729.784l-133.49 133.488c-21.104 21.104-49.232 32.728-79.198 32.728s-58.094-11.624-79.196-32.726l-165.492-165.49c-43.668-43.668-43.668-114.724 0-158.392l2.746-2.746 67.882 67.882-2.746 2.746c-6.132 6.132-6.132 16.494 0 22.626l165.492 165.492c4.010 4.008 8.808 4.608 11.312 4.608s7.302-0.598 11.312-4.61l133.49-133.488c6.132-6.134 6.132-16.498 0.002-22.628l-165.494-165.494c-4.008-4.008-8.806-4.608-11.31-4.608s-7.302 0.6-11.312 4.612l-2.746 2.746-67.88-67.884 2.742-2.742c21.106-21.108 49.23-32.728 79.2-32.728s58.094 11.624 79.196 32.726l165.494 165.492c43.662 43.666 43.662 114.72-0.004 158.39zM551.356 359.356l-67.882-67.882 2.746-2.746c4.008-4.008 4.61-8.806 4.61-11.31 0-2.506-0.598-7.302-4.606-11.314l-165.494-165.49c-4.010-4.010-8.81-4.61-11.314-4.61s-7.304 0.6-11.314 4.61l-133.492 133.486c-4.010 4.010-4.61 8.81-4.61 11.314s0.598 7.3 4.61 11.312l165.49 165.488c4.010 4.012 8.81 4.612 11.314 4.612s7.304-0.6 11.314-4.612l2.746-2.742 67.882 67.88-2.746 2.746c-21.104 21.104-49.23 32.726-79.196 32.726s-58.092-11.624-79.196-32.726l-165.488-165.486c-21.106-21.104-32.73-49.234-32.73-79.198s11.624-58.094 32.726-79.198l133.49-133.49c21.106-21.102 49.232-32.726 79.198-32.726s58.092 11.624 79.196 32.726l165.494 165.492c21.104 21.104 32.722 49.23 32.722 79.196s-11.624 58.094-32.726 79.196l-2.744 2.746zM800 122c-9.724 0-19.45 3.708-26.87 11.13l-128 127.998c-14.844 14.84-14.844 38.898 0 53.738 14.84 14.844 38.896 14.844 53.736 0l128-128c14.844-14.84 14.844-38.896 0-53.736-7.416-7.422-17.142-11.13-26.866-11.13zM608 0c-17.674 0-32 14.326-32 32v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-128c0-17.674-14.326-32-32-32zM928 320h-128c-17.674 0-32 14.326-32 32s14.326 32 32 32h128c17.674 0 32-14.326 32-32s-14.326-32-32-32zM224 774c9.724 0 19.45-3.708 26.87-11.13l128-128c14.842-14.84 14.842-38.898 0-53.738-14.84-14.844-38.898-14.844-53.738 0l-128 128c-14.842 14.84-14.842 38.898 0 53.738 7.418 7.422 17.144 11.13 26.868 11.13zM416 896c17.674 0 32-14.326 32-32v-128c0-17.674-14.326-32-32-32s-32 14.326-32 32v128c0 17.674 14.326 32 32 32zM96 576h128c17.674 0 32-14.326 32-32s-14.326-32-32-32h-128c-17.674 0-32 14.326-32 32s14.326 32 32 32z" />
|
|
||||||
<glyph unicode="" glyph-name="bookmark" d="M256 896v-896l256 256 256-256v896h-512zM704 170.51l-192 192-192-192v661.49h384v-661.49z" />
|
|
||||||
<glyph unicode="" glyph-name="image" d="M896 832h-768c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM896 128.116c-0.012-0.014-0.030-0.028-0.042-0.042l-191.958 319.926-160-128-224 288-191.968-479.916c-0.010 0.010-0.022 0.022-0.032 0.032v639.77c0.034 0.040 0.076 0.082 0.114 0.114h767.77c0.040-0.034 0.082-0.076 0.116-0.116v-639.768zM640 608c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96z" />
|
|
||||||
<glyph unicode="" glyph-name="media" d="M896 832h-768c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM256 128h-128v128h128v-128zM256 384h-128v128h128v-128zM256 640h-128v128h128v-128zM704 128h-384v640h384v-640zM896 128h-128v128h128v-128zM896 384h-128v128h128v-128zM896 640h-128v128h128v-128zM384 640v-384l288 192z" />
|
|
||||||
<glyph unicode="" glyph-name="help" d="M448 256h128v-128h-128v128zM704 704c35.346 0 64-28.654 64-64v-166l-228-154h-92v64l192 128v64h-320v128h384zM512 896c-119.666 0-232.166-46.6-316.784-131.216-84.614-84.618-131.216-197.118-131.216-316.784 0-119.664 46.602-232.168 131.216-316.784 84.618-84.616 197.118-131.216 316.784-131.216 119.664 0 232.168 46.6 316.784 131.216s131.216 197.12 131.216 316.784c0 119.666-46.6 232.166-131.216 316.784-84.616 84.616-197.12 131.216-316.784 131.216z" />
|
|
||||||
<glyph unicode="" glyph-name="code" d="M416 256l-192 192 192 192-64 64-256-256 256-256zM672 704l-64-64 192-192-192-192 64-64 256 256z" />
|
|
||||||
<glyph unicode="" glyph-name="insertdatetime" d="M77.798 655.376l81.414-50.882c50.802 81.114 128.788 143.454 221.208 174.246l-30.366 91.094c-113.748-37.898-209.728-114.626-272.256-214.458zM673.946 869.834l-30.366-91.094c92.422-30.792 170.404-93.132 221.208-174.248l81.412 50.882c-62.526 99.834-158.506 176.562-272.254 214.46zM607.974 255.992c-4.808 0-9.692 1.090-14.286 3.386l-145.688 72.844v211.778c0 17.672 14.328 32 32 32s32-14.328 32-32v-172.222l110.31-55.156c15.806-7.902 22.214-27.124 14.31-42.932-5.604-11.214-16.908-17.696-28.646-17.698zM512 768c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384zM512 96c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288z" />
|
|
||||||
<glyph unicode="" glyph-name="preview" d="M64 504.254c45.318 49.92 97.162 92.36 153.272 125.124 90.332 52.744 192.246 80.622 294.728 80.622 102.48 0 204.396-27.878 294.726-80.624 56.112-32.764 107.956-75.204 153.274-125.124v117.432c-33.010 28.118-68.124 53.14-104.868 74.594-105.006 61.314-223.658 93.722-343.132 93.722s-238.128-32.408-343.134-93.72c-36.742-21.454-71.856-46.478-104.866-74.596v-117.43zM512 640c-183.196 0-345.838-100.556-448-256 102.162-155.448 264.804-256 448-256s345.838 100.552 448 256c-102.162 155.444-264.804 256-448 256zM512 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.348 28.654 64 64 64s64-28.652 64-64zM728.066 263.338c-67.434-39.374-140.128-59.338-216.066-59.338s-148.632 19.964-216.066 59.338c-51.554 30.104-98.616 71.31-138.114 120.662 39.498 49.35 86.56 90.558 138.116 120.66 13.276 7.752 26.758 14.74 40.426 20.982-10.512-23.742-16.362-50.008-16.362-77.642 0-106.040 85.962-192 192-192 106.040 0 192 85.96 192 192 0 27.634-5.85 53.9-16.36 77.642 13.668-6.244 27.15-13.23 40.426-20.982 51.554-30.102 98.616-71.31 138.116-120.66-39.498-49.352-86.56-90.558-138.116-120.662z" />
|
|
||||||
<glyph unicode="" glyph-name="forecolor" d="M651.168 676.166c-24.612 81.962-28.876 91.834-107.168 91.834h-64c-79.618 0-82.664-10.152-108.418-96 0-0.002 0-0.002-0.002-0.004l-143.998-479.996h113.636l57.6 192h226.366l57.6-192h113.63l-145.246 484.166zM437.218 512l38.4 136c10.086 33.618 36.38 30 36.38 30s26.294 3.618 36.38-30h0.004l38.4-136h-149.564z" />
|
|
||||||
<glyph unicode="" glyph-name="table" d="M64 768v-704h896v704h-896zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-192v128h192zM128 448h192v-128h-192v128zM704 448h192v-128h-192v128zM704 512v128h192v-128h-192zM128 256h192v-128h-192v128zM704 128v128h192v-128h-192z" />
|
|
||||||
<glyph unicode="" glyph-name="hr" d="M64 512h896v-128h-896z" />
|
|
||||||
<glyph unicode="" glyph-name="removeformat" d="M64 192h512v-128h-512v128zM768 768h-220.558l-183.766-512h-132.288l183.762 512h-223.15v128h576v-128zM929.774 64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774-62.226-62.226z" />
|
|
||||||
<glyph unicode="" glyph-name="subscript" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
|
|
||||||
<glyph unicode="" glyph-name="superscript" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
|
|
||||||
<glyph unicode="" glyph-name="charmap" d="M704 128v37.004c151.348 61.628 256 193.82 256 346.996 0 212.078-200.576 384-448 384s-448-171.922-448-384c0-153.176 104.654-285.368 256-346.996v-37.004h-192l-64 96v-224h320v222.812c-100.9 51.362-170.666 161.54-170.666 289.188 0 176.732 133.718 320 298.666 320s298.666-143.268 298.666-320c0-127.648-69.766-237.826-170.666-289.188v-222.812h320v224l-64-96h-192z" />
|
|
||||||
<glyph unicode="" glyph-name="emoticons" d="M512 820c99.366 0 192.782-38.694 263.042-108.956s108.958-163.678 108.958-263.044-38.696-192.782-108.958-263.042-163.676-108.958-263.042-108.958-192.782 38.696-263.044 108.958-108.956 163.676-108.956 263.042 38.694 192.782 108.956 263.044 163.678 108.956 263.044 108.956zM512 896c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448v0zM320 576c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM576 576c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM512 304c-101.84 0-192.56 36.874-251.166 94.328 23.126-117.608 126.778-206.328 251.166-206.328s228.040 88.72 251.168 206.328c-58.608-57.454-149.328-94.328-251.168-94.328z" />
|
|
||||||
<glyph unicode="" glyph-name="print" d="M256 832h512v-128h-512v128zM896 640h-768c-35.2 0-64-28.8-64-64v-256c0-35.2 28.796-64 64-64h128v-192h512v192h128c35.2 0 64 28.8 64 64v256c0 35.2-28.8 64-64 64zM704 128h-384v256h384v-256zM910.4 544c0-25.626-20.774-46.4-46.398-46.4s-46.402 20.774-46.402 46.4 20.778 46.4 46.402 46.4c25.626 0 46.398-20.774 46.398-46.4z" />
|
|
||||||
<glyph unicode="" glyph-name="fullscreen" d="M480 576l-192 192 128 128h-352v-352l128 128 192-192zM640 480l192 192 128-128v352h-352l128-128-192-192zM544 320l192-192-128-128h352v352l-128-128-192 192zM384 416l-192-192-128 128v-352h352l-128 128 192 192z" />
|
|
||||||
<glyph unicode="" glyph-name="spellcheck" d="M960 832v64h-192c-35.202 0-64-28.8-64-64v-320c0-15.856 5.858-30.402 15.496-41.614l-303.496-260.386-142 148-82-70 224-288 416 448h128v64h-192v320h192zM256 448h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192h128v-192zM128 704v128h128v-128h-128zM640 512v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64zM448 832h128v-128h-128v128zM448 640h128v-128h-128v128z" />
|
|
||||||
<glyph unicode="" glyph-name="nonbreaking" d="M448 448h-128v128h128v128h128v-128h128v-128h-128v-128h-128v128zM960 384v-320h-896v320h128v-192h640v192h128z" />
|
|
||||||
<glyph unicode="" glyph-name="template" d="M512 576h128v-64h-128zM512 192h128v-64h-128zM576 384h128v-64h-128zM768 384v-192h-64v-64h128v256zM384 384h128v-64h-128zM320 192h128v-64h-128zM320 576h128v-64h-128zM192 768v-256h64v192h64v64zM704 512h128v256h-64v-192h-64zM64 896v-896h896v896h-896zM896 64h-768v768h768v-768zM192 384v-256h64v192h64v64zM576 768h128v-64h-128zM384 768h128v-64h-128z" />
|
|
||||||
<glyph unicode="" glyph-name="pagebreak" d="M816 896l16-384h-640l16 384h32l16-320h512l16 320h32zM208 0l-16 320h640l-16-320h-32l-16 256h-512l-16-256h-32zM64 448h128v-64h-128zM256 448h128v-64h-128zM448 448h128v-64h-128zM640 448h128v-64h-128zM832 448h128v-64h-128z" />
|
|
||||||
<glyph unicode="" glyph-name="restoredraft" d="M576 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM768 512v-128h-256v320h128v-192z" />
|
|
||||||
<glyph unicode="" glyph-name="bold" d="M625.442 465.818c48.074 38.15 78.558 94.856 78.558 158.182 0 114.876-100.29 208-224 208h-224v-768h288c123.712 0 224 93.124 224 208 0 88.196-59.118 163.562-142.558 193.818zM384 656c0 26.51 21.49 48 48 48h67.204c42.414 0 76.796-42.98 76.796-96s-34.382-96-76.796-96h-115.204v144zM547.2 192h-115.2c-26.51 0-48 21.49-48 48v144h163.2c42.418 0 76.8-42.98 76.8-96s-34.382-96-76.8-96z" />
|
|
||||||
<glyph unicode="" glyph-name="italic" d="M832 832v-64h-144l-256-640h144v-64h-448v64h144l256 640h-144v64h448z" />
|
|
||||||
<glyph unicode="" glyph-name="underline" d="M192 128h576v-64h-576v64zM640 832v-384c0-31.312-14.7-61.624-41.39-85.352-30.942-27.502-73.068-42.648-118.61-42.648-45.544 0-87.668 15.146-118.608 42.648-26.692 23.728-41.392 54.040-41.392 85.352v384h-128v-384c0-141.382 128.942-256 288-256s288 114.618 288 256v384h-128z" />
|
|
||||||
<glyph unicode="" glyph-name="strikethrough" d="M960 448h-265.876c-50.078 35.42-114.43 54.86-182.124 54.86-89.206 0-164.572 50.242-164.572 109.712s75.366 109.714 164.572 109.714c75.058 0 140.308-35.576 159.12-82.286h113.016c-7.93 50.644-37.58 97.968-84.058 132.826-50.88 38.16-117.676 59.174-188.078 59.174-70.404 0-137.196-21.014-188.074-59.174-54.788-41.090-86.212-99.502-86.212-160.254s31.424-119.164 86.212-160.254c1.956-1.466 3.942-2.898 5.946-4.316h-265.872v-64h512.532c58.208-17.106 100.042-56.27 100.042-100.572 0-59.468-75.368-109.71-164.572-109.71-75.060 0-140.308 35.574-159.118 82.286h-113.016c7.93-50.64 37.582-97.968 84.060-132.826 50.876-38.164 117.668-59.18 188.072-59.18 70.402 0 137.198 21.016 188.074 59.174 54.79 41.090 86.208 99.502 86.208 160.254 0 35.298-10.654 69.792-30.294 100.572h204.012v64z" />
|
|
||||||
<glyph unicode="" glyph-name="visualchars" d="M384 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448z" />
|
|
||||||
<glyph unicode="" glyph-name="ltr" d="M448 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448zM64 64l224 192-224 192z" />
|
|
||||||
<glyph unicode="" glyph-name="rtl" d="M320 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448zM960 448l-224-192 224-192z" />
|
|
||||||
<glyph unicode="" glyph-name="copy" d="M832 640h-192v64l-192 192h-384v-704h384v-192h576v448l-192 192zM832 549.49l101.49-101.49h-101.49v101.49zM448 805.49l101.49-101.49h-101.49v101.49zM128 832h256v-192h192v-384h-448v576zM960 64h-448v128h128v384h128v-192h192v-320z" />
|
|
||||||
<glyph unicode="" glyph-name="resize" d="M768 704h64v-64h-64zM640 576h64v-64h-64zM640 448h64v-64h-64zM640 320h64v-64h-64zM512 448h64v-64h-64zM512 320h64v-64h-64zM384 320h64v-64h-64zM768 576h64v-64h-64zM768 448h64v-64h-64zM768 320h64v-64h-64zM768 192h64v-64h-64zM640 192h64v-64h-64zM512 192h64v-64h-64zM384 192h64v-64h-64zM256 192h64v-64h-64z" />
|
|
||||||
<glyph unicode="" glyph-name="browse" d="M928 832h-416l-32 64h-352l-64-128h896zM840.34 256h87.66l32 448h-896l64-640h356.080c-104.882 37.776-180.080 138.266-180.080 256 0 149.982 122.018 272 272 272 149.98 0 272-122.018 272-272 0-21.678-2.622-43.15-7.66-64zM874.996 110.25l-134.496 110.692c17.454 28.922 27.5 62.814 27.5 99.058 0 106.040-85.96 192-192 192s-192-85.96-192-192 85.96-192 192-192c36.244 0 70.138 10.046 99.058 27.5l110.692-134.496c22.962-26.678 62.118-28.14 87.006-3.252l5.492 5.492c24.888 24.888 23.426 64.044-3.252 87.006zM576 196c-68.484 0-124 55.516-124 124s55.516 124 124 124 124-55.516 124-124-55.516-124-124-124z" />
|
|
||||||
<glyph unicode="" glyph-name="pastetext" d="M704 576v160c0 17.6-14.4 32-32 32h-160v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-160c-17.602 0-32-14.4-32-32v-512c0-17.6 14.398-32 32-32h224v-192h576v576h-192zM320 831.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 640v64h384v-64h-384zM832 64h-448v448h448v-448zM448 448v-128h32l32 64h64v-192h-48v-64h160v64h-48v192h64l32-64h32v128z" />
|
|
||||||
<glyph unicode="" glyph-name="codesample" d="M200.015 577.994v103.994c0 43.077 34.919 77.997 77.997 77.997h26v103.994h-26c-100.51 0-181.991-81.481-181.991-181.991v-103.994c0-43.077-34.919-77.997-77.997-77.997h-26v-103.994h26c43.077 0 77.997-34.919 77.997-77.997v-103.994c0-100.509 81.481-181.991 181.991-181.991h26v103.994h-26c-43.077 0-77.997 34.919-77.997 77.997v103.994c0 50.927-20.928 96.961-54.642 129.994 33.714 33.032 54.642 79.065 54.642 129.994zM823.985 577.994v103.994c0 43.077-34.919 77.997-77.997 77.997h-26v103.994h26c100.509 0 181.991-81.481 181.991-181.991v-103.994c0-43.077 34.919-77.997 77.997-77.997h26v-103.994h-26c-43.077 0-77.997-34.919-77.997-77.997v-103.994c0-100.509-81.482-181.991-181.991-181.991h-26v103.994h26c43.077 0 77.997 34.919 77.997 77.997v103.994c0 50.927 20.928 96.961 54.642 129.994-33.714 33.032-54.642 79.065-54.642 129.994zM615.997 603.277c0-57.435-46.56-103.994-103.994-103.994s-103.994 46.56-103.994 103.994c0 57.435 46.56 103.994 103.994 103.994s103.994-46.56 103.994-103.994zM512 448.717c-57.435 0-103.994-46.56-103.994-103.994 0-55.841 26-100.107 105.747-103.875-23.715-33.413-59.437-46.608-105.747-50.94v-61.747c0 0 207.991-18.144 207.991 216.561-0.202 57.437-46.56 103.996-103.994 103.996z" />
|
|
||||||
</font></defs></svg>
|
|
Before Width: | Height: | Size: 24 KiB |